├── .gitattributes ├── .gitignore ├── MedicalSystem ├── 187279.ico ├── AboutForm.Designer.cs ├── AboutForm.cs ├── AboutForm.resx ├── App.config ├── EnterData.Designer.cs ├── EnterData.cs ├── EnterData.resx ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── MedicalSystem.csproj ├── Patient.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── SystemController.cs ├── NeuralNetworks.sln ├── NeuralNetworks ├── Layer.cs ├── NeuralNetwork.cs ├── NeuralNetworks.csproj ├── Neuron.cs ├── NeuronType.cs ├── PictureConverter.cs ├── Properties │ └── AssemblyInfo.cs └── Topology.cs └── NeuralNetworksTests ├── Images ├── Parasitized.png └── Unparasitized.png ├── NeuralNetworkTests.cs ├── NeuralNetworksTests.csproj ├── PictureConverterTests.cs ├── Properties └── AssemblyInfo.cs ├── heart.csv └── packages.config /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/.gitignore -------------------------------------------------------------------------------- /MedicalSystem/187279.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/MedicalSystem/187279.ico -------------------------------------------------------------------------------- /MedicalSystem/AboutForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/MedicalSystem/AboutForm.Designer.cs -------------------------------------------------------------------------------- /MedicalSystem/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/MedicalSystem/AboutForm.cs -------------------------------------------------------------------------------- /MedicalSystem/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/MedicalSystem/AboutForm.resx -------------------------------------------------------------------------------- /MedicalSystem/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/MedicalSystem/App.config -------------------------------------------------------------------------------- /MedicalSystem/EnterData.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/MedicalSystem/EnterData.Designer.cs -------------------------------------------------------------------------------- /MedicalSystem/EnterData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/MedicalSystem/EnterData.cs -------------------------------------------------------------------------------- /MedicalSystem/EnterData.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/MedicalSystem/EnterData.resx -------------------------------------------------------------------------------- /MedicalSystem/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/MedicalSystem/MainForm.Designer.cs -------------------------------------------------------------------------------- /MedicalSystem/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/MedicalSystem/MainForm.cs -------------------------------------------------------------------------------- /MedicalSystem/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/MedicalSystem/MainForm.resx -------------------------------------------------------------------------------- /MedicalSystem/MedicalSystem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/MedicalSystem/MedicalSystem.csproj -------------------------------------------------------------------------------- /MedicalSystem/Patient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/MedicalSystem/Patient.cs -------------------------------------------------------------------------------- /MedicalSystem/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/MedicalSystem/Program.cs -------------------------------------------------------------------------------- /MedicalSystem/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/MedicalSystem/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MedicalSystem/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/MedicalSystem/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /MedicalSystem/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/MedicalSystem/Properties/Resources.resx -------------------------------------------------------------------------------- /MedicalSystem/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/MedicalSystem/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /MedicalSystem/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/MedicalSystem/Properties/Settings.settings -------------------------------------------------------------------------------- /MedicalSystem/SystemController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/MedicalSystem/SystemController.cs -------------------------------------------------------------------------------- /NeuralNetworks.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/NeuralNetworks.sln -------------------------------------------------------------------------------- /NeuralNetworks/Layer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/NeuralNetworks/Layer.cs -------------------------------------------------------------------------------- /NeuralNetworks/NeuralNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/NeuralNetworks/NeuralNetwork.cs -------------------------------------------------------------------------------- /NeuralNetworks/NeuralNetworks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/NeuralNetworks/NeuralNetworks.csproj -------------------------------------------------------------------------------- /NeuralNetworks/Neuron.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/NeuralNetworks/Neuron.cs -------------------------------------------------------------------------------- /NeuralNetworks/NeuronType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/NeuralNetworks/NeuronType.cs -------------------------------------------------------------------------------- /NeuralNetworks/PictureConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/NeuralNetworks/PictureConverter.cs -------------------------------------------------------------------------------- /NeuralNetworks/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/NeuralNetworks/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NeuralNetworks/Topology.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/NeuralNetworks/Topology.cs -------------------------------------------------------------------------------- /NeuralNetworksTests/Images/Parasitized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/NeuralNetworksTests/Images/Parasitized.png -------------------------------------------------------------------------------- /NeuralNetworksTests/Images/Unparasitized.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/NeuralNetworksTests/Images/Unparasitized.png -------------------------------------------------------------------------------- /NeuralNetworksTests/NeuralNetworkTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/NeuralNetworksTests/NeuralNetworkTests.cs -------------------------------------------------------------------------------- /NeuralNetworksTests/NeuralNetworksTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/NeuralNetworksTests/NeuralNetworksTests.csproj -------------------------------------------------------------------------------- /NeuralNetworksTests/PictureConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/NeuralNetworksTests/PictureConverterTests.cs -------------------------------------------------------------------------------- /NeuralNetworksTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/NeuralNetworksTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /NeuralNetworksTests/heart.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/NeuralNetworksTests/heart.csv -------------------------------------------------------------------------------- /NeuralNetworksTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shwanoff/neuralnetworks/HEAD/NeuralNetworksTests/packages.config --------------------------------------------------------------------------------