We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bb9a27 commit ed1b5c6Copy full SHA for ed1b5c6
pertbio/pertbio/model.py
@@ -13,9 +13,9 @@ def factory(args):
13
elif args.model == 'CoExp_nonlinear':
14
return CoExpNonlinear(args).build()
15
elif args.model == 'LinReg':
16
- return LinReg(args).build
+ return LinReg(args).build()
17
elif args.model == 'NN':
18
- return NN(args).build
+ return NN(args).build()
19
# elif args.model == 'Bayesian':
20
# return BN(args).build()
21
# TODO: baysian model
0 commit comments