├── .gitattributes ├── .gitignore ├── LICENSE.md ├── README.md ├── SharpLearning.Examples.Integration.sln ├── SharpLearning.Examples.sln ├── azure-pipelines.yaml └── src ├── SharpLearning.Examples.Integration ├── CntkIntegrations.cs ├── DataSetUtilities.cs ├── Properties │ └── AssemblyInfo.cs ├── SharpLearning.Examples.Integration.csproj ├── app.config └── packages.config └── SharpLearning.Examples ├── Containers └── MatrixExamples.cs ├── CrossValidation ├── CrossValidationExamples.cs └── TrainTestSplitExamples.cs ├── FeatureTransformations └── FeatureNormalizationExample.cs ├── Guides ├── EnsembleLearningGuide.cs ├── HyperparameterTuningGuide.cs └── IntroductionGuide.cs ├── InputOutput └── CsvParserExamples.cs ├── Learners ├── ClassificationLearnerExamples.cs └── RegressionLearnerExamples.cs ├── LearningCurves └── LearningCurvesExamples.cs ├── Metrics ├── ClassificationMetricExamples.cs └── RegressionMetricExamples.cs ├── ModelSelection └── ClassificationFindBestDefaultModelExample.cs ├── NeuralNets ├── BatchNormalizationExamples.cs ├── ClassificationNeuralNetExamples.cs ├── OptimizerExamples.cs ├── RegressionNeuralNetExamples.cs └── ValidationSetForSelectingBestIterationExamples.cs ├── Optimization └── HyperparameterTuningExamples.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs └── Resources.resx ├── Resources ├── cifar10_test_small.csv ├── cifar10_train_small.csv ├── mnist_small_test.csv ├── mnist_small_train.csv └── winequality-white.csv ├── SharpLearning.Examples.csproj └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/README.md -------------------------------------------------------------------------------- /SharpLearning.Examples.Integration.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/SharpLearning.Examples.Integration.sln -------------------------------------------------------------------------------- /SharpLearning.Examples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/SharpLearning.Examples.sln -------------------------------------------------------------------------------- /azure-pipelines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/azure-pipelines.yaml -------------------------------------------------------------------------------- /src/SharpLearning.Examples.Integration/CntkIntegrations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples.Integration/CntkIntegrations.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples.Integration/DataSetUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples.Integration/DataSetUtilities.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples.Integration/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples.Integration/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples.Integration/SharpLearning.Examples.Integration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples.Integration/SharpLearning.Examples.Integration.csproj -------------------------------------------------------------------------------- /src/SharpLearning.Examples.Integration/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples.Integration/app.config -------------------------------------------------------------------------------- /src/SharpLearning.Examples.Integration/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples.Integration/packages.config -------------------------------------------------------------------------------- /src/SharpLearning.Examples/Containers/MatrixExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/Containers/MatrixExamples.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/CrossValidation/CrossValidationExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/CrossValidation/CrossValidationExamples.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/CrossValidation/TrainTestSplitExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/CrossValidation/TrainTestSplitExamples.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/FeatureTransformations/FeatureNormalizationExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/FeatureTransformations/FeatureNormalizationExample.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/Guides/EnsembleLearningGuide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/Guides/EnsembleLearningGuide.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/Guides/HyperparameterTuningGuide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/Guides/HyperparameterTuningGuide.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/Guides/IntroductionGuide.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/Guides/IntroductionGuide.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/InputOutput/CsvParserExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/InputOutput/CsvParserExamples.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/Learners/ClassificationLearnerExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/Learners/ClassificationLearnerExamples.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/Learners/RegressionLearnerExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/Learners/RegressionLearnerExamples.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/LearningCurves/LearningCurvesExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/LearningCurves/LearningCurvesExamples.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/Metrics/ClassificationMetricExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/Metrics/ClassificationMetricExamples.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/Metrics/RegressionMetricExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/Metrics/RegressionMetricExamples.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/ModelSelection/ClassificationFindBestDefaultModelExample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/ModelSelection/ClassificationFindBestDefaultModelExample.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/NeuralNets/BatchNormalizationExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/NeuralNets/BatchNormalizationExamples.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/NeuralNets/ClassificationNeuralNetExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/NeuralNets/ClassificationNeuralNetExamples.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/NeuralNets/OptimizerExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/NeuralNets/OptimizerExamples.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/NeuralNets/RegressionNeuralNetExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/NeuralNets/RegressionNeuralNetExamples.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/NeuralNets/ValidationSetForSelectingBestIterationExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/NeuralNets/ValidationSetForSelectingBestIterationExamples.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/Optimization/HyperparameterTuningExamples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/Optimization/HyperparameterTuningExamples.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/SharpLearning.Examples/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/Properties/Resources.resx -------------------------------------------------------------------------------- /src/SharpLearning.Examples/Resources/cifar10_test_small.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/Resources/cifar10_test_small.csv -------------------------------------------------------------------------------- /src/SharpLearning.Examples/Resources/cifar10_train_small.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/Resources/cifar10_train_small.csv -------------------------------------------------------------------------------- /src/SharpLearning.Examples/Resources/mnist_small_test.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/Resources/mnist_small_test.csv -------------------------------------------------------------------------------- /src/SharpLearning.Examples/Resources/mnist_small_train.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/Resources/mnist_small_train.csv -------------------------------------------------------------------------------- /src/SharpLearning.Examples/Resources/winequality-white.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/Resources/winequality-white.csv -------------------------------------------------------------------------------- /src/SharpLearning.Examples/SharpLearning.Examples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/SharpLearning.Examples.csproj -------------------------------------------------------------------------------- /src/SharpLearning.Examples/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdabros/SharpLearning.Examples/HEAD/src/SharpLearning.Examples/packages.config --------------------------------------------------------------------------------