This repository was archived by the owner on Jul 7, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 55
66setup (
77 name = 'tensor2tensor' ,
8- version = '1.0.12 ' ,
8+ version = '1.0.13 ' ,
99 description = 'Tensor2Tensor' ,
1010 author = 'Google Inc.' ,
1111 author_email = 'no-reply@google.com' ,
1212 url = 'http://github.com/tensorflow/tensor2tensor' ,
1313 license = 'Apache 2.0' ,
1414 packages = find_packages (),
15- scripts = ['tensor2tensor/bin/t2t-trainer' , 'tensor2tensor/bin/t2t-datagen' ],
15+ scripts = [
16+ 'tensor2tensor/bin/t2t-trainer' ,
17+ 'tensor2tensor/bin/t2t-datagen' ,
18+ 'tensor2tensor/bin/t2t-make-tf-configs' ,
19+ ],
1620 install_requires = [
1721 'numpy' ,
1822 'sympy' ,
Original file line number Diff line number Diff line change 1717
1818Usage:
1919
20- `make_tf_configs.py --workers="server1:1234" --ps="server3:2134,server4:2334"`
20+ `t2t-make-tf-configs --workers="server1:1234" --ps="server3:2134,server4:2334"`
2121
2222Outputs 1 line per job to stdout, first the workers, then the parameter servers.
2323Each line has the TF_CONFIG, then a tab, then the command line flags for that
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ Parameter servers only need `--schedule=run_std_server`.
5151
5252## Utility to produce ` TF_CONFIG ` and flags
5353
54- [ ` bin/make_tf_configs.py ` ] ( https://github.com/tensorflow/tensor2tensor/tree/master/tensor2tensor/bin/t2t-make-tf-configs ) )
54+ [ ` t2t-make-tf-configs ` ] ( https://github.com/tensorflow/tensor2tensor/tree/master/tensor2tensor/bin/t2t-make-tf-configs ) )
5555generates the ` TF_CONFIG ` json strings and the above-mentioned command-line
5656flags for the workers and parameter servers.
5757
You can’t perform that action at this time.
0 commit comments