Skip to content

Commit e7a889c

Browse files
author
Joshua Dempster
committed
changed so train respects report_freq argument
1 parent 98d5a3e commit e7a889c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

chronos/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1213,7 +1213,7 @@ def train(self, nepochs=800, starting_learn_rate=1e-4, burn_in_period=50, ge_onl
12131213

12141214
self.step(ge_only=self.epoch < ge_only)
12151215

1216-
if not i%50:
1216+
if not i%report_freq:
12171217
delta = time() - start_time
12181218
completed = i+1 - start_epoch
12191219
to_go = nepochs - completed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
setup(
55
name='chronos',
6-
version='0.1',
6+
version='0.1.1',
77
author="Joshua Dempster",
88
description="Time series modeling of CRISPR KO readcounts",
99
packages=find_packages(),

0 commit comments

Comments
 (0)