Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add instructions for new module names
  • Loading branch information
karllessard committed Aug 5, 2024
commit 823f5dd32c88418b808e6473734b0ea91b74bb32
8 changes: 8 additions & 0 deletions MIGRATING.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,14 @@ will now be
<classifier>linux-x86_64</classifier>
</dependency>
```
### Java Module Renaming

The Java Module (jigsaw) names has been updated to drop the leading `org.`, as follow:
- `tensorflow-core-api` : `tensorflow` (was `org.tensorflow` before)
- `tensorflow-core-generator` : `tensorflow.generator` (was `org.tensorflow-generator` before)
- `tensorflow-core-native` : `tensorflow.nativelib`
- `tensorflow-framework` : `tensorflow.framework` (was `org.tensorflow.framework` before)

### Session Run Result

In versions before 0.4.0 `Session.Runner.run` and `TensorFunction.call` returned a `List<Tensor>`. In newer versions
Expand Down