Skip to content

Commit

Permalink
Minor bug fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
DesmondYuan committed Apr 23, 2020
1 parent 8bb9a27 commit ed1b5c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pertbio/pertbio/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ def factory(args):
elif args.model == 'CoExp_nonlinear':
return CoExpNonlinear(args).build()
elif args.model == 'LinReg':
return LinReg(args).build
return LinReg(args).build()
elif args.model == 'NN':
return NN(args).build
return NN(args).build()
# elif args.model == 'Bayesian':
# return BN(args).build()
# TODO: baysian model
Expand Down

0 comments on commit ed1b5c6

Please sign in to comment.