diff options
author | vmaffione <v.maffione@gmail.com> | 2017-04-21 09:38:20 +0000 |
---|---|---|
committer | vmaffione <v.maffione@gmail.com> | 2017-04-21 09:38:20 +0000 |
commit | 778bd3a1c3f625767c00688faa37af388a054f94 (patch) | |
tree | cec1214e3f3226c717f8b94e67661f8fac7fe36c /examples | |
parent | ee2f6e5c21c0ba94048dbf1c86024e3181718fc2 (diff) | |
parent | 009c8ff7570105a79278559202fdd46616b83a92 (diff) | |
download | rumba-778bd3a1c3f625767c00688faa37af388a054f94.tar.gz rumba-778bd3a1c3f625767c00688faa37af388a054f94.zip |
Merge branch 'split' into 'master'
model: Split experiment run()
See merge request !37
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/example.py | 6 | ||||
-rwxr-xr-x | examples/two-layers.py | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/examples/example.py b/examples/example.py index 54ecd37..8d91102 100755 --- a/examples/example.py +++ b/examples/example.py @@ -40,4 +40,8 @@ exp = rl.Experiment(tb, nodes = [a, b]) print(exp) -exp.run() +try: + exp.swap_in() + exp.bootstrap_prototype() +finally: + exp.swap_out() diff --git a/examples/two-layers.py b/examples/two-layers.py index 9032588..fff3866 100755 --- a/examples/two-layers.py +++ b/examples/two-layers.py @@ -52,4 +52,8 @@ exp = rl.Experiment(tb, nodes = [a, b, c, d]) print(exp) -exp.run() +try: + exp.swap_in() + exp.bootstrap_prototype() +finally: + exp.swap_out() |