Skip to content

Commit

Permalink
Fix data fetching (#88)
Browse files Browse the repository at this point in the history
* added missing slash in url

* fixed hash for tem_in_2d model

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

---------

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
niksirbi and pre-commit-ci[bot] authored Aug 21, 2023
1 parent 3424b12 commit b570f6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion neuralplayground/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
# is stored in a zip file with the suffix "_subset".
dataset_manager = pooch.create(
path=LOCAL_DATA_DIR,
base_url=f"{DATA_URL}/data",
base_url=f"{DATA_URL}/data/",
registry={
"hafting_2008_subset.zip": "ca3b1bf417e496d81734b5d7beff93a9ac0c0c58660472db8c04c0ff097d6e2a", # noqa: E501
"hafting_2008_full.zip": "de778df50f21998c00f606208441a6d1e41ce25c4226e6abc013281690ff8dbe", # noqa: E501
Expand Down
2 changes: 1 addition & 1 deletion neuralplayground/saved_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"stachenfeld_2018_in_hafting2008.zip": "960cdc8d4fa9ef86ed1d5ef144fe6949d227c081b837ae24e49335bdaf971899", # noqa: E501
"weber_2018_in_wernle.zip": "51f701966229ba8a70aab7b7ce79f4965e80904661eb6cdad85d03b0ddb7f8ff", # noqa: E501
"weber_2018_in_merging_room.zip": "10c537bc1d410de1bba18fe36624501bc4caddc0a032f3889a39435256a0205c", # noqa: E501
"tem_in_2D.zip": "68486a69541e5058c4f0076ed383bcce184d93643ad219cd5cd9890abaa5ed05",
"tem_in_2D.zip": "9f82bb8e231e6e38526deb1ea4a1be6bee95f54dba364cf5a129fbf8b3f191eb", # noqa: E501
},
)

Expand Down

0 comments on commit b570f6e

Please sign in to comment.