Skip to content

Commit

Permalink
Token is now required
Browse files Browse the repository at this point in the history
  • Loading branch information
kidzik committed Feb 21, 2017
1 parent 1f73753 commit 54a685f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/submit.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,12 @@
import argparse

# Settings
CROWDAI_TOKEN = "518ec33d7af656bddfcb83ab614ba079"
remote_base = 'http://grader.crowdai.org'

# Command line parameters
parser = argparse.ArgumentParser(description='Submit the result to crowdAI')
parser.add_argument('--model', dest='model', action='store', default="example_actor.h5f")
parser.add_argument('--token', dest='token', action='store', default=CROWDAI_TOKEN)
parser.add_argument('--token', dest='token', action='store', required=True)
args = parser.parse_args()

env = GaitEnv(visualize=False)
Expand Down

0 comments on commit 54a685f

Please sign in to comment.