java
java copied to clipboard
Java bindings for TensorFlow
Bazel allows you to use the build cache in a read-only manner [see here](https://docs.bazel.build/versions/main/remote-caching.html#read-from-and-write-to-the-remote-cache). It would be very helpful for local builds if we could make the cache used by...
There are a number of situations that I have ran into where I need to copy a graph operation to another graph operation, or an eager operation, sometimes substituting inputs....
These are the first set of model layers, fairly simple ones without back propagation. I have also revamped the `TestSession`, `GraphTestSession` and `EagerTestSession` to use lambdas for common operations between...
This may be a more appropriate issue for `java-ndarray`, but I thought I would kick off discussion here as it relates to `SparseTensor`. @karl has asked that I explore setting...
Does multi-release jars in-module using an ant task. Includes a test and a CI task to run tests on JDK 8. Currently the added release is 9, since the only...
What is the difference between statefulIf and StatelessIf and when is a ConcreteFunction stateful?
@rnett Could you please explain `tf.statefulIf` vs `tf.statelessIf` and when a `ConcreteFunction` is stateful vs stateless?
Logging
This PR is mapping TFLogSink from https://github.com/tensorflow/tensorflow/pull/41733 (which replaces `TF_RegisterLogListener`) and hooking it up to Slf4j.
I brought this up with @JimClarke5 but wanted to get some wider comments on it. The generic parameter for Losses doesn't seem right: ```java Operand call(Ops tf, Operand
Added below Two Dependency in my java project , when we run the project in **Linux ARM : aarch64 : CPU** we are getting UnsatisfiedLinkError issue . **Dependency Added in...
The models that I have from Python works only if I provide `training = True` as well in Python. for instance in Python; ``` import tensorflow as tf my_model =...