├── IDL_notes.pdf ├── README.md ├── ex1 ├── .idea │ ├── .gitignore │ ├── .name │ ├── desktop.ini │ ├── ex1.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ ├── desktop.ini │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ ├── other.xml │ └── vcs.xml ├── Data │ ├── FashionMNIST │ │ ├── desktop.ini │ │ └── raw │ │ │ ├── desktop.ini │ │ │ ├── t10k-images-idx3-ubyte │ │ │ ├── t10k-images-idx3-ubyte.gz │ │ │ ├── t10k-labels-idx1-ubyte │ │ │ ├── t10k-labels-idx1-ubyte.gz │ │ │ ├── train-images-idx3-ubyte │ │ │ ├── train-images-idx3-ubyte.gz │ │ │ ├── train-labels-idx1-ubyte │ │ │ └── train-labels-idx1-ubyte.gz │ ├── desktop.ini │ ├── neg_A0201.txt │ └── pos_A0201.txt ├── README.txt ├── conf_mat.JPG ├── desktop.ini ├── ex1-desciption.pdf ├── ex1-sol.ipynb ├── ex1.pdf ├── ex1_208287599_207206517.zip ├── optimize_seq_plot.png ├── sol1(Hadar Sharvit’s copy Oct 27 084426).docx ├── sol1.py ├── test.py └── test_train_loss_fig.png ├── ex2 ├── .idea │ ├── .gitignore │ ├── desktop.ini │ ├── ex2.iml │ ├── inspectionProfiles │ │ ├── Project_Default.xml │ │ ├── desktop.ini │ │ └── profiles_settings.xml │ ├── misc.xml │ ├── modules.xml │ └── vcs.xml ├── IMDB Dataset.csv ├── desktop.ini ├── loader.py └── sentiment_start.py └── ex3 └── sol3.py /IDL_notes.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/IDL_notes.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/README.md -------------------------------------------------------------------------------- /ex1/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/.idea/.gitignore -------------------------------------------------------------------------------- /ex1/.idea/.name: -------------------------------------------------------------------------------- 1 | sol1.py -------------------------------------------------------------------------------- /ex1/.idea/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/.idea/desktop.ini -------------------------------------------------------------------------------- /ex1/.idea/ex1.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/.idea/ex1.iml -------------------------------------------------------------------------------- /ex1/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /ex1/.idea/inspectionProfiles/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/.idea/inspectionProfiles/desktop.ini -------------------------------------------------------------------------------- /ex1/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /ex1/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/.idea/misc.xml -------------------------------------------------------------------------------- /ex1/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/.idea/modules.xml -------------------------------------------------------------------------------- /ex1/.idea/other.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/.idea/other.xml -------------------------------------------------------------------------------- /ex1/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/.idea/vcs.xml -------------------------------------------------------------------------------- /ex1/Data/FashionMNIST/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/Data/FashionMNIST/desktop.ini -------------------------------------------------------------------------------- /ex1/Data/FashionMNIST/raw/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/Data/FashionMNIST/raw/desktop.ini -------------------------------------------------------------------------------- /ex1/Data/FashionMNIST/raw/t10k-images-idx3-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/Data/FashionMNIST/raw/t10k-images-idx3-ubyte -------------------------------------------------------------------------------- /ex1/Data/FashionMNIST/raw/t10k-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/Data/FashionMNIST/raw/t10k-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /ex1/Data/FashionMNIST/raw/t10k-labels-idx1-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/Data/FashionMNIST/raw/t10k-labels-idx1-ubyte -------------------------------------------------------------------------------- /ex1/Data/FashionMNIST/raw/t10k-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/Data/FashionMNIST/raw/t10k-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /ex1/Data/FashionMNIST/raw/train-images-idx3-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/Data/FashionMNIST/raw/train-images-idx3-ubyte -------------------------------------------------------------------------------- /ex1/Data/FashionMNIST/raw/train-images-idx3-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/Data/FashionMNIST/raw/train-images-idx3-ubyte.gz -------------------------------------------------------------------------------- /ex1/Data/FashionMNIST/raw/train-labels-idx1-ubyte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/Data/FashionMNIST/raw/train-labels-idx1-ubyte -------------------------------------------------------------------------------- /ex1/Data/FashionMNIST/raw/train-labels-idx1-ubyte.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/Data/FashionMNIST/raw/train-labels-idx1-ubyte.gz -------------------------------------------------------------------------------- /ex1/Data/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/Data/desktop.ini -------------------------------------------------------------------------------- /ex1/Data/neg_A0201.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/Data/neg_A0201.txt -------------------------------------------------------------------------------- /ex1/Data/pos_A0201.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/Data/pos_A0201.txt -------------------------------------------------------------------------------- /ex1/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/README.txt -------------------------------------------------------------------------------- /ex1/conf_mat.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/conf_mat.JPG -------------------------------------------------------------------------------- /ex1/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/desktop.ini -------------------------------------------------------------------------------- /ex1/ex1-desciption.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/ex1-desciption.pdf -------------------------------------------------------------------------------- /ex1/ex1-sol.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/ex1-sol.ipynb -------------------------------------------------------------------------------- /ex1/ex1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/ex1.pdf -------------------------------------------------------------------------------- /ex1/ex1_208287599_207206517.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/ex1_208287599_207206517.zip -------------------------------------------------------------------------------- /ex1/optimize_seq_plot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/optimize_seq_plot.png -------------------------------------------------------------------------------- /ex1/sol1(Hadar Sharvit’s copy Oct 27 084426).docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/sol1(Hadar Sharvit’s copy Oct 27 084426).docx -------------------------------------------------------------------------------- /ex1/sol1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/sol1.py -------------------------------------------------------------------------------- /ex1/test.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ex1/test_train_loss_fig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex1/test_train_loss_fig.png -------------------------------------------------------------------------------- /ex2/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex2/.idea/.gitignore -------------------------------------------------------------------------------- /ex2/.idea/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex2/.idea/desktop.ini -------------------------------------------------------------------------------- /ex2/.idea/ex2.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex2/.idea/ex2.iml -------------------------------------------------------------------------------- /ex2/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex2/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /ex2/.idea/inspectionProfiles/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex2/.idea/inspectionProfiles/desktop.ini -------------------------------------------------------------------------------- /ex2/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex2/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /ex2/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex2/.idea/misc.xml -------------------------------------------------------------------------------- /ex2/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex2/.idea/modules.xml -------------------------------------------------------------------------------- /ex2/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex2/.idea/vcs.xml -------------------------------------------------------------------------------- /ex2/IMDB Dataset.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex2/IMDB Dataset.csv -------------------------------------------------------------------------------- /ex2/desktop.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex2/desktop.ini -------------------------------------------------------------------------------- /ex2/loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex2/loader.py -------------------------------------------------------------------------------- /ex2/sentiment_start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex2/sentiment_start.py -------------------------------------------------------------------------------- /ex3/sol3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Hadar933/Intro-to-Deep-Learning/HEAD/ex3/sol3.py --------------------------------------------------------------------------------