Adam Pocock
Adam Pocock
https://github.com/tensorflow/tensorflow/issues/48855
The C API gradient issue is pretty bad. You can see it in this test here - https://github.com/tensorflow/java/blob/master/tensorflow-framework/src/test/java/org/tensorflow/framework/optimizers/GradientDescentTest.java#L121, where it gives inconsistent answers running the same tiny gradient computation 10...
These are notes for whoever tries to implement this. The Python class calls through to the [internal C++ API](https://github.com/tensorflow/tensorflow/blob/5dcfc51118817f27fad5246812d83e5dccdc5f72/tensorflow/core/lib/io/record_writer.h) which doesn't really do much other than add the appropriate header...
Ah I'd missed that it was CRC32 but using a different polynomial than the one in Java. Bit tedious to have to depend on Apache Commons Codec to get access...
I'm reluctant to depend on the internal TF C++ API as we don't have a team of people to track it when it changes. The C++ API changes at the...
Thanks for the PR, I should have spotted that when I added the last table so it's good to have it fixed. Once you've signed the OCA I can run...
You can test out this branch - https://github.com/oracle/tribuo/pull/367. We're not going to merge it until TF-Java releases 1.0, but I work on TF-Java too so it'll be up pretty soon...
No, the protobufs changed place between TF-Java 0.5 and 1.0-rc1 so there are fixes in that PR. It should build simply with `mvn package`. We may backport TF-Java 1.0 to...
TF-Java 1.0.0 support has been merged into `main`.
I'm not sure how you're plotting the ROC curve when you need a threshold to sweep through to change the point at which a label is predicted. Tribuo already supports...