├── .github └── FUNDING.yml ├── Ch03 ├── README.md └── generic-ann-ch03.py ├── Ch04 ├── README.md └── generic-ann-ch04.py ├── Ch05 ├── README.md └── generic-ann-ch05.py ├── Ch06 ├── README.md └── generic-ann-ch06.py ├── Ch07 ├── README.md └── generic-ann-ch07.py ├── Ch08 ├── README.md └── generic-ann-ch08.py ├── Ch09 ├── MLP.py ├── README.md └── generic-ann-ch09.py ├── Ch10 ├── MLP.py ├── README.md ├── __pycache__ │ └── MLP.cpython-38.pyc └── generic-ann-ch10.py ├── Ch11 ├── Android │ ├── MLP.py │ ├── buildozer.spec │ ├── data_inputs.pkl │ ├── data_outputs.pkl │ ├── icon.png │ ├── main.py │ └── neural.kv ├── MLP.py ├── data_inputs.pkl ├── data_outputs.pkl ├── main.py └── neural.kv └── README.md /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /Ch03/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch03/README.md -------------------------------------------------------------------------------- /Ch03/generic-ann-ch03.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch03/generic-ann-ch03.py -------------------------------------------------------------------------------- /Ch04/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch04/README.md -------------------------------------------------------------------------------- /Ch04/generic-ann-ch04.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch04/generic-ann-ch04.py -------------------------------------------------------------------------------- /Ch05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch05/README.md -------------------------------------------------------------------------------- /Ch05/generic-ann-ch05.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch05/generic-ann-ch05.py -------------------------------------------------------------------------------- /Ch06/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch06/README.md -------------------------------------------------------------------------------- /Ch06/generic-ann-ch06.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch06/generic-ann-ch06.py -------------------------------------------------------------------------------- /Ch07/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch07/README.md -------------------------------------------------------------------------------- /Ch07/generic-ann-ch07.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch07/generic-ann-ch07.py -------------------------------------------------------------------------------- /Ch08/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch08/README.md -------------------------------------------------------------------------------- /Ch08/generic-ann-ch08.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch08/generic-ann-ch08.py -------------------------------------------------------------------------------- /Ch09/MLP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch09/MLP.py -------------------------------------------------------------------------------- /Ch09/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch09/README.md -------------------------------------------------------------------------------- /Ch09/generic-ann-ch09.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch09/generic-ann-ch09.py -------------------------------------------------------------------------------- /Ch10/MLP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch10/MLP.py -------------------------------------------------------------------------------- /Ch10/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch10/README.md -------------------------------------------------------------------------------- /Ch10/__pycache__/MLP.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch10/__pycache__/MLP.cpython-38.pyc -------------------------------------------------------------------------------- /Ch10/generic-ann-ch10.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch10/generic-ann-ch10.py -------------------------------------------------------------------------------- /Ch11/Android/MLP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch11/Android/MLP.py -------------------------------------------------------------------------------- /Ch11/Android/buildozer.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch11/Android/buildozer.spec -------------------------------------------------------------------------------- /Ch11/Android/data_inputs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch11/Android/data_inputs.pkl -------------------------------------------------------------------------------- /Ch11/Android/data_outputs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch11/Android/data_outputs.pkl -------------------------------------------------------------------------------- /Ch11/Android/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch11/Android/icon.png -------------------------------------------------------------------------------- /Ch11/Android/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch11/Android/main.py -------------------------------------------------------------------------------- /Ch11/Android/neural.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch11/Android/neural.kv -------------------------------------------------------------------------------- /Ch11/MLP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch11/MLP.py -------------------------------------------------------------------------------- /Ch11/data_inputs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch11/data_inputs.pkl -------------------------------------------------------------------------------- /Ch11/data_outputs.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch11/data_outputs.pkl -------------------------------------------------------------------------------- /Ch11/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch11/main.py -------------------------------------------------------------------------------- /Ch11/neural.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/Ch11/neural.kv -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ahmedfgad/IntroDLPython/HEAD/README.md --------------------------------------------------------------------------------