Skip to main content

Automatically download and upload data for the Numerai machine learning competition

Project description

Build Status codecov PyPI Downloads Docs

Numerai Python API

Automatically download and upload data for the Numerai machine learning competition.

This library is a Python client to the Numerai API. The interface is programmed in Python and allows downloading the training data, uploading predictions, and accessing user, submission and competitions information. It works for both, the main competition and the newer Numerai Signals competition.

If you encounter a problem or have suggestions, feel free to open an issue.

Installation

pip install --upgrade numerapi

Usage

Numerapi can be used as a regular, importable Python module or from the command line.

Some actions (like uploading predictions or staking) require a token to verify that it is really you interacting with Numerai's API. These tokens consists of a public_id and secret_key. Both can be obtained by login in to Numer.ai and going to Account -> Custom API Keys. Tokens can be passed to the Python module as parameters or you can be set via environment variables (NUMERAI_PUBLIC_ID and NUMERAI_SECRET_KEY).

Python module

Usage example - main competition

import numerapi
# some API calls do not require logging in
napi = numerapi.NumerAPI(verbosity="info")
# download current dataset => also check `https://numer.ai/data`
napi.download_dataset("v4/train.parquet", "train.parquet")
# get current leaderboard
leaderboard = napi.get_leaderboard()
# check if a new round has started
if napi.check_new_round():
    print("new round has started within the last 12hours!")
else:
    print("no new round within the last 12 hours")

# provide api tokens
example_public_id = "somepublicid"
example_secret_key = "somesecretkey"
napi = numerapi.NumerAPI(example_public_id, example_secret_key)

# upload predictions
model_id = napi.get_models()['uuazed']
napi.upload_predictions("preds.csv", model_id=model_id)
# increase your stake by 1.2 NMR
napi.stake_increase(1.2)

# convert results to a pandas dataframe
import pandas as pd
df = pd.DataFrame(napi.daily_user_performances("uuazed"))

Usage example - Numerai Signals

import numerapi

napi = numerapi.SignalsAPI()
# get current leaderboard
leaderboard = napi.get_leaderboard()

# setup API with api tokens
example_public_id = "somepublicid"
example_secret_key = "somesecretkey"
napi = numerapi.SignalsAPI(example_public_id, example_secret_key)

# upload predictions
model_id = napi.get_models()['uuazed']
napi.upload_predictions("preds.csv", model_id=model_id)

# get daily performance as pandas dataframe
import pandas as pd
df = pd.DataFrame(napi.daily_user_performances("uuazed"))

# using the diagnostics tool
napi.upload_diagnostics("preds.csv", model_id=model_id)
# ... or using a pandas DataFrame directly
napi.upload_diagnostics(df=df, model_id=model_id)
# fetch results
napi.diagnostic(model_id)

Command line interface

To get started with the cli interface, let's take a look at the help page:

$ numerapi --help
Usage: numerapi [OPTIONS] COMMAND [ARGS]...

  Wrapper around the Numerai API

  Options:
    --help  Show this message and exit.

  Commands:
    account                   Get all information about your account!
    check-new-round           Check if a new round has started within the...
    competitions              Retrieves information about all competitions
    current-round             Get number of the current active round.
    daily-model-performances  Fetch daily performance of a model.
    download-dataset          Download specified file for the given round
    leaderboard               Get the leaderboard.
    list-datasets             List of available data files
    models                    Get map of account models!
    profile                   Fetch the public profile of a user.
    stake-decrease            Decrease your stake by `value` NMR.
    stake-drain               Completely remove your stake.
    stake-get                 Get stake value of a user.
    stake-increase            Increase your stake by `value` NMR.
    submission-filenames      Get filenames of your submissions
    submit                    Upload predictions from file.
    transactions              List all your deposits and withdrawals.
    version                   Installed numerapi version.

All CLI commands accept a --tournament option. It defaults to 8 (the classic tournament), but you can point the CLI at Signals (11) or Crypto (12) on a per-command basis, e.g. numerapi list-datasets --tournament 11.

Each command has it's own help page, for example:

$ numerapi submit --help
Usage: numerapi submit [OPTIONS] PATH

  Upload predictions from file.

Options:
  --tournament INTEGER  The ID of the tournament, defaults to 8
  --model_id TEXT       An account model UUID (required for accounts with
                        multiple models
  --help                Show this message and exit.

API Reference

Checkout the detailed API docs to learn about all available methods, parameters and returned values.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

numerapi-2.23.0.dev1.tar.gz (32.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

numerapi-2.23.0.dev1-py3-none-any.whl (29.2 kB view details)

Uploaded Python 3

File details

Details for the file numerapi-2.23.0.dev1.tar.gz.

File metadata

  • Download URL: numerapi-2.23.0.dev1.tar.gz
  • Upload date:
  • Size: 32.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for numerapi-2.23.0.dev1.tar.gz
Algorithm Hash digest
SHA256 7117c90719df8926bca5a127ee55e08bc8f92d0923b87ec08dc67975c760e4a1
MD5 e82a7356bc85a4204cfa230d84e06023
BLAKE2b-256 e1fa0aa4352601eaeba4aba4cdb7b5772903213b69e6ebc1ded8eab3d034197a

See more details on using hashes here.

File details

Details for the file numerapi-2.23.0.dev1-py3-none-any.whl.

File metadata

  • Download URL: numerapi-2.23.0.dev1-py3-none-any.whl
  • Upload date:
  • Size: 29.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for numerapi-2.23.0.dev1-py3-none-any.whl
Algorithm Hash digest
SHA256 8c738fcd47f2ce9d4961086e41661b8a66a6f41efc975d1ff892c3b8eec78767
MD5 139d3ad7b58c85c9b8b036a691c678d5
BLAKE2b-256 bdcfdce6f4d5eb757da4da1be650fe3e0feea4100283aefc18d87fa87d10d9c1

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page