├── .github └── FUNDING.yml ├── .gitignore ├── BinaryClassification ├── HeartDisease │ ├── HeartDisease.csproj │ ├── Program.cs │ ├── README.md │ ├── assets │ │ └── data.png │ └── processed.cleveland.data.csv ├── LstmDemo │ ├── LstmDemo.csproj │ ├── Program.cs │ ├── README.md │ ├── assets │ │ ├── dataset.jpg │ │ └── network.png │ └── imdb_data.zip ├── MovieSentiment │ ├── MovieSentiment.csproj │ ├── Program.cs │ ├── README.md │ └── assets │ │ ├── dataset.jpg │ │ └── network.png └── SpamDetection │ ├── Program.cs │ ├── README.md │ ├── SpamDetection.csproj │ ├── assets │ └── data.png │ └── spam.tsv ├── CNTKUtil ├── BatchUtil.cs ├── CNTKUtil.csproj ├── DataUtil.cs ├── Gan.cs ├── GaussianRandom.cs ├── LstmSequenceClassifier.cs ├── NetUtil.cs ├── ReduceLROnPlateau.cs ├── StyleTransfer.cs └── TrainingEngine.cs ├── Misc ├── GanDemo │ ├── GanDemo.csproj │ ├── Program.cs │ ├── README.md │ ├── assets │ │ ├── cifar10.png │ │ ├── discriminator.png │ │ ├── gan.png │ │ └── generator.png │ └── frog_pictures.zip └── StyleTransferDemo │ ├── Program.cs │ ├── README.md │ ├── StyleTransferDemo.csproj │ ├── assets │ ├── content.png │ └── style.png │ ├── content.png │ ├── style.png │ ├── style_scream.png │ └── style_vangogh.png ├── MulticlassClassification ├── CatsAndDogs │ ├── CatsAndDogs.csproj │ ├── Program.cs │ ├── README.md │ └── assets │ │ ├── datafile.png │ │ ├── mapping.jpg │ │ ├── network1.png │ │ └── network2.png ├── DigitRecognition │ ├── DigitRecognition.csproj │ ├── Program.cs │ ├── README.md │ └── assets │ │ ├── datafile.png │ │ ├── mnist.png │ │ └── mnist_hard.png └── HotdogNotHotdog │ ├── HotdogNotHotdog.csproj │ ├── Program.cs │ ├── README.md │ └── assets │ ├── hotdogs.jpg │ ├── mapping.jpg │ ├── network.png │ └── seefood.jpg ├── README.md ├── Regression ├── HousePricePrediction │ ├── HousePricePrediction.csproj │ ├── Program.cs │ ├── README.md │ ├── assets │ │ ├── data.png │ │ └── network.png │ └── california_housing.csv └── TaxiFarePrediction │ ├── Program.cs │ ├── README.md │ ├── TaxiFarePrediction.csproj │ ├── assets │ └── data.png │ └── yellow_tripdata_2018-12_small.csv └── assets └── DLR-medium.jpg /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/.gitignore -------------------------------------------------------------------------------- /BinaryClassification/HeartDisease/HeartDisease.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/BinaryClassification/HeartDisease/HeartDisease.csproj -------------------------------------------------------------------------------- /BinaryClassification/HeartDisease/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/BinaryClassification/HeartDisease/Program.cs -------------------------------------------------------------------------------- /BinaryClassification/HeartDisease/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/BinaryClassification/HeartDisease/README.md -------------------------------------------------------------------------------- /BinaryClassification/HeartDisease/assets/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/BinaryClassification/HeartDisease/assets/data.png -------------------------------------------------------------------------------- /BinaryClassification/HeartDisease/processed.cleveland.data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/BinaryClassification/HeartDisease/processed.cleveland.data.csv -------------------------------------------------------------------------------- /BinaryClassification/LstmDemo/LstmDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/BinaryClassification/LstmDemo/LstmDemo.csproj -------------------------------------------------------------------------------- /BinaryClassification/LstmDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/BinaryClassification/LstmDemo/Program.cs -------------------------------------------------------------------------------- /BinaryClassification/LstmDemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/BinaryClassification/LstmDemo/README.md -------------------------------------------------------------------------------- /BinaryClassification/LstmDemo/assets/dataset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/BinaryClassification/LstmDemo/assets/dataset.jpg -------------------------------------------------------------------------------- /BinaryClassification/LstmDemo/assets/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/BinaryClassification/LstmDemo/assets/network.png -------------------------------------------------------------------------------- /BinaryClassification/LstmDemo/imdb_data.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/BinaryClassification/LstmDemo/imdb_data.zip -------------------------------------------------------------------------------- /BinaryClassification/MovieSentiment/MovieSentiment.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/BinaryClassification/MovieSentiment/MovieSentiment.csproj -------------------------------------------------------------------------------- /BinaryClassification/MovieSentiment/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/BinaryClassification/MovieSentiment/Program.cs -------------------------------------------------------------------------------- /BinaryClassification/MovieSentiment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/BinaryClassification/MovieSentiment/README.md -------------------------------------------------------------------------------- /BinaryClassification/MovieSentiment/assets/dataset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/BinaryClassification/MovieSentiment/assets/dataset.jpg -------------------------------------------------------------------------------- /BinaryClassification/MovieSentiment/assets/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/BinaryClassification/MovieSentiment/assets/network.png -------------------------------------------------------------------------------- /BinaryClassification/SpamDetection/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/BinaryClassification/SpamDetection/Program.cs -------------------------------------------------------------------------------- /BinaryClassification/SpamDetection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/BinaryClassification/SpamDetection/README.md -------------------------------------------------------------------------------- /BinaryClassification/SpamDetection/SpamDetection.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/BinaryClassification/SpamDetection/SpamDetection.csproj -------------------------------------------------------------------------------- /BinaryClassification/SpamDetection/assets/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/BinaryClassification/SpamDetection/assets/data.png -------------------------------------------------------------------------------- /BinaryClassification/SpamDetection/spam.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/BinaryClassification/SpamDetection/spam.tsv -------------------------------------------------------------------------------- /CNTKUtil/BatchUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/CNTKUtil/BatchUtil.cs -------------------------------------------------------------------------------- /CNTKUtil/CNTKUtil.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/CNTKUtil/CNTKUtil.csproj -------------------------------------------------------------------------------- /CNTKUtil/DataUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/CNTKUtil/DataUtil.cs -------------------------------------------------------------------------------- /CNTKUtil/Gan.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/CNTKUtil/Gan.cs -------------------------------------------------------------------------------- /CNTKUtil/GaussianRandom.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/CNTKUtil/GaussianRandom.cs -------------------------------------------------------------------------------- /CNTKUtil/LstmSequenceClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/CNTKUtil/LstmSequenceClassifier.cs -------------------------------------------------------------------------------- /CNTKUtil/NetUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/CNTKUtil/NetUtil.cs -------------------------------------------------------------------------------- /CNTKUtil/ReduceLROnPlateau.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/CNTKUtil/ReduceLROnPlateau.cs -------------------------------------------------------------------------------- /CNTKUtil/StyleTransfer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/CNTKUtil/StyleTransfer.cs -------------------------------------------------------------------------------- /CNTKUtil/TrainingEngine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/CNTKUtil/TrainingEngine.cs -------------------------------------------------------------------------------- /Misc/GanDemo/GanDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Misc/GanDemo/GanDemo.csproj -------------------------------------------------------------------------------- /Misc/GanDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Misc/GanDemo/Program.cs -------------------------------------------------------------------------------- /Misc/GanDemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Misc/GanDemo/README.md -------------------------------------------------------------------------------- /Misc/GanDemo/assets/cifar10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Misc/GanDemo/assets/cifar10.png -------------------------------------------------------------------------------- /Misc/GanDemo/assets/discriminator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Misc/GanDemo/assets/discriminator.png -------------------------------------------------------------------------------- /Misc/GanDemo/assets/gan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Misc/GanDemo/assets/gan.png -------------------------------------------------------------------------------- /Misc/GanDemo/assets/generator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Misc/GanDemo/assets/generator.png -------------------------------------------------------------------------------- /Misc/GanDemo/frog_pictures.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Misc/GanDemo/frog_pictures.zip -------------------------------------------------------------------------------- /Misc/StyleTransferDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Misc/StyleTransferDemo/Program.cs -------------------------------------------------------------------------------- /Misc/StyleTransferDemo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Misc/StyleTransferDemo/README.md -------------------------------------------------------------------------------- /Misc/StyleTransferDemo/StyleTransferDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Misc/StyleTransferDemo/StyleTransferDemo.csproj -------------------------------------------------------------------------------- /Misc/StyleTransferDemo/assets/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Misc/StyleTransferDemo/assets/content.png -------------------------------------------------------------------------------- /Misc/StyleTransferDemo/assets/style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Misc/StyleTransferDemo/assets/style.png -------------------------------------------------------------------------------- /Misc/StyleTransferDemo/content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Misc/StyleTransferDemo/content.png -------------------------------------------------------------------------------- /Misc/StyleTransferDemo/style.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Misc/StyleTransferDemo/style.png -------------------------------------------------------------------------------- /Misc/StyleTransferDemo/style_scream.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Misc/StyleTransferDemo/style_scream.png -------------------------------------------------------------------------------- /Misc/StyleTransferDemo/style_vangogh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Misc/StyleTransferDemo/style_vangogh.png -------------------------------------------------------------------------------- /MulticlassClassification/CatsAndDogs/CatsAndDogs.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/MulticlassClassification/CatsAndDogs/CatsAndDogs.csproj -------------------------------------------------------------------------------- /MulticlassClassification/CatsAndDogs/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/MulticlassClassification/CatsAndDogs/Program.cs -------------------------------------------------------------------------------- /MulticlassClassification/CatsAndDogs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/MulticlassClassification/CatsAndDogs/README.md -------------------------------------------------------------------------------- /MulticlassClassification/CatsAndDogs/assets/datafile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/MulticlassClassification/CatsAndDogs/assets/datafile.png -------------------------------------------------------------------------------- /MulticlassClassification/CatsAndDogs/assets/mapping.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/MulticlassClassification/CatsAndDogs/assets/mapping.jpg -------------------------------------------------------------------------------- /MulticlassClassification/CatsAndDogs/assets/network1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/MulticlassClassification/CatsAndDogs/assets/network1.png -------------------------------------------------------------------------------- /MulticlassClassification/CatsAndDogs/assets/network2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/MulticlassClassification/CatsAndDogs/assets/network2.png -------------------------------------------------------------------------------- /MulticlassClassification/DigitRecognition/DigitRecognition.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/MulticlassClassification/DigitRecognition/DigitRecognition.csproj -------------------------------------------------------------------------------- /MulticlassClassification/DigitRecognition/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/MulticlassClassification/DigitRecognition/Program.cs -------------------------------------------------------------------------------- /MulticlassClassification/DigitRecognition/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/MulticlassClassification/DigitRecognition/README.md -------------------------------------------------------------------------------- /MulticlassClassification/DigitRecognition/assets/datafile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/MulticlassClassification/DigitRecognition/assets/datafile.png -------------------------------------------------------------------------------- /MulticlassClassification/DigitRecognition/assets/mnist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/MulticlassClassification/DigitRecognition/assets/mnist.png -------------------------------------------------------------------------------- /MulticlassClassification/DigitRecognition/assets/mnist_hard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/MulticlassClassification/DigitRecognition/assets/mnist_hard.png -------------------------------------------------------------------------------- /MulticlassClassification/HotdogNotHotdog/HotdogNotHotdog.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/MulticlassClassification/HotdogNotHotdog/HotdogNotHotdog.csproj -------------------------------------------------------------------------------- /MulticlassClassification/HotdogNotHotdog/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/MulticlassClassification/HotdogNotHotdog/Program.cs -------------------------------------------------------------------------------- /MulticlassClassification/HotdogNotHotdog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/MulticlassClassification/HotdogNotHotdog/README.md -------------------------------------------------------------------------------- /MulticlassClassification/HotdogNotHotdog/assets/hotdogs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/MulticlassClassification/HotdogNotHotdog/assets/hotdogs.jpg -------------------------------------------------------------------------------- /MulticlassClassification/HotdogNotHotdog/assets/mapping.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/MulticlassClassification/HotdogNotHotdog/assets/mapping.jpg -------------------------------------------------------------------------------- /MulticlassClassification/HotdogNotHotdog/assets/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/MulticlassClassification/HotdogNotHotdog/assets/network.png -------------------------------------------------------------------------------- /MulticlassClassification/HotdogNotHotdog/assets/seefood.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/MulticlassClassification/HotdogNotHotdog/assets/seefood.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/README.md -------------------------------------------------------------------------------- /Regression/HousePricePrediction/HousePricePrediction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Regression/HousePricePrediction/HousePricePrediction.csproj -------------------------------------------------------------------------------- /Regression/HousePricePrediction/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Regression/HousePricePrediction/Program.cs -------------------------------------------------------------------------------- /Regression/HousePricePrediction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Regression/HousePricePrediction/README.md -------------------------------------------------------------------------------- /Regression/HousePricePrediction/assets/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Regression/HousePricePrediction/assets/data.png -------------------------------------------------------------------------------- /Regression/HousePricePrediction/assets/network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Regression/HousePricePrediction/assets/network.png -------------------------------------------------------------------------------- /Regression/HousePricePrediction/california_housing.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Regression/HousePricePrediction/california_housing.csv -------------------------------------------------------------------------------- /Regression/TaxiFarePrediction/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Regression/TaxiFarePrediction/Program.cs -------------------------------------------------------------------------------- /Regression/TaxiFarePrediction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Regression/TaxiFarePrediction/README.md -------------------------------------------------------------------------------- /Regression/TaxiFarePrediction/TaxiFarePrediction.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Regression/TaxiFarePrediction/TaxiFarePrediction.csproj -------------------------------------------------------------------------------- /Regression/TaxiFarePrediction/assets/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Regression/TaxiFarePrediction/assets/data.png -------------------------------------------------------------------------------- /Regression/TaxiFarePrediction/yellow_tripdata_2018-12_small.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/Regression/TaxiFarePrediction/yellow_tripdata_2018-12_small.csv -------------------------------------------------------------------------------- /assets/DLR-medium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdfarragher/DLR/HEAD/assets/DLR-medium.jpg --------------------------------------------------------------------------------