├── .gitignore ├── README.md ├── assignment └── assignment1 │ ├── a1_q1_exercises.py │ └── a1_q2_task1.py ├── lab ├── data │ ├── arvix_abstracts.txt │ ├── fire_theft.xls │ ├── friday.jpg │ ├── friday.tfrecord │ ├── heart.csv │ └── heart.txt ├── graphs │ └── no_frills │ │ └── events.out.tfevents.1504069182.sherlock-pc ├── linear_regression.py ├── logistic_log │ └── events.out.tfevents.1504094654.sherlock-pc ├── logistic_regression_mnist.py ├── process_data.py ├── processed │ ├── checkpoint │ ├── model3.ckpt-1.data-00000-of-00001 │ ├── model3.ckpt-1.index │ ├── model3.ckpt-1.meta │ ├── processed │ │ └── vocab_1000.tsv │ └── projector_config.pbtxt ├── simple_tf.py ├── tensorflow_optim.py ├── utils.py ├── word2vec.py └── word2vec_visualize.py └── note ├── slide1.md ├── slide2.md └── slide3.md /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | mnist 3 | text8.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/README.md -------------------------------------------------------------------------------- /assignment/assignment1/a1_q1_exercises.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/assignment/assignment1/a1_q1_exercises.py -------------------------------------------------------------------------------- /assignment/assignment1/a1_q2_task1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/assignment/assignment1/a1_q2_task1.py -------------------------------------------------------------------------------- /lab/data/arvix_abstracts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/data/arvix_abstracts.txt -------------------------------------------------------------------------------- /lab/data/fire_theft.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/data/fire_theft.xls -------------------------------------------------------------------------------- /lab/data/friday.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/data/friday.jpg -------------------------------------------------------------------------------- /lab/data/friday.tfrecord: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/data/friday.tfrecord -------------------------------------------------------------------------------- /lab/data/heart.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/data/heart.csv -------------------------------------------------------------------------------- /lab/data/heart.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/data/heart.txt -------------------------------------------------------------------------------- /lab/graphs/no_frills/events.out.tfevents.1504069182.sherlock-pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/graphs/no_frills/events.out.tfevents.1504069182.sherlock-pc -------------------------------------------------------------------------------- /lab/linear_regression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/linear_regression.py -------------------------------------------------------------------------------- /lab/logistic_log/events.out.tfevents.1504094654.sherlock-pc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/logistic_log/events.out.tfevents.1504094654.sherlock-pc -------------------------------------------------------------------------------- /lab/logistic_regression_mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/logistic_regression_mnist.py -------------------------------------------------------------------------------- /lab/process_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/process_data.py -------------------------------------------------------------------------------- /lab/processed/checkpoint: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/processed/checkpoint -------------------------------------------------------------------------------- /lab/processed/model3.ckpt-1.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/processed/model3.ckpt-1.data-00000-of-00001 -------------------------------------------------------------------------------- /lab/processed/model3.ckpt-1.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/processed/model3.ckpt-1.index -------------------------------------------------------------------------------- /lab/processed/model3.ckpt-1.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/processed/model3.ckpt-1.meta -------------------------------------------------------------------------------- /lab/processed/processed/vocab_1000.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/processed/processed/vocab_1000.tsv -------------------------------------------------------------------------------- /lab/processed/projector_config.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/processed/projector_config.pbtxt -------------------------------------------------------------------------------- /lab/simple_tf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/simple_tf.py -------------------------------------------------------------------------------- /lab/tensorflow_optim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/tensorflow_optim.py -------------------------------------------------------------------------------- /lab/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/utils.py -------------------------------------------------------------------------------- /lab/word2vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/word2vec.py -------------------------------------------------------------------------------- /lab/word2vec_visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/lab/word2vec_visualize.py -------------------------------------------------------------------------------- /note/slide1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/note/slide1.md -------------------------------------------------------------------------------- /note/slide2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/note/slide2.md -------------------------------------------------------------------------------- /note/slide3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/L1aoXingyu/tensorflow-beginner/HEAD/note/slide3.md --------------------------------------------------------------------------------