├── .gitignore ├── 1-3.py ├── 1-4-gpu.py ├── 1-4-gradient.py ├── 1-5-datasets.py ├── 1-5-torchvision.py ├── 1-Assignment.py ├── 2-1-perceptron.py ├── 2-2.py ├── 2-3.py ├── 2-4.py ├── 2-5.py ├── 2-Assignment.py ├── 3-1.py ├── 3-2_3.py ├── 3-4_5.py ├── 3-Assignment.py ├── 4-3.py ├── 4-4.py ├── 4-5.py ├── 4-Assignment.py ├── Admission_Predict.csv ├── Dockerfile ├── Iris.csv ├── Readme.md ├── docker-compose.yml ├── jupyter_hello.ipynb ├── jupyter_hello.py ├── kc_house_data.csv ├── linux ├── install-docker ├── install-nvidia-docker └── run-nvidia-docker ├── mac └── install-docker ├── mushrooms.csv └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints/ 2 | .vscode/ 3 | -------------------------------------------------------------------------------- /1-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/1-3.py -------------------------------------------------------------------------------- /1-4-gpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/1-4-gpu.py -------------------------------------------------------------------------------- /1-4-gradient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/1-4-gradient.py -------------------------------------------------------------------------------- /1-5-datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/1-5-datasets.py -------------------------------------------------------------------------------- /1-5-torchvision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/1-5-torchvision.py -------------------------------------------------------------------------------- /1-Assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/1-Assignment.py -------------------------------------------------------------------------------- /2-1-perceptron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/2-1-perceptron.py -------------------------------------------------------------------------------- /2-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/2-2.py -------------------------------------------------------------------------------- /2-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/2-3.py -------------------------------------------------------------------------------- /2-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/2-4.py -------------------------------------------------------------------------------- /2-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/2-5.py -------------------------------------------------------------------------------- /2-Assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/2-Assignment.py -------------------------------------------------------------------------------- /3-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/3-1.py -------------------------------------------------------------------------------- /3-2_3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/3-2_3.py -------------------------------------------------------------------------------- /3-4_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/3-4_5.py -------------------------------------------------------------------------------- /3-Assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/3-Assignment.py -------------------------------------------------------------------------------- /4-3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/4-3.py -------------------------------------------------------------------------------- /4-4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/4-4.py -------------------------------------------------------------------------------- /4-5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/4-5.py -------------------------------------------------------------------------------- /4-Assignment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/4-Assignment.py -------------------------------------------------------------------------------- /Admission_Predict.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/Admission_Predict.csv -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/Dockerfile -------------------------------------------------------------------------------- /Iris.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/Iris.csv -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /jupyter_hello.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/jupyter_hello.ipynb -------------------------------------------------------------------------------- /jupyter_hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/jupyter_hello.py -------------------------------------------------------------------------------- /kc_house_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/kc_house_data.csv -------------------------------------------------------------------------------- /linux/install-docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/linux/install-docker -------------------------------------------------------------------------------- /linux/install-nvidia-docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/linux/install-nvidia-docker -------------------------------------------------------------------------------- /linux/run-nvidia-docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/linux/run-nvidia-docker -------------------------------------------------------------------------------- /mac/install-docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/mac/install-docker -------------------------------------------------------------------------------- /mushrooms.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/mushrooms.csv -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PacktPublishing/PyTorch-Deep-Learning-in-7-Days/HEAD/readme.md --------------------------------------------------------------------------------