Skip to content

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Vadim Liventsev committed Nov 26, 2020
1 parent d3d835c commit f40cbcf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ An example that specifies everything that can be specified:

```
env: HeartPole
cibi-version: 3
cibi-version: 4
max-sprints: 1000000
max-sprints-without-improvement: 10000
team: 0
Expand Down Expand Up @@ -114,7 +114,7 @@ If the training process was killed (intentionally or not), it can be resumed wit
After the training finishes, there will be several files in `EXPERIMENT_DIR`, the most important one being `top.pickle` containing 256 best programs. It is a pandas dataframe to be loaded with `pandas.read_pickle()` with programs and some metadata including their `test_quality` - total episode reward averaged over 100 episodes. `programs.pickle` contains all programs written in the process of getting to the best ones, `log.log` is what you'd expect from a log file, `train` folder contains model checkpoints, and `summary.yml` is a short summary of experiment status:

```
cibi-version: '3.0'
cibi-version: '4.0'
longest-episode: 42
max-total-reward: 42.0
seconds-elapsed: 16467.135838000104
Expand Down
4 changes: 2 additions & 2 deletions cibi/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = '3.6'
__trust_version__ = '3.6'
__version__ = '4.0'
__trust_version__ = '4.0'
2 changes: 1 addition & 1 deletion sample_experiment/experiment.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
env: CartPole-v1
max-sprints: 100
cibi-version: 3
cibi-version: 4
team: 5
allowed-commands: "@><^+-[].,!~01234abcde"
seed: cartpole1.txt

0 comments on commit f40cbcf

Please sign in to comment.