Dataset Preview
The full dataset viewer is not available (click to read why). Only showing a preview of the rows.
The dataset generation failed because of a cast error
Error code: DatasetGenerationCastError
Exception: DatasetGenerationCastError
Message: An error occurred while generating the dataset
All the data files must have the same columns, but at some point there are 2 new columns ({'posts_error', 'comments_error'})
This happened while the json dataset builder was generating data using
hf://datasets/simonycl/temp_file_2/author/train_author_history.jsonl (at revision e8aa3e37ca25c13fdd4502e8a768d04b23b6e528), ['hf://datasets/simonycl/temp_file_2@e8aa3e37ca25c13fdd4502e8a768d04b23b6e528/author/train_author_history.jsonl', 'hf://datasets/simonycl/temp_file_2@e8aa3e37ca25c13fdd4502e8a768d04b23b6e528/author/train_author_history_post_only.jsonl', 'hf://datasets/simonycl/temp_file_2@e8aa3e37ca25c13fdd4502e8a768d04b23b6e528/data/cmv/processed_2017_2025/deduplicated/train_deduplicated.jsonl', 'hf://datasets/simonycl/temp_file_2@e8aa3e37ca25c13fdd4502e8a768d04b23b6e528/data/cmv/processed_2017_2025/deduplicated/train_deduplicated_with_categories.jsonl', 'hf://datasets/simonycl/temp_file_2@e8aa3e37ca25c13fdd4502e8a768d04b23b6e528/data/cmv/processed_2017_2025/final/train.jsonl', 'hf://datasets/simonycl/temp_file_2@e8aa3e37ca25c13fdd4502e8a768d04b23b6e528/data/cmv/processed_2017_2025/final/train_with_categories.jsonl', 'hf://datasets/simonycl/temp_file_2@e8aa3e37ca25c13fdd4502e8a768d04b23b6e528/data/cmv/train_.jsonl', 'hf://datasets/simonycl/temp_file_2@e8aa3e37ca25c13fdd4502e8a768d04b23b6e528/data/cmv/train_easy.jsonl', 'hf://datasets/simonycl/temp_file_2@e8aa3e37ca25c13fdd4502e8a768d04b23b6e528/data/cmv/train_hard.jsonl', 'hf://datasets/simonycl/temp_file_2@e8aa3e37ca25c13fdd4502e8a768d04b23b6e528/results_meta-llama_Meta-Llama-3.1-8B-Instruct_simonycl_cmv_hard_train_hint.json']
Please either edit the data files to have matching columns, or separate them into different configurations (see docs at https://hf.co/docs/hub/datasets-manual-configuration#multiple-configurations)
Traceback: Traceback (most recent call last):
File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1887, in _prepare_split_single
writer.write_table(table)
File "/usr/local/lib/python3.12/site-packages/datasets/arrow_writer.py", line 675, in write_table
pa_table = table_cast(pa_table, self._schema)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2272, in table_cast
return cast_table_to_schema(table, schema)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/table.py", line 2218, in cast_table_to_schema
raise CastError(
datasets.table.CastError: Couldn't cast
post_id: string
post_author: string
post_timestamp: int64
post_title: string
author_posts: list<item: struct<id: string, title: string, selftext: string, subreddit: string, score: int64, crea (... 50 chars omitted)
child 0, item: struct<id: string, title: string, selftext: string, subreddit: string, score: int64, created_utc: in (... 38 chars omitted)
child 0, id: string
child 1, title: string
child 2, selftext: string
child 3, subreddit: string
child 4, score: int64
child 5, created_utc: int64
child 6, num_comments: int64
child 7, url: string
author_comments: list<item: struct<id: string, body: string, subreddit: string, score: int64, created_utc: int64, lin (... 33 chars omitted)
child 0, item: struct<id: string, body: string, subreddit: string, score: int64, created_utc: int64, link_id: strin (... 21 chars omitted)
child 0, id: string
child 1, body: string
child 2, subreddit: string
child 3, score: int64
child 4, created_utc: int64
child 5, link_id: string
child 6, parent_id: string
posts_count: int64
comments_count: int64
skipped: bool
skip_reason: string
comments_error: struct<error: int64, text: string>
child 0, error: int64
child 1, text: string
posts_error: struct<error: int64, text: string>
child 0, error: int64
child 1, text: string
to
{'post_id': Value('string'), 'post_author': Value('string'), 'post_timestamp': Value('int64'), 'post_title': Value('string'), 'author_posts': List({'id': Value('string'), 'title': Value('string'), 'selftext': Value('string'), 'subreddit': Value('string'), 'score': Value('int64'), 'created_utc': Value('int64'), 'num_comments': Value('int64'), 'url': Value('string')}), 'author_comments': List({'id': Value('string'), 'body': Value('string'), 'subreddit': Value('string'), 'score': Value('int64'), 'created_utc': Value('int64'), 'link_id': Value('string'), 'parent_id': Value('string')}), 'posts_count': Value('int64'), 'comments_count': Value('int64'), 'skipped': Value('bool'), 'skip_reason': Value('string')}
because column names don't match
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 1342, in compute_config_parquet_and_info_response
parquet_operations, partial, estimated_dataset_info = stream_convert_to_parquet(
^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/src/services/worker/src/worker/job_runners/config/parquet_and_info.py", line 907, in stream_convert_to_parquet
builder._prepare_split(split_generator=splits_generators[split], file_format="parquet")
File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1736, in _prepare_split
for job_id, done, content in self._prepare_split_single(
^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.12/site-packages/datasets/builder.py", line 1889, in _prepare_split_single
raise DatasetGenerationCastError.from_cast_error(
datasets.exceptions.DatasetGenerationCastError: An error occurred while generating the dataset
All the data files must have the same columns, but at some point there are 2 new columns ({'posts_error', 'comments_error'})
This happened while the json dataset builder was generating data using
hf://datasets/simonycl/temp_file_2/author/train_author_history.jsonl (at revision e8aa3e37ca25c13fdd4502e8a768d04b23b6e528), ['hf://datasets/simonycl/temp_file_2@e8aa3e37ca25c13fdd4502e8a768d04b23b6e528/author/train_author_history.jsonl', 'hf://datasets/simonycl/temp_file_2@e8aa3e37ca25c13fdd4502e8a768d04b23b6e528/author/train_author_history_post_only.jsonl', 'hf://datasets/simonycl/temp_file_2@e8aa3e37ca25c13fdd4502e8a768d04b23b6e528/data/cmv/processed_2017_2025/deduplicated/train_deduplicated.jsonl', 'hf://datasets/simonycl/temp_file_2@e8aa3e37ca25c13fdd4502e8a768d04b23b6e528/data/cmv/processed_2017_2025/deduplicated/train_deduplicated_with_categories.jsonl', 'hf://datasets/simonycl/temp_file_2@e8aa3e37ca25c13fdd4502e8a768d04b23b6e528/data/cmv/processed_2017_2025/final/train.jsonl', 'hf://datasets/simonycl/temp_file_2@e8aa3e37ca25c13fdd4502e8a768d04b23b6e528/data/cmv/processed_2017_2025/final/train_with_categories.jsonl', 'hf://datasets/simonycl/temp_file_2@e8aa3e37ca25c13fdd4502e8a768d04b23b6e528/data/cmv/train_.jsonl', 'hf://datasets/simonycl/temp_file_2@e8aa3e37ca25c13fdd4502e8a768d04b23b6e528/data/cmv/train_easy.jsonl', 'hf://datasets/simonycl/temp_file_2@e8aa3e37ca25c13fdd4502e8a768d04b23b6e528/data/cmv/train_hard.jsonl', 'hf://datasets/simonycl/temp_file_2@e8aa3e37ca25c13fdd4502e8a768d04b23b6e528/results_meta-llama_Meta-Llama-3.1-8B-Instruct_simonycl_cmv_hard_train_hint.json']
Please either edit the data files to have matching columns, or separate them into different configurations (see docs at https://hf.co/docs/hub/datasets-manual-configuration#multiple-configurations)Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
post_id string | post_author string | post_timestamp int64 | post_title string | author_posts list | author_comments list | posts_count int64 | comments_count int64 | skipped bool | skip_reason string |
|---|---|---|---|---|---|---|---|---|---|
5o7nm3 | Justdowhatever93 | 1,484,527,668 | CMV: As a gay male, I think its better not to get close to Middle-Eastern immigrants I come across. | [
{
"id": "5litwe",
"title": "Does Azura even care that the Dunmer enslaved the Khajiit?",
"selftext": "Since they are both her children, in a way, you would think she would have done something to stop this or at least limit it. But I don't recall her ever doing anything to ease the suffering of her ensla... | [
{
"id": "dcfp82h",
"body": "What exactly have they done that makes them better? Honestly, they seem like better old people.",
"subreddit": "teslore",
"score": 1,
"created_utc": 1484438497,
"link_id": "t3_5nf85n",
"parent_id": "t1_dcefzg3"
},
{
"id": "dcfp31o",
"body": "Can yo... | 20 | 30 | false | null |
5n1bmd | arkonum | 1,484,005,253 | CMV: The argument that overseas '3rd world' manufacturing is immoral because "workers are getting paid 20c per day" is inherently flawed. | [
{
"id": "5l7wo0",
"title": "Which bible-based religion do you believe most accurately interprets and lives by the message of the bible, and why?",
"selftext": "With so many different interpretations of the bible and it's commandments and so many religions that have developed because of this, which one d... | [
{
"id": "dc6oxba",
"body": "You've just linked to an opinion page, not actual biblical evidence of the claim. Can you show any part of the bible that states God is omniscient? ",
"subreddit": "DebateReligion",
"score": 2,
"created_utc": 1483935615,
"link_id": "t3_5mskw5",
"parent_id": "t... | 20 | 30 | false | null |
5nym0o | [deleted] | 1,484,415,506 | null | [] | [] | null | null | true | invalid_author |
5my4j3 | OFGhost | 1,483,974,383 | CMV: Gender dysphoria may be a mental disorder... and that's okay. | [
{
"id": "5ksd4e",
"title": "Wanting to Become a Vegetarian: Is This a Good Diet?",
"selftext": "I've been wanting to go vegetarian for a long time now. The only thing stopping me has been my strong distaste for vegetables. I don't want to overeat protein and nothing else, so I need some advice. I've alr... | [
{
"id": "dajtbug",
"body": "Strangely enough, the mod seems to function now. It just... randomly started working, which is weird. And it's charging now. We're thinking that both coils that came with the tank were duds. I'm going to lend him a spare tank to switch out for the Melo for now until we figure out... | 20 | 30 | false | null |
5nnsvs | [deleted] | 1,484,273,756 | null | [] | [] | null | null | true | invalid_author |
5nwnd4 | Cheetuhman | 1,484,385,571 | CMV: Bernie Sanders could have defeated Donald Trump, had he been the Democrat nominee. | [
{
"id": "5nvxe2",
"title": "When a child vassal rebels, but their military is larger than yours.",
"selftext": "",
"subreddit": "CrusaderKings",
"score": 19,
"created_utc": 1484372938,
"num_comments": 0,
"url": "https://www.youtube.com/watch?v=_7VaCKfkfmQ"
},
{
"id": "5npdl3"... | [
{
"id": "dcbpw68",
"body": "To everything (turn, turn turn)\n\nThere is a season (turn, turn, turn)\n\nAnd a time for every Karling under Heaven.",
"subreddit": "CrusaderKings",
"score": 1,
"created_utc": 1484212446,
"link_id": "t3_5nbifd",
"parent_id": "t3_5nbifd"
},
{
"id": "dc... | 20 | 30 | false | null |
5muc5x | friedman31 | 1,483,921,355 | CMV: It is immoral and unjust for God to damn unbelievers to Hell | [
{
"id": "5mar6a",
"title": "What would be the best way to lose the most amount of weight possible in the smallest amount of time possible with no concern for personal health, but without dying?",
"selftext": "",
"subreddit": "AskScienceDiscussion",
"score": 2,
"created_utc": 1483667898,
... | [
{
"id": "dc5406s",
"body": "Pathetic policy. Schools that expel for fighting, or have a zero tolerance policy, are really just anti-self defense. You're giving the bully all the power; admittedly, they risk expulsion if they get caught for it, but if they attack someone they either get free reign and get to... | 20 | 30 | false | null |
5mzu9h | TheChemist158 | 1,483,991,100 | "CMV: Breaking up with someone or refusing to date them because of their sexual history is perfectly(...TRUNCATED) | [{"id":"5m8lg2","title":"Frustrated that I'm not losing weight, not sure where I'm going wrong","sel(...TRUNCATED) | [{"id":"dc3mto4","body":"It's about stopping people who cheat.","subreddit":"changemyview","score":1(...TRUNCATED) | 20 | 30 | false | null |
5ow21d | Garlicplanet | 1,484,825,177 | "CMV: Suicide is neutral and thus should never be fought against. Respect those decisions! We need m(...TRUNCATED) | [{"id":"5ohwa6","title":"CMV: I don't understand people who deny evolution","selftext":"What about t(...TRUNCATED) | [{"id":"dcmgzbg","body":"understandable, a time of tough decisions, yet depression is always overcom(...TRUNCATED) | 20 | 30 | false | null |
5p9a5d | BeatriceBernardo | 1,484,979,870 | CMV: Capitalism is a psuedo-Feudalism | [{"id":"5onad5","title":"Since when was large population deemed to be a bad thing?","selftext":"Read(...TRUNCATED) | [{"id":"dcpe4vk","body":">Trailers are generally enjoyed by everyone and it's respectful to be quiet(...TRUNCATED) | 20 | 30 | false | null |
End of preview.
No dataset card yet
- Downloads last month
- 55