Skip to content

Commit

Permalink
readme upd
Browse files Browse the repository at this point in the history
  • Loading branch information
Kismuz committed Jan 10, 2020
1 parent 3443074 commit 78be85c
Show file tree
Hide file tree
Showing 4 changed files with 732 additions and 26 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,11 +204,15 @@ _Notice: data shaping approach is under development, expect some changes. [7.01.
- [ ] risk-sensitive agents implementation;
- [x] sequential and sliding time-window sampling;
- [x] multiply instruments trading;
- [x] docker image; - CPU version
- [x] docker image; - CPU version, `Signalprime` contribution,
- [ ] TF serving model serialisation functionality;


### <a name="news"></a>[News and updates:](#title)
- 10.01.2019:
- **docker CPU version** is now available, contributed by `Signalprime`,
(https://github.com/signalprime), see `btgym/docker/README.md` for details;

- 9.02.2019:
- **Introduction to analytic data model** notebook added to [model_based_stat_arb](./examples/model_based_stat_arb/) examples folder.

Expand Down
4 changes: 2 additions & 2 deletions btgym/algorithms/worker.py
Original file line number Diff line number Diff line change
Expand Up @@ -214,8 +214,8 @@ def run(self):
job_name='worker',
task_index=self.task,
config=tf.ConfigProto(
intra_op_parallelism_threads=1, # original was: 1
inter_op_parallelism_threads=2 # original was: 2
intra_op_parallelism_threads=4, # original was: 1
inter_op_parallelism_threads=4, # original was: 2
)
)
self.log.debug('tf.server started.')
Expand Down
2 changes: 1 addition & 1 deletion btgym/research/model_based/model/rec.py
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ def _update_embed(self, x, disjoint=False):
if set to True - discards embedded trajectory already being kept.
Returns:
embedded update
embedded update/home/muzikin/Repos/ml_serving
"""
assert len(x.shape) == 1, 'Expected 1d trajectory but got input shaped: {}'.format(x.shape)
Expand Down
Loading

0 comments on commit 78be85c

Please sign in to comment.