Datasets:
EricR401S
commited on
Commit
·
686238b
1
Parent(s):
50088f9
check
Browse files- reddit_dataset_loader.py +5 -3
reddit_dataset_loader.py
CHANGED
@@ -44,7 +44,9 @@ which have risen in response to the clashes between traditional gender roles and
|
|
44 |
"""
|
45 |
|
46 |
# TODO: Add a link to an official homepage for the dataset here
|
47 |
-
_HOMEPAGE =
|
|
|
|
|
48 |
|
49 |
# TODO: Add the licence for the dataset here if you can find it
|
50 |
_LICENSE = "Creative Commons" # cc
|
@@ -53,8 +55,8 @@ _LICENSE = "Creative Commons" # cc
|
|
53 |
# The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
|
54 |
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
55 |
_URLS = {
|
56 |
-
"first_domain": "https://huggingface.co/datasets/steamcyclone/
|
57 |
-
"second_domain": "https://huggingface.co/datasets/steamcyclone/
|
58 |
}
|
59 |
|
60 |
|
|
|
44 |
"""
|
45 |
|
46 |
# TODO: Add a link to an official homepage for the dataset here
|
47 |
+
_HOMEPAGE = (
|
48 |
+
"https://huggingface.co/datasets/steamcyclone/Pill-Ideologies-New-Test/tree/main"
|
49 |
+
)
|
50 |
|
51 |
# TODO: Add the licence for the dataset here if you can find it
|
52 |
_LICENSE = "Creative Commons" # cc
|
|
|
55 |
# The HuggingFace Datasets library doesn't host the datasets but only points to the original files.
|
56 |
# This can be an arbitrary nested dict/list of URLs (see below in `_split_generators` method)
|
57 |
_URLS = {
|
58 |
+
"first_domain": "https://huggingface.co/datasets/steamcyclone/Pill-Ideologies-New-Test/blob/main/reddit_posts_fm.csv",
|
59 |
+
"second_domain": "https://huggingface.co/datasets/steamcyclone/Pill-Ideologies-New-Test/blob/main/reddit_posts_fm.csv",
|
60 |
}
|
61 |
|
62 |
|