You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you set DATA_PATH to something other than the default, then you can download data successfully, but it does not show up on the data listing page. This is because the download directory is hard-coded, and also it is relative to wherever you run the server from.
Also, DATA_PATH is actually a glob. Setting it to a directory will result in no data being found, but this is hard to debug.
The text was updated successfully, but these errors were encountered:
It probably shouldn't be a glob, I thought that flexibility would come in useful but it just makes things complicated.
The pattern of the glob is not even free to choose. datasets.py specifically looks for files matching $NAME.$LANG.gz so there have to be at least two dots in the filename for it to not cause issues:
If you set
DATA_PATH
to something other than the default, then you can download data successfully, but it does not show up on the data listing page. This is because the download directory is hard-coded, and also it is relative to wherever you run the server from.Also,
DATA_PATH
is actually a glob. Setting it to a directory will result in no data being found, but this is hard to debug.The text was updated successfully, but these errors were encountered: