Official Command Line utility to use EvalAI in your terminal.
The goal of this package is to offer almost all the features available on the website within your terminal.
-
Setup the development environment for EvalAI and make sure that it is running perfectly.
-
Now, Open web browser and hit the url http://127.0.0.1:8888.
-
Login with your credentials and move to the profile section.
-
Click on
Get your Auth Token
to get the authentication token & download it as a JSON file. -
Create a folder with name
.evalai
in your home directory by using the commandmkdir ~/.evalai
. -
Place the downloaded authentication token in this folder by using the command
mv ~/Downloads/token.json ~/.evalai/
.
- Clone the evalai-cli repository to your machine via git
git clone https://github.com/Cloud-CV/evalai-cli.git EvalAI-CLI
- Create a virtual environment
cd EvalAI-CLI
virtualenv -p python3 venv
source venv/bin/activate
- Install the package dependencies
pip install -r requirements.txt
- Install the package locally to try it out
pip install -e .
If you are interested in contributing to EvalAI-CLI, follow our contribution guidelines.