TensorFlow.NET icon indicating copy to clipboard operation
TensorFlow.NET copied to clipboard

.NET Standard bindings for Google's TensorFlow for developing, training and deploying Machine Learning models in C# and F#.

Results 218 TensorFlow.NET issues
Sort by recently updated
recently updated
newest added

Hello, I'm trying to translate a very basic model from Python to C#. ```cs using System; using System.Collections.Generic; using Tensorflow; using Tensorflow.Keras; using Tensorflow.Keras.Datasets; using Tensorflow.Keras.Engine; using Tensorflow.Keras.Losses; using Tensorflow.Keras.Optimizers;...

no ones_like is there, but np.zeros_like is missing.

If I try to check if an NDArray is null, I get strange behavior: ``` NDArray n = null; bool b1 = n is null; // TRUE bool b2 =...

The following doesn't work: ``` var n = new NDArray( b, new Shape( 64, 32, 32, 3 ), TF_DataType.TF_FLOAT ) // b is byte array of size 196608 ``` Error:...

Or does the latest version already work with TensorFlow 2.9.x?

I code a model for testing which takes 2 differnt tensors as input as follows: ``` Tensor input_wide = keras.Input(5); Tensor input_deep = keras.Input(6); var hidden1 = keras.layers.Dense(30, activation: keras.activations.Relu).Apply(input_deep);...

`Tensorflow.Binding` class contains method `ts_with`. I can't find anything about it in the documentation.

Is there an example of how to save a trained model, I have spent a significant amount of time trying to figure it out, but I am unsuccessful.

There is an issue with a call from load_weights to HDF5CSharp.dll. This is the error I get: System.IO.FileLoadException: 'Could not load file or assembly 'HDF5CSharp, Version=1.12.5.0, Culture=neutral, PublicKeyToken=null' or one...

After reviewing `tf.*` methods, It seems that we miss a lot of generated functions that are available in other classes like `gen_ops`, `ops`, `variable_scope`, `control_flow_ops`. From my understanding, the classes...

help wanted
missing feature/s