Skip to content

Commit

Permalink
Added extra MIND urls
Browse files Browse the repository at this point in the history
Signed-off-by: miguelgfierro <miguelgfierro@users.noreply.github.com>
  • Loading branch information
miguelgfierro committed Aug 28, 2024
1 parent d61fcd5 commit 610e663
Showing 1 changed file with 21 additions and 10 deletions.
31 changes: 21 additions & 10 deletions recommenders/datasets/mind.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,37 @@
)


URL_MIND_LARGE_TRAIN = (
"https://recodatasets.z20.web.core.windows.net/newsrec/MINDlarge_train.zip"
URL_MIND_DEMO_TRAIN = (
"https://recodatasets.z20.web.core.windows.net/newsrec/MINDdemo_train.zip"
)
URL_MIND_LARGE_VALID = (
"https://recodatasets.z20.web.core.windows.net/newsrec/MINDlarge_dev.zip"
URL_MIND_DEMO_VALID = (
"https://recodatasets.z20.web.core.windows.net/newsrec/MINDdemo_dev.zip"
)
URL_MIND_DEMO_UTILS = (
"https://recodatasets.z20.web.core.windows.net/newsrec/MINDdemo_utils.zip"
)

URL_MIND_SMALL_TRAIN = (
"https://recodatasets.z20.web.core.windows.net/newsrec/MINDsmall_train.zip"
)
URL_MIND_SMALL_VALID = (
"https://recodatasets.z20.web.core.windows.net/newsrec/MINDsmall_dev.zip"
)
URL_MIND_DEMO_TRAIN = (
"https://recodatasets.z20.web.core.windows.net/newsrec/MINDdemo_train.zip"
URL_MIND_SMALL_UTILS = (
"https://recodatasets.z20.web.core.windows.net/newsrec/MINDsmall_utils.zip"
)
URL_MIND_DEMO_VALID = (
"https://recodatasets.z20.web.core.windows.net/newsrec/MINDdemo_dev.zip"

URL_MIND_LARGE_TRAIN = (
"https://recodatasets.z20.web.core.windows.net/newsrec/MINDlarge_train.zip"
)
URL_MIND_DEMO_UTILS = (
"https://recodatasets.z20.web.core.windows.net/newsrec/MINDdemo_utils.zip"
URL_MIND_LARGE_VALID = (
"https://recodatasets.z20.web.core.windows.net/newsrec/MINDlarge_dev.zip"
)
URL_MIND_LARGE_TEST = (
"https://recodatasets.z20.web.core.windows.net/newsrec/MINDlarge_test.zip"
)
URL_MIND_LARGE_UTILS = (
"https://recodatasets.z20.web.core.windows.net/newsrec/MINDlarge_utils.zip"
)

URL_MIND = {
Expand Down

0 comments on commit 610e663

Please sign in to comment.