Skip to content

Commit

Permalink
Remove RBP as it is no longer supported.
Browse files Browse the repository at this point in the history
  • Loading branch information
varepsilon committed Jun 8, 2014
1 parent 09f0f7b commit 570b201
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions bin/compare_click_models.py
Expand Up @@ -35,10 +35,6 @@ def avg(l):

TESTED_MODEL_PAIRS = ['UBM', 'EB_UBM', 'UBMvsDBN']

if 'RBP' in TESTED_MODEL_PAIRS:
import scipy
import scipy.optimize

MODEL_CONSTRUCTORS = {
'DBN': (lambda config: DbnModel((0.9, 0.9, 0.9, 0.9), config=config),
lambda config: DbnModel((1.0, 0.9, 1.0, 0.9),
Expand All @@ -53,8 +49,6 @@ def avg(l):
config=config)),
'DCM': (lambda config: DcmModel(config=config),
lambda config: DcmModel(ignoreIntents=False, ignoreLayout=False, config=config)),
'RBP': (lambda config: SimplifiedRbpModel(config=config),
lambda: RbpModel(ignoreIntents=False, ignoreLayout=False, config=config))
}

if __name__ == '__main__':
Expand Down

0 comments on commit 570b201

Please sign in to comment.