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

Keras.NET is a high-level neural networks API for C# and F#, with Python Binding and capable of running on top of TensorFlow, CNTK, or Theano.

Results 51 Keras.NET issues
Sort by recently updated
recently updated
newest added

Hello. I am currently working on CNN in Keras.NET and I have some troubles with the model.predict method. It refuses to work because I can't find a way to give...

I'm trying to do a `Conv1D` layer with variable features 1st attempt ``` let model = new Sequential() model.Add(new Input(Shape(3))) model.Add(new Conv1D(50, 1 )) ``` > Error: Python.Runtime.PythonException: ValueError :...

standard output when fitting the model does not show, nor does `model.summary()` when working in VSCode. Is there a way to capture the std out ?

So there is a native implementation of NumPy in the SciSharp stack called [NumSharp](https://github.com/SciSharp/NumSharp), but it seems like this library accepts inputs from [Numpy.NET](https://github.com/SciSharp/Numpy.NET). Is there some way to call...

Hello all, I recognized unability to call BaseModel.Predict() from WPF application. It is build under net6.0-windows and finishes with error: Python.Runtime.PythonException: 'AttributeError : 'NoneType' object has no attribute 'write''. I...

Hi, I have a computer with 4 GPU installed , however , I would like to select only 1 specific GPU to do model prediction using keras.NET. How can I...

Hi, I tried using keras.net , I was able to do model.predict for images by running through a loop and predict them one by one. However I discovered that it...

Hello: I found a few pre-trained models from internet. They come with .H5 model file and a Json format file. The following is one Json format file: styMA.json { "class_name":...

Hello: I see there is one Keras implemention for StyleGan2 at this Github repo: https://github.com/leoHeidel/stylegan2-keras But the repo is written in Python, can I can never use Python based model...

Hello, I've managed to import Keras.NET into Unity without getting any compilation errors. However, when I make changes in the code that are related to Keras.NET, Unity crushes sometimes when...