Ww1nTeR commited on
Commit
186f00c
·
1 Parent(s): 333cfe8

Track large CSV files with Git LFS

Browse files
.gitattributes CHANGED
@@ -56,3 +56,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
56
  # Video files - compressed
57
  *.mp4 filter=lfs diff=lfs merge=lfs -text
58
  *.webm filter=lfs diff=lfs merge=lfs -text
 
 
56
  # Video files - compressed
57
  *.mp4 filter=lfs diff=lfs merge=lfs -text
58
  *.webm filter=lfs diff=lfs merge=lfs -text
59
+ *.csv filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,3 +1,21 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Description
2
+
3
+ Three Datasets released by rllm. Each dataset has a seperated Readme.
4
+
5
+ Github Repo for rllm: https://github.com/rllm-team/rllm
6
+
7
+ Arxiv Paper for rllm: https://arxiv.org/abs/2407.20157
8
+
9
+ # Citation
10
+
11
+ ```
12
+ @article{rllm2024,
13
+ title={rLLM: Relational Table Learning with LLMs},
14
+ author={Weichen Li and Xiaotong Huang and Jianwu Zheng and Zheng Wang and Chaokun Wang and Li Pan and Jianhua Li},
15
+ year={2024},
16
+ eprint={2407.20157},
17
+ archivePrefix={arXiv},
18
+ primaryClass={cs.AI},
19
+ url={https://arxiv.org/abs/2407.20157},
20
+ }
21
+ ```
TACM12K/README.md ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # TACM12K
2
+
3
+ **Table-ACM12K (TACM12K)** is a relational table dataset reorganized from the ACM heterogeneous graph dataset[1]. It includes four tables: papers, authors, Paper-Author relationships, and citation relationships. The paper features include year, title, and abstract, while author features include name and affiliation. Additionally, we label the papers based on the conferences in which they were published.
4
+
5
+ ## Processed
6
+
7
+ First, we created the Author table by extracting the original authors' IDs and names from the file. We added the firm information to each author based on the 'AvsF' data, resulting in the Author table (17431 entries).
8
+
9
+ Next, we worked on the Paper table, manually annotating the year information for the venues. Using the 'PvsV' matrix, we added the year attribute to the Paper entries. Due to mislabeling in the original data where the STOC conference was incorrectly marked as the COLT conference in the "PvsC" matrix, we corrected this in the "VvsC" matrix. We then recalculated the PvsV * VvsC to obtain the corrected PvsC matrix, ultimately assigning the conference attribute to each paper. The number of papers per conference is shown in Table 1.
10
+
11
+ The original dataset contained text information for each paper as a concatenation of title and abstract. To make this structure clearer, we utilized three methods to extract the title from the original text information:
12
+ 1. Use the scholarly library in Python to accurately query the last two sentences of the original text.
13
+ 2. Utilize the Tongyi Qianwen language model to extract the title from the original text.
14
+ 3. Match the abstract in the Aminer dataset [tj2008Aminer] to obtain the title.
15
+
16
+ We then compared the results of these three methods. If two results were the same, we considered it the title. If all three results differed, we manually verified and supplemented the title information. This process allowed us to separate the original text into a distinct title and abstract. Additionally, we supplemented some incomplete abstracts.
17
+
18
+ The Write table inherited the "PvsA" matrix from the original data. The Cite table inherited the "PvsP" matrix from the original data.
19
+
20
+ -
21
+
22
+ <center>Table 1: Each conference corresponds to its number of papers</center>
23
+
24
+ | Conference | Number | Conference | Number |
25
+ | :--------: | :----: | :--------: | :----: |
26
+ | KDD | 1061 | SOSP | 332 |
27
+ | SIGMOD | 1417 | SPAA | 473 |
28
+ | WWW | 1653 | SIGCOMM | 648 |
29
+ | SIGIR | 1572 | MobiCOMM | 322 |
30
+ | CIKM | 1724 | ICML | 456 |
31
+ | SODA | 662 | COLT | 83 |
32
+ | STOC | 1519 | VLDB | 577 |
33
+
34
+ ## Content
35
+
36
+ - paper.csv: It contains 12,499 papers of 14 conferences in different years, in which each row of data is the paper's unique identification paper_id, publication year, published conference, title of the paper, and abstract of the paper.
37
+ - author.csv: It includes 17,431 authors, each with a unique identification of author_id, name, and firm or organization for which they work.
38
+ - cite.csv: A total of 30789 paper citation relationships are included, two of which are listed as paper_id and paper_id_cited, that is, the former cited the latter.
39
+ - paper_author.csv: It includes 37055 papers and author relationships, and each line is paper ID paper_id and author ID author_id. A paper may have multiple authors.
40
+ - masks.pt: The training set (280), verification set(500) and test set(1000) are divided. The training set selected 20 papers for each category. While the verification set and the test set meet the natural distribution law as much as possible, the balance adjustment is made so that the number of papers in the least category and the number of papers in the most category are not more than four times.
41
+ - paper_embeddings.npy: The paper information embedding was carried out using the "all-MiniLM-L6-v2" model.
42
+ - author_embeddings.npy: The author information embedding was carried out using the "all-MiniLM-L6-v2" model.
43
+
44
+ ## Refferences
45
+
46
+ [1]. Wang X, Ji H, Shi C, et al. Heterogeneous graph attention network[C]//The world wide web conference. 2019: 2022-2032.
47
+
48
+ [2]. Tang J, Zhang J, Yao L, et al. Arnetminer: extraction and mining of academic social networks[C]//Proceedings of the 14th ACM SIGKDD international conference on Knowledge discovery and data mining. 2008: 990-998.
TACM12K/author_embeddings.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f47dc098a4758a82945e9f60b980401092b0452a161d6d0fd3996e2265dc43d
3
+ size 26774144
TACM12K/authors.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:437e21a71b8991381be1dcd3f0b46df087927cf80e5eacb66bc07dd99d31c755
3
+ size 1243683
TACM12K/citations.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08e578abeef02120f0e98422d35bb2b39685f2422c8d7b5a17821ec3b04bdb20
3
+ size 341926
TACM12K/masks.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a3301218cdae3acdb72815f5e4461542c76f8fcc26b45efe8306a8fb17afe43e
3
+ size 39110
TACM12K/paper_embeddings.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:823fb98bdd968089882ca6a513945c1eb339d9b18e9394d1ec6aed648d7da92c
3
+ size 19198592
TACM12K/papers.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2f8503d203e2510c791a09377f5494de7082f0b1d915b01b06258df9c56d6656
3
+ size 13860530
TACM12K/writings.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c84ddbedd0e98b2636e44659e55c7372ead1e68272795f82d8aa00aae3efbc23
3
+ size 421321
TLF2K/README.md ADDED
@@ -0,0 +1,189 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ -----------
2
+ Description
3
+ -----------
4
+
5
+ Table-LastFM2K extends the original lastfm-2k dataset (https://grouplens.org/datasets/hetrec-2011/) with enriched artist data. As the original dataset was collected in 2011 and last.fm data is continuously updated, we have selected pre-2011 information for each artist to augment the data. The augmented data is available in the 'regression' folder as artists.csv. This new version comprises two tasks, each utilizing distinct sets of data.
6
+
7
+ The basic task is to classify artists' genre label.
8
+
9
+ -----------
10
+ Artists file format
11
+ -----------
12
+ artists.csv follows the format outlined below:
13
+ artistID,type,name,born,yearsActive,location,label,tag_list,biography,url
14
+
15
+ * artistID: The identifier given in the original lastfm dataset.
16
+ * type: Used to indicate whether the artist is an individual (such as a singer, DJ, or composer) or a group (band, musical ensemble), left blank if indeterminate.
17
+ * name: The name of the artist.
18
+ * born: Only present for single-type artists, indicating the artist's birthdate.
19
+ * yearsActive: Only present for multiple-type artists, indicating the artist's years of activity.
20
+ * location: The birthplace or location of establishment of the artist.
21
+ * label: The artist's genre label, generated by ChatGPT along with manual identification, is one of the following: [country, electronic, hip-Hop, jazz, latin, pop, punk, reggae, rock, metal, soul].
22
+ * tag_list: Added used to identify tags associated with the artist.
23
+ * biography: The artist's personal biography, collected from the final version of information predating 2011. The information contains line breaks represented as "\n".
24
+ * url: The artist's homepage on the last.fm website.
25
+
26
+ ### ---------------- The Following is lastfm-2k's original Readme ----------------
27
+
28
+ hetrec2011-lastfm-2k
29
+ ====================
30
+
31
+ -------
32
+ Version
33
+ -------
34
+
35
+ Version 1.0 (May 2011)
36
+
37
+ -----------
38
+ Description
39
+ -----------
40
+
41
+ This dataset contains social networking, tagging, and music artist listening information
42
+ from a set of 2K users from Last.fm online music system.
43
+ http://www.last.fm
44
+
45
+ The dataset is released in the framework of the 2nd International Workshop on
46
+ Information Heterogeneity and Fusion in Recommender Systems (HetRec 2011)
47
+ http://ir.ii.uam.es/hetrec2011
48
+ at the 5th ACM Conference on Recommender Systems (RecSys 2011)
49
+ http://recsys.acm.org/2011
50
+
51
+ ---------------
52
+ Data statistics
53
+ ---------------
54
+
55
+ 1892 users
56
+ 17632 artists
57
+
58
+ 12717 bi-directional user friend relations, i.e. 25434 (user_i, user_j) pairs
59
+ avg. 13.443 friend relations per user
60
+
61
+ 92834 user-listened artist relations, i.e. tuples [user, artist, listeningCount]
62
+ avg. 49.067 artists most listened by each user
63
+ avg. 5.265 users who listened each artist
64
+
65
+ 11946 tags
66
+
67
+ 186479 tag assignments (tas), i.e. tuples [user, tag, artist]
68
+ avg. 98.562 tas per user
69
+ avg. 14.891 tas per artist
70
+ avg. 18.930 distinct tags used by each user
71
+ avg. 8.764 distinct tags used for each artist
72
+
73
+ -----
74
+ Files
75
+ -----
76
+
77
+ * artists.dat
78
+
79
+ This file contains information about music artists listened and tagged by the users.
80
+
81
+ * tags.dat
82
+
83
+ This file contains the set of tags available in the dataset.
84
+
85
+ * user_artists.dat
86
+
87
+ This file contains the artists listened by each user.
88
+
89
+ It also provides a listening count for each [user, artist] pair.
90
+
91
+ * user_taggedartists.dat - user_taggedartists-timestamps.dat
92
+
93
+ These files contain the tag assignments of artists provided by each particular user.
94
+
95
+ They also contain the timestamps when the tag assignments were done.
96
+
97
+ * user_friends.dat
98
+
99
+ These files contain the friend relations between users in the database.
100
+
101
+ -----------
102
+ Data format
103
+ -----------
104
+
105
+ The data is formatted one entry per line as follows (tab separated, "\t"):
106
+
107
+ * artists.dat
108
+
109
+ id \t name \t url \t pictureURL
110
+
111
+ Example:
112
+ 707 Metallica http://www.last.fm/music/Metallica http://userserve-ak.last.fm/serve/252/7560709.jpg
113
+
114
+ * tags.dat
115
+
116
+ tagID \t tagValue
117
+ 1 metal
118
+
119
+ * user_artists.dat
120
+
121
+ userID \t artistID \t weight
122
+ 2 51 13883
123
+
124
+ * user_taggedartists.dat
125
+
126
+ userID \t artistID \t tagID \t day \t month \t year
127
+ 2 52 13 1 4 2009
128
+
129
+ * user_taggedartists-timestamps.dat
130
+
131
+ userID \t artistID \t tagID \t timestamp
132
+ 2 52 13 1238536800000
133
+
134
+ * user_friends.dat
135
+
136
+ userID \t friendID
137
+ 2 275
138
+
139
+ -------
140
+ License
141
+ -------
142
+
143
+ The users' names and other personal information in Last.fm are not provided in the dataset.
144
+
145
+ The data contained in hetrec2011-lastfm-2k.zip is made available for non-commercial use.
146
+
147
+ Those interested in using the data in a commercial context should contact Last.fm staff:
148
+ http://www.lastfm.com/about/contact
149
+
150
+ ----------------
151
+ Acknowledgements
152
+ ----------------
153
+
154
+ This work was supported by the Spanish Ministry of Science and Innovation (TIN2008-06566-C04-02),
155
+ and the Regional Government of Madrid (S2009TIC-1542).
156
+
157
+ ----------
158
+ References
159
+ ----------
160
+
161
+ When using this dataset you should cite:
162
+ - Last.fm website, http://www.lastfm.com
163
+
164
+ You may also cite HetRec'11 workshop as follows:
165
+
166
+ @inproceedings{Cantador:RecSys2011,
167
+ author = {Cantador, Iv\'{a}n and Brusilovsky, Peter and Kuflik, Tsvi},
168
+ title = {2nd Workshop on Information Heterogeneity and Fusion in Recommender Systems (HetRec 2011)},
169
+ booktitle = {Proceedings of the 5th ACM conference on Recommender systems},
170
+ series = {RecSys 2011},
171
+ year = {2011},
172
+ location = {Chicago, IL, USA},
173
+ publisher = {ACM},
174
+ address = {New York, NY, USA},
175
+ keywords = {information heterogeneity, information integration, recommender systems},
176
+ }
177
+
178
+ -------
179
+ Credits
180
+ -------
181
+
182
+ This dataset was built by Ignacio Fern�ndez-Tob�as with the collaboration of Iv�n Cantador and Alejandro Bellog�n,
183
+ members of the Information Retrieval group at Universidad Autonoma de Madrid (http://ir.ii.uam.es)
184
+
185
+ -------
186
+ Contact
187
+ -------
188
+
189
+ Iv�n Cantador, ivan [dot] cantador [at] uam [dot] es
TLF2K/artists.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfafc159dca1bcf439f18ae73572a71d43eaf2ec3f04a0a2cd0f47d55443c902
3
+ size 25485819
TLF2K/masks.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:458dd24b580e52547416f7a32e7285f263c4c76c35a07e99d5c72379b19b46d9
3
+ size 28742
TLF2K/user_artists.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d09e1277837a821c7e356b8820a2529c0e4de4c4d69c689ab2898e90c4f5903
3
+ size 1097620
TLF2K/user_friends.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb5a556d3039c28ac951a46d1d0a6457e61c31f0eaa157f41263d4a9ec0c294e
3
+ size 124624
TML1M/README.md ADDED
@@ -0,0 +1,234 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ DESCRIPTION
2
+ ================================================================================
3
+
4
+ Table-Movielens1M extends the original Movielens-1M dataset (https://grouplens.org/datasets/movielens/1m/) with enriched movie data. This new version contains 6040 users, 3883 movies, and 1000209 ratings. Leveraging each MovielensID's corresponding movie page on movielens.org, we further fetch some "time-invariant" metadata for movies, including: Director, Cast, Runtime, Languages, Certificate, Plot, and Url.
5
+
6
+ We have also prepared embeddings for movies with all-MiniLM-L6-v2 model, see embeddings.npy in zipfile.
7
+
8
+ The basic task is to classify users' age phase.
9
+
10
+ ENHANCED MOVIE DATA FORMAT
11
+ ================================================================================
12
+
13
+ movies.csv follows the format outlined below:
14
+ MovielensID,Title,Year,Genre,Director,Cast,Runtime,Languages,Certificate,Plot,Url
15
+
16
+ - MovielensID: This is the movie's id on the movielens website, inherited from the original Movielens-1M dataset.
17
+ - Title: The title of the movie, sourced from the movielens website.
18
+ - Year: The release year of the movie, sourced from the movielens website.
19
+ - Genre: Movie genres, inherited from the original Movielens-1M dataset.
20
+ - Director: The director's name of the movie, sourced from the movielens website.
21
+ - Cast: The main cast of the movie, sourced from the movielens website.
22
+ - Runtime: The duration of the movie, sourced from the movielens website.
23
+ - Languages: Official language versions of the movie, sourced from the movielens website.
24
+ - Certificate: Movie certificate information, sourced from the movielens website.
25
+ - Plot: A brief summary of the movie's main plot, sourced from the movielens website.
26
+ - Url: The movie's URL on the movielens website.
27
+
28
+ SOME SPECIAL NOTES
29
+ ================================================================================
30
+
31
+ 1. Please note that due to the age of the Movielens-1M dataset, some MovielensID values no longer correspond to actual pages, meaning there is a discrepancy between MovielensID and the actual page ID on the movielens website.
32
+
33
+ For movies facing this issue, we have extracted information from their actual pages. However, to minimize changes, we have not modified their MovielensID. Here is a list of such movies with their MovielensID and real ID:
34
+
35
+ * 3589: Original ID changed to 54605
36
+ * 557: Original ID changed to 8739
37
+ * 578: Original ID changed to 6531
38
+ * 669: Original ID changed to 6918
39
+ * 863: Original ID changed to 193303
40
+ * 978: Original ID changed to 4970
41
+ * 1108: Original ID changed to 6677
42
+ * 1205: Original ID changed to 4006
43
+ * 1294: Original ID changed to 5060
44
+ * 1362: Original ID changed to 4424
45
+ * 1494: Original ID changed to 6425
46
+ * 1868: Original ID changed to 6474
47
+ * 2645: Original ID changed to 5649
48
+ * 3027: Original ID changed to 203829
49
+ * 3366: Original ID changed to 6808
50
+ * 3416: Original ID changed to 6460
51
+ * 3482: Original ID changed to 72267
52
+ * 3532: Original ID changed to 5560
53
+ * 3842: Original ID changed to 5717
54
+ * 3935: Original ID changed to 6910
55
+
56
+ 1. Additionally, there are some other issues:
57
+
58
+ * Movie with MovielensID 2228 in movielens is missing, so we use information from IMDB.
59
+ * Movies with MovielensID 1741 and 1758 are duplicates of 1795 and 2563 respectively.
60
+
61
+ 2. Users and Ratings file are followed original format.
62
+
63
+
64
+ ---------------- The Following is Movielens-1m's original Readme ----------------
65
+ SUMMARY
66
+ ================================================================================
67
+
68
+ These files contain 1,000,209 anonymous ratings of approximately 3,900 movies
69
+ made by 6,040 MovieLens users who joined MovieLens in 2000.
70
+
71
+ USAGE LICENSE
72
+ ================================================================================
73
+
74
+ Neither the University of Minnesota nor any of the researchers
75
+ involved can guarantee the correctness of the data, its suitability
76
+ for any particular purpose, or the validity of results based on the
77
+ use of the data set. The data set may be used for any research
78
+ purposes under the following conditions:
79
+
80
+ * The user may not state or imply any endorsement from the
81
+ University of Minnesota or the GroupLens Research Group.
82
+
83
+ * The user must acknowledge the use of the data set in
84
+ publications resulting from the use of the data set
85
+ (see below for citation information).
86
+
87
+ * The user may not redistribute the data without separate
88
+ permission.
89
+
90
+ * The user may not use this information for any commercial or
91
+ revenue-bearing purposes without first obtaining permission
92
+ from a faculty member of the GroupLens Research Project at the
93
+ University of Minnesota.
94
+
95
+ If you have any further questions or comments, please contact GroupLens
96
97
+
98
+ CITATION
99
+ ================================================================================
100
+
101
+ To acknowledge use of the dataset in publications, please cite the following
102
+ paper:
103
+
104
+ F. Maxwell Harper and Joseph A. Konstan. 2015. The MovieLens Datasets: History
105
+ and Context. ACM Transactions on Interactive Intelligent Systems (TiiS) 5, 4,
106
+ Article 19 (December 2015), 19 pages. DOI=http://dx.doi.org/10.1145/2827872
107
+
108
+
109
+ ACKNOWLEDGEMENTS
110
+ ================================================================================
111
+
112
+ Thanks to Shyong Lam and Jon Herlocker for cleaning up and generating the data
113
+ set.
114
+
115
+ FURTHER INFORMATION ABOUT THE GROUPLENS RESEARCH PROJECT
116
+ ================================================================================
117
+
118
+ The GroupLens Research Project is a research group in the Department of
119
+ Computer Science and Engineering at the University of Minnesota. Members of
120
+ the GroupLens Research Project are involved in many research projects related
121
+ to the fields of information filtering, collaborative filtering, and
122
+ recommender systems. The project is lead by professors John Riedl and Joseph
123
+ Konstan. The project began to explore automated collaborative filtering in
124
+ 1992, but is most well known for its world wide trial of an automated
125
+ collaborative filtering system for Usenet news in 1996. Since then the project
126
+ has expanded its scope to research overall information filtering solutions,
127
+ integrating in content-based methods as well as improving current collaborative
128
+ filtering technology.
129
+
130
+ Further information on the GroupLens Research project, including research
131
+ publications, can be found at the following web site:
132
+
133
+ http://www.grouplens.org/
134
+
135
+ GroupLens Research currently operates a movie recommender based on
136
+ collaborative filtering:
137
+
138
+ http://www.movielens.org/
139
+
140
+ RATINGS FILE DESCRIPTION
141
+ ================================================================================
142
+
143
+ All ratings are contained in the file "ratings.dat" and are in the
144
+ following format:
145
+
146
+ UserID::MovieID::Rating::Timestamp
147
+
148
+ - UserIDs range between 1 and 6040
149
+ - MovieIDs range between 1 and 3952
150
+ - Ratings are made on a 5-star scale (whole-star ratings only)
151
+ - Timestamp is represented in seconds since the epoch as returned by time(2)
152
+ - Each user has at least 20 ratings
153
+
154
+ USERS FILE DESCRIPTION
155
+ ================================================================================
156
+
157
+ User information is in the file "users.dat" and is in the following
158
+ format:
159
+
160
+ UserID::Gender::Age::Occupation::Zip-code
161
+
162
+ All demographic information is provided voluntarily by the users and is
163
+ not checked for accuracy. Only users who have provided some demographic
164
+ information are included in this data set.
165
+
166
+ - Gender is denoted by a "M" for male and "F" for female
167
+ - Age is chosen from the following ranges:
168
+
169
+ * 1: "Under 18"
170
+ * 18: "18-24"
171
+ * 25: "25-34"
172
+ * 35: "35-44"
173
+ * 45: "45-49"
174
+ * 50: "50-55"
175
+ * 56: "56+"
176
+
177
+ - Occupation is chosen from the following choices:
178
+
179
+ * 0: "other" or not specified
180
+ * 1: "academic/educator"
181
+ * 2: "artist"
182
+ * 3: "clerical/admin"
183
+ * 4: "college/grad student"
184
+ * 5: "customer service"
185
+ * 6: "doctor/health care"
186
+ * 7: "executive/managerial"
187
+ * 8: "farmer"
188
+ * 9: "homemaker"
189
+ * 10: "K-12 student"
190
+ * 11: "lawyer"
191
+ * 12: "programmer"
192
+ * 13: "retired"
193
+ * 14: "sales/marketing"
194
+ * 15: "scientist"
195
+ * 16: "self-employed"
196
+ * 17: "technician/engineer"
197
+ * 18: "tradesman/craftsman"
198
+ * 19: "unemployed"
199
+ * 20: "writer"
200
+
201
+ MOVIES FILE DESCRIPTION
202
+ ================================================================================
203
+
204
+ Movie information is in the file "movies.dat" and is in the following
205
+ format:
206
+
207
+ MovieID::Title::Genres
208
+
209
+ - Titles are identical to titles provided by the IMDB (including
210
+ year of release)
211
+ - Genres are pipe-separated and are selected from the following genres:
212
+
213
+ * Action
214
+ * Adventure
215
+ * Animation
216
+ * Children's
217
+ * Comedy
218
+ * Crime
219
+ * Documentary
220
+ * Drama
221
+ * Fantasy
222
+ * Film-Noir
223
+ * Horror
224
+ * Musical
225
+ * Mystery
226
+ * Romance
227
+ * Sci-Fi
228
+ * Thriller
229
+ * War
230
+ * Western
231
+
232
+ - Some MovieIDs do not correspond to a movie due to accidental duplicate
233
+ entries and/or test entries
234
+ - Movies are mostly entered by hand, so errors and inconsistencies may exist
TML1M/embeddings.npy ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:233b81d6558429e97c36b662a276e1c13357086a4ef2b708a00e656a8c68724e
3
+ size 5964416
TML1M/masks.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96e65531ea23ba8f76b1f6f9ce265664c888f5734a91de74c134a8c03c93d869
3
+ size 19725
TML1M/movies.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6bf7f40234034cb32f676e7e1def455b2d0e18626c7dc2bba0dba9ef52f558d1
3
+ size 1889104
TML1M/ratings.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6304cec4eae29ecf7276b028ef5554cb590513ca39fe2a05a1e86acbde70b4af
3
+ size 22592151
TML1M/users.csv ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4fcb0ba5b9eade26d2674e2c799587f3e4c595cd4465c0d9d923884b9e74ffc9
3
+ size 116287