Skip to content

Commit

Permalink
a bit cleaner, evalai 2.0 smoketest
Browse files Browse the repository at this point in the history
  • Loading branch information
joel99 committed Jun 5, 2024
1 parent a2bce26 commit 91b4ca3
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion decoder_demos/ndt2_sample.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def main():

task = getattr(FalconTask, args.split)
config = FalconConfig(task=task)
max_bins = 50 if task in [FalconTask.m1, FalconTask.m2] else 200 # h1
max_bins = 50 if task in [FalconTask.m1, FalconTask.m2] else 200 # These are recommended defaults

decoder = NDT2Decoder(
task_config=config,
Expand Down
1 change: 0 additions & 1 deletion falcon_challenge/evaluator.py
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,6 @@ def __init__(self, eval_remote=False, split='h1', verbose=False):
self.continual = True
else:
self.continual = False
# self.continual = False
self.verbose = verbose
self.dataset: FalconTask = getattr(FalconTask, split)
self.cfg = FalconConfig(self.dataset)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='falcon_challenge',
version='0.3.12',
version='0.3.13',

url='https://github.com/snel-repo/stability-benchmark',
author='Joel Ye',
Expand Down

0 comments on commit 91b4ca3

Please sign in to comment.