J94 commited on
Commit
eca693c
·
verified ·
1 Parent(s): 9e0b3ba

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +151 -37
README.md CHANGED
@@ -1,53 +1,167 @@
1
- # Bookmark Dataset
 
 
 
 
 
 
 
 
 
 
 
2
 
3
- A collection of 11783 bookmarks from various sources including Twitter, GitHub, and Raindrop.io.
4
 
5
  ## Dataset Description
6
 
7
- This dataset contains bookmarks collected from various sources. Each record includes:
8
 
9
- - Basic bookmark information (ID, title, URL, content)
10
- - Source-specific metadata (Twitter metrics, GitHub repository info, etc.)
11
- - Temporal information (creation date, year, month)
12
- - Content analysis features (domain, content length)
13
 
14
- ## Source Distribution
15
 
16
- ```
17
- source
18
- raindrop 6147
19
- twitter 2612
20
- twitter_like 2105
21
- github 919
22
- ```
23
 
24
- ## Top Domains
25
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  ```
27
- domain
28
- twitter.com 7625
29
- github.com 1441
30
- x.com 277
31
- arxiv.org 158
32
- chat.openai.com 53
33
- huggingface.co 47
34
- app.raindrop.io 33
35
- colab.research.google.com 26
36
- www.youtube.com 25
37
- www.semanticscholar.org 20
38
- ```
39
 
40
- ## Usage
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
 
42
- This dataset can be used for:
43
 
44
- - Analyzing bookmark patterns and trends
45
- - Understanding content consumption across different platforms
46
- - Training recommendation systems
47
- - Studying information organization
48
 
49
- ## Data Format
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
 
51
- The dataset is provided in JSONL format with fields for common attributes and source-specific metadata.
52
 
53
- Generated on: 2025-03-28
 
1
+ ---
2
+ license: apache-2.0
3
+ tags:
4
+ - bookmarks
5
+ - twitter
6
+ - github
7
+ - raindrop
8
+ datasets:
9
+ - J94/bookmarks-dataset
10
+ language:
11
+ - en
12
+ ---
13
 
14
+ # Dataset Card for Bookmarks Collection
15
 
16
  ## Dataset Description
17
 
18
+ ### Dataset Summary
19
 
20
+ This dataset contains a personal collection of bookmarks from various sources including Twitter, GitHub, and Raindrop.io. It provides a comprehensive view of web content consumption patterns across different platforms, with rich metadata for each source type.
 
 
 
21
 
22
+ The dataset includes 11,783 bookmark records with content and metadata spanning social media posts, code repositories, articles, and other web content.
23
 
24
+ ### Languages
 
 
 
 
 
 
25
 
26
+ The dataset primarily contains content in English.
27
 
28
+ ## Dataset Structure
29
+
30
+ ### Data Instances
31
+
32
+ Each record in the dataset represents a single bookmark with the following structure:
33
+
34
+ ```json
35
+ {
36
+ "id": 11783,
37
+ "source": "twitter_like",
38
+ "title": "Example Title",
39
+ "url": "https://twitter.com/username/status/123456789",
40
+ "content": "The actual content of the bookmark...",
41
+ "created_at": "2025-03-28T12:25:57.718145+00:00",
42
+ "domain": "twitter.com",
43
+ "content_length": 301,
44
+ "year": 2025,
45
+ "month": 3,
46
+ "twitter_username": "username",
47
+ "twitter_likes": 42,
48
+ "twitter_retweets": 7,
49
+ "twitter_replies": 3
50
+ }
51
  ```
 
 
 
 
 
 
 
 
 
 
 
 
52
 
53
+ Different fields are available depending on the source type:
54
+
55
+ - **Twitter** bookmarks include engagement metrics and user information
56
+ - **GitHub** bookmarks include repository stars, forks, and programming language
57
+ - **Raindrop.io** bookmarks include tags and domain information
58
+
59
+ ### Data Fields
60
+
61
+ #### Common Fields
62
+ - `id`: Unique identifier for the bookmark
63
+ - `source`: Source of the bookmark (twitter, github, raindrop, etc.)
64
+ - `title`: Title of the bookmark
65
+ - `url`: URL of the bookmark
66
+ - `content`: Content of the bookmark
67
+ - `created_at`: Creation date of the bookmark
68
+ - `domain`: Domain of the URL
69
+ - `content_length`: Length of the content in characters
70
+ - `year`: Year the bookmark was created
71
+ - `month`: Month the bookmark was created
72
+
73
+ #### Twitter-specific Fields
74
+ - `twitter_username`: Twitter username
75
+ - `twitter_name`: Twitter display name
76
+ - `twitter_followers`: Number of followers of the author
77
+ - `twitter_likes`: Number of likes on the tweet
78
+ - `twitter_retweets`: Number of retweets
79
+ - `twitter_replies`: Number of replies to the tweet
80
+
81
+ #### GitHub-specific Fields
82
+ - `github_repo`: GitHub repository name
83
+ - `github_stars`: Number of stars on the GitHub repository
84
+ - `github_forks`: Number of forks of the GitHub repository
85
+ - `github_owner`: Owner of the GitHub repository
86
+ - `github_language`: Primary language of the GitHub repository
87
+
88
+ #### Raindrop-specific Fields
89
+ - `raindrop_domain`: Domain saved in Raindrop.io
90
+ - `raindrop_tags`: Tags associated with the Raindrop bookmark
91
+
92
+ ### Data Splits
93
+
94
+ The dataset does not have explicit splits and is provided as a single collection.
95
+
96
+ ## Dataset Creation
97
+
98
+ ### Curation Rationale
99
+
100
+ This dataset was created to:
101
+ 1. Analyze personal content consumption patterns across different platforms
102
+ 2. Enable exploration of bookmark metadata and content
103
+ 3. Provide a structured dataset for recommendation systems research
104
+ 4. Study information organization and retrieval strategies
105
+
106
+ ### Source Data
107
+
108
+ #### Initial Data Collection and Normalization
109
+
110
+ The data was collected using the following sources:
111
+ - Twitter API for tweets and likes
112
+ - GitHub API for starred repositories
113
+ - Raindrop.io API for saved bookmarks
114
 
115
+ Data from these disparate sources was normalized into a consistent format with source-specific metadata preserved in dedicated fields.
116
 
117
+ #### Who are the source language producers?
 
 
 
118
 
119
+ The content comes from various creators across the web, including Twitter users, GitHub repository owners, and website authors whose content was bookmarked via Raindrop.io.
120
+
121
+ ### Annotations
122
+
123
+ The dataset does not contain manual annotations beyond the metadata provided by the source APIs and the categorization by source.
124
+
125
+ ## Considerations for Using the Data
126
+
127
+ ### Social Impact of Dataset
128
+
129
+ This dataset represents personal information consumption patterns and can be used to study how individuals organize and consume digital content. It may provide insights into effective information management strategies.
130
+
131
+ ### Discussion of Biases
132
+
133
+ The dataset reflects the personal interests and content consumption preferences of a single individual, so it contains inherent biases toward specific topics, creators, and platforms.
134
+
135
+ ### Other Known Limitations
136
+
137
+ - Some fields may contain missing values depending on what was available from the source API
138
+ - Content may be truncated in some cases due to API limitations
139
+ - The dataset only includes publicly accessible content
140
+
141
+ ## Additional Information
142
+
143
+ ### Dataset Curators
144
+
145
+ This dataset was curated by J94.
146
+
147
+ ### Licensing Information
148
+
149
+ This dataset is released under the Apache 2.0 License.
150
+
151
+ ### Citation Information
152
+
153
+ If you use this dataset in your research, please cite:
154
+
155
+ ```
156
+ @dataset{bookmarks_dataset,
157
+ author = {J94},
158
+ title = {Bookmarks Dataset},
159
+ year = {2025},
160
+ publisher = {Hugging Face},
161
+ howpublished = {\url{https://huggingface.co/datasets/J94/bookmarks-dataset}}
162
+ }
163
+ ```
164
 
165
+ ### Contributions
166
 
167
+ This dataset welcomes community contributions to improve the documentation, enhance the metadata, or add additional analysis tools.