Skip to content

Commit 40c96e9

Browse files
authored
Merge pull request #565 from jseparovic/issue563
fix #563 : pass threshold from config to Model constructor
2 parents 179d34e + 0257036 commit 40c96e9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

networkml/NetworkML.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ def __init__(self):
4444
self.get_files()
4545
self.model_hash = None
4646
self.model = Model(duration=self.duration, hidden_size=None,
47-
model_type=self.args.algorithm)
47+
model_type=self.args.algorithm, threshold_time=self.threshold)
4848

4949
def create_base_alg():
5050
return BaseAlgorithm(

0 commit comments

Comments
 (0)