Luca Rossetto

Results 47 comments of Luca Rossetto

Thanks for the quick reply. If I understand the TensorFlow source correctly, the `loadLibrary` call is just a wrapper for the operating system call to load a system lib, both...

Thanks, that was actually very insightful. I ran `dumpbin` on several of the `.so` files, the output was always the same: ``` Microsoft (R) COFF/PE Dumper Version 14.26.28806.0 Copyright (C)...

I'm not sure I understand what you mean. When I try to load `_pywrap_tensorflow_internal.pyd` with `TensorFlow.loadLibrary()` I get the following: ``` 2022-01-07 10:51:46.740762: W tensorflow/stream_executor/platform/default/dso_loader.cc:60] Could not load dynamic library...

Is there a way I can prevent tensorflow_cc.dll from being loaded?

I'm sorry for missing the point here. This would require changing the line you indicated and then rebuilding TensorFlow Java, right? This would not be something I could do quickly...

Hey @karllessard, thanks a lot for this clarification. Having TensorFlow-Text working on Linux is sufficient for my purposes for the time being and I don't currently have the capacity to...

VisualVM shows no exceptionally high memory usage, remaining stable over time: ![grafik](https://user-images.githubusercontent.com/246519/203393523-952ff4c7-d855-45b7-816c-08f05c159c56.png) The largest memory use within the JVM is generated by the expected arrays: ![grafik](https://user-images.githubusercontent.com/246519/203393245-85617f25-1fb2-44a3-9305-28abd33794aa.png) At the time I...

Getting the `String` rather than the `byte[]` doesn't change anything with respect to the leakage. Thanks for pointing me to the `TensorProto`, that was what I was looking for initially....

So the two missing bytes came from me forgetting to set the data type, after adding `.setDtype(DataType.DT_FLOAT)` the two arrays have the same length. They are still not identical, but...

Sure, the following is just a small snippet from the produced output. The lines which start with date and time information are written to the standard error stream while the...