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