gitextract_iq8tfs9_/ ├── .gitignore ├── README.md ├── README副本.md ├── SOURCE/ │ ├── api_docs/ │ │ ├── cc/ │ │ │ ├── ClassEnv.md │ │ │ ├── ClassEnvWrapper.md │ │ │ ├── ClassRandomAccessFile.md │ │ │ ├── ClassSession.md │ │ │ ├── ClassStatus.md │ │ │ ├── ClassTensor.md │ │ │ ├── ClassTensorBuffer.md │ │ │ ├── ClassTensorShape.md │ │ │ ├── ClassTensorShapeIter.md │ │ │ ├── ClassTensorShapeUtils.md │ │ │ ├── ClassThread.md │ │ │ ├── ClassWritableFile.md │ │ │ ├── StructSessionOptions.md │ │ │ ├── StructState.md │ │ │ ├── StructTensorShapeDim.md │ │ │ ├── StructThreadOptions.md │ │ │ └── index.md │ │ ├── index.md │ │ └── python/ │ │ ├── array_ops.md │ │ ├── client.md │ │ ├── constant_op.md │ │ ├── control_flow_ops.md │ │ ├── framework.md │ │ ├── image.md │ │ ├── index.md │ │ ├── io_ops.md │ │ ├── math_ops.md │ │ ├── nn.md │ │ ├── python_io.md │ │ ├── sparse_ops.md │ │ ├── state_ops.md │ │ └── train.md │ ├── extras/ │ │ └── README.txt │ ├── faq.md │ ├── get_started/ │ │ ├── basic_usage.md │ │ ├── introduction.md │ │ └── os_setup.md │ ├── how_tos/ │ │ ├── __init__.py │ │ ├── adding_an_op/ │ │ │ ├── __init__.py │ │ │ ├── attr_examples.cc │ │ │ ├── fact_test.py │ │ │ ├── index.md │ │ │ ├── zero_out_1_test.py │ │ │ ├── zero_out_2_test.py │ │ │ ├── zero_out_3_test.py │ │ │ ├── zero_out_grad_2.py │ │ │ ├── zero_out_op_kernel_1.cc │ │ │ ├── zero_out_op_kernel_2.cc │ │ │ └── zero_out_op_kernel_3.cc │ │ ├── adding_an_op.md │ │ ├── graph_viz/ │ │ │ └── index.md │ │ ├── graph_viz.md │ │ ├── new_data_formats/ │ │ │ ├── Custom Data Readers.md │ │ │ └── index.md │ │ ├── new_data_formats.md │ │ ├── overview.md │ │ ├── reading_data/ │ │ │ ├── __init__.py │ │ │ ├── convert_to_records.py │ │ │ ├── fully_connected_preloaded.py │ │ │ ├── fully_connected_preloaded_var.py │ │ │ ├── fully_connected_reader.py │ │ │ └── index.md │ │ ├── reading_data.md │ │ ├── summaries_and_tensorboard/ │ │ │ └── index.md │ │ ├── summaries_and_tensorboard.md │ │ ├── threading_and_queues/ │ │ │ └── index.md │ │ ├── threading_and_queues.md │ │ ├── using_gpu/ │ │ │ └── index.md │ │ ├── using_gpu.md │ │ ├── variable_scope/ │ │ │ └── index.md │ │ ├── variable_scope.md │ │ ├── variables/ │ │ │ └── index.md │ │ └── variables.md │ ├── images/ │ │ └── getting_started.dot │ ├── index.md │ ├── personal.md │ ├── resource.md │ ├── resources/ │ │ ├── bib.md │ │ ├── dims_types.md │ │ ├── faq.md │ │ ├── glossary.md │ │ ├── overview.md │ │ └── uses.md │ └── tutorials/ │ ├── BUILD │ ├── __init__.py │ ├── deep_cnn/ │ │ ├── cifar_tensorboard.html │ │ └── index.md │ ├── deep_cnn.md │ ├── mandelbrot/ │ │ └── index.md │ ├── mandelbrot.md │ ├── mnist/ │ │ ├── __init__.py │ │ ├── beginners/ │ │ │ └── index.md │ │ ├── download/ │ │ │ └── index.md │ │ ├── fully_connected_feed.py │ │ ├── input_data.py │ │ ├── mnist.py │ │ ├── mnist_softmax.py │ │ ├── pros/ │ │ │ └── index.md │ │ └── tf/ │ │ └── index.md │ ├── mnist_beginners.md │ ├── mnist_download.md │ ├── mnist_pros.md │ ├── mnist_tf.md │ ├── overview.md │ ├── pdes/ │ │ └── index.md │ ├── pdes.md │ ├── recurrent/ │ │ └── index.md │ ├── recurrent.md │ ├── seq2seq/ │ │ └── index.md │ ├── seq2seq.md │ ├── word2vec/ │ │ ├── __init__.py │ │ ├── index.md │ │ └── word2vec_basic.py │ └── word2vec.md ├── TOC.md ├── config.json ├── learn-github.md ├── markdown.md └── tex_pdf/ ├── api/ │ ├── c4s00.tex │ ├── cc/ │ │ ├── ClassEnv.md │ │ ├── ClassEnvWrapper.md │ │ ├── ClassRandomAccessFile.md │ │ ├── ClassSession.md │ │ ├── ClassStatus.md │ │ ├── ClassTensor.md │ │ ├── ClassTensorBuffer.md │ │ ├── ClassTensorShape.md │ │ ├── ClassTensorShapeIter.md │ │ ├── ClassTensorShapeUtils.md │ │ ├── ClassThread.md │ │ ├── ClassWritableFile.md │ │ ├── StructSessionOptions.md │ │ ├── StructState.md │ │ ├── StructTensorShapeDim.md │ │ ├── StructThreadOptions.md │ │ └── index.md │ └── python/ │ ├── c4s01_framework.tex │ ├── c4s02_constant_op.tex │ ├── c4s03_state_ops.tex │ ├── c4s04_array_ops.tex │ ├── c4s05_math_ops.tex │ ├── c4s06_control_flow_ops.tex │ ├── c4s07_image.tex │ ├── c4s08_sparse_ops.tex │ ├── c4s09_io_ops.tex │ ├── c4s10_python_io.tex │ ├── c4s11_nn.tex │ ├── c4s12_client.tex │ ├── c4s13_train.tex │ └── index.tex ├── get_started/ │ ├── c1s01_introduction.tex │ ├── c1s02_os_setup.tex │ └── c1s03_basic_usage.tex ├── how_tos/ │ ├── c3s00_overview.tex │ ├── c3s01_variables.tex │ ├── c3s02_variable_scope.tex │ ├── c3s03_viz_learning.tex │ ├── c3s04_graph_viz.tex │ ├── c3s05_reading_data.tex │ ├── c3s06_threading_and_queues.tex │ ├── c3s07_adding_an_op.tex │ ├── c3s08_new_data_formats.tex │ └── c3s09_using_gpu.tex ├── tensorflow_manual_cn.idx ├── tensorflow_manual_cn.ilg ├── tensorflow_manual_cn.ind ├── tensorflow_manual_cn.tex └── tutorials/ ├── c2s00_overview.tex ├── c2s01_minist_beginners.tex ├── c2s02_minist_pros.tex ├── c2s03_.tex ├── c2s04_.tex ├── c2s05_word2vec.tex ├── c2s06_recurrent.tex ├── c2s07_seq2seq.tex ├── c2s08_2_9_mandelbrot.tex ├── c2s09_pdes.tex └── c2s10_mnist_download.tex