J94 commited on
Commit
0213198
·
verified ·
1 Parent(s): 200aea4

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. data.jsonl +0 -0
  2. metadata.json +84 -9
data.jsonl CHANGED
The diff for this file is too large to render. See raw diff
 
metadata.json CHANGED
@@ -34,15 +34,15 @@
34
  "description": "Domain of the URL"
35
  },
36
  "content_length": {
37
- "dtype": "float32",
38
  "description": "Length of the content in characters"
39
  },
40
  "year": {
41
- "dtype": "float32",
42
  "description": "Year the bookmark was created"
43
  },
44
  "month": {
45
- "dtype": "float32",
46
  "description": "Month the bookmark was created"
47
  },
48
  "twitter_username": {
@@ -54,31 +54,75 @@
54
  "description": "Twitter display name"
55
  },
56
  "twitter_followers": {
57
- "dtype": "float32",
58
  "description": "Number of Twitter followers"
59
  },
60
  "twitter_likes": {
61
- "dtype": "float32",
62
  "description": "Number of likes on the tweet"
63
  },
64
  "twitter_retweets": {
65
- "dtype": "float32",
66
  "description": "Number of retweets"
67
  },
68
  "twitter_replies": {
69
- "dtype": "float32",
70
  "description": "Number of replies to the tweet"
71
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
72
  "github_repo": {
73
  "dtype": "string",
74
  "description": "GitHub repository name"
75
  },
76
  "github_stars": {
77
- "dtype": "float32",
78
  "description": "Number of stars on the GitHub repository"
79
  },
80
  "github_forks": {
81
- "dtype": "float32",
82
  "description": "Number of forks of the GitHub repository"
83
  },
84
  "github_owner": {
@@ -89,6 +133,37 @@
89
  "dtype": "string",
90
  "description": "Primary language of the GitHub repository"
91
  },
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
92
  "raindrop_domain": {
93
  "dtype": "string",
94
  "description": "Domain saved in Raindrop.io"
 
34
  "description": "Domain of the URL"
35
  },
36
  "content_length": {
37
+ "dtype": "int64",
38
  "description": "Length of the content in characters"
39
  },
40
  "year": {
41
+ "dtype": "int64",
42
  "description": "Year the bookmark was created"
43
  },
44
  "month": {
45
+ "dtype": "int64",
46
  "description": "Month the bookmark was created"
47
  },
48
  "twitter_username": {
 
54
  "description": "Twitter display name"
55
  },
56
  "twitter_followers": {
57
+ "dtype": "int64",
58
  "description": "Number of Twitter followers"
59
  },
60
  "twitter_likes": {
61
+ "dtype": "int64",
62
  "description": "Number of likes on the tweet"
63
  },
64
  "twitter_retweets": {
65
+ "dtype": "int64",
66
  "description": "Number of retweets"
67
  },
68
  "twitter_replies": {
69
+ "dtype": "int64",
70
  "description": "Number of replies to the tweet"
71
  },
72
+ "twitter_thread": {
73
+ "dtype": "list",
74
+ "description": "Full thread of tweets (including the original tweet)",
75
+ "sequence": {
76
+ "dtype": "dict",
77
+ "dict": {
78
+ "id": {
79
+ "dtype": "string",
80
+ "description": "Tweet ID"
81
+ },
82
+ "text": {
83
+ "dtype": "string",
84
+ "description": "Tweet text content"
85
+ },
86
+ "created_at": {
87
+ "dtype": "string",
88
+ "description": "Tweet creation time"
89
+ },
90
+ "media": {
91
+ "dtype": "list",
92
+ "description": "Media URLs in the tweet",
93
+ "sequence": {
94
+ "dtype": "string"
95
+ }
96
+ },
97
+ "favorite_count": {
98
+ "dtype": "int64",
99
+ "description": "Number of likes"
100
+ },
101
+ "retweet_count": {
102
+ "dtype": "int64",
103
+ "description": "Number of retweets"
104
+ },
105
+ "reply_count": {
106
+ "dtype": "int64",
107
+ "description": "Number of replies"
108
+ }
109
+ }
110
+ }
111
+ },
112
+ "twitter_thread_markdown": {
113
+ "dtype": "string",
114
+ "description": "Markdown representation of the full thread with embedded media"
115
+ },
116
  "github_repo": {
117
  "dtype": "string",
118
  "description": "GitHub repository name"
119
  },
120
  "github_stars": {
121
+ "dtype": "int64",
122
  "description": "Number of stars on the GitHub repository"
123
  },
124
  "github_forks": {
125
+ "dtype": "int64",
126
  "description": "Number of forks of the GitHub repository"
127
  },
128
  "github_owner": {
 
133
  "dtype": "string",
134
  "description": "Primary language of the GitHub repository"
135
  },
136
+ "github_readme": {
137
+ "dtype": "string",
138
+ "description": "Full README content of the repository"
139
+ },
140
+ "github_readme_markdown": {
141
+ "dtype": "string",
142
+ "description": "README content formatted as Markdown"
143
+ },
144
+ "web_title": {
145
+ "dtype": "string",
146
+ "description": "Page title"
147
+ },
148
+ "web_description": {
149
+ "dtype": "string",
150
+ "description": "Page meta description"
151
+ },
152
+ "web_content_html": {
153
+ "dtype": "string",
154
+ "description": "Full HTML content of the webpage"
155
+ },
156
+ "web_content_markdown": {
157
+ "dtype": "string",
158
+ "description": "Converted markdown content of the webpage"
159
+ },
160
+ "web_images": {
161
+ "dtype": "list",
162
+ "description": "Images found on the webpage",
163
+ "sequence": {
164
+ "dtype": "string"
165
+ }
166
+ },
167
  "raindrop_domain": {
168
  "dtype": "string",
169
  "description": "Domain saved in Raindrop.io"