Adam Pocock

Results 375 comments of Adam Pocock

Fixing some of the free dimensions does move more ops to the CoreML execution provider, but not all of them with ORT v1.16.3, so on my regular M1 it's still...

I retested it with the new CoreML support in ORT 1.18.0 and unfortunately that still doesn't support many of the nodes used in this. Still needs more work inside ORT.

> @Craigacp this might need a merge with main due to the pipeline definitions being updated. I can't run the 'Python format' CI with the current set of changes and...

What version of TF-Java are you using, what's the deployment environment (OS, Java version etc), and what platform does it work locally on? Is this using TF-DF?

Are you specifying `halfPixelCenters = true` when you run that op in Java? It's set to true by Python's `resize`.

Are you running it on the same hardware (i.e. CPU or GPU) for both languages? Also can you check the behaviour of tf python 2.4.1?

I think it would be best if we turned off the license checking in spotless. It's going to complain about all my PRs with Oracle copyright on.

Do you know if it's during tensor creation/access, model inference (and is that model trained in Python or Java), training or some other place? Also is this across multiple different...

One other wrinkle is that the initialisations are only populated in the `Graph`, but they aren't persisted in the `GraphDef`. So we do tricks like [this](https://github.com/oracle/tribuo/blob/main/Interop/Tensorflow/src/main/java/org/tribuo/interop/tensorflow/TensorFlowTrainer.java#L477) in Tribuo to initialise...

There's a determinism problem in the TF C API with how it builds the gradient operations too. I've reported it upstream but no one has looked at it yet.