#v5.0/train_int8.parquet does not exist.

1 messages · Page 1 of 1 (latest)

keen vigil
#

On both the newest, and second newest versions of numerapi, the simple command below is failing. features.json works fine.
napi = NumerAPI(pub, sec)
print(numerapi.version)
print("_________")
napi.download_dataset("v5.0/features.json")
napi.download_dataset("v5.0/validation_int8.parquet")
napi.download_dataset("v5.0/train_int8.parquet")

Both train and validation crash with an error: ValueError: the requested file does not exist.

Am I doing soemthing wrong? It looks like my syntax is good, and the older ones worked fine on this

2.19.1


2024-09-28 21:33:45,373 INFO numerapi.utils: target file already exists
2024-09-28 21:33:45,373 INFO numerapi.utils: download complete
2024-09-28 21:33:45,556 ERROR numerapi.base_api: the requested file does not exist
Traceback (most recent call last):
File "c:\repo\numerai\prep_v50_2cy.py", line 32, in <module>
napi.download_dataset("v5.0/validation_int8.parquet")
File "C:\Users\dell\AppData\Roaming\Python\Python311\site-packages\numerapi\base_api.py", line 201, in download_dataset
dataset_url = self.raw_query(query, args)['data']['dataset']
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "C:\Users\dell\AppData\Roaming\Python\Python311\site-packages\numerapi\base_api.py", line 133, in raw_query
raise ValueError(err)
ValueError: the requested file does not exist

safe flicker
#

you can use napi.list_datasets to show the available datasets, you'll see there is no _int8 versions. I believe the regular files are just the _int8 ones

keen vigil
#

Thanks! Figured it had to be some sort of user error 🙂

craggy mauve
#

There is only int8 now so they don't have to say so

keen vigil