GitHub - cym43/SciSharp-Stack-Examples: Practical examples written in SciSharp's machine learning libraries
This repo contains many practical examples written in SciSharp's machine learning libraries. If you still don't know how to use .NET for deep learning, getting started from here is your best choice.
Requirements:
Run specific example in shell:
// run all examples from source code dotnet run --project src/TensorFlowNET.Examples // run specific example dotnet run --project src/TensorFlowNET.Examples -ex "Linear Regression" // run in compiled library dotnet TensorFlowNET.Examples.dll -ex "MNIST CNN (Eager)"
Example runner will download all the required files like training data and model pb files.
- Hello World C#
- Basic Operations C#
- Linear Regression in Graph mode C#
- Linear Regression in Eager mode C#, F#
- Logistic Regression in Graph mode C#
- Logistic Regression in Eager mode C#
- Nearest Neighbor C#
- Naive Bayes Classification C#
- Full Connected Neural Network in Eager mode C#
- K-means Clustering C#
- NN XOR C#
- Object Detection in MobileNet C#
- Binary Text Classification C#
- CNN Text Classification C#
- MNIST FNN in Keras Functional API C#
- MNIST CNN in Graph mode C#
- MNIST RNN C#
- MNIST LSTM C#
- Named Entity Recognition C#
- Transfer Learning for Image Classification in InceptionV3 C#
- CNN In Your Own Dataset C#
Welcome to PR your example to us.
Your contribution will make .NET community better than ever.
