https://github.com/xrsrke/neural-network-from-scratch
Neural network from scratch
https://github.com/xrsrke/neural-network-from-scratch
Last synced: 3 months ago
JSON representation
Neural network from scratch
- Host: GitHub
- URL: https://github.com/xrsrke/neural-network-from-scratch
- Owner: xrsrke
- License: mit
- Created: 2022-08-18T23:57:57.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-08-19T04:16:47.000Z (almost 3 years ago)
- Last Synced: 2024-04-23T17:51:58.705Z (about 1 year ago)
- Language: Jupyter Notebook
- Homepage: https://xrsrke.github.io/neural-network-from-scratch/
- Size: 297 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
neural-network-from-scratch
================``` python
neural_network_from_scratch.core??
```This file will become your README and also the index of your
documentation.## Install
``` sh
pip install neural_network_from_scratch
```## How to use
Fill me in please! Don’t forget code examples:
``` python
#minus_one()
```NameError: name 'minus_one' is not defined
``` python
#foo()
`````` python
#foo?
`````` python
#add_one(2)
```NameError: name 'add_one' is not defined
``` python
#foo(1)
```NameError: name 'hoo' is not defined
``` python
1+1
```2
``` python
#hoo??
```Object `hoo` not found.
``` python
#hoo(1)
```NameError: name 'hoo' is not defined
``` python
#activation??
```Object `activation` not found.
``` python
#activation(10)
```NameError: name 'activation' is not defined