├── CHANGELIST.md ├── CONTRIBUTING.md ├── LICENSE-2.0.txt ├── README.md ├── docs ├── Bookkeeper.md ├── Loss.md ├── PrettyTensor.md ├── PrettyTensorTupleMixin.md └── pretty_tensor_top_level.md ├── inception_module.png ├── prettytensor ├── __init__.py ├── bookkeeper.py ├── bookkeeper_test.py ├── chain_dict.py ├── chain_dict_test.py ├── funcs.py ├── functions.py ├── functions_test.py ├── input_helpers.py ├── layers.py ├── local_trainer.py ├── local_trainer_test.py ├── parameters.py ├── pretty_tensor_class.py ├── pretty_tensor_image_methods.py ├── pretty_tensor_loss_methods.py ├── pretty_tensor_methods.py ├── pretty_tensor_normalization_methods.py ├── pretty_tensor_sparse_methods.py ├── pretty_tensor_test.py ├── pretty_tensor_testing.py ├── recurrent_networks.py ├── recurrent_networks_test.py ├── recurrent_networks_testing_utils.py ├── replay_queue.py ├── replay_queue_test.py ├── scopes.py ├── scopes_test.py ├── sequence_with_deltas.py ├── templated_pretty_tensor_test.py ├── train.py └── tutorial │ ├── README.md │ ├── __init__.py │ ├── baby_names.csv │ ├── baby_names.py │ ├── data_utils.py │ ├── mnist.py │ └── shakespeare.py ├── setup.py ├── test_pip_install.sh └── unrolled_lstm.png /CHANGELIST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/CHANGELIST.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/LICENSE-2.0.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/README.md -------------------------------------------------------------------------------- /docs/Bookkeeper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/docs/Bookkeeper.md -------------------------------------------------------------------------------- /docs/Loss.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/docs/Loss.md -------------------------------------------------------------------------------- /docs/PrettyTensor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/docs/PrettyTensor.md -------------------------------------------------------------------------------- /docs/PrettyTensorTupleMixin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/docs/PrettyTensorTupleMixin.md -------------------------------------------------------------------------------- /docs/pretty_tensor_top_level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/docs/pretty_tensor_top_level.md -------------------------------------------------------------------------------- /inception_module.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/inception_module.png -------------------------------------------------------------------------------- /prettytensor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/__init__.py -------------------------------------------------------------------------------- /prettytensor/bookkeeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/bookkeeper.py -------------------------------------------------------------------------------- /prettytensor/bookkeeper_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/bookkeeper_test.py -------------------------------------------------------------------------------- /prettytensor/chain_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/chain_dict.py -------------------------------------------------------------------------------- /prettytensor/chain_dict_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/chain_dict_test.py -------------------------------------------------------------------------------- /prettytensor/funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/funcs.py -------------------------------------------------------------------------------- /prettytensor/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/functions.py -------------------------------------------------------------------------------- /prettytensor/functions_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/functions_test.py -------------------------------------------------------------------------------- /prettytensor/input_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/input_helpers.py -------------------------------------------------------------------------------- /prettytensor/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/layers.py -------------------------------------------------------------------------------- /prettytensor/local_trainer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/local_trainer.py -------------------------------------------------------------------------------- /prettytensor/local_trainer_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/local_trainer_test.py -------------------------------------------------------------------------------- /prettytensor/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/parameters.py -------------------------------------------------------------------------------- /prettytensor/pretty_tensor_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/pretty_tensor_class.py -------------------------------------------------------------------------------- /prettytensor/pretty_tensor_image_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/pretty_tensor_image_methods.py -------------------------------------------------------------------------------- /prettytensor/pretty_tensor_loss_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/pretty_tensor_loss_methods.py -------------------------------------------------------------------------------- /prettytensor/pretty_tensor_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/pretty_tensor_methods.py -------------------------------------------------------------------------------- /prettytensor/pretty_tensor_normalization_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/pretty_tensor_normalization_methods.py -------------------------------------------------------------------------------- /prettytensor/pretty_tensor_sparse_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/pretty_tensor_sparse_methods.py -------------------------------------------------------------------------------- /prettytensor/pretty_tensor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/pretty_tensor_test.py -------------------------------------------------------------------------------- /prettytensor/pretty_tensor_testing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/pretty_tensor_testing.py -------------------------------------------------------------------------------- /prettytensor/recurrent_networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/recurrent_networks.py -------------------------------------------------------------------------------- /prettytensor/recurrent_networks_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/recurrent_networks_test.py -------------------------------------------------------------------------------- /prettytensor/recurrent_networks_testing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/recurrent_networks_testing_utils.py -------------------------------------------------------------------------------- /prettytensor/replay_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/replay_queue.py -------------------------------------------------------------------------------- /prettytensor/replay_queue_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/replay_queue_test.py -------------------------------------------------------------------------------- /prettytensor/scopes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/scopes.py -------------------------------------------------------------------------------- /prettytensor/scopes_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/scopes_test.py -------------------------------------------------------------------------------- /prettytensor/sequence_with_deltas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/sequence_with_deltas.py -------------------------------------------------------------------------------- /prettytensor/templated_pretty_tensor_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/templated_pretty_tensor_test.py -------------------------------------------------------------------------------- /prettytensor/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/train.py -------------------------------------------------------------------------------- /prettytensor/tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/tutorial/README.md -------------------------------------------------------------------------------- /prettytensor/tutorial/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/tutorial/__init__.py -------------------------------------------------------------------------------- /prettytensor/tutorial/baby_names.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/tutorial/baby_names.csv -------------------------------------------------------------------------------- /prettytensor/tutorial/baby_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/tutorial/baby_names.py -------------------------------------------------------------------------------- /prettytensor/tutorial/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/tutorial/data_utils.py -------------------------------------------------------------------------------- /prettytensor/tutorial/mnist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/tutorial/mnist.py -------------------------------------------------------------------------------- /prettytensor/tutorial/shakespeare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/prettytensor/tutorial/shakespeare.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/setup.py -------------------------------------------------------------------------------- /test_pip_install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/test_pip_install.sh -------------------------------------------------------------------------------- /unrolled_lstm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/google/prettytensor/HEAD/unrolled_lstm.png --------------------------------------------------------------------------------