# SciSharp-Stack-Examples
**Repository Path**: BuLuoPiaoYu/SciSharp-Stack-Examples
## Basic Information
- **Project Name**: SciSharp-Stack-Examples
- **Description**: Practical examples written in SciSharp's machine learning libraries
- **Primary Language**: Unknown
- **License**: Apache-2.0
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-09-15
- **Last Updated**: 2021-01-05
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# SciSharp STACK Examples
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.
[](https://gitter.im/sci-sharp/community)
Requirements:
* [.NET Core 3.1](https://dotnet.microsoft.com/download/dotnet-core/3.1)
* [Visual Studio 2019](https://visualstudio.microsoft.com/vs/) or [Visual Studio Code](https://code.visualstudio.com/)
Run specific example in shell:
```cs
// 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"
```
Example runner will download all the required files like training data and model pb files.
* [Hello World](src/TensorFlowNET.Examples/HelloWorld.cs)
* [Basic Operations](src/TensorFlowNET.Examples/BasicOperations.cs)
* [Linear Regression](src/TensorFlowNET.Examples/BasicModels/LinearRegression.cs)
* [Logistic Regression](src/TensorFlowNET.Examples/BasicModels/LogisticRegression.cs)
* [Nearest Neighbor](src/TensorFlowNET.Examples/BasicModels/NearestNeighbor.cs)
* [Naive Bayes Classification](src/TensorFlowNET.Examples/BasicModels/NaiveBayesClassifier.cs)
* [Full Connected Neural Network](src/TensorFlowNET.Examples/ImageProcess/DigitRecognitionNN.cs)
* [Image Processing](src/TensorFlowNET.Examples/ImageProcessing)
* [K-means Clustering](src/TensorFlowNET.Examples/BasicModels/KMeansClustering.cs)
* [NN XOR](src/TensorFlowNET.Examples/BasicModels/NeuralNetXor.cs)
* [Object Detection](src/TensorFlowNET.Examples/ImageProcessing/ObjectDetection.cs)
* [Text Classification](src/TensorFlowNET.Examples/TextProcessing/BinaryTextClassification.cs)
* [CNN Text Classification](src/TensorFlowNET.Examples/TextProcessing/cnn_models/VdCnn.cs)
* [MNIST CNN](src/TensorFlowNET.Examples/ImageProcessing/DigitRecognitionCNN.cs)
* [MNIST RNN](src/TensorFlowNET.Examples/ImageProcessing/DigitRecognitionRNN.cs)
* [MNIST LSTM](src/TensorFlowNET.Examples/ImageProcessing/DigitRecognitionLSTM.cs)
* [Named Entity Recognition](src/TensorFlowNET.Examples/TextProcessing/NER)
* [Transfer Learning for Image Classification in InceptionV3](src/TensorFlowNET.Examples/ImageProcessing/RetrainClassifierWithInceptionV3.cs)
* [CNN In Your Own Dataset](src/TensorFlowNET.Examples/CnnInYourOwnData/CnnInYourOwnData.cs)
### Welcome to PR your example to us.
Your contribution will make .NET community better than ever.
TensorFlow.NET is a part of [SciSharp STACK](https://scisharp.github.io/SciSharp/)
