autotrain-data-processor commited on
Commit
be42575
·
1 Parent(s): 9757e11

Processed data from AutoTrain data processor ([2023-01-14 13:48 ]

Browse files
README.md ADDED
@@ -0,0 +1,82 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ task_categories:
5
+ - text-classification
6
+
7
+ ---
8
+ # AutoTrain Dataset for project: books-rating-analysis
9
+
10
+ ## Dataset Description
11
+
12
+ This dataset has been automatically processed by AutoTrain for project books-rating-analysis.
13
+
14
+ ### Languages
15
+
16
+ The BCP-47 code for the dataset's language is en.
17
+
18
+ ## Dataset Structure
19
+
20
+ ### Data Instances
21
+
22
+ A sample from this dataset looks as follows:
23
+
24
+ ```json
25
+ [
26
+ {
27
+ "feat_user_id": "d61f73208ec7385cff30110708a6ac17",
28
+ "feat_book_id": 10048874,
29
+ "feat_review_id": "45a0b2b42f50912b3b145a4c41763024",
30
+ "target": 3,
31
+ "text": "Really, I don't have much to say. There were parts that were amusing and interesting, but everything else was painfully slow. This was also my first \"Steampunk\" novel, so I'm really not sure how to react, I suppose. \n The Book: \n *I did not like having so many different perspectives to read from. I can see where it helped the story, but it muddled it at times. \n *Zombies in war? Pretty cool, to be honest. \n *The cover? It was alright. Fit Nora 'effin perfectly. \n *The entire Punk vs Victorian concept was interesting, but could have been explained better. \n Characters: \n *Nora- WHY, WHY, WHY do authors insist that the leading lady must be moody, difficult to like, and \"doll-like\"? She really wasn't all that enjoyable. I did not like Nora. She was quite rude to, well, everyone, and I dislike rudeness! \n *Bram- Everyone is so hard on Bram. Aside from the fact that he immediately fell in love with the \"beautiful Nora\", I actually liked him a lot. Why? He was a nice guy. He wasn't crazy-perfect or anything. He was conflicted, but not moody, thoughtful, and really just a decent person. I would have liked him a lot more had he NOT been so focused on Miss Dearly. \n *Pamela - Oh my sweet goodness....a character that changed and developed as the book went on! Miss Pam Roe learns to be independent and to think for herself. You go, Pam! I adored her. \n *Issy - Pam's brother. I hated, hated him at first....but he grew on me. As someone who has a younger brother, I can see how realistic he and Pam's relationship was. I've watched my own brother mature, and seeing Issy grow up in such a short period of time reminded me of that. It was nice. It also made me want to give my own brother a big hug when I finished the book. \n *Ren - Ha! The poor boy. He's nerdy, skinny, bookish...and not someone people enjoy, yet I liked him. He had a quick-wit and was just a nice side-character. I just wish there was more said about him. \n *Victor - Nora's papa. Umm..yeah. Not interesting. I skimmed his chapters. He did stuff...bleh. \n *Sam - Comic relief....and he kind of grew on me. He was somehow annoying and enjoyable at the same time. \n *Chas, Tom, and Coalhouse - no comments. They weren't much developed aside from ONE scene between Tom and Coalhouse. \n *Wolfe - stereotypical blahness. Also skimmed his chapters. \n *Michael and Mink - also found them to be stereotypes. DEPTH TO A CHARACTER IS IMPORTANT. It was like...it started...then stopped. Meh.",
32
+ "feat_date_added": "Mon Apr 01 18:33:08 -0700 2013",
33
+ "feat_date_updated": "Sun Mar 30 14:59:17 -0700 2014",
34
+ "feat_read_at": "Sun Mar 30 14:59:17 -0700 2014",
35
+ "feat_started_at": "Sun Mar 23 00:00:00 -0700 2014",
36
+ "feat_n_votes": 1,
37
+ "feat_n_comments": 0
38
+ },
39
+ {
40
+ "feat_user_id": "4df9de6b0e662ecbecdb850d8fca4a73",
41
+ "feat_book_id": 9436632,
42
+ "feat_review_id": "188a9686ad899b5bf8ebf95d3e10d691",
43
+ "target": 4,
44
+ "text": "It makes me happy to know this wasn't the end. It makes me sad to think I have to wait for the third book.",
45
+ "feat_date_added": "Tue Aug 16 21:28:29 -0700 2011",
46
+ "feat_date_updated": "Thu Jun 14 21:43:47 -0700 2012",
47
+ "feat_read_at": "Tue Aug 23 00:00:00 -0700 2011",
48
+ "feat_started_at": "Tue Aug 16 00:00:00 -0700 2011",
49
+ "feat_n_votes": 0,
50
+ "feat_n_comments": 0
51
+ }
52
+ ]
53
+ ```
54
+
55
+ ### Dataset Fields
56
+
57
+ The dataset has the following fields (also called "features"):
58
+
59
+ ```json
60
+ {
61
+ "feat_user_id": "Value(dtype='string', id=None)",
62
+ "feat_book_id": "Value(dtype='int64', id=None)",
63
+ "feat_review_id": "Value(dtype='string', id=None)",
64
+ "target": "ClassLabel(names=['0', '1', '2', '3', '4', '5'], id=None)",
65
+ "text": "Value(dtype='string', id=None)",
66
+ "feat_date_added": "Value(dtype='string', id=None)",
67
+ "feat_date_updated": "Value(dtype='string', id=None)",
68
+ "feat_read_at": "Value(dtype='string', id=None)",
69
+ "feat_started_at": "Value(dtype='string', id=None)",
70
+ "feat_n_votes": "Value(dtype='int64', id=None)",
71
+ "feat_n_comments": "Value(dtype='int64', id=None)"
72
+ }
73
+ ```
74
+
75
+ ### Dataset Splits
76
+
77
+ This dataset is split into a train and validation split. The split sizes are as follow:
78
+
79
+ | Split name | Num samples |
80
+ | ------------ | ------------------- |
81
+ | train | 719997 |
82
+ | valid | 180003 |
processed/dataset_dict.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"splits": ["train", "valid"]}
processed/train/dataset.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:546625c4aa704c8794c1089fa3f393ef85b0495b939fc9038b51d7cadd3d149d
3
+ size 934143712
processed/train/dataset_info.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "AutoTrain generated dataset",
4
+ "features": {
5
+ "feat_user_id": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "feat_book_id": {
10
+ "dtype": "int64",
11
+ "_type": "Value"
12
+ },
13
+ "feat_review_id": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ },
17
+ "target": {
18
+ "names": [
19
+ "0",
20
+ "1",
21
+ "2",
22
+ "3",
23
+ "4",
24
+ "5"
25
+ ],
26
+ "_type": "ClassLabel"
27
+ },
28
+ "text": {
29
+ "dtype": "string",
30
+ "_type": "Value"
31
+ },
32
+ "feat_date_added": {
33
+ "dtype": "string",
34
+ "_type": "Value"
35
+ },
36
+ "feat_date_updated": {
37
+ "dtype": "string",
38
+ "_type": "Value"
39
+ },
40
+ "feat_read_at": {
41
+ "dtype": "string",
42
+ "_type": "Value"
43
+ },
44
+ "feat_started_at": {
45
+ "dtype": "string",
46
+ "_type": "Value"
47
+ },
48
+ "feat_n_votes": {
49
+ "dtype": "int64",
50
+ "_type": "Value"
51
+ },
52
+ "feat_n_comments": {
53
+ "dtype": "int64",
54
+ "_type": "Value"
55
+ }
56
+ },
57
+ "homepage": "",
58
+ "license": "",
59
+ "splits": {
60
+ "train": {
61
+ "name": "train",
62
+ "num_bytes": 933560964,
63
+ "num_examples": 719997,
64
+ "dataset_name": null
65
+ }
66
+ }
67
+ }
processed/train/state.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "dataset.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "6c86bcb5ff890758",
8
+ "_format_columns": [
9
+ "feat_book_id",
10
+ "feat_date_added",
11
+ "feat_date_updated",
12
+ "feat_n_comments",
13
+ "feat_n_votes",
14
+ "feat_read_at",
15
+ "feat_review_id",
16
+ "feat_started_at",
17
+ "feat_user_id",
18
+ "target",
19
+ "text"
20
+ ],
21
+ "_format_kwargs": {},
22
+ "_format_type": null,
23
+ "_indexes": {},
24
+ "_output_all_columns": false,
25
+ "_split": null
26
+ }
processed/valid/dataset.arrow ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:822c224c8986d260722fb6661df03e4ae4e6ef51341728a1be8192f367ad435e
3
+ size 233304520
processed/valid/dataset_info.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "citation": "",
3
+ "description": "AutoTrain generated dataset",
4
+ "features": {
5
+ "feat_user_id": {
6
+ "dtype": "string",
7
+ "_type": "Value"
8
+ },
9
+ "feat_book_id": {
10
+ "dtype": "int64",
11
+ "_type": "Value"
12
+ },
13
+ "feat_review_id": {
14
+ "dtype": "string",
15
+ "_type": "Value"
16
+ },
17
+ "target": {
18
+ "names": [
19
+ "0",
20
+ "1",
21
+ "2",
22
+ "3",
23
+ "4",
24
+ "5"
25
+ ],
26
+ "_type": "ClassLabel"
27
+ },
28
+ "text": {
29
+ "dtype": "string",
30
+ "_type": "Value"
31
+ },
32
+ "feat_date_added": {
33
+ "dtype": "string",
34
+ "_type": "Value"
35
+ },
36
+ "feat_date_updated": {
37
+ "dtype": "string",
38
+ "_type": "Value"
39
+ },
40
+ "feat_read_at": {
41
+ "dtype": "string",
42
+ "_type": "Value"
43
+ },
44
+ "feat_started_at": {
45
+ "dtype": "string",
46
+ "_type": "Value"
47
+ },
48
+ "feat_n_votes": {
49
+ "dtype": "int64",
50
+ "_type": "Value"
51
+ },
52
+ "feat_n_comments": {
53
+ "dtype": "int64",
54
+ "_type": "Value"
55
+ }
56
+ },
57
+ "homepage": "",
58
+ "license": "",
59
+ "splits": {
60
+ "valid": {
61
+ "name": "valid",
62
+ "num_bytes": 233157001,
63
+ "num_examples": 180003,
64
+ "dataset_name": null
65
+ }
66
+ }
67
+ }
processed/valid/state.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_data_files": [
3
+ {
4
+ "filename": "dataset.arrow"
5
+ }
6
+ ],
7
+ "_fingerprint": "44445662d9351465",
8
+ "_format_columns": [
9
+ "feat_book_id",
10
+ "feat_date_added",
11
+ "feat_date_updated",
12
+ "feat_n_comments",
13
+ "feat_n_votes",
14
+ "feat_read_at",
15
+ "feat_review_id",
16
+ "feat_started_at",
17
+ "feat_user_id",
18
+ "target",
19
+ "text"
20
+ ],
21
+ "_format_kwargs": {},
22
+ "_format_type": null,
23
+ "_indexes": {},
24
+ "_output_all_columns": false,
25
+ "_split": null
26
+ }