Skip to content

Commit

Permalink
Sync submodules.
Browse files Browse the repository at this point in the history
  • Loading branch information
kirilg committed Dec 8, 2017
1 parent f22af43 commit b78f780
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tensorflow
Submodule tensorflow updated 934 files
2 changes: 1 addition & 1 deletion tf_models
Submodule tf_models updated 43 files
+1 −0 CODEOWNERS
+1 −0 research/README.md
+213 −0 research/tcn/BUILD
+555 −0 research/tcn/README.md
+2 −0 research/tcn/WORKSPACE
+133 −0 research/tcn/alignment.py
+58 −0 research/tcn/configs/pouring.yml
+115 −0 research/tcn/configs/tcn_default.yml
+29 −0 research/tcn/configs/test_estimator.yml
+505 −0 research/tcn/data_providers.py
+69 −0 research/tcn/data_providers_test.py
+86 −0 research/tcn/dataset/images_to_videos.py
+458 −0 research/tcn/dataset/videos_to_tfrecords.py
+490 −0 research/tcn/dataset/webcam.py
+54 −0 research/tcn/download_pretrained.py
+702 −0 research/tcn/estimators/base_estimator.py
+60 −0 research/tcn/estimators/get_estimator.py
+165 −0 research/tcn/estimators/mvtcn_estimator.py
+100 −0 research/tcn/estimators/svtcn_estimator.py
+217 −0 research/tcn/estimators/svtcn_loss.py
+106 −0 research/tcn/estimators/svtcn_loss_test.py
+63 −0 research/tcn/eval.py
+ research/tcn/g3doc/alignment.png
+ research/tcn/g3doc/all_error.png
+ research/tcn/g3doc/avg_error.png
+ research/tcn/g3doc/im.gif
+ research/tcn/g3doc/loss.png
+ research/tcn/g3doc/pca.png
+ research/tcn/g3doc/val_loss.png
+426 −0 research/tcn/generate_videos.py
+308 −0 research/tcn/labeled_eval.py
+86 −0 research/tcn/labeled_eval_test.py
+410 −0 research/tcn/model.py
+686 −0 research/tcn/preprocessing.py
+61 −0 research/tcn/train.py
+80 −0 research/tcn/utils/luatables.py
+50 −0 research/tcn/utils/progress.py
+247 −0 research/tcn/utils/util.py
+198 −0 research/tcn/visualize_embeddings.py
+2 −0 tutorials/rnn/README.md
+42 −0 tutorials/rnn/quickdraw/BUILD
+211 −0 tutorials/rnn/quickdraw/create_dataset.py
+378 −0 tutorials/rnn/quickdraw/train_model.py

0 comments on commit b78f780

Please sign in to comment.