You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
1022 B
22 lines
1022 B
+++
|
|
author = "Maik de Kruif"
|
|
title = "Toy-Neural-Network-Py"
|
|
start_date = 2019-03-02
|
|
end_date = 2021-06-07
|
|
company_name = "Personal"
|
|
company_url = "https://maik.dev"
|
|
description = "Neural Network Python library for experimenting with Machine Learning."
|
|
source_code = "https://github.com/maikka39/Toy-Neural-Network-Py"
|
|
skills = [
|
|
"Machine Learning",
|
|
"Neural Networks",
|
|
"Matrix calculations",
|
|
"Overheating hardware",
|
|
]
|
|
+++
|
|
|
|
Neural Network Python library for experimenting with Machine Learning.
|
|
|
|
Based on the amazing work done by [Daniel Shiffman](https://github.com/shiffman) at [TheCodingTrain](https://thecodingtrain.com/), I built my own Neural Network library in Python. I used [Chapter 10: Neural Networks](https://natureofcode.com/neural-networks/) of his Nature of Code book as a reference.
|
|
|
|
Building this library was a very valuable learning experience. It’s helped me grasp the underlying principles of these models, from basic neuron structures to more complex algorithms like backpropagation.
|
|
|