id
stringlengths
2
115
lastModified
stringlengths
24
24
tags
list
author
stringlengths
2
42
description
stringlengths
0
6.67k
citation
stringlengths
0
10.7k
likes
int64
0
3.66k
downloads
int64
0
8.89M
created
timestamp[us]
card
stringlengths
11
977k
card_len
int64
11
977k
embeddings
list
huggingartists/pyrokinesis
2022-10-25T09:42:04.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/pyrokinesis" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.7954 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/e701c222dfb8725065dd99c8a43988da.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/pyrokinesis"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">​​pyrokinesis</div> <a href="https://genius.com/artists/pyrokinesis"> <div style="text-align: center; font-size: 14px;">@pyrokinesis</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/pyrokinesis). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/pyrokinesis") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |202| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/pyrokinesis") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,188
[ [ -0.043670654296875, -0.0386962890625, 0.00428009033203125, 0.0175018310546875, -0.016387939453125, -0.00017321109771728516, -0.0260467529296875, -0.0283050537109375, 0.06475830078125, 0.0222930908203125, -0.0635986328125, -0.059722900390625, -0.040252685546875, ...
huggingartists/queen
2022-10-25T09:42:11.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/queen" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.622527 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/30a049d2de687550227ba815650eb196.585x585x1.png&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/queen"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Queen</div> <a href="https://genius.com/artists/queen"> <div style="text-align: center; font-size: 14px;">@queen</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/queen). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/queen") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |580| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/queen") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,138
[ [ -0.045501708984375, -0.037994384765625, 0.004283905029296875, 0.0215606689453125, -0.02020263671875, 0.0026149749755859375, -0.01898193359375, -0.0340576171875, 0.0654296875, 0.028350830078125, -0.068359375, -0.062103271484375, -0.040374755859375, 0.01119995...
huggingartists/radiohead
2022-10-25T09:42:18.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/radiohead" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.302754 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/46e691e8700c20eb5f0aaf675b784aed.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/radiohead"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Radiohead</div> <a href="https://genius.com/artists/radiohead"> <div style="text-align: center; font-size: 14px;">@radiohead</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/radiohead). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/radiohead") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |505| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/radiohead") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,172
[ [ -0.049468994140625, -0.03900146484375, 0.00711822509765625, 0.0155029296875, -0.01522064208984375, 0.0005512237548828125, -0.0244903564453125, -0.034912109375, 0.06536865234375, 0.0205535888671875, -0.0706787109375, -0.060577392578125, -0.0426025390625, 0.01...
huggingartists/ramil
2022-10-25T09:42:31.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/ramil" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.158728 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/0debcd46861577e3776b41aa3e3d7164.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/ramil"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Ramil’</div> <a href="https://genius.com/artists/ramil"> <div style="text-align: center; font-size: 14px;">@ramil</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/ramil). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/ramil") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |54| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/ramil") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,140
[ [ -0.0479736328125, -0.03656005859375, 0.00406646728515625, 0.0228729248046875, -0.017822265625, -0.00016009807586669922, -0.0223846435546875, -0.031951904296875, 0.0626220703125, 0.0252838134765625, -0.06793212890625, -0.06158447265625, -0.04400634765625, 0.0...
huggingartists/rammstein
2022-10-25T09:42:37.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/rammstein" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.556576 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/29cedf8dd30a7458f4fca47d1c0f0eab.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/rammstein"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Rammstein</div> <a href="https://genius.com/artists/rammstein"> <div style="text-align: center; font-size: 14px;">@rammstein</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/rammstein). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/rammstein") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |322| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/rammstein") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2022 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,172
[ [ -0.050018310546875, -0.037628173828125, 0.00466156005859375, 0.0194244384765625, -0.019378662109375, -0.00281524658203125, -0.0249481201171875, -0.0325927734375, 0.06011962890625, 0.0232391357421875, -0.0697021484375, -0.063232421875, -0.0447998046875, 0.010...
huggingartists/red-hot-chili-peppers
2022-10-25T09:42:43.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/red-hot-chili-peppers" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.482849 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/2879181f9522394ad29c16478421aa77.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/red-hot-chili-peppers"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Red Hot Chili Peppers</div> <a href="https://genius.com/artists/red-hot-chili-peppers"> <div style="text-align: center; font-size: 14px;">@red-hot-chili-peppers</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/red-hot-chili-peppers). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/red-hot-chili-peppers") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |367| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/red-hot-chili-peppers") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,268
[ [ -0.046539306640625, -0.040283203125, 0.00554656982421875, 0.0234527587890625, -0.01351165771484375, 0.002391815185546875, -0.0285797119140625, -0.027435302734375, 0.0631103515625, 0.0231781005859375, -0.06768798828125, -0.06353759765625, -0.04241943359375, 0...
huggingartists/rex-orange-county
2022-10-25T09:42:49.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/rex-orange-county" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.116278 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/348ad82a8d34eaff777b6743ca0f2d70.400x400x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/rex-orange-county"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Rex Orange County</div> <a href="https://genius.com/artists/rex-orange-county"> <div style="text-align: center; font-size: 14px;">@rex-orange-county</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/rex-orange-county). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/rex-orange-county") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |66| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/rex-orange-county") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,233
[ [ -0.049163818359375, -0.036956787109375, 0.01026153564453125, 0.021209716796875, -0.01751708984375, -0.0007805824279785156, -0.0214385986328125, -0.0360107421875, 0.06689453125, 0.0276947021484375, -0.063720703125, -0.0634765625, -0.040130615234375, 0.0137252...
huggingartists/rihanna
2022-10-25T09:42:55.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/rihanna" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 1.13824 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/a23400b7447be0fb91c3c4c839c6efe7.442x442x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/rihanna"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Rihanna</div> <a href="https://genius.com/artists/rihanna"> <div style="text-align: center; font-size: 14px;">@rihanna</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/rihanna). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/rihanna") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |641| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/rihanna") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,153
[ [ -0.04437255859375, -0.03546142578125, 0.0033664703369140625, 0.0251312255859375, -0.0172576904296875, 0.004940032958984375, -0.0192108154296875, -0.033477783203125, 0.06463623046875, 0.028594970703125, -0.06640625, -0.06109619140625, -0.039398193359375, 0.01...
huggingartists/rocket
2022-10-25T09:43:03.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/rocket" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.424035 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/0fb709925134799103886db5e722ef73.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/rocket"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">ROCKET</div> <a href="https://genius.com/artists/rocket"> <div style="text-align: center; font-size: 14px;">@rocket</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/rocket). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/rocket") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |134| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/rocket") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,148
[ [ -0.0426025390625, -0.03631591796875, 0.003997802734375, 0.024017333984375, -0.01428985595703125, 0.006046295166015625, -0.0220794677734375, -0.03131103515625, 0.063232421875, 0.0217742919921875, -0.06939697265625, -0.0625, -0.042083740234375, 0.0080032348632...
huggingartists/sam-kim
2022-10-25T09:43:10.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/sam-kim" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.101583 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/03634b3c46e2357fa70d455446936297.800x800x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/sam-kim"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Sam Kim (샘김)</div> <a href="https://genius.com/artists/sam-kim"> <div style="text-align: center; font-size: 14px;">@sam-kim</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/sam-kim). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/sam-kim") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |48| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/sam-kim") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,158
[ [ -0.044891357421875, -0.036285400390625, 0.00969696044921875, 0.019622802734375, -0.0206298828125, 0.0018215179443359375, -0.0199432373046875, -0.03057861328125, 0.06463623046875, 0.025115966796875, -0.0670166015625, -0.0635986328125, -0.042022705078125, 0.00...
huggingartists/scriptonite
2022-10-25T09:43:16.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/scriptonite" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 1.251394 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/411d50392aef867fe0e9dd55a074ecfb.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/scriptonite"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Скриптонит (Scriptonite)</div> <a href="https://genius.com/artists/scriptonite"> <div style="text-align: center; font-size: 14px;">@scriptonite</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/scriptonite). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/scriptonite") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |367| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/scriptonite") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,201
[ [ -0.04510498046875, -0.037933349609375, 0.00605010986328125, 0.020843505859375, -0.0162811279296875, 0.0018854141235351562, -0.0258026123046875, -0.0325927734375, 0.063720703125, 0.0263214111328125, -0.07012939453125, -0.0643310546875, -0.042816162109375, 0.0...
huggingartists/sektor-gaza
2022-10-25T09:43:22.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
1
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/sektor-gaza" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.365256 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/9371696fb5660d2331d596bb29e5e91c.720x720x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/sektor-gaza"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Сектор Газа (Sektor Gaza)</div> <a href="https://genius.com/artists/sektor-gaza"> <div style="text-align: center; font-size: 14px;">@sektor-gaza</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/sektor-gaza). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/sektor-gaza") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |155| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/sektor-gaza") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,200
[ [ -0.046966552734375, -0.03411865234375, 0.0040740966796875, 0.0224609375, -0.0224456787109375, -0.0017499923706054688, -0.02264404296875, -0.03314208984375, 0.062103271484375, 0.0261077880859375, -0.06463623046875, -0.06494140625, -0.044891357421875, 0.007049...
huggingartists/selena-gomez
2022-10-25T09:43:28.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
1
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/selena-gomez" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.587236 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/622e6858ce207990b4eb25cd9cdf8f8c.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/selena-gomez"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Selena Gomez</div> <a href="https://genius.com/artists/selena-gomez"> <div style="text-align: center; font-size: 14px;">@selena-gomez</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/selena-gomez). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/selena-gomez") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |397| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/selena-gomez") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,196
[ [ -0.04327392578125, -0.0390625, 0.006595611572265625, 0.027862548828125, -0.0174560546875, 0.00383758544921875, -0.023651123046875, -0.0350341796875, 0.06829833984375, 0.0256195068359375, -0.0694580078125, -0.06341552734375, -0.04107666015625, 0.0111999511718...
huggingartists/sergei-letov
2022-10-25T09:43:35.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/sergei-letov" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.035123 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/a5717aec4301e2adfb464d3b85701f74.300x300x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/sergei-letov"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Сергей Летов (Sergei Letov)</div> <a href="https://genius.com/artists/sergei-letov"> <div style="text-align: center; font-size: 14px;">@sergei-letov</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/sergei-letov). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/sergei-letov") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |7| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/sergei-letov") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,207
[ [ -0.0465087890625, -0.035369873046875, 0.00714111328125, 0.0199737548828125, -0.019439697265625, 0.0013828277587890625, -0.0239410400390625, -0.032440185546875, 0.06427001953125, 0.022857666015625, -0.06793212890625, -0.06298828125, -0.0408935546875, 0.008758...
huggingartists/shadowraze
2022-10-25T09:44:30.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/shadowraze" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.063932 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/e2576b95c2049862de20cbd0f1a4e0d7.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/shadowraze"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">​shadowraze</div> <a href="https://genius.com/artists/shadowraze"> <div style="text-align: center; font-size: 14px;">@shadowraze</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/shadowraze). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/shadowraze") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |14| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/shadowraze") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,180
[ [ -0.044586181640625, -0.03778076171875, 0.0079498291015625, 0.0206451416015625, -0.0171051025390625, 0.00237274169921875, -0.02239990234375, -0.033477783203125, 0.066162109375, 0.02899169921875, -0.0694580078125, -0.06256103515625, -0.038238525390625, 0.00683...
huggingartists/sia
2022-10-25T09:44:37.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/sia" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 1.038296 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/aba931aaf48b7728f3f4869b13eb9741.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/sia"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Sia</div> <a href="https://genius.com/artists/sia"> <div style="text-align: center; font-size: 14px;">@sia</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/sia). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/sia") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |742| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/sia") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,124
[ [ -0.0450439453125, -0.037261962890625, 0.00846099853515625, 0.0224761962890625, -0.0180511474609375, -0.0003979206085205078, -0.0193939208984375, -0.03314208984375, 0.06597900390625, 0.0255889892578125, -0.06634521484375, -0.060791015625, -0.043701171875, 0.0...
huggingartists/sid-sriram
2022-10-25T09:44:43.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/sid-sriram" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.088515 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://assets.genius.com/images/default_avatar_300.png?1629387721&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/sid-sriram"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Sid Sriram</div> <a href="https://genius.com/artists/sid-sriram"> <div style="text-align: center; font-size: 14px;">@sid-sriram</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/sid-sriram). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/sid-sriram") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |36| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/sid-sriram") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,171
[ [ -0.0445556640625, -0.038421630859375, 0.00464630126953125, 0.0206451416015625, -0.0208282470703125, 0.0019397735595703125, -0.0255126953125, -0.031585693359375, 0.06390380859375, 0.021026611328125, -0.0670166015625, -0.06085205078125, -0.041656494140625, 0.0...
huggingartists/skillet
2022-10-25T09:44:48.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/skillet" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.283317 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/c42b7baa88dae01013eebc53c0aed177.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/skillet"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Skillet</div> <a href="https://genius.com/artists/skillet"> <div style="text-align: center; font-size: 14px;">@skillet</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/skillet). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/skillet") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |189| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/skillet") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,156
[ [ -0.04376220703125, -0.036895751953125, 0.0027446746826171875, 0.020660400390625, -0.0140838623046875, -0.0037174224853515625, -0.0236053466796875, -0.032196044921875, 0.062744140625, 0.0289306640625, -0.06353759765625, -0.062164306640625, -0.042755126953125, ...
huggingartists/slava-marlow
2022-10-25T09:45:03.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/slava-marlow" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.471147 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/e308b1bc9eeb159ecfa9d807d715f095.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/slava-marlow"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">SLAVA MARLOW</div> <a href="https://genius.com/artists/slava-marlow"> <div style="text-align: center; font-size: 14px;">@slava-marlow</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/slava-marlow). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/slava-marlow") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |249| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/slava-marlow") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,196
[ [ -0.043914794921875, -0.037872314453125, 0.004840850830078125, 0.0225677490234375, -0.0185546875, -0.0009813308715820312, -0.0220947265625, -0.03411865234375, 0.06634521484375, 0.0263519287109375, -0.06658935546875, -0.059326171875, -0.042877197265625, 0.0095...
huggingartists/snoop-dogg
2022-10-25T09:45:10.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/snoop-dogg" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 4.603835 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/91bd22f5e53a3ea3cb1436de8f4a3722.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/snoop-dogg"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Snoop Dogg</div> <a href="https://genius.com/artists/snoop-dogg"> <div style="text-align: center; font-size: 14px;">@snoop-dogg</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/snoop-dogg). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/snoop-dogg") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |1773| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/snoop-dogg") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,181
[ [ -0.048675537109375, -0.041259765625, 0.006542205810546875, 0.0259246826171875, -0.017791748046875, 0.00254058837890625, -0.0207061767578125, -0.036529541015625, 0.06817626953125, 0.0230712890625, -0.06744384765625, -0.05999755859375, -0.04241943359375, 0.007...
huggingartists/sqwore
2022-10-25T09:45:16.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/sqwore" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.067786 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/3557a234d4c5912569afbea078a23eff.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/sqwore"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Sqwore</div> <a href="https://genius.com/artists/sqwore"> <div style="text-align: center; font-size: 14px;">@sqwore</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/sqwore). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/sqwore") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |19| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/sqwore") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,147
[ [ -0.047607421875, -0.0386962890625, 0.004398345947265625, 0.0224609375, -0.0160675048828125, -0.00209808349609375, -0.0218353271484375, -0.035797119140625, 0.06439208984375, 0.0244598388671875, -0.06829833984375, -0.0594482421875, -0.04156494140625, 0.0105667...
huggingartists/suicideoscope
2022-10-25T09:45:28.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/suicideoscope" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.052767 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/86b0ba099a6797bab3deeba685f3dbc2.800x800x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/suicideoscope"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Suicideoscope</div> <a href="https://genius.com/artists/suicideoscope"> <div style="text-align: center; font-size: 14px;">@suicideoscope</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/suicideoscope). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/suicideoscope") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |11| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/suicideoscope") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
6,744
[ [ -0.04571533203125, -0.034423828125, 0.0096435546875, 0.0173187255859375, -0.01325225830078125, -0.005718231201171875, -0.0252685546875, -0.0264129638671875, 0.06024169921875, 0.024810791015625, -0.066650390625, -0.061737060546875, -0.03955078125, 0.012382507...
huggingartists/sundara-karma
2022-10-25T09:45:40.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/sundara-karma" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.081864 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/afbb51b0dc0e4618f79565e67991a9fd.360x360x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/sundara-karma"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Sundara Karma</div> <a href="https://genius.com/artists/sundara-karma"> <div style="text-align: center; font-size: 14px;">@sundara-karma</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/sundara-karma). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/sundara-karma") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |46| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/sundara-karma") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,201
[ [ -0.045135498046875, -0.0379638671875, 0.0074462890625, 0.0199127197265625, -0.022064208984375, -0.0006337165832519531, -0.024261474609375, -0.03289794921875, 0.06378173828125, 0.023040771484375, -0.0673828125, -0.061492919921875, -0.041229248046875, 0.010566...
huggingartists/system-of-a-down
2022-10-25T09:45:46.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/system-of-a-down" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.178799 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/5688d59e74bfc07b0531636114f56c1e.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/system-of-a-down"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">System of a Down</div> <a href="https://genius.com/artists/system-of-a-down"> <div style="text-align: center; font-size: 14px;">@system-of-a-down</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/system-of-a-down). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/system-of-a-down") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |129| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/system-of-a-down") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,228
[ [ -0.045989990234375, -0.0360107421875, 0.006122589111328125, 0.0225982666015625, -0.01446533203125, 0.00437164306640625, -0.019744873046875, -0.030609130859375, 0.0673828125, 0.0268402099609375, -0.06988525390625, -0.06256103515625, -0.044219970703125, 0.0119...
huggingartists/t-fest
2022-10-25T09:45:52.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/t-fest" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.339224 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/a97f2d2c76c51779fb5cbd7362b06789.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/t-fest"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">T-Fest</div> <a href="https://genius.com/artists/t-fest"> <div style="text-align: center; font-size: 14px;">@t-fest</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/t-fest). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/t-fest") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |127| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/t-fest") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,148
[ [ -0.04541015625, -0.0389404296875, 0.005489349365234375, 0.02081298828125, -0.0215301513671875, 0.00547027587890625, -0.0263214111328125, -0.034271240234375, 0.06439208984375, 0.020172119140625, -0.06787109375, -0.066650390625, -0.04095458984375, 0.0092849731...
huggingartists/tanzy-minus
2022-10-25T09:45:59.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/tanzy-minus" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.036726 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/73716ad8dca0ea2fd5f02924ffcbcdad.639x639x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/tanzy-minus"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Танцы Минус (Tanzy Minus)</div> <a href="https://genius.com/artists/tanzy-minus"> <div style="text-align: center; font-size: 14px;">@tanzy-minus</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/tanzy-minus). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/tanzy-minus") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |5| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/tanzy-minus") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,198
[ [ -0.04815673828125, -0.0361328125, 0.005931854248046875, 0.02093505859375, -0.0174407958984375, -0.0007696151733398438, -0.0235137939453125, -0.03533935546875, 0.06512451171875, 0.0239105224609375, -0.07257080078125, -0.06256103515625, -0.040863037109375, 0.0...
huggingartists/taylor-swift
2022-10-25T09:46:05.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
1
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/taylor-swift" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 1.469581 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/3c1f124fcbbc2857a95e513fb34cc5a8.400x400x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/taylor-swift"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Taylor Swift</div> <a href="https://genius.com/artists/taylor-swift"> <div style="text-align: center; font-size: 14px;">@taylor-swift</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/taylor-swift). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/taylor-swift") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |762| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/taylor-swift") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,194
[ [ -0.04412841796875, -0.03936767578125, 0.0021228790283203125, 0.022857666015625, -0.01557159423828125, 0.0006513595581054688, -0.020111083984375, -0.03472900390625, 0.06207275390625, 0.025360107421875, -0.06878662109375, -0.0594482421875, -0.039825439453125, ...
huggingartists/tedeschi-trucks-band
2022-10-25T09:46:11.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/tedeschi-trucks-band" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.115986 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/c99108a2e14512dcbe143ccb53dd2319.564x564x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/tedeschi-trucks-band"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Tedeschi Trucks Band</div> <a href="https://genius.com/artists/tedeschi-trucks-band"> <div style="text-align: center; font-size: 14px;">@tedeschi-trucks-band</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/tedeschi-trucks-band). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/tedeschi-trucks-band") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |87| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/tedeschi-trucks-band") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,257
[ [ -0.0491943359375, -0.0399169921875, 0.005889892578125, 0.0207672119140625, -0.017578125, 0.00493621826171875, -0.02459716796875, -0.03167724609375, 0.06524658203125, 0.023101806640625, -0.07196044921875, -0.060699462890625, -0.0364990234375, 0.00853729248046...
huggingartists/the-avalanches
2022-10-25T09:46:25.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/the-avalanches" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.123553 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/e22f7806a402c82b09336cb5cf79a618.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/the-avalanches"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">The Avalanches</div> <a href="https://genius.com/artists/the-avalanches"> <div style="text-align: center; font-size: 14px;">@the-avalanches</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/the-avalanches). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/the-avalanches") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |111| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/the-avalanches") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,212
[ [ -0.0462646484375, -0.03729248046875, 0.002716064453125, 0.0221099853515625, -0.019012451171875, 0.0030956268310546875, -0.017547607421875, -0.03369140625, 0.06488037109375, 0.0239715576171875, -0.06719970703125, -0.061370849609375, -0.042144775390625, 0.0107...
huggingartists/the-gazette
2022-10-25T09:47:15.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/the-gazette" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.121064 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/9793a6d598f68414ca37eb1135e6b0c1.686x686x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/the-gazette"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">The Gazette</div> <a href="https://genius.com/artists/the-gazette"> <div style="text-align: center; font-size: 14px;">@the-gazette</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/the-gazette). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/the-gazette") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |98| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/the-gazette") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,185
[ [ -0.04840087890625, -0.041534423828125, 0.0079193115234375, 0.0206756591796875, -0.020050048828125, -0.0010166168212890625, -0.0245208740234375, -0.03399658203125, 0.06805419921875, 0.0243377685546875, -0.06610107421875, -0.060699462890625, -0.04486083984375, ...
huggingartists/the-grateful-dead
2022-10-25T09:47:22.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/the-grateful-dead" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 2.732505 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/18f21c424e2f02f0c9a59c15bac56406.736x736x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/the-grateful-dead"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">The Grateful Dead</div> <a href="https://genius.com/artists/the-grateful-dead"> <div style="text-align: center; font-size: 14px;">@the-grateful-dead</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/the-grateful-dead). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/the-grateful-dead") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |2266| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/the-grateful-dead") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,235
[ [ -0.051025390625, -0.03753662109375, 0.007366180419921875, 0.0167083740234375, -0.026947021484375, -0.0005731582641601562, -0.0253143310546875, -0.034393310546875, 0.064697265625, 0.025115966796875, -0.0660400390625, -0.06427001953125, -0.038787841796875, 0.0...
huggingartists/the-king-and-the-jester
2022-10-25T09:47:30.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/the-king-and-the-jester" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.189886 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/eab8847b08e686561c3593f987917434.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/the-king-and-the-jester"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Король и Шут (The King and the Jester)</div> <a href="https://genius.com/artists/the-king-and-the-jester"> <div style="text-align: center; font-size: 14px;">@the-king-and-the-jester</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/the-king-and-the-jester). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/the-king-and-the-jester") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |94| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/the-king-and-the-jester") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,298
[ [ -0.051055908203125, -0.040496826171875, 0.00618743896484375, 0.012603759765625, -0.0175628662109375, 0.0013780593872070312, -0.02520751953125, -0.035308837890625, 0.0665283203125, 0.0270233154296875, -0.0618896484375, -0.058837890625, -0.04345703125, 0.01129...
huggingartists/the-notorious-big
2022-10-25T09:47:38.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/the-notorious-big" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 1.676645 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/664976b54a605d6ac0df2415a8ccac16.564x564x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/the-notorious-big"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">The Notorious B.I.G.</div> <a href="https://genius.com/artists/the-notorious-big"> <div style="text-align: center; font-size: 14px;">@the-notorious-big</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/the-notorious-big). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/the-notorious-big") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |592| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/the-notorious-big") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,237
[ [ -0.049163818359375, -0.042388916015625, 0.007228851318359375, 0.0206756591796875, -0.019073486328125, 0.0008296966552734375, -0.0250396728515625, -0.036163330078125, 0.06732177734375, 0.0237884521484375, -0.06414794921875, -0.060760498046875, -0.045318603515625,...
huggingartists/the-sugarcubes
2022-10-25T09:47:46.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/the-sugarcubes" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.077715 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/da10eeb7730741736a4f7ac4cc998c4e.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/the-sugarcubes"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">The Sugarcubes</div> <a href="https://genius.com/artists/the-sugarcubes"> <div style="text-align: center; font-size: 14px;">@the-sugarcubes</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/the-sugarcubes). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/the-sugarcubes") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |52| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/the-sugarcubes") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,211
[ [ -0.04571533203125, -0.040679931640625, 0.0063629150390625, 0.018218994140625, -0.018463134765625, 0.0038661956787109375, -0.0257568359375, -0.031463623046875, 0.0675048828125, 0.0250244140625, -0.06396484375, -0.0611572265625, -0.04443359375, 0.0125656127929...
huggingartists/the-the-pigs
2022-10-25T09:47:52.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/the-the-pigs" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.077582 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/2f1fd1b951237ad3387096f392d41fa5.720x720x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/the-the-pigs"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">The ‘’Вепри’’ (The Pigs)</div> <a href="https://genius.com/artists/the-the-pigs"> <div style="text-align: center; font-size: 14px;">@the-the-pigs</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/the-the-pigs). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/the-the-pigs") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |28| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/the-the-pigs") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,205
[ [ -0.046417236328125, -0.037109375, 0.004810333251953125, 0.0166778564453125, -0.016143798828125, -0.001308441162109375, -0.023651123046875, -0.035308837890625, 0.06573486328125, 0.0259246826171875, -0.06695556640625, -0.061737060546875, -0.038604736328125, 0....
huggingartists/the-velvet-underground
2022-10-25T09:47:58.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/the-velvet-underground" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.327672 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://s3.amazonaws.com/rapgenius/vu.jpeg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/the-velvet-underground"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">The Velvet Underground</div> <a href="https://genius.com/artists/the-velvet-underground"> <div style="text-align: center; font-size: 14px;">@the-velvet-underground</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/the-velvet-underground). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/the-velvet-underground") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |241| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/the-velvet-underground") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,244
[ [ -0.04656982421875, -0.03765869140625, 0.00510406494140625, 0.0167388916015625, -0.01433563232421875, 0.004436492919921875, -0.0198516845703125, -0.0296630859375, 0.0650634765625, 0.02392578125, -0.07281494140625, -0.06378173828125, -0.040924072265625, 0.0081...
huggingartists/the-weeknd
2022-10-25T09:48:04.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
1
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/the-weeknd" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 1.849373 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/f0813e600d43b8b43c94e8ba1dde880a.640x640x1.png&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/the-weeknd"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">The Weeknd</div> <a href="https://genius.com/artists/the-weeknd"> <div style="text-align: center; font-size: 14px;">@the-weeknd</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/the-weeknd). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/the-weeknd") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |TRAIN_1.849373| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/the-weeknd") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ```
6,362
[ [ -0.04473876953125, -0.033477783203125, 0.0012311935424804688, 0.021575927734375, -0.014801025390625, -0.00345611572265625, -0.0270233154296875, -0.032867431640625, 0.0667724609375, 0.019775390625, -0.07318115234375, -0.05975341796875, -0.041046142578125, 0.0...
huggingartists/tiamat
2022-10-25T09:48:11.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/tiamat" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.115111 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/9ca13ed308504f6f9ac7c3cabdb54138.556x556x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/tiamat"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Tiamat</div> <a href="https://genius.com/artists/tiamat"> <div style="text-align: center; font-size: 14px;">@tiamat</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/tiamat). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/tiamat") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |122| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/tiamat") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,146
[ [ -0.046417236328125, -0.040008544921875, 0.005767822265625, 0.020660400390625, -0.017547607421875, 0.0011472702026367188, -0.0231170654296875, -0.032196044921875, 0.0635986328125, 0.0222625732421875, -0.06634521484375, -0.0623779296875, -0.040008544921875, 0....
huggingartists/till-lindemann
2022-10-25T09:48:17.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/till-lindemann" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.275488 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/48d6ca7ca17a9dfc9ad3034e71533a89.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/till-lindemann"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Till Lindemann</div> <a href="https://genius.com/artists/till-lindemann"> <div style="text-align: center; font-size: 14px;">@till-lindemann</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/till-lindemann). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/till-lindemann") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |257| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/till-lindemann") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,212
[ [ -0.045928955078125, -0.034576416015625, 0.01129913330078125, 0.0211944580078125, -0.0166473388671875, -0.00032639503479003906, -0.0217132568359375, -0.0323486328125, 0.06396484375, 0.0260467529296875, -0.07196044921875, -0.0665283203125, -0.042755126953125, ...
huggingartists/tom-waits
2022-10-25T09:48:23.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/tom-waits" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.818237 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/505d2d5d1d43304dca446fd2e788a0f8.750x750x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/tom-waits"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Tom Waits</div> <a href="https://genius.com/artists/tom-waits"> <div style="text-align: center; font-size: 14px;">@tom-waits</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/tom-waits). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/tom-waits") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |681| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/tom-waits") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
6,713
[ [ -0.046600341796875, -0.032318115234375, 0.00933837890625, 0.0225372314453125, -0.0189971923828125, -0.0033206939697265625, -0.0258636474609375, -0.03399658203125, 0.0643310546875, 0.0230255126953125, -0.0692138671875, -0.053680419921875, -0.04180908203125, 0...
huggingartists/tony-raut-and-garry-topor
2022-10-25T09:48:30.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/tony-raut-and-garry-topor" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.083901 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/7249d6785a5c87095850bd4048595e08.989x989x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/tony-raut-and-garry-topor"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Тони Раут (Tony Raut) & Гарри Топор (Garry Topor)</div> <a href="https://genius.com/artists/tony-raut-and-garry-topor"> <div style="text-align: center; font-size: 14px;">@tony-raut-and-garry-topor</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/tony-raut-and-garry-topor). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/tony-raut-and-garry-topor") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |15| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/tony-raut-and-garry-topor") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,321
[ [ -0.048797607421875, -0.036956787109375, 0.006618499755859375, 0.0189208984375, -0.017242431640625, 0.002300262451171875, -0.0227203369140625, -0.033721923828125, 0.06451416015625, 0.022735595703125, -0.06951904296875, -0.06085205078125, -0.04595947265625, 0....
huggingartists/tool
2022-10-25T09:48:37.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
1
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/tool" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.129846 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/acf1d51a2d729391074dc51a6dd26857.1000x1000x1.png&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/tool"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Tool</div> <a href="https://genius.com/artists/tool"> <div style="text-align: center; font-size: 14px;">@tool</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/tool). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/tool") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |101| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/tool") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,132
[ [ -0.04693603515625, -0.039520263671875, 0.006305694580078125, 0.0205078125, -0.0178680419921875, 0.0009560585021972656, -0.022216796875, -0.033447265625, 0.06353759765625, 0.0243377685546875, -0.067138671875, -0.06304931640625, -0.042388916015625, 0.009765625...
huggingartists/totpoc
2022-10-25T09:48:43.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/totpoc" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.245029 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/ea3dc2eb7b35254ae3764df28bc02500.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/totpoc"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">​totpoc</div> <a href="https://genius.com/artists/totpoc"> <div style="text-align: center; font-size: 14px;">@totpoc</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/totpoc). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/totpoc") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |78| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/totpoc") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,148
[ [ -0.04461669921875, -0.0374755859375, 0.00821685791015625, 0.02447509765625, -0.0182647705078125, 0.001255035400390625, -0.024993896484375, -0.031951904296875, 0.061370849609375, 0.0275115966796875, -0.06658935546875, -0.063232421875, -0.044525146484375, 0.00...
huggingartists/twenty-one-pilots
2022-10-25T09:48:59.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/twenty-one-pilots" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.348302 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/5ab9e38cf86aa170734fea1731610abc.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/twenty-one-pilots"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">​twenty one pilots</div> <a href="https://genius.com/artists/twenty-one-pilots"> <div style="text-align: center; font-size: 14px;">@twenty-one-pilots</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/twenty-one-pilots). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/twenty-one-pilots") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |197| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/twenty-one-pilots") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,237
[ [ -0.048675537109375, -0.036773681640625, 0.0081787109375, 0.0266571044921875, -0.01629638671875, 0.00469970703125, -0.0222320556640625, -0.0295867919921875, 0.0623779296875, 0.0286865234375, -0.07379150390625, -0.0618896484375, -0.03851318359375, 0.0082015991...
huggingartists/tyler-the-creator
2022-10-25T09:49:07.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
1
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/tyler-the-creator" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 1.072102 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/80c9c64ebed6a29681aaeaebe57edf91.984x984x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/tyler-the-creator"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Tyler, The Creator</div> <a href="https://genius.com/artists/tyler-the-creator"> <div style="text-align: center; font-size: 14px;">@tyler-the-creator</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/tyler-the-creator). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/tyler-the-creator") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |529| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/tyler-the-creator") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,235
[ [ -0.049652099609375, -0.040863037109375, 0.0096282958984375, 0.020721435546875, -0.0191650390625, 0.0021038055419921875, -0.02325439453125, -0.033721923828125, 0.068359375, 0.0275421142578125, -0.06768798828125, -0.06298828125, -0.045806884765625, 0.012649536...
huggingartists/upsahl
2022-10-25T09:49:14.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/upsahl" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.168635 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/e0fa9b5bdd037ab75031dd7372d05cd6.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/upsahl"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">UPSAHL</div> <a href="https://genius.com/artists/upsahl"> <div style="text-align: center; font-size: 14px;">@upsahl</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/upsahl). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/upsahl") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |107| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/upsahl") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,148
[ [ -0.04571533203125, -0.034576416015625, 0.00702667236328125, 0.021453857421875, -0.02056884765625, 0.001468658447265625, -0.0245513916015625, -0.0311279296875, 0.063232421875, 0.0247955322265625, -0.066162109375, -0.06158447265625, -0.041717529296875, 0.01008...
huggingartists/van-morrison
2022-10-25T09:49:27.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/van-morrison" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 1.062718 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/2f97270cc1d1420867052a6c331d5820.1000x667x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/van-morrison"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Van Morrison</div> <a href="https://genius.com/artists/van-morrison"> <div style="text-align: center; font-size: 14px;">@van-morrison</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/van-morrison). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/van-morrison") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |929| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/van-morrison") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,195
[ [ -0.048553466796875, -0.038848876953125, 0.0081634521484375, 0.0211944580078125, -0.01302337646484375, -0.0022716522216796875, -0.020843505859375, -0.034027099609375, 0.0638427734375, 0.027496337890625, -0.07135009765625, -0.06243896484375, -0.04266357421875, ...
huggingartists/veggietales
2022-10-25T09:49:47.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/veggietales" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.220878 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/d14c9e27b39f0e250784a2dce037a03d.720x720x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/veggietales"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">VeggieTales</div> <a href="https://genius.com/artists/veggietales"> <div style="text-align: center; font-size: 14px;">@veggietales</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/veggietales). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/veggietales") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |163| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/veggietales") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,186
[ [ -0.0426025390625, -0.04058837890625, 0.00701904296875, 0.0195770263671875, -0.0145263671875, 0.003787994384765625, -0.02386474609375, -0.033416748046875, 0.06634521484375, 0.02423095703125, -0.06744384765625, -0.06195068359375, -0.043304443359375, 0.01269531...
huggingartists/vladimir-vysotsky
2022-10-25T09:50:03.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/vladimir-vysotsky" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.124261 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/18735fe10bace7b3f615b2da9c95ac73.938x938x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/vladimir-vysotsky"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Владимир Высоцкий (Vladimir Vysotsky)</div> <a href="https://genius.com/artists/vladimir-vysotsky"> <div style="text-align: center; font-size: 14px;">@vladimir-vysotsky</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/vladimir-vysotsky). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/vladimir-vysotsky") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |47| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/vladimir-vysotsky") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,253
[ [ -0.04486083984375, -0.03668212890625, 0.009063720703125, 0.01788330078125, -0.024627685546875, 0.0005545616149902344, -0.0269012451171875, -0.033447265625, 0.06658935546875, 0.0243988037109375, -0.06732177734375, -0.06329345703125, -0.0411376953125, 0.008918...
huggingartists/xxxtentacion
2022-10-25T09:50:12.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/xxxtentacion" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.957186 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/f72572986d8187cf35f0fc9f9d06afb2.900x900x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/xxxtentacion"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">XXXTENTACION</div> <a href="https://genius.com/artists/xxxtentacion"> <div style="text-align: center; font-size: 14px;">@xxxtentacion</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/xxxtentacion). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/xxxtentacion") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |784| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/xxxtentacion") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
6,737
[ [ -0.0467529296875, -0.034088134765625, 0.005535125732421875, 0.0219268798828125, -0.014801025390625, -0.00318145751953125, -0.0253143310546875, -0.032562255859375, 0.0628662109375, 0.025909423828125, -0.0670166015625, -0.060272216796875, -0.03955078125, 0.009...
huggingartists/young-thug
2022-10-25T09:50:19.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/young-thug" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 4.254273 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/b08755976e2dcad78a75ee47059adcbc.777x777x1.png&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/young-thug"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Young Thug</div> <a href="https://genius.com/artists/young-thug"> <div style="text-align: center; font-size: 14px;">@young-thug</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/young-thug). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/young-thug") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |1656| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/young-thug") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,179
[ [ -0.045867919921875, -0.04107666015625, 0.00344085693359375, 0.01690673828125, -0.020538330078125, 0.00846099853515625, -0.021759033203125, -0.03582763671875, 0.06390380859375, 0.0184478759765625, -0.0682373046875, -0.0643310546875, -0.04351806640625, 0.00759...
huggingartists/yung-lean
2022-10-25T09:50:26.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/yung-lean" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.441891 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/8c898f8c39dbd271b3ccfd5303d423c7.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/yung-lean"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Yung Lean</div> <a href="https://genius.com/artists/yung-lean"> <div style="text-align: center; font-size: 14px;">@yung-lean</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/yung-lean). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/yung-lean") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |269| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/yung-lean") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,172
[ [ -0.0439453125, -0.03619384765625, 0.00417327880859375, 0.02032470703125, -0.0184478759765625, -0.0020542144775390625, -0.020782470703125, -0.03411865234375, 0.063720703125, 0.0227203369140625, -0.068359375, -0.0638427734375, -0.04168701171875, 0.007965087890...
huggingartists/yung-plague
2022-10-25T09:50:33.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/yung-plague" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.109415 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/6c0f8e02f467c694379f242ea2897efd.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/yung-plague"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Yung Plague</div> <a href="https://genius.com/artists/yung-plague"> <div style="text-align: center; font-size: 14px;">@yung-plague</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/yung-plague). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/yung-plague") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |38| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/yung-plague") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,187
[ [ -0.0450439453125, -0.037841796875, 0.004001617431640625, 0.02008056640625, -0.02044677734375, -0.00007098913192749023, -0.019439697265625, -0.034637451171875, 0.06494140625, 0.027984619140625, -0.0618896484375, -0.06719970703125, -0.04132080078125, 0.0103988...
huggingartists/zemfira
2022-10-25T09:50:39.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
80
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/zemfira" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.226796 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/df440220b2dd0a34a119db791da90e59.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/zemfira"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Земфира (Zemfira)</div> <a href="https://genius.com/artists/zemfira"> <div style="text-align: center; font-size: 14px;">@zemfira</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/zemfira). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/zemfira") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |165| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/zemfira") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,166
[ [ -0.04486083984375, -0.039031982421875, 0.0073699951171875, 0.019134521484375, -0.0184326171875, -0.002696990966796875, -0.0207366943359375, -0.035552978515625, 0.06488037109375, 0.0240020751953125, -0.06884765625, -0.0615234375, -0.041961669921875, 0.0071144...
huggingface/DataMeasurementsFiles
2021-10-27T19:28:29.000Z
[ "region:us" ]
huggingface
null
null
0
80
2022-03-02T23:29:22
# Data Measurements Tools: pre-computed data Dataset of pre-computed data measures for: - 'amazon_polarity' - 'c4' - 'glue' - 'hate_speech18' - 'hate_speech_offensive' - 'imdb' - 'squad' - 'squad_v2' - 'super_glue' - 'wikitext'
230
[ [ -0.046234130859375, -0.04229736328125, 0.0086669921875, 0.0132293701171875, -0.031768798828125, 0.019378662109375, 0.01119232177734375, 0.033782958984375, 0.0465087890625, 0.042633056640625, -0.083251953125, -0.044281005859375, -0.02880859375, -0.00268554687...
husnu/tquad2
2022-01-15T09:08:17.000Z
[ "region:us" ]
husnu
null
null
0
80
2022-03-02T23:29:22
Entry not found
15
[ [ -0.0213775634765625, -0.01496124267578125, 0.05718994140625, 0.02880859375, -0.0350341796875, 0.0465087890625, 0.052490234375, 0.005039215087890625, 0.051361083984375, 0.0169830322265625, -0.052093505859375, -0.01497650146484375, -0.06036376953125, 0.0379333...
ia-bentebib/conv_ai_2_fr
2022-02-08T21:23:23.000Z
[ "region:us" ]
ia-bentebib
null
null
0
80
2022-03-02T23:29:22
Entry not found
15
[ [ -0.0213775634765625, -0.01496124267578125, 0.05718994140625, 0.02880859375, -0.0350341796875, 0.0465087890625, 0.052490234375, 0.005039215087890625, 0.051361083984375, 0.0169830322265625, -0.052093505859375, -0.01497650146484375, -0.06036376953125, 0.0379333...
ia-bentebib/diafrag
2022-02-11T13:24:56.000Z
[ "region:us" ]
ia-bentebib
null
null
0
80
2022-03-02T23:29:22
Entry not found
15
[ [ -0.0213775634765625, -0.01496124267578125, 0.05718994140625, 0.02880859375, -0.0350341796875, 0.0465087890625, 0.052490234375, 0.005039215087890625, 0.051361083984375, 0.0169830322265625, -0.052093505859375, -0.01497650146484375, -0.06036376953125, 0.0379333...
iarfmoose/qa_evaluator
2021-11-29T05:20:10.000Z
[ "region:us" ]
iarfmoose
null
null
0
80
2022-03-02T23:29:22
This is the same dataset as the question_generator dataset but with the context removed and the question and answer in separate fields. This is intended to be used with the [question_generator](https://github.com/AMontgomerie/question_generator) repo to train the qa_evaluator model which predicts whether a question and answer pair makes sense.
345
[ [ -0.041412353515625, -0.070068359375, 0.0212249755859375, -0.01204681396484375, -0.02032470703125, -0.017822265625, 0.0026340484619140625, -0.01776123046875, 0.0164031982421875, 0.0635986328125, -0.0767822265625, 0.0084991455078125, -0.00473785400390625, 0.01...
imthanhlv/binhvq_news21_raw
2021-06-15T20:02:14.000Z
[ "region:us" ]
imthanhlv
null
null
0
80
2022-03-02T23:29:22
Entry not found
15
[ [ -0.0213775634765625, -0.01496124267578125, 0.05718994140625, 0.02880859375, -0.0350341796875, 0.0465087890625, 0.052490234375, 0.005039215087890625, 0.051361083984375, 0.0169830322265625, -0.052093505859375, -0.01497650146484375, -0.06036376953125, 0.0379333...
jcmc/ga_mc4_processed
2022-01-27T14:53:30.000Z
[ "region:us" ]
jcmc
null
null
0
80
2022-03-02T23:29:22
Entry not found
15
[ [ -0.021392822265625, -0.0149688720703125, 0.057220458984375, 0.0288238525390625, -0.03509521484375, 0.046539306640625, 0.052520751953125, 0.005046844482421875, 0.0513916015625, 0.016998291015625, -0.052093505859375, -0.01495361328125, -0.060333251953125, 0.03...
jgammack/MTL-abstracts
2022-02-07T18:41:20.000Z
[ "region:us" ]
jgammack
null
null
0
80
2022-03-02T23:29:22
Entry not found
15
[ [ -0.021392822265625, -0.0149688720703125, 0.057220458984375, 0.0288238525390625, -0.03509521484375, 0.046539306640625, 0.052520751953125, 0.005046844482421875, 0.0513916015625, 0.016998291015625, -0.052093505859375, -0.01495361328125, -0.060333251953125, 0.03...
jgammack/THESES-abstracts
2022-02-07T18:43:25.000Z
[ "region:us" ]
jgammack
null
null
0
80
2022-03-02T23:29:22
Entry not found
15
[ [ -0.021392822265625, -0.0149688720703125, 0.057220458984375, 0.0288238525390625, -0.03509521484375, 0.046539306640625, 0.052520751953125, 0.005046844482421875, 0.0513916015625, 0.016998291015625, -0.052093505859375, -0.01495361328125, -0.060333251953125, 0.03...
iohadrubin/mini_xsum
2022-06-15T09:58:01.000Z
[ "region:us" ]
iohadrubin
null
null
0
80
2022-06-15T09:57:55
Entry not found
15
[ [ -0.021392822265625, -0.0149688720703125, 0.057220458984375, 0.0288238525390625, -0.03509521484375, 0.046539306640625, 0.052520751953125, 0.005046844482421875, 0.0513916015625, 0.016998291015625, -0.052093505859375, -0.01495361328125, -0.060333251953125, 0.03...
tals/vitaminc
2022-07-01T19:58:42.000Z
[ "task_categories:text-classification", "task_ids:fact-checking", "task_ids:natural-language-inference", "multilinguality:monolingual", "size_categories:100K<n<1M", "language:en", "license:cc-by-sa-3.0", "region:us" ]
tals
null
null
3
80
2022-06-21T01:22:38
--- annotations_creators: [] language_creators: [] language: - en license: - cc-by-sa-3.0 multilinguality: - monolingual pretty_name: VitaminC size_categories: - 100K<n<1M source_datasets: [] task_categories: - text-classification task_ids: - fact-checking - natural-language-inference --- # Details Fact Verification dataset created for [Get Your Vitamin C! Robust Fact Verification with Contrastive Evidence](https://aclanthology.org/2021.naacl-main.52/) (Schuster et al., NAACL 21`) based on Wikipedia edits (revisions). For more details see: https://github.com/TalSchuster/VitaminC When using this dataset, please cite the paper: # BibTeX entry and citation info ```bibtex @inproceedings{schuster-etal-2021-get, title = "Get Your Vitamin {C}! Robust Fact Verification with Contrastive Evidence", author = "Schuster, Tal and Fisch, Adam and Barzilay, Regina", booktitle = "Proceedings of the 2021 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies", month = jun, year = "2021", address = "Online", publisher = "Association for Computational Linguistics", url = "https://aclanthology.org/2021.naacl-main.52", doi = "10.18653/v1/2021.naacl-main.52", pages = "624--643", abstract = "Typical fact verification models use retrieved written evidence to verify claims. Evidence sources, however, often change over time as more information is gathered and revised. In order to adapt, models must be sensitive to subtle differences in supporting evidence. We present VitaminC, a benchmark infused with challenging cases that require fact verification models to discern and adjust to slight factual changes. We collect over 100,000 Wikipedia revisions that modify an underlying fact, and leverage these revisions, together with additional synthetically constructed ones, to create a total of over 400,000 claim-evidence pairs. Unlike previous resources, the examples in VitaminC are contrastive, i.e., they contain evidence pairs that are nearly identical in language and content, with the exception that one supports a given claim while the other does not. We show that training using this design increases robustness{---}improving accuracy by 10{\%} on adversarial fact verification and 6{\%} on adversarial natural language inference (NLI). Moreover, the structure of VitaminC leads us to define additional tasks for fact-checking resources: tagging relevant words in the evidence for verifying the claim, identifying factual revisions, and providing automatic edits via factually consistent text generation.", } ```
2,643
[ [ -0.003383636474609375, -0.0648193359375, 0.01418304443359375, 0.002872467041015625, -0.00408935546875, 0.0149383544921875, -0.0220947265625, -0.04876708984375, 0.0165252685546875, 0.006755828857421875, -0.0311126708984375, -0.049163818359375, -0.036712646484375,...
priyank-m/chinese_text_recognition
2022-09-21T09:08:19.000Z
[ "task_categories:image-to-text", "task_ids:image-captioning", "multilinguality:monolingual", "size_categories:100K<n<1M", "language:zh", "ocr", "text-recognition", "chinese", "region:us" ]
priyank-m
null
null
8
80
2022-09-06T21:18:47
--- annotations_creators: [] language: - zh language_creators: [] license: [] multilinguality: - monolingual pretty_name: chinese_text_recognition size_categories: - 100K<n<1M source_datasets: [] tags: - ocr - text-recognition - chinese task_categories: - image-to-text task_ids: - image-captioning --- Source of data: https://github.com/FudanVI/benchmarking-chinese-text-recognition
384
[ [ -0.0034942626953125, -0.0267333984375, 0.0204925537109375, 0.01490020751953125, -0.0064544677734375, -0.01837158203125, -0.017578125, -0.037750244140625, -0.01251220703125, 0.0239410400390625, -0.023406982421875, -0.0472412109375, -0.0020904541015625, 0.0075...
bigbio/bioinfer
2022-12-22T15:43:38.000Z
[ "multilinguality:monolingual", "language:en", "license:cc-by-2.0", "region:us" ]
bigbio
A corpus targeted at protein, gene, and RNA relationships which serves as a resource for the development of information extraction systems and their components such as parsers and domain analyzers. Currently, the corpus contains 1100 sentences from abstracts of biomedical research articles annotated for relationships, named entities, as well as syntactic dependencies.
@article{pyysalo2007bioinfer, title = {BioInfer: a corpus for information extraction in the biomedical domain}, author = { Pyysalo, Sampo and Ginter, Filip and Heimonen, Juho and Bj{\"o}rne, Jari and Boberg, Jorma and J{\"a}rvinen, Jouni and Salakoski, Tapio }, year = 2007, journal = {BMC bioinformatics}, publisher = {BioMed Central}, volume = 8, number = 1, pages = {1--24} }
1
80
2022-11-13T22:06:35
--- language: - en bigbio_language: - English license: cc-by-2.0 multilinguality: monolingual bigbio_license_shortname: CC_BY_2p0 pretty_name: BioInfer homepage: https://github.com/metalrt/ppi-dataset bigbio_pubmed: True bigbio_public: True bigbio_tasks: - RELATION_EXTRACTION - NAMED_ENTITY_RECOGNITION --- # Dataset Card for BioInfer ## Dataset Description - **Homepage:** https://github.com/metalrt/ppi-dataset - **Pubmed:** True - **Public:** True - **Tasks:** RE,NER A corpus targeted at protein, gene, and RNA relationships which serves as a resource for the development of information extraction systems and their components such as parsers and domain analyzers. Currently, the corpus contains 1100 sentences from abstracts of biomedical research articles annotated for relationships, named entities, as well as syntactic dependencies. ## Citation Information ``` @article{pyysalo2007bioinfer, title = {BioInfer: a corpus for information extraction in the biomedical domain}, author = { Pyysalo, Sampo and Ginter, Filip and Heimonen, Juho and Bj{"o}rne, Jari and Boberg, Jorma and J{"a}rvinen, Jouni and Salakoski, Tapio }, year = 2007, journal = {BMC bioinformatics}, publisher = {BioMed Central}, volume = 8, number = 1, pages = {1--24} } ```
1,341
[ [ -0.0127105712890625, -0.0272369384765625, 0.019561767578125, -0.0011730194091796875, -0.0164337158203125, -0.01242828369140625, 0.003520965576171875, -0.01174163818359375, 0.0298919677734375, 0.0255126953125, -0.03472900390625, -0.048492431640625, -0.03933715820...
junelee/sharegpt_deepl_ko
2023-04-27T01:43:36.000Z
[ "region:us" ]
junelee
null
null
43
80
2023-04-11T02:30:26
# shareGPT 한국어 번역 데이터셋 이 프로젝트는 shareGPT [데이터셋](https://huggingface.co/datasets/anon8231489123/ShareGPT_Vicuna_unfiltered/tree/main) 60만 대화문을 DeepL 을 통해 한국어로 번역하고 있습니다. 현재 번역이 진행 중이며, 아래의 진행상황을 참고해 주세요. ## 진행상황 62만 대화문중 62만 대화문번역완료. ## 파일구조 - original_dataset.json : 원본 shareGPT 파일(62만 영문대화문) - ko_dataset.json : 번역본 shareGPT파일, 구조 원본과 동일 - ko_dataset_2.json : ko_dataset.json 에서 파일구조가 불안정한(대화가 없거나, 대화의 시작이 gpt 인데 그 이후 대화가 없는것들) 대화 삭제 버전 - ko_alpaca_style_dataset.json : 알파카 파인튜닝을 위한 구조로 변경 ## 라이센스 원본 데이터가 OPENAI 이기 때문에 해당 [약관](https://openai.com/policies/terms-of-use)에 따릅니다. 그 이외의 부분은 다음 라이센스를 따릅니다: 저작자표시 2.0 대한민국 (CC BY 2.0 KR) ## 만든이 https://github.com/melodysdreamj
682
[ [ -0.042236328125, -0.046356201171875, 0.019500732421875, 0.0274200439453125, -0.058563232421875, -0.00798797607421875, 0.006710052490234375, -0.0169677734375, 0.03704833984375, 0.032684326171875, -0.035430908203125, -0.05841064453125, -0.055633544921875, 0.00...
nyuuzyou/AnimeHeadsv3
2023-07-02T23:24:38.000Z
[ "task_categories:object-detection", "license:wtfpl", "region:us" ]
nyuuzyou
null
null
2
80
2023-04-15T19:34:19
--- task_categories: - object-detection license: wtfpl dataset_info: - config_name: With augmentation features: - name: image_id dtype: int64 - name: image dtype: image - name: width dtype: int32 - name: height dtype: int32 - name: objects sequence: - name: id dtype: int64 - name: area dtype: int64 - name: bbox sequence: float32 length: 4 - name: category dtype: string splits: - name: train num_bytes: 2817954 num_examples: 8037 - name: validation num_bytes: 37647 num_examples: 100 - name: test num_bytes: 8425 num_examples: 20 download_size: 590150250 dataset_size: 2864026 - config_name: Without augmentation features: - name: image_id dtype: int64 - name: image dtype: image - name: width dtype: int32 - name: height dtype: int32 - name: objects sequence: - name: id dtype: int64 - name: area dtype: int64 - name: bbox sequence: float32 length: 4 - name: category dtype: string splits: - name: train num_bytes: 932413 num_examples: 2659 - name: validation num_bytes: 37647 num_examples: 100 - name: test num_bytes: 7393 num_examples: 18 download_size: 512953012 dataset_size: 977453 --- # AnimeHeadsv3 Object Detection Dataset The AnimeHeadsv3 Object Detection Dataset is a collection of anime and art images, including manga pages, that have been annotated with object bounding boxes for use in object detection tasks. ## Contents There are two versions of the dataset available: The dataset contains a total of 8157 images, split into training, validation, and testing sets. The images were collected from various sources and include a variety of anime and art styles, including manga. - Dataset with augmentation: Contains 8157 images. - Dataset without augmentation: Contains 2777 images. The images were collected from various sources and include a variety of anime and art styles, including manga. The annotations were created using the COCO format, with each annotation file containing the bounding box coordinates and label for each object in the corresponding image. The dataset has only one class named "head". ## Preprocessing The dataset with augmentation has the following preprocessing parameters: Resize: Fit within 640x640 The dataset without augmentation does not have any preprocessing applied. ## Augmentation Parameters The following augmentation parameters were applied to the dataset with augmentation: Outputs per training example: 3 Flip: Horizontal Saturation: Between -40% and +40% Blur: Up to 4px Noise: Up to 4% of pixels
2,721
[ [ -0.05718994140625, -0.0333251953125, 0.01241302490234375, -0.00010544061660766602, -0.04986572265625, -0.0187225341796875, 0.017181396484375, -0.028839111328125, 0.01058197021484375, 0.05902099609375, -0.060028076171875, -0.04248046875, -0.03973388671875, 0....
renumics/cifar100-enriched
2023-06-06T12:23:33.000Z
[ "task_categories:image-classification", "annotations_creators:crowdsourced", "language_creators:found", "multilinguality:monolingual", "size_categories:10K<n<100K", "source_datasets:extended|other-80-Million-Tiny-Images", "language:en", "license:mit", "image classification", "cifar-100", "cifar-...
renumics
The CIFAR-100 dataset consists of 60000 32x32 colour images in 100 classes, with 600 images per class. There are 500 training images and 100 testing images per class. There are 50000 training images and 10000 test images. The 100 classes are grouped into 20 superclasses. There are two labels per image - fine label (actual class) and coarse label (superclass).
@TECHREPORT{Krizhevsky09learningmultiple, author = {Alex Krizhevsky}, title = {Learning multiple layers of features from tiny images}, institution = {}, year = {2009} }
4
80
2023-04-21T15:07:01
--- license: mit task_categories: - image-classification pretty_name: CIFAR-100 source_datasets: - extended|other-80-Million-Tiny-Images paperswithcode_id: cifar-100 size_categories: - 10K<n<100K tags: - image classification - cifar-100 - cifar-100-enriched - embeddings - enhanced - spotlight - renumics language: - en multilinguality: - monolingual annotations_creators: - crowdsourced language_creators: - found --- # Dataset Card for CIFAR-100-Enriched (Enhanced by Renumics) ## Dataset Description - **Homepage:** [Renumics Homepage](https://renumics.com/?hf-dataset-card=cifar100-enriched) - **GitHub** [Spotlight](https://github.com/Renumics/spotlight) - **Dataset Homepage** [CS Toronto Homepage](https://www.cs.toronto.edu/~kriz/cifar.html#:~:text=The%20CIFAR%2D100%20dataset) - **Paper:** [Learning Multiple Layers of Features from Tiny Images](https://www.cs.toronto.edu/~kriz/learning-features-2009-TR.pdf) ### Dataset Summary 📊 [Data-centric AI](https://datacentricai.org) principles have become increasingly important for real-world use cases. At [Renumics](https://renumics.com/?hf-dataset-card=cifar100-enriched) we believe that classical benchmark datasets and competitions should be extended to reflect this development. 🔍 This is why we are publishing benchmark datasets with application-specific enrichments (e.g. embeddings, baseline results, uncertainties, label error scores). We hope this helps the ML community in the following ways: 1. Enable new researchers to quickly develop a profound understanding of the dataset. 2. Popularize data-centric AI principles and tooling in the ML community. 3. Encourage the sharing of meaningful qualitative insights in addition to traditional quantitative metrics. 📚 This dataset is an enriched version of the [CIFAR-100 Dataset](https://www.cs.toronto.edu/~kriz/cifar.html). ### Explore the Dataset ![Analyze CIFAR-100 with Spotlight](https://spotlight.renumics.com/resources/hf-cifar-100-enriched.png) The enrichments allow you to quickly gain insights into the dataset. The open source data curation tool [Renumics Spotlight](https://github.com/Renumics/spotlight) enables that with just a few lines of code: Install datasets and Spotlight via [pip](https://packaging.python.org/en/latest/key_projects/#pip): ```python !pip install renumics-spotlight datasets ``` Load the dataset from huggingface in your notebook: ```python import datasets dataset = datasets.load_dataset("renumics/cifar100-enriched", split="train") ``` Start exploring with a simple view that leverages embeddings to identify relevant data segments: ```python from renumics import spotlight df = dataset.to_pandas() df_show = df.drop(columns=['embedding', 'probabilities']) spotlight.show(df_show, port=8000, dtype={"image": spotlight.Image, "embedding_reduced": spotlight.Embedding}) ``` You can use the UI to interactively configure the view on the data. Depending on the concrete tasks (e.g. model comparison, debugging, outlier detection) you might want to leverage different enrichments and metadata. ### CIFAR-100 Dataset The CIFAR-100 dataset consists of 60000 32x32 colour images in 100 classes, with 600 images per class. There are 50000 training images and 10000 test images. The 100 classes in the CIFAR-100 are grouped into 20 superclasses. Each image comes with a "fine" label (the class to which it belongs) and a "coarse" label (the superclass to which it belongs). The classes are completely mutually exclusive. We have enriched the dataset by adding **image embeddings** generated with a [Vision Transformer](https://huggingface.co/google/vit-base-patch16-224). Here is the list of classes in the CIFAR-100: | Superclass | Classes | |---------------------------------|----------------------------------------------------| | aquatic mammals | beaver, dolphin, otter, seal, whale | | fish | aquarium fish, flatfish, ray, shark, trout | | flowers | orchids, poppies, roses, sunflowers, tulips | | food containers | bottles, bowls, cans, cups, plates | | fruit and vegetables | apples, mushrooms, oranges, pears, sweet peppers | | household electrical devices | clock, computer keyboard, lamp, telephone, television| | household furniture | bed, chair, couch, table, wardrobe | | insects | bee, beetle, butterfly, caterpillar, cockroach | | large carnivores | bear, leopard, lion, tiger, wolf | | large man-made outdoor things | bridge, castle, house, road, skyscraper | | large natural outdoor scenes | cloud, forest, mountain, plain, sea | | large omnivores and herbivores | camel, cattle, chimpanzee, elephant, kangaroo | | medium-sized mammals | fox, porcupine, possum, raccoon, skunk | | non-insect invertebrates | crab, lobster, snail, spider, worm | | people | baby, boy, girl, man, woman | | reptiles | crocodile, dinosaur, lizard, snake, turtle | | small mammals | hamster, mouse, rabbit, shrew, squirrel | | trees | maple, oak, palm, pine, willow | | vehicles 1 | bicycle, bus, motorcycle, pickup truck, train | | vehicles 2 | lawn-mower, rocket, streetcar, tank, tractor | ### Supported Tasks and Leaderboards - `image-classification`: The goal of this task is to classify a given image into one of 100 classes. The leaderboard is available [here](https://paperswithcode.com/sota/image-classification-on-cifar-100). ### Languages English class labels. ## Dataset Structure ### Data Instances A sample from the training set is provided below: ```python { 'image': '/huggingface/datasets/downloads/extracted/f57c1a3fbca36f348d4549e820debf6cc2fe24f5f6b4ec1b0d1308a80f4d7ade/0/0.png', 'full_image': <PIL.PngImagePlugin.PngImageFile image mode=RGB size=32x32 at 0x7F15737C9C50>, 'fine_label': 19, 'coarse_label': 11, 'fine_label_str': 'cattle', 'coarse_label_str': 'large_omnivores_and_herbivores', 'fine_label_prediction': 19, 'fine_label_prediction_str': 'cattle', 'fine_label_prediction_error': 0, 'split': 'train', 'embedding': [-1.2482988834381104, 0.7280710339546204, ..., 0.5312759280204773], 'probabilities': [4.505949982558377e-05, 7.286163599928841e-05, ..., 6.577593012480065e-05], 'embedding_reduced': [1.9439491033554077, -5.35720682144165] } ``` ### Data Fields | Feature | Data Type | |---------------------------------|------------------------------------------------| | image | Value(dtype='string', id=None) | | full_image | Image(decode=True, id=None) | | fine_label | ClassLabel(names=[...], id=None) | | coarse_label | ClassLabel(names=[...], id=None) | | fine_label_str | Value(dtype='string', id=None) | | coarse_label_str | Value(dtype='string', id=None) | | fine_label_prediction | ClassLabel(names=[...], id=None) | | fine_label_prediction_str | Value(dtype='string', id=None) | | fine_label_prediction_error | Value(dtype='int32', id=None) | | split | Value(dtype='string', id=None) | | embedding | Sequence(feature=Value(dtype='float32', id=None), length=768, id=None) | | probabilities | Sequence(feature=Value(dtype='float32', id=None), length=100, id=None) | | embedding_reduced | Sequence(feature=Value(dtype='float32', id=None), length=2, id=None) | ### Data Splits | Dataset Split | Number of Images in Split | Samples per Class (fine) | | ------------- |---------------------------| -------------------------| | Train | 50000 | 500 | | Test | 10000 | 100 | ## Dataset Creation ### Curation Rationale The CIFAR-10 and CIFAR-100 are labeled subsets of the [80 million tiny images](http://people.csail.mit.edu/torralba/tinyimages/) dataset. They were collected by Alex Krizhevsky, Vinod Nair, and Geoffrey Hinton. ### Source Data #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? [More Information Needed] ### Annotations #### Annotation process [More Information Needed] #### Who are the annotators? [More Information Needed] ### Personal and Sensitive Information [More Information Needed] ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators [More Information Needed] ### Licensing Information [More Information Needed] ### Citation Information If you use this dataset, please cite the following paper: ``` @article{krizhevsky2009learning, added-at = {2021-01-21T03:01:11.000+0100}, author = {Krizhevsky, Alex}, biburl = {https://www.bibsonomy.org/bibtex/2fe5248afe57647d9c85c50a98a12145c/s364315}, interhash = {cc2d42f2b7ef6a4e76e47d1a50c8cd86}, intrahash = {fe5248afe57647d9c85c50a98a12145c}, keywords = {}, pages = {32--33}, timestamp = {2021-01-21T03:01:11.000+0100}, title = {Learning Multiple Layers of Features from Tiny Images}, url = {https://www.cs.toronto.edu/~kriz/learning-features-2009-TR.pdf}, year = 2009 } ``` ### Contributions Alex Krizhevsky, Vinod Nair, Geoffrey Hinton, and Renumics GmbH.
10,127
[ [ -0.0555419921875, -0.03729248046875, -0.0030841827392578125, 0.0027484893798828125, -0.005916595458984375, 0.001895904541015625, -0.0173797607421875, -0.036102294921875, 0.027984619140625, 0.0054779052734375, -0.0189361572265625, -0.057403564453125, -0.048492431...
kunishou/hh-rlhf-49k-ja
2023-05-19T04:36:37.000Z
[ "license:mit", "region:us" ]
kunishou
null
null
14
80
2023-05-18T21:19:21
--- license: mit --- This dataset was created by automatically translating part of "Anthropic/hh-rlhf" into Japanese. This dataset is also included in "mosaicml/dolly_hhrlhf". The "ng_translation" flag indicates that the translation was not successful, and "1" means that the translation failed. Therefore, for data with "1", "instruction" and "instruction_en" contain the same text. hh-rlhf repository https://github.com/anthropics/hh-rlhf Anthropic/hh-rlhf https://huggingface.co/datasets/Anthropic/hh-rlhf mosaicml/dolly_hhrlhf https://huggingface.co/datasets/mosaicml/dolly_hhrlhf
596
[ [ -0.025421142578125, -0.0487060546875, 0.0233612060546875, 0.0224609375, -0.034088134765625, 0.0014810562133789062, 0.0173187255859375, -0.022857666015625, 0.051239013671875, 0.054962158203125, -0.08514404296875, -0.0587158203125, -0.05975341796875, 0.0401611...
Joemgu/sumstew
2023-06-21T13:07:18.000Z
[ "task_categories:summarization", "size_categories:100K<n<1M", "language:en", "language:de", "language:fr", "language:it", "language:es", "license:apache-2.0", "chemistry", "biology", "region:us" ]
Joemgu
null
null
6
80
2023-05-30T20:36:23
--- dataset_info: features: - name: prompt dtype: string - name: target dtype: string - name: input_tokens dtype: int64 - name: target_tokens dtype: int64 - name: subset dtype: string - name: language dtype: string splits: - name: train num_bytes: 3338029493 num_examples: 187221 - name: validation num_bytes: 218403099 num_examples: 14542 - name: test num_bytes: 201638368 num_examples: 12467 download_size: 1982559322 dataset_size: 3758070960 task_categories: - summarization language: - en - de - fr - it - es size_categories: - 100K<n<1M license: apache-2.0 tags: - chemistry - biology --- # Dataset Card for "sumstew" ## TL;DR: Sumstew is a abstractive, multilingual Dataset, with a balanced number of samples from a diverse set of summarization Datasets. The input sizes range up to 16384 tokens. Filtered using a diverse set of heuristics to encourage high coverage, accuracy and factual consistency. Code to reproduce Dataset available at *TODO* ## Dataset Description - **Dataset Identifier**: sumstew - **Dataset Summary**: "SumStew" is a rich multilingual dataset for text summarization. It incorporates diverse data sources such as cnn_dailymail, samsum, mlsum (de, fr, es, it), klexikon, xlsum (fr, en, es), govreport, sciqa, piqa, pumbed_qa, multinews, laysum, booksum, dialogsum, fanpage (it), ilpost (it). This data has been curated by filtering based on n-gram overlap between the source and target documents and normalized to prevent undue bias. Every instance in this dataset is prefixed by an instruction (title, summary, or qa). ## Task Information - **Task Categories**: The tasks covered by this dataset are primarily summarization tasks. - **Languages**: This dataset supports multiple languages including English (en), German (de), French (fr), Italian (it), and Spanish (es). ## Dataset Structure - **Data Instances**: Each data instance in the dataset comprises five fields - 'prompt', 'target', 'task', 'subset', and 'language'. - 'prompt': The input text for the task. (dtype: string) - 'target': The expected output for the task. (dtype: string) - 'subset': The subset of the dataset the instance belongs to. (dtype: string) - 'language': The language of the instance. (dtype: string) - **Data Splits**: The dataset is split into two subsets: - 'train' set: 187221 examples - 'validation' set: 14542 examples - 'test' set: 12467 examples ## Dataset Statistics - **Max Document Length**: The maximum document length is 16384 mlong-t5 tokens. - **Max Output Length**: The maximum output length is 1024 mlong-t5 tokens. ## Additional Information - **Data Collection**: The data has been collected from a variety of sources spanning different languages and domains, ensuring a diverse and comprehensive dataset. - **Data Cleaning**: The dataset has been filtered by checking the ngram overlap between the source and target document and dropping samples which have too much or too little overlap, and also through normalization. - **Known Limitations**: As the dataset is generated from diverse sources, the inherent biases or limitations of those sources may persist in this dataset as well. - **Usage Scenarios**: This dataset can be used for training and evaluating models on tasks like summarization and question-answering, in a multilingual context. ## Credits At this point I want to thank every creator of the underlying datasets (there are too many for me to count). If there are any issues concercining licensing or you want your data removed from the dataset, feel free to DM over Twitter (link in profile). Special thanks to @pszemraj [https://huggingface.co/pszemraj] for the inspiration. If interested in collaboration or consulting for your project, feel free to DM https://twitter.com/StutterBuddy
3,857
[ [ -0.0204010009765625, -0.03704833984375, 0.0083160400390625, 0.0291900634765625, -0.0211334228515625, -0.004241943359375, -0.0288238525390625, -0.0252838134765625, 0.035003662109375, 0.033599853515625, -0.05120849609375, -0.059112548828125, -0.053253173828125, ...
clarin-knext/hotpotqa-pl
2023-06-07T08:13:33.000Z
[ "language:pl", "arxiv:2305.19840", "region:us" ]
clarin-knext
null
null
0
80
2023-06-06T22:21:34
--- language: - pl --- Part of **BEIR-PL: Zero Shot Information Retrieval Benchmark for the Polish Language**. Link to arxiv: https://arxiv.org/pdf/2305.19840.pdf Contact: konrad.wojtasik@pwr.edu.pl
201
[ [ -0.0153961181640625, -0.0628662109375, 0.03546142578125, 0.0164031982421875, -0.0221710205078125, -0.0103607177734375, -0.01160430908203125, -0.034515380859375, -0.0013275146484375, 0.0286102294921875, -0.03826904296875, -0.048126220703125, -0.0290069580078125, ...
DISCOX/DISCO-200K-random
2023-06-20T14:26:06.000Z
[ "size_categories:100K<n<1M", "language:en", "license:cc-by-4.0", "music", "region:us" ]
DISCOX
null
null
0
80
2023-06-10T19:17:08
--- license: cc-by-4.0 dataset_info: features: - name: video_url_youtube dtype: string - name: video_title_youtube dtype: string - name: track_name_spotify dtype: string - name: preview_url_spotify dtype: string - name: track_id_spotify dtype: string - name: album_id_spotify dtype: string - name: artist_id_spotify sequence: string - name: track_duration_spotify_ms dtype: int64 - name: video_duration_youtube_sec dtype: float64 - name: primary_artist_name_spotify dtype: string - name: search_query_youtube dtype: string - name: first_artist_follower_spotify dtype: float64 - name: artist_genres_spotify sequence: string - name: track_release_date_spotify dtype: string - name: explicit_content_spotify dtype: bool - name: video_view_count_youtube dtype: float64 - name: video_thumbnail_url_youtube dtype: string - name: video_description_youtube dtype: string - name: similarity_duration dtype: float64 - name: similarity_query_video_title dtype: float64 - name: similarity_query_description dtype: float64 - name: similarity_audio dtype: float64 - name: audio_embedding_spotify sequence: float32 - name: audio_embedding_youtube sequence: float32 splits: - name: train num_bytes: 965534426.0 num_examples: 200000 download_size: 1160459401 dataset_size: 965534426.0 language: - en tags: - music size_categories: - 100K<n<1M --- ### Getting Started You can download the dataset using HuggingFace: ```python from datasets import load_dataset ds = load_dataset("DISCOX/DISCO-200K-random") ``` The dataset contains 200,000 random samples from the DISCO-10M dataset found [here](https://huggingface.co/datasets/DISCOX/DISCO-10M). ## Dataset Structure The dataset contains the following features: ```json { 'video_url_youtube', 'video_title_youtube', 'track_name_spotify', 'video_duration_youtube_sec', 'preview_url_spotify', 'video_view_count_youtube', 'video_thumbnail_url_youtube', 'search_query_youtube', 'video_description_youtube', 'track_id_spotify', 'album_id_spotify', 'artist_id_spotify', 'track_duration_spotify_ms', 'primary_artist_name_spotify', 'track_release_date_spotify', 'explicit_content_spotify', 'similarity_duration', 'similarity_query_video_title', 'similarity_query_description', 'similarity_audio', 'audio_embedding_spotify', 'audio_embedding_youtube', } ``` More details about the dataset can be found [here](https://huggingface.co/datasets/DISCOX/DISCO-10M). <!-- ## Dataset Creation ### Curation Rationale [More Information Needed] ### Source Data [More Information Needed] -->
2,696
[ [ -0.051300048828125, -0.039886474609375, 0.00234222412109375, 0.03369140625, -0.0024585723876953125, 0.00449371337890625, -0.00884246826171875, 0.0017423629760742188, 0.04937744140625, 0.045074462890625, -0.08209228515625, -0.053497314453125, -0.026611328125, ...
juselara1/mlds7_codedata
2023-08-13T16:24:32.000Z
[ "region:us" ]
juselara1
null
null
0
80
2023-08-13T16:07:44
# mlds7_codedata This dataset contains some code filtered from the Alpaca original dataset.
93
[ [ -0.052001953125, -0.01396942138671875, 0.01404571533203125, 0.01232147216796875, -0.0445556640625, -0.009765625, 0.032928466796875, -0.007171630859375, 0.04949951171875, 0.11004638671875, -0.050506591796875, -0.05242919921875, -0.0289306640625, 0.00872039794...
open-llm-leaderboard/details_EleutherAI__gpt-j-6b
2023-09-21T23:11:43.000Z
[ "region:us" ]
open-llm-leaderboard
null
null
0
80
2023-08-17T23:48:16
--- pretty_name: Evaluation run of EleutherAI/gpt-j-6B dataset_summary: "Dataset automatically created during the evaluation run of model\ \ [EleutherAI/gpt-j-6B](https://huggingface.co/EleutherAI/gpt-j-6B) on the [Open\ \ LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard).\n\ \nThe dataset is composed of 122 configuration, each one coresponding to one of\ \ the evaluated task.\n\nThe dataset has been created from 6 run(s). Each run can\ \ be found as a specific split in each configuration, the split being named using\ \ the timestamp of the run.The \"train\" split is always pointing to the latest\ \ results.\n\nAn additional configuration \"results\" store all the aggregated results\ \ of the run (and is used to compute and display the agregated metrics on the [Open\ \ LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard)).\n\ \nTo load the details from a run, you can for instance do the following:\n```python\n\ from datasets import load_dataset\ndata = load_dataset(\"open-llm-leaderboard/details_EleutherAI__gpt-j-6B\"\ ,\n\t\"harness_truthfulqa_mc_0\",\n\tsplit=\"train\")\n```\n\n## Latest results\n\ \nThese are the [latest results from run 2023-09-21T23:10:49.133869](https://huggingface.co/datasets/open-llm-leaderboard/details_EleutherAI__gpt-j-6B/blob/main/results_2023-09-21T23-10-49.133869.json)(note\ \ that their might be results for other tasks in the repos if successive evals didn't\ \ cover the same tasks. You find each in the results and the \"latest\" split for\ \ each eval):\n\n```python\n{\n \"all\": {\n \"acc\": 0.27338988678652315,\n\ \ \"acc_stderr\": 0.03208964422983911,\n \"acc_norm\": 0.2772214514141384,\n\ \ \"acc_norm_stderr\": 0.03208927569842228,\n \"mc1\": 0.20195838433292534,\n\ \ \"mc1_stderr\": 0.014053957441512348,\n \"mc2\": 0.35962472949507807,\n\ \ \"mc2_stderr\": 0.013462019520008167\n },\n \"harness|arc:challenge|25\"\ : {\n \"acc\": 0.36860068259385664,\n \"acc_stderr\": 0.014097810678042184,\n\ \ \"acc_norm\": 0.4138225255972696,\n \"acc_norm_stderr\": 0.014392730009221007\n\ \ },\n \"harness|hellaswag|10\": {\n \"acc\": 0.4945230033857797,\n\ \ \"acc_stderr\": 0.00498948204061011,\n \"acc_norm\": 0.675363473411671,\n\ \ \"acc_norm_stderr\": 0.004672819355838537\n },\n \"harness|hendrycksTest-abstract_algebra|5\"\ : {\n \"acc\": 0.27,\n \"acc_stderr\": 0.0446196043338474,\n \ \ \"acc_norm\": 0.27,\n \"acc_norm_stderr\": 0.0446196043338474\n },\n\ \ \"harness|hendrycksTest-anatomy|5\": {\n \"acc\": 0.26666666666666666,\n\ \ \"acc_stderr\": 0.03820169914517904,\n \"acc_norm\": 0.26666666666666666,\n\ \ \"acc_norm_stderr\": 0.03820169914517904\n },\n \"harness|hendrycksTest-astronomy|5\"\ : {\n \"acc\": 0.26973684210526316,\n \"acc_stderr\": 0.03611780560284898,\n\ \ \"acc_norm\": 0.26973684210526316,\n \"acc_norm_stderr\": 0.03611780560284898\n\ \ },\n \"harness|hendrycksTest-business_ethics|5\": {\n \"acc\": 0.28,\n\ \ \"acc_stderr\": 0.04512608598542126,\n \"acc_norm\": 0.28,\n \ \ \"acc_norm_stderr\": 0.04512608598542126\n },\n \"harness|hendrycksTest-clinical_knowledge|5\"\ : {\n \"acc\": 0.26037735849056604,\n \"acc_stderr\": 0.027008766090708104,\n\ \ \"acc_norm\": 0.26037735849056604,\n \"acc_norm_stderr\": 0.027008766090708104\n\ \ },\n \"harness|hendrycksTest-college_biology|5\": {\n \"acc\": 0.24305555555555555,\n\ \ \"acc_stderr\": 0.03586879280080339,\n \"acc_norm\": 0.24305555555555555,\n\ \ \"acc_norm_stderr\": 0.03586879280080339\n },\n \"harness|hendrycksTest-college_chemistry|5\"\ : {\n \"acc\": 0.17,\n \"acc_stderr\": 0.0377525168068637,\n \ \ \"acc_norm\": 0.17,\n \"acc_norm_stderr\": 0.0377525168068637\n },\n\ \ \"harness|hendrycksTest-college_computer_science|5\": {\n \"acc\": 0.23,\n\ \ \"acc_stderr\": 0.04229525846816508,\n \"acc_norm\": 0.23,\n \ \ \"acc_norm_stderr\": 0.04229525846816508\n },\n \"harness|hendrycksTest-college_mathematics|5\"\ : {\n \"acc\": 0.32,\n \"acc_stderr\": 0.04688261722621505,\n \ \ \"acc_norm\": 0.32,\n \"acc_norm_stderr\": 0.04688261722621505\n \ \ },\n \"harness|hendrycksTest-college_medicine|5\": {\n \"acc\": 0.2832369942196532,\n\ \ \"acc_stderr\": 0.03435568056047875,\n \"acc_norm\": 0.2832369942196532,\n\ \ \"acc_norm_stderr\": 0.03435568056047875\n },\n \"harness|hendrycksTest-college_physics|5\"\ : {\n \"acc\": 0.21568627450980393,\n \"acc_stderr\": 0.04092563958237655,\n\ \ \"acc_norm\": 0.21568627450980393,\n \"acc_norm_stderr\": 0.04092563958237655\n\ \ },\n \"harness|hendrycksTest-computer_security|5\": {\n \"acc\":\ \ 0.41,\n \"acc_stderr\": 0.04943110704237101,\n \"acc_norm\": 0.41,\n\ \ \"acc_norm_stderr\": 0.04943110704237101\n },\n \"harness|hendrycksTest-conceptual_physics|5\"\ : {\n \"acc\": 0.3404255319148936,\n \"acc_stderr\": 0.03097669299853443,\n\ \ \"acc_norm\": 0.3404255319148936,\n \"acc_norm_stderr\": 0.03097669299853443\n\ \ },\n \"harness|hendrycksTest-econometrics|5\": {\n \"acc\": 0.2807017543859649,\n\ \ \"acc_stderr\": 0.042270544512322,\n \"acc_norm\": 0.2807017543859649,\n\ \ \"acc_norm_stderr\": 0.042270544512322\n },\n \"harness|hendrycksTest-electrical_engineering|5\"\ : {\n \"acc\": 0.2896551724137931,\n \"acc_stderr\": 0.037800192304380135,\n\ \ \"acc_norm\": 0.2896551724137931,\n \"acc_norm_stderr\": 0.037800192304380135\n\ \ },\n \"harness|hendrycksTest-elementary_mathematics|5\": {\n \"acc\"\ : 0.23015873015873015,\n \"acc_stderr\": 0.021679219663693145,\n \"\ acc_norm\": 0.23015873015873015,\n \"acc_norm_stderr\": 0.021679219663693145\n\ \ },\n \"harness|hendrycksTest-formal_logic|5\": {\n \"acc\": 0.18253968253968253,\n\ \ \"acc_stderr\": 0.03455071019102149,\n \"acc_norm\": 0.18253968253968253,\n\ \ \"acc_norm_stderr\": 0.03455071019102149\n },\n \"harness|hendrycksTest-global_facts|5\"\ : {\n \"acc\": 0.21,\n \"acc_stderr\": 0.040936018074033256,\n \ \ \"acc_norm\": 0.21,\n \"acc_norm_stderr\": 0.040936018074033256\n \ \ },\n \"harness|hendrycksTest-high_school_biology|5\": {\n \"acc\"\ : 0.2032258064516129,\n \"acc_stderr\": 0.022891687984554966,\n \"\ acc_norm\": 0.2032258064516129,\n \"acc_norm_stderr\": 0.022891687984554966\n\ \ },\n \"harness|hendrycksTest-high_school_chemistry|5\": {\n \"acc\"\ : 0.24630541871921183,\n \"acc_stderr\": 0.030315099285617732,\n \"\ acc_norm\": 0.24630541871921183,\n \"acc_norm_stderr\": 0.030315099285617732\n\ \ },\n \"harness|hendrycksTest-high_school_computer_science|5\": {\n \ \ \"acc\": 0.15,\n \"acc_stderr\": 0.03588702812826369,\n \"acc_norm\"\ : 0.15,\n \"acc_norm_stderr\": 0.03588702812826369\n },\n \"harness|hendrycksTest-high_school_european_history|5\"\ : {\n \"acc\": 0.28484848484848485,\n \"acc_stderr\": 0.035243908445117836,\n\ \ \"acc_norm\": 0.28484848484848485,\n \"acc_norm_stderr\": 0.035243908445117836\n\ \ },\n \"harness|hendrycksTest-high_school_geography|5\": {\n \"acc\"\ : 0.23232323232323232,\n \"acc_stderr\": 0.030088629490217483,\n \"\ acc_norm\": 0.23232323232323232,\n \"acc_norm_stderr\": 0.030088629490217483\n\ \ },\n \"harness|hendrycksTest-high_school_government_and_politics|5\": {\n\ \ \"acc\": 0.22279792746113988,\n \"acc_stderr\": 0.03003114797764154,\n\ \ \"acc_norm\": 0.22279792746113988,\n \"acc_norm_stderr\": 0.03003114797764154\n\ \ },\n \"harness|hendrycksTest-high_school_macroeconomics|5\": {\n \ \ \"acc\": 0.2230769230769231,\n \"acc_stderr\": 0.021107730127243984,\n\ \ \"acc_norm\": 0.2230769230769231,\n \"acc_norm_stderr\": 0.021107730127243984\n\ \ },\n \"harness|hendrycksTest-high_school_mathematics|5\": {\n \"\ acc\": 0.2740740740740741,\n \"acc_stderr\": 0.027195934804085622,\n \ \ \"acc_norm\": 0.2740740740740741,\n \"acc_norm_stderr\": 0.027195934804085622\n\ \ },\n \"harness|hendrycksTest-high_school_microeconomics|5\": {\n \ \ \"acc\": 0.25630252100840334,\n \"acc_stderr\": 0.02835962087053395,\n\ \ \"acc_norm\": 0.25630252100840334,\n \"acc_norm_stderr\": 0.02835962087053395\n\ \ },\n \"harness|hendrycksTest-high_school_physics|5\": {\n \"acc\"\ : 0.25165562913907286,\n \"acc_stderr\": 0.035433042343899844,\n \"\ acc_norm\": 0.25165562913907286,\n \"acc_norm_stderr\": 0.035433042343899844\n\ \ },\n \"harness|hendrycksTest-high_school_psychology|5\": {\n \"acc\"\ : 0.22568807339449543,\n \"acc_stderr\": 0.017923087667803057,\n \"\ acc_norm\": 0.22568807339449543,\n \"acc_norm_stderr\": 0.017923087667803057\n\ \ },\n \"harness|hendrycksTest-high_school_statistics|5\": {\n \"acc\"\ : 0.16203703703703703,\n \"acc_stderr\": 0.025130453652268455,\n \"\ acc_norm\": 0.16203703703703703,\n \"acc_norm_stderr\": 0.025130453652268455\n\ \ },\n \"harness|hendrycksTest-high_school_us_history|5\": {\n \"acc\"\ : 0.28921568627450983,\n \"acc_stderr\": 0.03182231867647555,\n \"\ acc_norm\": 0.28921568627450983,\n \"acc_norm_stderr\": 0.03182231867647555\n\ \ },\n \"harness|hendrycksTest-high_school_world_history|5\": {\n \"\ acc\": 0.2869198312236287,\n \"acc_stderr\": 0.02944377302259469,\n \ \ \"acc_norm\": 0.2869198312236287,\n \"acc_norm_stderr\": 0.02944377302259469\n\ \ },\n \"harness|hendrycksTest-human_aging|5\": {\n \"acc\": 0.336322869955157,\n\ \ \"acc_stderr\": 0.031708824268455005,\n \"acc_norm\": 0.336322869955157,\n\ \ \"acc_norm_stderr\": 0.031708824268455005\n },\n \"harness|hendrycksTest-human_sexuality|5\"\ : {\n \"acc\": 0.21374045801526717,\n \"acc_stderr\": 0.0359546161177469,\n\ \ \"acc_norm\": 0.21374045801526717,\n \"acc_norm_stderr\": 0.0359546161177469\n\ \ },\n \"harness|hendrycksTest-international_law|5\": {\n \"acc\":\ \ 0.24793388429752067,\n \"acc_stderr\": 0.03941897526516302,\n \"\ acc_norm\": 0.24793388429752067,\n \"acc_norm_stderr\": 0.03941897526516302\n\ \ },\n \"harness|hendrycksTest-jurisprudence|5\": {\n \"acc\": 0.28703703703703703,\n\ \ \"acc_stderr\": 0.043733130409147614,\n \"acc_norm\": 0.28703703703703703,\n\ \ \"acc_norm_stderr\": 0.043733130409147614\n },\n \"harness|hendrycksTest-logical_fallacies|5\"\ : {\n \"acc\": 0.25153374233128833,\n \"acc_stderr\": 0.03408997886857529,\n\ \ \"acc_norm\": 0.25153374233128833,\n \"acc_norm_stderr\": 0.03408997886857529\n\ \ },\n \"harness|hendrycksTest-machine_learning|5\": {\n \"acc\": 0.38392857142857145,\n\ \ \"acc_stderr\": 0.04616143075028547,\n \"acc_norm\": 0.38392857142857145,\n\ \ \"acc_norm_stderr\": 0.04616143075028547\n },\n \"harness|hendrycksTest-management|5\"\ : {\n \"acc\": 0.21359223300970873,\n \"acc_stderr\": 0.040580420156460344,\n\ \ \"acc_norm\": 0.21359223300970873,\n \"acc_norm_stderr\": 0.040580420156460344\n\ \ },\n \"harness|hendrycksTest-marketing|5\": {\n \"acc\": 0.26495726495726496,\n\ \ \"acc_stderr\": 0.028911208802749482,\n \"acc_norm\": 0.26495726495726496,\n\ \ \"acc_norm_stderr\": 0.028911208802749482\n },\n \"harness|hendrycksTest-medical_genetics|5\"\ : {\n \"acc\": 0.29,\n \"acc_stderr\": 0.045604802157206845,\n \ \ \"acc_norm\": 0.29,\n \"acc_norm_stderr\": 0.045604802157206845\n \ \ },\n \"harness|hendrycksTest-miscellaneous|5\": {\n \"acc\": 0.31417624521072796,\n\ \ \"acc_stderr\": 0.016599291735884904,\n \"acc_norm\": 0.31417624521072796,\n\ \ \"acc_norm_stderr\": 0.016599291735884904\n },\n \"harness|hendrycksTest-moral_disputes|5\"\ : {\n \"acc\": 0.27167630057803466,\n \"acc_stderr\": 0.023948512905468358,\n\ \ \"acc_norm\": 0.27167630057803466,\n \"acc_norm_stderr\": 0.023948512905468358\n\ \ },\n \"harness|hendrycksTest-moral_scenarios|5\": {\n \"acc\": 0.2435754189944134,\n\ \ \"acc_stderr\": 0.014355911964767864,\n \"acc_norm\": 0.2435754189944134,\n\ \ \"acc_norm_stderr\": 0.014355911964767864\n },\n \"harness|hendrycksTest-nutrition|5\"\ : {\n \"acc\": 0.2647058823529412,\n \"acc_stderr\": 0.025261691219729494,\n\ \ \"acc_norm\": 0.2647058823529412,\n \"acc_norm_stderr\": 0.025261691219729494\n\ \ },\n \"harness|hendrycksTest-philosophy|5\": {\n \"acc\": 0.2604501607717042,\n\ \ \"acc_stderr\": 0.024926723224845543,\n \"acc_norm\": 0.2604501607717042,\n\ \ \"acc_norm_stderr\": 0.024926723224845543\n },\n \"harness|hendrycksTest-prehistory|5\"\ : {\n \"acc\": 0.3117283950617284,\n \"acc_stderr\": 0.02577311116963045,\n\ \ \"acc_norm\": 0.3117283950617284,\n \"acc_norm_stderr\": 0.02577311116963045\n\ \ },\n \"harness|hendrycksTest-professional_accounting|5\": {\n \"\ acc\": 0.28368794326241137,\n \"acc_stderr\": 0.02689170942834396,\n \ \ \"acc_norm\": 0.28368794326241137,\n \"acc_norm_stderr\": 0.02689170942834396\n\ \ },\n \"harness|hendrycksTest-professional_law|5\": {\n \"acc\": 0.2894393741851369,\n\ \ \"acc_stderr\": 0.011582659702210252,\n \"acc_norm\": 0.2894393741851369,\n\ \ \"acc_norm_stderr\": 0.011582659702210252\n },\n \"harness|hendrycksTest-professional_medicine|5\"\ : {\n \"acc\": 0.2426470588235294,\n \"acc_stderr\": 0.02604066247420127,\n\ \ \"acc_norm\": 0.2426470588235294,\n \"acc_norm_stderr\": 0.02604066247420127\n\ \ },\n \"harness|hendrycksTest-professional_psychology|5\": {\n \"\ acc\": 0.27941176470588236,\n \"acc_stderr\": 0.018152871051538816,\n \ \ \"acc_norm\": 0.27941176470588236,\n \"acc_norm_stderr\": 0.018152871051538816\n\ \ },\n \"harness|hendrycksTest-public_relations|5\": {\n \"acc\": 0.34545454545454546,\n\ \ \"acc_stderr\": 0.04554619617541054,\n \"acc_norm\": 0.34545454545454546,\n\ \ \"acc_norm_stderr\": 0.04554619617541054\n },\n \"harness|hendrycksTest-security_studies|5\"\ : {\n \"acc\": 0.35918367346938773,\n \"acc_stderr\": 0.030713560455108493,\n\ \ \"acc_norm\": 0.35918367346938773,\n \"acc_norm_stderr\": 0.030713560455108493\n\ \ },\n \"harness|hendrycksTest-sociology|5\": {\n \"acc\": 0.27860696517412936,\n\ \ \"acc_stderr\": 0.031700561834973086,\n \"acc_norm\": 0.27860696517412936,\n\ \ \"acc_norm_stderr\": 0.031700561834973086\n },\n \"harness|hendrycksTest-us_foreign_policy|5\"\ : {\n \"acc\": 0.29,\n \"acc_stderr\": 0.04560480215720684,\n \ \ \"acc_norm\": 0.29,\n \"acc_norm_stderr\": 0.04560480215720684\n \ \ },\n \"harness|hendrycksTest-virology|5\": {\n \"acc\": 0.3373493975903614,\n\ \ \"acc_stderr\": 0.03680783690727581,\n \"acc_norm\": 0.3373493975903614,\n\ \ \"acc_norm_stderr\": 0.03680783690727581\n },\n \"harness|hendrycksTest-world_religions|5\"\ : {\n \"acc\": 0.34502923976608185,\n \"acc_stderr\": 0.03645981377388807,\n\ \ \"acc_norm\": 0.34502923976608185,\n \"acc_norm_stderr\": 0.03645981377388807\n\ \ },\n \"harness|truthfulqa:mc|0\": {\n \"mc1\": 0.20195838433292534,\n\ \ \"mc1_stderr\": 0.014053957441512348,\n \"mc2\": 0.35962472949507807,\n\ \ \"mc2_stderr\": 0.013462019520008167\n }\n}\n```" repo_url: https://huggingface.co/EleutherAI/gpt-j-6B leaderboard_url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard point_of_contact: clementine@hf.co configs: - config_name: harness_arc_challenge_25 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|arc:challenge|25_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|arc:challenge|25_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|arc:challenge|25_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|arc:challenge|25_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|arc:challenge|25_2023-09-21T23-10-49.133869.parquet' - config_name: harness_drop_3 data_files: - split: 2023_09_08T17_46_12.907701 path: - '**/details_harness|drop|3_2023-09-08T17-46-12.907701.parquet' - split: latest path: - '**/details_harness|drop|3_2023-09-08T17-46-12.907701.parquet' - config_name: harness_gsm8k_5 data_files: - split: 2023_09_08T17_46_12.907701 path: - '**/details_harness|gsm8k|5_2023-09-08T17-46-12.907701.parquet' - split: latest path: - '**/details_harness|gsm8k|5_2023-09-08T17-46-12.907701.parquet' - config_name: harness_hellaswag_10 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hellaswag|10_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hellaswag|10_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hellaswag|10_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hellaswag|10_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hellaswag|10_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-abstract_algebra|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-anatomy|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-astronomy|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-business_ethics|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-college_biology|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-college_chemistry|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-college_computer_science|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-college_mathematics|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-college_medicine|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-college_physics|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-computer_security|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-conceptual_physics|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-econometrics|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-electrical_engineering|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-formal_logic|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-global_facts|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-high_school_biology|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-high_school_european_history|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-high_school_geography|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-high_school_physics|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-high_school_psychology|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-high_school_statistics|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-high_school_us_history|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-high_school_world_history|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-human_aging|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-human_sexuality|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-international_law|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-jurisprudence|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-logical_fallacies|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-machine_learning|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-management|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-marketing|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-medical_genetics|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-miscellaneous|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-moral_disputes|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-moral_scenarios|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-nutrition|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-philosophy|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-prehistory|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-professional_accounting|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-professional_law|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-professional_medicine|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-professional_psychology|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-public_relations|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-security_studies|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-sociology|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-virology|5_2023-07-18T11:28:34.858547.parquet' - '**/details_harness|hendrycksTest-world_religions|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-abstract_algebra|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-anatomy|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-astronomy|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-business_ethics|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-college_biology|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-college_chemistry|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-college_computer_science|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-college_mathematics|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-college_medicine|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-college_physics|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-computer_security|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-conceptual_physics|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-econometrics|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-electrical_engineering|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-formal_logic|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-global_facts|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-high_school_biology|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-high_school_european_history|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-high_school_geography|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-high_school_physics|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-high_school_psychology|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-high_school_statistics|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-high_school_us_history|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-high_school_world_history|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-human_aging|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-human_sexuality|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-international_law|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-jurisprudence|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-logical_fallacies|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-machine_learning|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-management|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-marketing|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-medical_genetics|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-miscellaneous|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-moral_disputes|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-moral_scenarios|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-nutrition|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-philosophy|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-prehistory|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-professional_accounting|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-professional_law|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-professional_medicine|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-professional_psychology|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-public_relations|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-security_studies|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-sociology|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-virology|5_2023-07-19T10:47:17.854530.parquet' - '**/details_harness|hendrycksTest-world_religions|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-abstract_algebra|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-anatomy|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-astronomy|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-business_ethics|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-college_biology|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-college_chemistry|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-college_computer_science|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-college_mathematics|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-college_medicine|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-college_physics|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-computer_security|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-conceptual_physics|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-econometrics|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-electrical_engineering|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-formal_logic|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-global_facts|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-high_school_biology|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-high_school_european_history|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-high_school_geography|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-high_school_physics|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-high_school_psychology|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-high_school_statistics|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-high_school_us_history|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-high_school_world_history|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-human_aging|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-human_sexuality|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-international_law|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-jurisprudence|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-logical_fallacies|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-machine_learning|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-management|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-marketing|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-medical_genetics|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-miscellaneous|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-moral_disputes|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-moral_scenarios|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-nutrition|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-philosophy|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-prehistory|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-professional_accounting|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-professional_law|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-professional_medicine|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-professional_psychology|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-public_relations|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-security_studies|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-sociology|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-virology|5_2023-08-29T19:41:28.653242.parquet' - '**/details_harness|hendrycksTest-world_religions|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-abstract_algebra|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-anatomy|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-astronomy|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-business_ethics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-college_biology|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-college_chemistry|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-college_computer_science|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-college_mathematics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-college_medicine|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-college_physics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-computer_security|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-conceptual_physics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-econometrics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-electrical_engineering|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-formal_logic|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-global_facts|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_biology|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_european_history|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_geography|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_physics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_psychology|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_statistics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_us_history|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_world_history|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-human_aging|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-human_sexuality|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-international_law|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-jurisprudence|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-logical_fallacies|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-machine_learning|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-management|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-marketing|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-medical_genetics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-miscellaneous|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-moral_disputes|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-moral_scenarios|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-nutrition|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-philosophy|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-prehistory|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-professional_accounting|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-professional_law|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-professional_medicine|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-professional_psychology|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-public_relations|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-security_studies|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-sociology|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-virology|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-world_religions|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-abstract_algebra|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-anatomy|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-astronomy|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-business_ethics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-college_biology|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-college_chemistry|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-college_computer_science|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-college_mathematics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-college_medicine|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-college_physics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-computer_security|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-conceptual_physics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-econometrics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-electrical_engineering|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-formal_logic|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-global_facts|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_biology|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_european_history|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_geography|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_physics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_psychology|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_statistics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_us_history|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-high_school_world_history|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-human_aging|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-human_sexuality|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-international_law|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-jurisprudence|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-logical_fallacies|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-machine_learning|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-management|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-marketing|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-medical_genetics|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-miscellaneous|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-moral_disputes|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-moral_scenarios|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-nutrition|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-philosophy|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-prehistory|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-professional_accounting|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-professional_law|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-professional_medicine|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-professional_psychology|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-public_relations|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-security_studies|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-sociology|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-virology|5_2023-09-21T23-10-49.133869.parquet' - '**/details_harness|hendrycksTest-world_religions|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_abstract_algebra_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-abstract_algebra|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-abstract_algebra|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-abstract_algebra|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-abstract_algebra|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-abstract_algebra|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_anatomy_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-anatomy|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-anatomy|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-anatomy|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-anatomy|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-anatomy|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_astronomy_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-astronomy|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-astronomy|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-astronomy|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-astronomy|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-astronomy|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_business_ethics_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-business_ethics|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-business_ethics|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-business_ethics|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-business_ethics|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-business_ethics|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_clinical_knowledge_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_college_biology_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-college_biology|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-college_biology|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-college_biology|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-college_biology|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-college_biology|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_college_chemistry_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-college_chemistry|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-college_chemistry|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-college_chemistry|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-college_chemistry|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-college_chemistry|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_college_computer_science_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-college_computer_science|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-college_computer_science|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-college_computer_science|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-college_computer_science|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-college_computer_science|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_college_mathematics_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-college_mathematics|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-college_mathematics|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-college_mathematics|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-college_mathematics|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-college_mathematics|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_college_medicine_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-college_medicine|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-college_medicine|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-college_medicine|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-college_medicine|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-college_medicine|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_college_physics_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-college_physics|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-college_physics|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-college_physics|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-college_physics|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-college_physics|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_computer_security_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-computer_security|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-computer_security|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-computer_security|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-computer_security|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-computer_security|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_conceptual_physics_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-conceptual_physics|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-conceptual_physics|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-conceptual_physics|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-conceptual_physics|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-conceptual_physics|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_econometrics_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-econometrics|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-econometrics|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-econometrics|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-econometrics|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-econometrics|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_electrical_engineering_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-electrical_engineering|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-electrical_engineering|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-electrical_engineering|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-electrical_engineering|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-electrical_engineering|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_elementary_mathematics_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_formal_logic_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-formal_logic|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-formal_logic|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-formal_logic|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-formal_logic|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-formal_logic|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_global_facts_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-global_facts|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-global_facts|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-global_facts|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-global_facts|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-global_facts|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_high_school_biology_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-high_school_biology|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-high_school_biology|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-high_school_biology|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-high_school_biology|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_biology|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_high_school_chemistry_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_high_school_computer_science_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_high_school_european_history_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-high_school_european_history|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-high_school_european_history|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-high_school_european_history|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-high_school_european_history|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_european_history|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_high_school_geography_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-high_school_geography|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-high_school_geography|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-high_school_geography|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-high_school_geography|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_geography|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_high_school_government_and_politics_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_high_school_macroeconomics_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_high_school_mathematics_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_high_school_microeconomics_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_high_school_physics_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-high_school_physics|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-high_school_physics|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-high_school_physics|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-high_school_physics|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_physics|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_high_school_psychology_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-high_school_psychology|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-high_school_psychology|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-high_school_psychology|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-high_school_psychology|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_psychology|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_high_school_statistics_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-high_school_statistics|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-high_school_statistics|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-high_school_statistics|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-high_school_statistics|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_statistics|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_high_school_us_history_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-high_school_us_history|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-high_school_us_history|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-high_school_us_history|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-high_school_us_history|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_us_history|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_high_school_world_history_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-high_school_world_history|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-high_school_world_history|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-high_school_world_history|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-high_school_world_history|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_world_history|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_human_aging_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-human_aging|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-human_aging|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-human_aging|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-human_aging|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-human_aging|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_human_sexuality_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-human_sexuality|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-human_sexuality|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-human_sexuality|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-human_sexuality|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-human_sexuality|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_international_law_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-international_law|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-international_law|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-international_law|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-international_law|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-international_law|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_jurisprudence_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-jurisprudence|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-jurisprudence|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-jurisprudence|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-jurisprudence|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-jurisprudence|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_logical_fallacies_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-logical_fallacies|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-logical_fallacies|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-logical_fallacies|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-logical_fallacies|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-logical_fallacies|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_machine_learning_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-machine_learning|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-machine_learning|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-machine_learning|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-machine_learning|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-machine_learning|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_management_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-management|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-management|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-management|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-management|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-management|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_marketing_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-marketing|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-marketing|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-marketing|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-marketing|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-marketing|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_medical_genetics_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-medical_genetics|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-medical_genetics|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-medical_genetics|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-medical_genetics|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-medical_genetics|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_miscellaneous_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-miscellaneous|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-miscellaneous|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-miscellaneous|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-miscellaneous|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-miscellaneous|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_moral_disputes_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-moral_disputes|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-moral_disputes|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-moral_disputes|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-moral_disputes|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-moral_disputes|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_moral_scenarios_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-moral_scenarios|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-moral_scenarios|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-moral_scenarios|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-moral_scenarios|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-moral_scenarios|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_nutrition_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-nutrition|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-nutrition|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-nutrition|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-nutrition|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-nutrition|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_philosophy_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-philosophy|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-philosophy|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-philosophy|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-philosophy|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-philosophy|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_prehistory_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-prehistory|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-prehistory|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-prehistory|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-prehistory|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-prehistory|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_professional_accounting_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-professional_accounting|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-professional_accounting|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-professional_accounting|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-professional_accounting|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-professional_accounting|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_professional_law_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-professional_law|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-professional_law|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-professional_law|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-professional_law|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-professional_law|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_professional_medicine_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-professional_medicine|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-professional_medicine|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-professional_medicine|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-professional_medicine|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-professional_medicine|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_professional_psychology_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-professional_psychology|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-professional_psychology|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-professional_psychology|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-professional_psychology|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-professional_psychology|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_public_relations_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-public_relations|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-public_relations|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-public_relations|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-public_relations|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-public_relations|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_security_studies_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-security_studies|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-security_studies|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-security_studies|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-security_studies|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-security_studies|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_sociology_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-sociology|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-sociology|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-sociology|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-sociology|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-sociology|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_us_foreign_policy_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_virology_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-virology|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-virology|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-virology|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-virology|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-virology|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_hendrycksTest_world_religions_5 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|hendrycksTest-world_religions|5_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|hendrycksTest-world_religions|5_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|hendrycksTest-world_religions|5_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|hendrycksTest-world_religions|5_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|hendrycksTest-world_religions|5_2023-09-21T23-10-49.133869.parquet' - config_name: harness_truthfulqa_mc_0 data_files: - split: 2023_07_18T11_28_34.858547 path: - '**/details_harness|truthfulqa:mc|0_2023-07-18T11:28:34.858547.parquet' - split: 2023_07_19T10_47_17.854530 path: - '**/details_harness|truthfulqa:mc|0_2023-07-19T10:47:17.854530.parquet' - split: 2023_08_29T19_41_28.653242 path: - '**/details_harness|truthfulqa:mc|0_2023-08-29T19:41:28.653242.parquet' - split: 2023_09_21T23_10_49.133869 path: - '**/details_harness|truthfulqa:mc|0_2023-09-21T23-10-49.133869.parquet' - split: latest path: - '**/details_harness|truthfulqa:mc|0_2023-09-21T23-10-49.133869.parquet' - config_name: harness_winogrande_5 data_files: - split: 2023_09_08T17_46_12.907701 path: - '**/details_harness|winogrande|5_2023-09-08T17-46-12.907701.parquet' - split: latest path: - '**/details_harness|winogrande|5_2023-09-08T17-46-12.907701.parquet' - config_name: original_mmlu_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:abstract_algebra|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:anatomy|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:astronomy|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:business_ethics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:clinical_knowledge|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:college_biology|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:college_chemistry|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:college_computer_science|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:college_mathematics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:college_medicine|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:college_physics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:computer_security|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:conceptual_physics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:econometrics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:electrical_engineering|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:elementary_mathematics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:formal_logic|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:global_facts|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_biology|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_chemistry|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_computer_science|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_european_history|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_geography|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_government_and_politics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_macroeconomics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_mathematics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_microeconomics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_physics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_psychology|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_statistics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_us_history|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_world_history|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:human_aging|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:human_sexuality|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:international_law|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:jurisprudence|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:logical_fallacies|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:machine_learning|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:management|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:marketing|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:medical_genetics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:miscellaneous|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:moral_disputes|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:moral_scenarios|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:nutrition|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:philosophy|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:prehistory|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:professional_accounting|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:professional_law|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:professional_medicine|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:professional_psychology|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:public_relations|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:security_studies|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:sociology|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:us_foreign_policy|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:virology|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:world_religions|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:abstract_algebra|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:anatomy|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:astronomy|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:business_ethics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:clinical_knowledge|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:college_biology|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:college_chemistry|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:college_computer_science|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:college_mathematics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:college_medicine|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:college_physics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:computer_security|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:conceptual_physics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:econometrics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:electrical_engineering|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:elementary_mathematics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:formal_logic|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:global_facts|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_biology|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_chemistry|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_computer_science|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_european_history|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_geography|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_government_and_politics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_macroeconomics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_mathematics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_microeconomics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_physics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_psychology|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_statistics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_us_history|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:high_school_world_history|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:human_aging|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:human_sexuality|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:international_law|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:jurisprudence|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:logical_fallacies|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:machine_learning|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:management|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:marketing|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:medical_genetics|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:miscellaneous|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:moral_disputes|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:moral_scenarios|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:nutrition|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:philosophy|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:prehistory|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:professional_accounting|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:professional_law|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:professional_medicine|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:professional_psychology|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:public_relations|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:security_studies|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:sociology|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:us_foreign_policy|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:virology|5_2023-08-28T20:18:18.137533.parquet' - '**/details_original|mmlu:world_religions|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_abstract_algebra_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:abstract_algebra|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:abstract_algebra|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_anatomy_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:anatomy|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:anatomy|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_astronomy_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:astronomy|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:astronomy|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_business_ethics_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:business_ethics|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:business_ethics|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_clinical_knowledge_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:clinical_knowledge|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:clinical_knowledge|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_college_biology_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:college_biology|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:college_biology|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_college_chemistry_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:college_chemistry|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:college_chemistry|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_college_computer_science_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:college_computer_science|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:college_computer_science|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_college_mathematics_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:college_mathematics|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:college_mathematics|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_college_medicine_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:college_medicine|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:college_medicine|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_college_physics_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:college_physics|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:college_physics|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_computer_security_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:computer_security|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:computer_security|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_conceptual_physics_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:conceptual_physics|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:conceptual_physics|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_econometrics_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:econometrics|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:econometrics|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_electrical_engineering_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:electrical_engineering|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:electrical_engineering|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_elementary_mathematics_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:elementary_mathematics|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:elementary_mathematics|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_formal_logic_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:formal_logic|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:formal_logic|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_global_facts_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:global_facts|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:global_facts|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_high_school_biology_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:high_school_biology|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:high_school_biology|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_high_school_chemistry_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:high_school_chemistry|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:high_school_chemistry|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_high_school_computer_science_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:high_school_computer_science|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:high_school_computer_science|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_high_school_european_history_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:high_school_european_history|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:high_school_european_history|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_high_school_geography_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:high_school_geography|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:high_school_geography|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_high_school_government_and_politics_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:high_school_government_and_politics|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:high_school_government_and_politics|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_high_school_macroeconomics_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:high_school_macroeconomics|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:high_school_macroeconomics|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_high_school_mathematics_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:high_school_mathematics|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:high_school_mathematics|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_high_school_microeconomics_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:high_school_microeconomics|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:high_school_microeconomics|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_high_school_physics_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:high_school_physics|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:high_school_physics|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_high_school_psychology_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:high_school_psychology|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:high_school_psychology|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_high_school_statistics_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:high_school_statistics|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:high_school_statistics|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_high_school_us_history_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:high_school_us_history|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:high_school_us_history|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_high_school_world_history_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:high_school_world_history|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:high_school_world_history|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_human_aging_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:human_aging|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:human_aging|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_human_sexuality_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:human_sexuality|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:human_sexuality|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_international_law_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:international_law|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:international_law|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_jurisprudence_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:jurisprudence|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:jurisprudence|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_logical_fallacies_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:logical_fallacies|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:logical_fallacies|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_machine_learning_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:machine_learning|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:machine_learning|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_management_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:management|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:management|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_marketing_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:marketing|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:marketing|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_medical_genetics_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:medical_genetics|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:medical_genetics|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_miscellaneous_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:miscellaneous|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:miscellaneous|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_moral_disputes_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:moral_disputes|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:moral_disputes|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_moral_scenarios_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:moral_scenarios|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:moral_scenarios|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_nutrition_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:nutrition|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:nutrition|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_philosophy_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:philosophy|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:philosophy|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_prehistory_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:prehistory|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:prehistory|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_professional_accounting_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:professional_accounting|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:professional_accounting|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_professional_law_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:professional_law|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:professional_law|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_professional_medicine_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:professional_medicine|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:professional_medicine|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_professional_psychology_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:professional_psychology|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:professional_psychology|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_public_relations_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:public_relations|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:public_relations|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_security_studies_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:security_studies|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:security_studies|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_sociology_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:sociology|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:sociology|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_us_foreign_policy_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:us_foreign_policy|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:us_foreign_policy|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_virology_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:virology|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:virology|5_2023-08-28T20:18:18.137533.parquet' - config_name: original_mmlu_world_religions_5 data_files: - split: 2023_08_28T20_18_18.137533 path: - '**/details_original|mmlu:world_religions|5_2023-08-28T20:18:18.137533.parquet' - split: latest path: - '**/details_original|mmlu:world_religions|5_2023-08-28T20:18:18.137533.parquet' - config_name: results data_files: - split: 2023_07_18T11_28_34.858547 path: - results_2023-07-18T11:28:34.858547.parquet - split: 2023_07_19T10_47_17.854530 path: - results_2023-07-19T10:47:17.854530.parquet - split: 2023_08_28T20_18_18.137533 path: - results_2023-08-28T20:18:18.137533.parquet - split: 2023_08_29T19_41_28.653242 path: - results_2023-08-29T19:41:28.653242.parquet - split: 2023_09_08T17_46_12.907701 path: - results_2023-09-08T17-46-12.907701.parquet - split: 2023_09_21T23_10_49.133869 path: - results_2023-09-21T23-10-49.133869.parquet - split: latest path: - results_2023-09-21T23-10-49.133869.parquet --- # Dataset Card for Evaluation run of EleutherAI/gpt-j-6B ## Dataset Description - **Homepage:** - **Repository:** https://huggingface.co/EleutherAI/gpt-j-6B - **Paper:** - **Leaderboard:** https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard - **Point of Contact:** clementine@hf.co ### Dataset Summary Dataset automatically created during the evaluation run of model [EleutherAI/gpt-j-6B](https://huggingface.co/EleutherAI/gpt-j-6B) on the [Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard). The dataset is composed of 122 configuration, each one coresponding to one of the evaluated task. The dataset has been created from 6 run(s). Each run can be found as a specific split in each configuration, the split being named using the timestamp of the run.The "train" split is always pointing to the latest results. An additional configuration "results" store all the aggregated results of the run (and is used to compute and display the agregated metrics on the [Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard)). To load the details from a run, you can for instance do the following: ```python from datasets import load_dataset data = load_dataset("open-llm-leaderboard/details_EleutherAI__gpt-j-6B", "harness_truthfulqa_mc_0", split="train") ``` ## Latest results These are the [latest results from run 2023-09-21T23:10:49.133869](https://huggingface.co/datasets/open-llm-leaderboard/details_EleutherAI__gpt-j-6B/blob/main/results_2023-09-21T23-10-49.133869.json)(note that their might be results for other tasks in the repos if successive evals didn't cover the same tasks. You find each in the results and the "latest" split for each eval): ```python { "all": { "acc": 0.27338988678652315, "acc_stderr": 0.03208964422983911, "acc_norm": 0.2772214514141384, "acc_norm_stderr": 0.03208927569842228, "mc1": 0.20195838433292534, "mc1_stderr": 0.014053957441512348, "mc2": 0.35962472949507807, "mc2_stderr": 0.013462019520008167 }, "harness|arc:challenge|25": { "acc": 0.36860068259385664, "acc_stderr": 0.014097810678042184, "acc_norm": 0.4138225255972696, "acc_norm_stderr": 0.014392730009221007 }, "harness|hellaswag|10": { "acc": 0.4945230033857797, "acc_stderr": 0.00498948204061011, "acc_norm": 0.675363473411671, "acc_norm_stderr": 0.004672819355838537 }, "harness|hendrycksTest-abstract_algebra|5": { "acc": 0.27, "acc_stderr": 0.0446196043338474, "acc_norm": 0.27, "acc_norm_stderr": 0.0446196043338474 }, "harness|hendrycksTest-anatomy|5": { "acc": 0.26666666666666666, "acc_stderr": 0.03820169914517904, "acc_norm": 0.26666666666666666, "acc_norm_stderr": 0.03820169914517904 }, "harness|hendrycksTest-astronomy|5": { "acc": 0.26973684210526316, "acc_stderr": 0.03611780560284898, "acc_norm": 0.26973684210526316, "acc_norm_stderr": 0.03611780560284898 }, "harness|hendrycksTest-business_ethics|5": { "acc": 0.28, "acc_stderr": 0.04512608598542126, "acc_norm": 0.28, "acc_norm_stderr": 0.04512608598542126 }, "harness|hendrycksTest-clinical_knowledge|5": { "acc": 0.26037735849056604, "acc_stderr": 0.027008766090708104, "acc_norm": 0.26037735849056604, "acc_norm_stderr": 0.027008766090708104 }, "harness|hendrycksTest-college_biology|5": { "acc": 0.24305555555555555, "acc_stderr": 0.03586879280080339, "acc_norm": 0.24305555555555555, "acc_norm_stderr": 0.03586879280080339 }, "harness|hendrycksTest-college_chemistry|5": { "acc": 0.17, "acc_stderr": 0.0377525168068637, "acc_norm": 0.17, "acc_norm_stderr": 0.0377525168068637 }, "harness|hendrycksTest-college_computer_science|5": { "acc": 0.23, "acc_stderr": 0.04229525846816508, "acc_norm": 0.23, "acc_norm_stderr": 0.04229525846816508 }, "harness|hendrycksTest-college_mathematics|5": { "acc": 0.32, "acc_stderr": 0.04688261722621505, "acc_norm": 0.32, "acc_norm_stderr": 0.04688261722621505 }, "harness|hendrycksTest-college_medicine|5": { "acc": 0.2832369942196532, "acc_stderr": 0.03435568056047875, "acc_norm": 0.2832369942196532, "acc_norm_stderr": 0.03435568056047875 }, "harness|hendrycksTest-college_physics|5": { "acc": 0.21568627450980393, "acc_stderr": 0.04092563958237655, "acc_norm": 0.21568627450980393, "acc_norm_stderr": 0.04092563958237655 }, "harness|hendrycksTest-computer_security|5": { "acc": 0.41, "acc_stderr": 0.04943110704237101, "acc_norm": 0.41, "acc_norm_stderr": 0.04943110704237101 }, "harness|hendrycksTest-conceptual_physics|5": { "acc": 0.3404255319148936, "acc_stderr": 0.03097669299853443, "acc_norm": 0.3404255319148936, "acc_norm_stderr": 0.03097669299853443 }, "harness|hendrycksTest-econometrics|5": { "acc": 0.2807017543859649, "acc_stderr": 0.042270544512322, "acc_norm": 0.2807017543859649, "acc_norm_stderr": 0.042270544512322 }, "harness|hendrycksTest-electrical_engineering|5": { "acc": 0.2896551724137931, "acc_stderr": 0.037800192304380135, "acc_norm": 0.2896551724137931, "acc_norm_stderr": 0.037800192304380135 }, "harness|hendrycksTest-elementary_mathematics|5": { "acc": 0.23015873015873015, "acc_stderr": 0.021679219663693145, "acc_norm": 0.23015873015873015, "acc_norm_stderr": 0.021679219663693145 }, "harness|hendrycksTest-formal_logic|5": { "acc": 0.18253968253968253, "acc_stderr": 0.03455071019102149, "acc_norm": 0.18253968253968253, "acc_norm_stderr": 0.03455071019102149 }, "harness|hendrycksTest-global_facts|5": { "acc": 0.21, "acc_stderr": 0.040936018074033256, "acc_norm": 0.21, "acc_norm_stderr": 0.040936018074033256 }, "harness|hendrycksTest-high_school_biology|5": { "acc": 0.2032258064516129, "acc_stderr": 0.022891687984554966, "acc_norm": 0.2032258064516129, "acc_norm_stderr": 0.022891687984554966 }, "harness|hendrycksTest-high_school_chemistry|5": { "acc": 0.24630541871921183, "acc_stderr": 0.030315099285617732, "acc_norm": 0.24630541871921183, "acc_norm_stderr": 0.030315099285617732 }, "harness|hendrycksTest-high_school_computer_science|5": { "acc": 0.15, "acc_stderr": 0.03588702812826369, "acc_norm": 0.15, "acc_norm_stderr": 0.03588702812826369 }, "harness|hendrycksTest-high_school_european_history|5": { "acc": 0.28484848484848485, "acc_stderr": 0.035243908445117836, "acc_norm": 0.28484848484848485, "acc_norm_stderr": 0.035243908445117836 }, "harness|hendrycksTest-high_school_geography|5": { "acc": 0.23232323232323232, "acc_stderr": 0.030088629490217483, "acc_norm": 0.23232323232323232, "acc_norm_stderr": 0.030088629490217483 }, "harness|hendrycksTest-high_school_government_and_politics|5": { "acc": 0.22279792746113988, "acc_stderr": 0.03003114797764154, "acc_norm": 0.22279792746113988, "acc_norm_stderr": 0.03003114797764154 }, "harness|hendrycksTest-high_school_macroeconomics|5": { "acc": 0.2230769230769231, "acc_stderr": 0.021107730127243984, "acc_norm": 0.2230769230769231, "acc_norm_stderr": 0.021107730127243984 }, "harness|hendrycksTest-high_school_mathematics|5": { "acc": 0.2740740740740741, "acc_stderr": 0.027195934804085622, "acc_norm": 0.2740740740740741, "acc_norm_stderr": 0.027195934804085622 }, "harness|hendrycksTest-high_school_microeconomics|5": { "acc": 0.25630252100840334, "acc_stderr": 0.02835962087053395, "acc_norm": 0.25630252100840334, "acc_norm_stderr": 0.02835962087053395 }, "harness|hendrycksTest-high_school_physics|5": { "acc": 0.25165562913907286, "acc_stderr": 0.035433042343899844, "acc_norm": 0.25165562913907286, "acc_norm_stderr": 0.035433042343899844 }, "harness|hendrycksTest-high_school_psychology|5": { "acc": 0.22568807339449543, "acc_stderr": 0.017923087667803057, "acc_norm": 0.22568807339449543, "acc_norm_stderr": 0.017923087667803057 }, "harness|hendrycksTest-high_school_statistics|5": { "acc": 0.16203703703703703, "acc_stderr": 0.025130453652268455, "acc_norm": 0.16203703703703703, "acc_norm_stderr": 0.025130453652268455 }, "harness|hendrycksTest-high_school_us_history|5": { "acc": 0.28921568627450983, "acc_stderr": 0.03182231867647555, "acc_norm": 0.28921568627450983, "acc_norm_stderr": 0.03182231867647555 }, "harness|hendrycksTest-high_school_world_history|5": { "acc": 0.2869198312236287, "acc_stderr": 0.02944377302259469, "acc_norm": 0.2869198312236287, "acc_norm_stderr": 0.02944377302259469 }, "harness|hendrycksTest-human_aging|5": { "acc": 0.336322869955157, "acc_stderr": 0.031708824268455005, "acc_norm": 0.336322869955157, "acc_norm_stderr": 0.031708824268455005 }, "harness|hendrycksTest-human_sexuality|5": { "acc": 0.21374045801526717, "acc_stderr": 0.0359546161177469, "acc_norm": 0.21374045801526717, "acc_norm_stderr": 0.0359546161177469 }, "harness|hendrycksTest-international_law|5": { "acc": 0.24793388429752067, "acc_stderr": 0.03941897526516302, "acc_norm": 0.24793388429752067, "acc_norm_stderr": 0.03941897526516302 }, "harness|hendrycksTest-jurisprudence|5": { "acc": 0.28703703703703703, "acc_stderr": 0.043733130409147614, "acc_norm": 0.28703703703703703, "acc_norm_stderr": 0.043733130409147614 }, "harness|hendrycksTest-logical_fallacies|5": { "acc": 0.25153374233128833, "acc_stderr": 0.03408997886857529, "acc_norm": 0.25153374233128833, "acc_norm_stderr": 0.03408997886857529 }, "harness|hendrycksTest-machine_learning|5": { "acc": 0.38392857142857145, "acc_stderr": 0.04616143075028547, "acc_norm": 0.38392857142857145, "acc_norm_stderr": 0.04616143075028547 }, "harness|hendrycksTest-management|5": { "acc": 0.21359223300970873, "acc_stderr": 0.040580420156460344, "acc_norm": 0.21359223300970873, "acc_norm_stderr": 0.040580420156460344 }, "harness|hendrycksTest-marketing|5": { "acc": 0.26495726495726496, "acc_stderr": 0.028911208802749482, "acc_norm": 0.26495726495726496, "acc_norm_stderr": 0.028911208802749482 }, "harness|hendrycksTest-medical_genetics|5": { "acc": 0.29, "acc_stderr": 0.045604802157206845, "acc_norm": 0.29, "acc_norm_stderr": 0.045604802157206845 }, "harness|hendrycksTest-miscellaneous|5": { "acc": 0.31417624521072796, "acc_stderr": 0.016599291735884904, "acc_norm": 0.31417624521072796, "acc_norm_stderr": 0.016599291735884904 }, "harness|hendrycksTest-moral_disputes|5": { "acc": 0.27167630057803466, "acc_stderr": 0.023948512905468358, "acc_norm": 0.27167630057803466, "acc_norm_stderr": 0.023948512905468358 }, "harness|hendrycksTest-moral_scenarios|5": { "acc": 0.2435754189944134, "acc_stderr": 0.014355911964767864, "acc_norm": 0.2435754189944134, "acc_norm_stderr": 0.014355911964767864 }, "harness|hendrycksTest-nutrition|5": { "acc": 0.2647058823529412, "acc_stderr": 0.025261691219729494, "acc_norm": 0.2647058823529412, "acc_norm_stderr": 0.025261691219729494 }, "harness|hendrycksTest-philosophy|5": { "acc": 0.2604501607717042, "acc_stderr": 0.024926723224845543, "acc_norm": 0.2604501607717042, "acc_norm_stderr": 0.024926723224845543 }, "harness|hendrycksTest-prehistory|5": { "acc": 0.3117283950617284, "acc_stderr": 0.02577311116963045, "acc_norm": 0.3117283950617284, "acc_norm_stderr": 0.02577311116963045 }, "harness|hendrycksTest-professional_accounting|5": { "acc": 0.28368794326241137, "acc_stderr": 0.02689170942834396, "acc_norm": 0.28368794326241137, "acc_norm_stderr": 0.02689170942834396 }, "harness|hendrycksTest-professional_law|5": { "acc": 0.2894393741851369, "acc_stderr": 0.011582659702210252, "acc_norm": 0.2894393741851369, "acc_norm_stderr": 0.011582659702210252 }, "harness|hendrycksTest-professional_medicine|5": { "acc": 0.2426470588235294, "acc_stderr": 0.02604066247420127, "acc_norm": 0.2426470588235294, "acc_norm_stderr": 0.02604066247420127 }, "harness|hendrycksTest-professional_psychology|5": { "acc": 0.27941176470588236, "acc_stderr": 0.018152871051538816, "acc_norm": 0.27941176470588236, "acc_norm_stderr": 0.018152871051538816 }, "harness|hendrycksTest-public_relations|5": { "acc": 0.34545454545454546, "acc_stderr": 0.04554619617541054, "acc_norm": 0.34545454545454546, "acc_norm_stderr": 0.04554619617541054 }, "harness|hendrycksTest-security_studies|5": { "acc": 0.35918367346938773, "acc_stderr": 0.030713560455108493, "acc_norm": 0.35918367346938773, "acc_norm_stderr": 0.030713560455108493 }, "harness|hendrycksTest-sociology|5": { "acc": 0.27860696517412936, "acc_stderr": 0.031700561834973086, "acc_norm": 0.27860696517412936, "acc_norm_stderr": 0.031700561834973086 }, "harness|hendrycksTest-us_foreign_policy|5": { "acc": 0.29, "acc_stderr": 0.04560480215720684, "acc_norm": 0.29, "acc_norm_stderr": 0.04560480215720684 }, "harness|hendrycksTest-virology|5": { "acc": 0.3373493975903614, "acc_stderr": 0.03680783690727581, "acc_norm": 0.3373493975903614, "acc_norm_stderr": 0.03680783690727581 }, "harness|hendrycksTest-world_religions|5": { "acc": 0.34502923976608185, "acc_stderr": 0.03645981377388807, "acc_norm": 0.34502923976608185, "acc_norm_stderr": 0.03645981377388807 }, "harness|truthfulqa:mc|0": { "mc1": 0.20195838433292534, "mc1_stderr": 0.014053957441512348, "mc2": 0.35962472949507807, "mc2_stderr": 0.013462019520008167 } } ``` ### Supported Tasks and Leaderboards [More Information Needed] ### Languages [More Information Needed] ## Dataset Structure ### Data Instances [More Information Needed] ### Data Fields [More Information Needed] ### Data Splits [More Information Needed] ## Dataset Creation ### Curation Rationale [More Information Needed] ### Source Data #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? [More Information Needed] ### Annotations #### Annotation process [More Information Needed] #### Who are the annotators? [More Information Needed] ### Personal and Sensitive Information [More Information Needed] ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators [More Information Needed] ### Licensing Information [More Information Needed] ### Citation Information [More Information Needed] ### Contributions [More Information Needed]
136,828
[ [ -0.051300048828125, -0.061065673828125, 0.0200958251953125, 0.01233673095703125, -0.01047515869140625, -0.005680084228515625, 0.001575469970703125, -0.0165863037109375, 0.041534423828125, -0.006961822509765625, -0.031158447265625, -0.04638671875, -0.031494140625...
Nicolas-BZRD/DOLE_opendata
2023-09-29T14:52:42.000Z
[ "size_categories:1K<n<10K", "language:fr", "license:odc-by", "legal", "region:us" ]
Nicolas-BZRD
null
null
0
80
2023-09-29T13:28:20
--- configs: - config_name: default data_files: - split: train path: data/train-* dataset_info: features: - name: id dtype: string - name: text dtype: string splits: - name: train num_bytes: 86993000 num_examples: 4120 download_size: 36263044 dataset_size: 86993000 license: odc-by language: - fr tags: - legal size_categories: - 1K<n<10K --- # DOLE This [section](https://echanges.dila.gouv.fr/OPENDATA/DOLE/) covers laws published since the start of the twelfth parliamentary term (June 2002), ordinances published since 2002, and laws in preparation (drafts and proposals). The legislative files provide information before and after the enactment of legislation. Legislative files concern laws covered by article 39 of the Constitution. A legislative file is also opened when a parliamentary assembly decides not to examine texts covered by Article 53 of the Constitution in simplified form. Since the entry into force of the 2008 constitutional reform, legislative files on bills are only opened after the text has been adopted by the first assembly to which it is referred.
1,117
[ [ -0.0147247314453125, -0.0294189453125, 0.051116943359375, 0.02410888671875, -0.040313720703125, -0.0343017578125, -0.000028908252716064453, -0.0143890380859375, 0.0196990966796875, 0.07403564453125, -0.046630859375, -0.002017974853515625, -0.01215362548828125, ...
Raspberry-ai/kaggle-h-and-m-v1
2023-10-13T18:20:49.000Z
[ "region:us" ]
Raspberry-ai
null
null
0
80
2023-10-13T17:50:12
--- configs: - config_name: default data_files: - split: train path: data/train-* dataset_info: features: - name: image dtype: image - name: text dtype: string splits: - name: train num_bytes: 26561726483.544 num_examples: 89866 download_size: 25669154756 dataset_size: 26561726483.544 --- # Dataset Card for "kaggle-h-and-m-v1" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
499
[ [ -0.044342041015625, -0.0352783203125, 0.02001953125, 0.00919342041015625, -0.004711151123046875, 0.00826263427734375, 0.0242919921875, -0.0082855224609375, 0.07293701171875, 0.03057861328125, -0.085205078125, -0.0458984375, -0.0556640625, -0.027099609375, ...
Dahoas/prompted_svamp
2023-10-16T11:30:15.000Z
[ "region:us" ]
Dahoas
null
null
0
80
2023-10-16T11:30:13
--- dataset_info: features: - name: question dtype: string - name: answer dtype: string - name: prompt dtype: string - name: response dtype: string splits: - name: train num_bytes: 1179345 num_examples: 700 - name: test num_bytes: 499449 num_examples: 300 download_size: 702499 dataset_size: 1678794 --- # Dataset Card for "prompted_svamp" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
524
[ [ -0.04638671875, -0.00630950927734375, 0.01296234130859375, 0.0361328125, -0.03033447265625, -0.0159759521484375, 0.0115509033203125, 0.002285003662109375, 0.053466796875, 0.034759521484375, -0.07684326171875, -0.04498291015625, -0.04046630859375, -0.01122283...
dk-crazydiv/huggingface-modelhub
2021-06-20T14:09:58.000Z
[ "region:us" ]
dk-crazydiv
Metadata information of all the models available on HuggingFace's modelhub
\
3
79
2022-03-02T23:29:22
## Summary Metadata information of all the models uploaded on [HuggingFace modelhub](https://huggingface.co/models) Dataset was last updated on 15th June 2021. Contains information on 10,354 models (v1). Only `train` dataset is provided #### Update: v1.0.2: Added downloads_last_month and library data Same dataset is available in [kaggle](https://www.kaggle.com/crazydiv/huggingface-modelhub) ## Loading data ```python from datasets import load_dataset modelhub_dataset = load_dataset("dk-crazydiv/huggingface-modelhub") ``` ### Useful commands: ```python modelhub_dataset["train"] # Access train subset (the only subset available) modelhub_dataset["train"][0] # Access the dataset elements by index modelhub_dataset["train"].features # Get the columns present in the dataset. ``` ### Sample dataset: ```json { "downloads_last_month": 7474, "files": [ ".gitattributes", "README.md", "config.json", "pytorch_model.bin", "spiece.model", "tf_model.h5", "tokenizer.json", "with-prefix-tf_model.h5" ], "lastModified": "2021-01-13T15:08:24.000Z", "library": "transformers", "modelId": "albert-base-v1", "pipeline_tag": "fill-mask", "publishedBy": "huggingface", "tags": [ "pytorch", "tf", "albert", "masked-lm", "en", "dataset:bookcorpus", "dataset:wikipedia", "arxiv:1909.11942", "transformers", "exbert", "license:apache-2.0", "fill-mask" ], "modelCard": "Readme sample data..." } ``` ## Bugs: Please report any bugs/improvements to me on [twitter](https://twitter.com/kartik_godawat)
1,587
[ [ -0.033477783203125, -0.0438232421875, 0.0152587890625, 0.025146484375, -0.004093170166015625, -0.006565093994140625, 0.0002944469451904297, -0.0300140380859375, 0.037841796875, 0.0401611328125, -0.061614990234375, -0.053131103515625, -0.052398681640625, 0.00...
frtna/ted_mt
2021-12-07T03:28:28.000Z
[ "region:us" ]
frtna
This new dataset is designed to be used in the scope of multilingual model project.
@InProceedings{phd, title = {Machine Translation Dataset}, author={hmtkvs, Inc. }, year={2021} }
0
79
2022-03-02T23:29:22
Entry not found
15
[ [ -0.0213775634765625, -0.01497650146484375, 0.05718994140625, 0.02880859375, -0.0350341796875, 0.046478271484375, 0.052490234375, 0.00507354736328125, 0.051361083984375, 0.0170135498046875, -0.052093505859375, -0.01497650146484375, -0.0604248046875, 0.0379028...
gagan3012/grover-data
2021-11-25T00:32:50.000Z
[ "region:us" ]
gagan3012
null
null
0
79
2022-03-02T23:29:22
Entry not found
15
[ [ -0.0213775634765625, -0.01497650146484375, 0.05718994140625, 0.02880859375, -0.0350341796875, 0.046478271484375, 0.052490234375, 0.00507354736328125, 0.051361083984375, 0.0170135498046875, -0.052093505859375, -0.01497650146484375, -0.0604248046875, 0.0379028...
gcaillaut/citeseer
2021-10-21T15:39:06.000Z
[ "region:us" ]
gcaillaut
The CiteSeer dataset consists of 3312 scientific publications classified into one of six classes. The citation network consists of 4732 links. Each publication in the dataset is described by a 0/1-valued word vector indicating the absence/presence of the corresponding word from the dictionary. The dictionary consists of 3703 unique words. The README file in the dataset provides more details.
null
0
79
2022-03-02T23:29:22
Entry not found
15
[ [ -0.0213775634765625, -0.01497650146484375, 0.05718994140625, 0.02880859375, -0.0350341796875, 0.046478271484375, 0.052490234375, 0.00507354736328125, 0.051361083984375, 0.0170135498046875, -0.052093505859375, -0.01497650146484375, -0.0604248046875, 0.0379028...
hf-internal-testing/transformers-metadata
2021-11-19T14:02:40.000Z
[ "region:us" ]
hf-internal-testing
null
null
0
79
2022-03-02T23:29:22
Entry not found
15
[ [ -0.0213775634765625, -0.01497650146484375, 0.05718994140625, 0.02880859375, -0.0350341796875, 0.046478271484375, 0.052490234375, 0.00507354736328125, 0.051361083984375, 0.0170135498046875, -0.052093505859375, -0.01497650146484375, -0.0604248046875, 0.0379028...
hf-test/sv_corpora_parliament_processed
2022-01-10T10:17:51.000Z
[ "region:us" ]
hf-test
null
null
1
79
2022-03-02T23:29:22
Swedish text corpus created by extracting the `"text"` from `dataset = load_dataset("europarl_bilingual", lang1="en", lang2="sv", split="train")` and processing it with: ```python import re def extract_text(batch): text = batch["translation"]["sv"] batch["text"] = re.sub(chars_to_ignore_regex, "", text.lower()) return batch ```
337
[ [ -0.01380157470703125, -0.043792724609375, 0.016693115234375, 0.019256591796875, -0.0298614501953125, 0.0107421875, -0.01800537109375, -0.00814056396484375, 0.0284881591796875, 0.03802490234375, -0.040130615234375, -0.050811767578125, -0.032196044921875, 0.05...
huggingartists/25-17
2022-10-25T09:20:55.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
79
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/25-17" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.678946 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/4fedc5dd2830a874a5274bf1cac62002.1000x1000x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/25-17"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">25/17</div> <a href="https://genius.com/artists/25-17"> <div style="text-align: center; font-size: 14px;">@25-17</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/25-17). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/25-17") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |195| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/25-17") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,140
[ [ -0.048004150390625, -0.039031982421875, 0.00638580322265625, 0.02093505859375, -0.017425537109375, 0.0004570484161376953, -0.022552490234375, -0.034332275390625, 0.06280517578125, 0.0243377685546875, -0.069091796875, -0.06219482421875, -0.041351318359375, 0....
huggingartists/5nizza
2022-10-25T09:22:00.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
79
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/5nizza" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 0.13617 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/289ded19d51d41798be99217d6059eb3.458x458x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/5nizza"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">5’Nizza</div> <a href="https://genius.com/artists/5nizza"> <div style="text-align: center; font-size: 14px;">@5nizza</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/5nizza). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/5nizza") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |51| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/5nizza") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,145
[ [ -0.04766845703125, -0.03753662109375, 0.00537109375, 0.0216522216796875, -0.01715087890625, -0.00032830238342285156, -0.0220794677734375, -0.0352783203125, 0.0643310546875, 0.0233154296875, -0.06878662109375, -0.0626220703125, -0.041046142578125, 0.012870788...
huggingartists/michael-jackson
2022-10-25T09:38:33.000Z
[ "language:en", "huggingartists", "lyrics", "region:us" ]
huggingartists
This dataset is designed to generate lyrics with HuggingArtists.
@InProceedings{huggingartists:dataset, title = {Lyrics dataset}, author={Aleksey Korshuk }, year={2021} }
0
79
2022-03-02T23:29:22
--- language: - en tags: - huggingartists - lyrics --- # Dataset Card for "huggingartists/michael-jackson" ## Table of Contents - [Dataset Description](#dataset-description) - [Dataset Summary](#dataset-summary) - [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards) - [Languages](#languages) - [How to use](#how-to-use) - [Dataset Structure](#dataset-structure) - [Data Fields](#data-fields) - [Data Splits](#data-splits) - [Dataset Creation](#dataset-creation) - [Curation Rationale](#curation-rationale) - [Source Data](#source-data) - [Annotations](#annotations) - [Personal and Sensitive Information](#personal-and-sensitive-information) - [Considerations for Using the Data](#considerations-for-using-the-data) - [Social Impact of Dataset](#social-impact-of-dataset) - [Discussion of Biases](#discussion-of-biases) - [Other Known Limitations](#other-known-limitations) - [Additional Information](#additional-information) - [Dataset Curators](#dataset-curators) - [Licensing Information](#licensing-information) - [Citation Information](#citation-information) - [About](#about) ## Dataset Description - **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists) - **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) - **Size of the generated dataset:** 2.372605 MB <div class="inline-flex flex-col" style="line-height: 1.5;"> <div class="flex"> <div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url(&#39;https://images.genius.com/f3b36efb63495f1fefe130d8c68cf0d8.800x800x1.jpg&#39;)"> </div> </div> <a href="https://huggingface.co/huggingartists/michael-jackson"> <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div> </a> <div style="text-align: center; font-size: 16px; font-weight: 800">Michael Jackson</div> <a href="https://genius.com/artists/michael-jackson"> <div style="text-align: center; font-size: 14px;">@michael-jackson</div> </a> </div> ### Dataset Summary The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists. Model is available [here](https://huggingface.co/huggingartists/michael-jackson). ### Supported Tasks and Leaderboards [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Languages en ## How to use How to load this dataset directly with the datasets library: ```python from datasets import load_dataset dataset = load_dataset("huggingartists/michael-jackson") ``` ## Dataset Structure An example of 'train' looks as follows. ``` This example was too long and was cropped: { "text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..." } ``` ### Data Fields The data fields are the same among all splits. - `text`: a `string` feature. ### Data Splits | train |validation|test| |------:|---------:|---:| |1414| -| -| 'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code: ```python from datasets import load_dataset, Dataset, DatasetDict import numpy as np datasets = load_dataset("huggingartists/michael-jackson") train_percentage = 0.9 validation_percentage = 0.07 test_percentage = 0.03 train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))]) datasets = DatasetDict( { 'train': Dataset.from_dict({'text': list(train)}), 'validation': Dataset.from_dict({'text': list(validation)}), 'test': Dataset.from_dict({'text': list(test)}) } ) ``` ## Dataset Creation ### Curation Rationale [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Source Data #### Initial Data Collection and Normalization [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the source language producers? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Annotations #### Annotation process [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) #### Who are the annotators? [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Personal and Sensitive Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Discussion of Biases [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Other Known Limitations [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ## Additional Information ### Dataset Curators [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Licensing Information [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) ### Citation Information ``` @InProceedings{huggingartists, author={Aleksey Korshuk} year=2021 } ``` ## About *Built by Aleksey Korshuk* [![Follow](https://img.shields.io/github/followers/AlekseyKorshuk?style=social)](https://github.com/AlekseyKorshuk) [![Follow](https://img.shields.io/twitter/follow/alekseykorshuk?style=social)](https://twitter.com/intent/follow?screen_name=alekseykorshuk) [![Follow](https://img.shields.io/badge/dynamic/json?color=blue&label=Telegram%20Channel&query=%24.result&url=https%3A%2F%2Fapi.telegram.org%2Fbot1929545866%3AAAFGhV-KKnegEcLiyYJxsc4zV6C-bdPEBtQ%2FgetChatMemberCount%3Fchat_id%3D-1001253621662&style=social&logo=telegram)](https://t.me/joinchat/_CQ04KjcJ-4yZTky) For more details, visit the project repository. [![GitHub stars](https://img.shields.io/github/stars/AlekseyKorshuk/huggingartists?style=social)](https://github.com/AlekseyKorshuk/huggingartists)
7,219
[ [ -0.052032470703125, -0.040374755859375, 0.004871368408203125, 0.019622802734375, -0.0185699462890625, 0.003353118896484375, -0.024139404296875, -0.0310516357421875, 0.06292724609375, 0.0249176025390625, -0.06573486328125, -0.06072998046875, -0.04620361328125, ...
huggingface/label-files
2023-03-15T06:51:19.000Z
[ "region:us" ]
huggingface
null
null
12
79
2022-03-02T23:29:22
This repository contains the mapping from integer id's to actual label names (in HuggingFace Transformers typically called `id2label`) for several datasets. Current datasets include: - ImageNet-1k - ImageNet-22k (also called ImageNet-21k as there are 21,843 classes) - COCO detection 2017 - COCO panoptic 2017 - ADE20k (actually, the [MIT Scene Parsing benchmark](http://sceneparsing.csail.mit.edu/), which is a subset of ADE20k) - Cityscapes - VQAv2 - Kinetics-700 - RVL-CDIP - PASCAL VOC - Kinetics-400 - ... You can read in a label file as follows (using the `huggingface_hub` library): ``` from huggingface_hub import hf_hub_download import json repo_id = "huggingface/label-files" filename = "imagenet-22k-id2label.json" id2label = json.load(open(hf_hub_download(repo_id, filename, repo_type="dataset"), "r")) id2label = {int(k):v for k,v in id2label.items()} ``` To add an `id2label` mapping for a new dataset, simply define a Python dictionary, and then save that dictionary as a JSON file, like so: ``` import json # simple example id2label = {0: 'cat', 1: 'dog'} with open('cats-and-dogs-id2label.json', 'w') as fp: json.dump(id2label, fp) ``` You can then upload it to this repository (assuming you have write access).
1,240
[ [ -0.06365966796875, -0.01169586181640625, 0.000052928924560546875, 0.024688720703125, 0.0122222900390625, -0.006992340087890625, -0.004520416259765625, -0.0291290283203125, 0.0156402587890625, 0.043121337890625, -0.029510498046875, -0.039337158203125, -0.04302978...
jegormeister/dutch-snli
2023-10-02T19:06:35.000Z
[ "language:nl", "region:us" ]
jegormeister
This is the Dutch version of the original SNLI dataset. The translation was performed using Google Translate. Original SNLI available at https://nlp.stanford.edu/projects/snli/
null
0
79
2022-03-02T23:29:22
--- language: - nl --- This is a translated version of SNLI in Dutch. The translation was performed using Google Translate.
123
[ [ 0.01495361328125, -0.03717041015625, 0.0158538818359375, 0.034698486328125, -0.039093017578125, -0.003070831298828125, -0.015655517578125, -0.052642822265625, 0.09124755859375, 0.047607421875, -0.06744384765625, 0.00008988380432128906, -0.047332763671875, 0....
katanaml/cord
2022-03-06T15:02:45.000Z
[ "region:us" ]
katanaml
https://huggingface.co/datasets/katanaml/cord
@article{park2019cord, title={CORD: A Consolidated Receipt Dataset for Post-OCR Parsing}, author={Park, Seunghyun and Shin, Seung and Lee, Bado and Lee, Junyeop and Surh, Jaeheung and Seo, Minjoon and Lee, Hwalsuk} booktitle={Document Intelligence Workshop at Neural Information Processing Systems} year={2019} }
1
79
2022-03-02T23:29:22
# CORD: A Consolidated Receipt Dataset for Post-OCR Parsing CORD dataset is cloned from [clovaai](https://github.com/clovaai/cord) GitHub repo - Box coordinates are normalized against image width/height - Labels with very few occurrences are replaced with O: ``` replacing_labels = ['menu.etc', 'menu.itemsubtotal', 'menu.sub_etc', 'menu.sub_unitprice', 'menu.vatyn', 'void_menu.nm', 'void_menu.price', 'sub_total.othersvc_price'] ``` Check for more info [Sparrow](https://github.com/katanaml/sparrow) ## Citation ### CORD: A Consolidated Receipt Dataset for Post-OCR Parsing ``` @article{park2019cord, title={CORD: A Consolidated Receipt Dataset for Post-OCR Parsing}, author={Park, Seunghyun and Shin, Seung and Lee, Bado and Lee, Junyeop and Surh, Jaeheung and Seo, Minjoon and Lee, Hwalsuk} booktitle={Document Intelligence Workshop at Neural Information Processing Systems} year={2019} } ``` ### Post-OCR parsing: building simple and robust parser via BIO tagging ``` @article{hwang2019post, title={Post-OCR parsing: building simple and robust parser via BIO tagging}, author={Hwang, Wonseok and Kim, Seonghyeon and Yim, Jinyeong and Seo, Minjoon and Park, Seunghyun and Park, Sungrae and Lee, Junyeop and Lee, Bado and Lee, Hwalsuk} booktitle={Document Intelligence Workshop at Neural Information Processing Systems} year={2019} } ```
1,426
[ [ -0.0237884521484375, -0.0235443115234375, 0.02130126953125, -0.0267181396484375, -0.036224365234375, -0.00028061866760253906, -0.003520965576171875, -0.0355224609375, 0.0236968994140625, 0.0245819091796875, -0.0146484375, -0.0552978515625, -0.020782470703125, ...
DFKI-SLT/multitacred
2023-06-14T07:20:23.000Z
[ "task_categories:text-classification", "task_ids:multi-class-classification", "annotations_creators:crowdsourced", "annotations_creators:expert-generated", "language_creators:found", "size_categories:100K<n<1M", "source_datasets:DFKI-NLP/tacred", "language:ar", "language:de", "language:es", "lan...
DFKI-SLT
MultiTACRED is a multilingual version of the large-scale TAC Relation Extraction Dataset (https://nlp.stanford.edu/projects/tacred). It covers 12 typologically diverse languages from 9 language families, and was created by the Speech & Language Technology group of DFKI (https://www.dfki.de/slt) by machine-translating the instances of the original TACRED dataset and automatically projecting their entity annotations. For details of the original TACRED's data collection and annotation process, see the Stanford paper (https://aclanthology.org/D17-1004/). Translations are syntactically validated by checking the correctness of the XML tag markup. Any translations with an invalid tag structure, e.g. missing or invalid head or tail tag pairs, are discarded (on average, 2.3% of the instances). Languages covered are: Arabic, Chinese, Finnish, French, German, Hindi, Hungarian, Japanese, Polish, Russian, Spanish, Turkish. Intended use is supervised relation classification. Audience - researchers. Please see our ACL paper (https://arxiv.org/abs/2305.04582) for full details. NOTE: This Datasetreader supports a reduced version of the original TACRED JSON format with the following changes: - Removed fields: stanford_pos, stanford_ner, stanford_head, stanford_deprel, docid The motivation for this is that we want to support additional languages, for which these fields were not required or available. The reader expects the specification of a language-specific configuration specifying the variant (original, revisited or retacred) and the language (as a two-letter iso code). The DatasetReader changes the offsets of the following fields, to conform with standard Python usage (see _generate_examples()): - subj_end to subj_end + 1 (make end offset exclusive) - obj_end to obj_end + 1 (make end offset exclusive) NOTE 2: The MultiTACRED dataset offers an additional 'split', namely the backtranslated test data (translated to a target language and then back to English). To access this split, use dataset['backtranslated_test']. You can find the TACRED dataset reader for the English version of the dataset at https://huggingface.co/datasets/DFKI-SLT/tacred.
@inproceedings{hennig-etal-2023-multitacred, title = "MultiTACRED: A Multilingual Version of the TAC Relation Extraction Dataset", author = "Hennig, Leonhard and Thomas, Philippe and Möller, Sebastian", booktitle = "Proceedings of the 61st Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers)", month = jul, year = "2023", address = "Online and Toronto, Canada", publisher = "Association for Computational Linguistics", } @inproceedings{zhang-etal-2017-position, title = "Position-aware Attention and Supervised Data Improve Slot Filling", author = "Zhang, Yuhao and Zhong, Victor and Chen, Danqi and Angeli, Gabor and Manning, Christopher D.", booktitle = "Proceedings of the 2017 Conference on Empirical Methods in Natural Language Processing", month = sep, year = "2017", address = "Copenhagen, Denmark", publisher = "Association for Computational Linguistics", url = "https://www.aclweb.org/anthology/D17-1004", doi = "10.18653/v1/D17-1004", pages = "35--45", } @inproceedings{alt-etal-2020-tacred, title = "{TACRED} Revisited: A Thorough Evaluation of the {TACRED} Relation Extraction Task", author = "Alt, Christoph and Gabryszak, Aleksandra and Hennig, Leonhard", booktitle = "Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics", month = jul, year = "2020", address = "Online", publisher = "Association for Computational Linguistics", url = "https://www.aclweb.org/anthology/2020.acl-main.142", doi = "10.18653/v1/2020.acl-main.142", pages = "1558--1569", } @inproceedings{DBLP:conf/aaai/StoicaPP21, author = {George Stoica and Emmanouil Antonios Platanios and Barnab{\'{a}}s P{\'{o}}czos}, title = {Re-TACRED: Addressing Shortcomings of the {TACRED} Dataset}, booktitle = {Thirty-Fifth {AAAI} Conference on Artificial Intelligence, {AAAI} 2021, Thirty-Third Conference on Innovative Applications of Artificial Intelligence, {IAAI} 2021, The Eleventh Symposium on Educational Advances in Artificial Intelligence, {EAAI} 2021, Virtual Event, February 2-9, 2021}, pages = {13843--13850}, publisher = {{AAAI} Press}, year = {2021}, url = {https://ojs.aaai.org/index.php/AAAI/article/view/17631}, }
1
79
2022-09-30T11:31:31
--- language: - ar - de - es - fi - fr - hi - hu - ja - pl - ru - tr - zh license: other license_details: https://catalog.ldc.upenn.edu/license/ldc-non-members-agreement.pdf tags: - relation extraction annotations_creators: - crowdsourced - expert-generated language_creators: - found pretty_name: MultiTACRED - Multilingual TAC Relation Extraction Dataset size_categories: - 100K<n<1M source_datasets: - DFKI-NLP/tacred task_categories: # Full list at https://github.com/huggingface/hub-docs/blob/main/js/src/lib/interfaces/Types.ts - text-classification task_ids: - multi-class-classification paperswithcode_id: multitacred dataset_info: - config_name: original-ar features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 32371641 num_examples: 67736 - name: test num_bytes: 6895001 num_examples: 15425 - name: validation num_bytes: 10353930 num_examples: 22502 - name: backtranslated_test num_bytes: 5687302 num_examples: 15425 download_size: 0 dataset_size: 55307874 - config_name: revisited-ar features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 32371641 num_examples: 67736 - name: test num_bytes: 6895001 num_examples: 15425 - name: validation num_bytes: 10353930 num_examples: 22502 - name: backtranslated_test num_bytes: 5687302 num_examples: 15425 download_size: 157165 dataset_size: 55307874 - config_name: retacred-ar features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_branch '3': org:country_of_branch '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:political/religious_affiliation '11': org:shareholders '12': org:stateorprovince_of_branch '13': org:top_members/employees '14': org:website '15': per:age '16': per:cause_of_death '17': per:charges '18': per:children '19': per:cities_of_residence '20': per:city_of_birth '21': per:city_of_death '22': per:countries_of_residence '23': per:country_of_birth '24': per:country_of_death '25': per:date_of_birth '26': per:date_of_death '27': per:employee_of '28': per:identity '29': per:origin '30': per:other_family '31': per:parents '32': per:religion '33': per:schools_attended '34': per:siblings '35': per:spouse '36': per:stateorprovince_of_birth '37': per:stateorprovince_of_death '38': per:stateorprovinces_of_residence '39': per:title splits: - name: train num_bytes: 27777106 num_examples: 58171 - name: test num_bytes: 5950395 num_examples: 13348 - name: validation num_bytes: 8941018 num_examples: 19480 - name: backtranslated_test num_bytes: 4906896 num_examples: 13348 download_size: 3702157 dataset_size: 47575415 - config_name: original-de features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 27810245 num_examples: 67253 - name: test num_bytes: 6043815 num_examples: 15282 - name: validation num_bytes: 9007367 num_examples: 22343 - name: backtranslated_test num_bytes: 5467635 num_examples: 15079 download_size: 0 dataset_size: 48329062 - config_name: revisited-de features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 27810245 num_examples: 67253 - name: test num_bytes: 6043815 num_examples: 15282 - name: validation num_bytes: 9007367 num_examples: 22343 - name: backtranslated_test num_bytes: 5467635 num_examples: 15079 download_size: 157165 dataset_size: 48329062 - config_name: retacred-de features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_branch '3': org:country_of_branch '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:political/religious_affiliation '11': org:shareholders '12': org:stateorprovince_of_branch '13': org:top_members/employees '14': org:website '15': per:age '16': per:cause_of_death '17': per:charges '18': per:children '19': per:cities_of_residence '20': per:city_of_birth '21': per:city_of_death '22': per:countries_of_residence '23': per:country_of_birth '24': per:country_of_death '25': per:date_of_birth '26': per:date_of_death '27': per:employee_of '28': per:identity '29': per:origin '30': per:other_family '31': per:parents '32': per:religion '33': per:schools_attended '34': per:siblings '35': per:spouse '36': per:stateorprovince_of_birth '37': per:stateorprovince_of_death '38': per:stateorprovinces_of_residence '39': per:title splits: - name: train num_bytes: 23935820 num_examples: 57792 - name: test num_bytes: 5219772 num_examples: 13227 - name: validation num_bytes: 7794542 num_examples: 19365 - name: backtranslated_test num_bytes: 4715329 num_examples: 13046 download_size: 3702157 dataset_size: 41665463 - config_name: original-es features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 27586822 num_examples: 65247 - name: test num_bytes: 5941821 num_examples: 14908 - name: validation num_bytes: 8921047 num_examples: 21697 - name: backtranslated_test num_bytes: 5414680 num_examples: 14688 download_size: 0 dataset_size: 47864370 - config_name: revisited-es features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 27586822 num_examples: 65247 - name: test num_bytes: 5941821 num_examples: 14908 - name: validation num_bytes: 8921047 num_examples: 21697 - name: backtranslated_test num_bytes: 5414680 num_examples: 14688 download_size: 157165 dataset_size: 47864370 - config_name: retacred-es features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_branch '3': org:country_of_branch '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:political/religious_affiliation '11': org:shareholders '12': org:stateorprovince_of_branch '13': org:top_members/employees '14': org:website '15': per:age '16': per:cause_of_death '17': per:charges '18': per:children '19': per:cities_of_residence '20': per:city_of_birth '21': per:city_of_death '22': per:countries_of_residence '23': per:country_of_birth '24': per:country_of_death '25': per:date_of_birth '26': per:date_of_death '27': per:employee_of '28': per:identity '29': per:origin '30': per:other_family '31': per:parents '32': per:religion '33': per:schools_attended '34': per:siblings '35': per:spouse '36': per:stateorprovince_of_birth '37': per:stateorprovince_of_death '38': per:stateorprovinces_of_residence '39': per:title splits: - name: train num_bytes: 23707989 num_examples: 55998 - name: test num_bytes: 5139146 num_examples: 12907 - name: validation num_bytes: 7711621 num_examples: 18788 - name: backtranslated_test num_bytes: 4676107 num_examples: 12722 download_size: 3702157 dataset_size: 41234863 - config_name: original-fi features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 25394979 num_examples: 66751 - name: test num_bytes: 5478260 num_examples: 15083 - name: validation num_bytes: 8205629 num_examples: 22268 - name: backtranslated_test num_bytes: 5204235 num_examples: 14462 download_size: 0 dataset_size: 44283103 - config_name: revisited-fi features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 25394979 num_examples: 66751 - name: test num_bytes: 5478260 num_examples: 15083 - name: validation num_bytes: 8205629 num_examples: 22268 - name: backtranslated_test num_bytes: 5204235 num_examples: 14462 download_size: 157165 dataset_size: 44283103 - config_name: retacred-fi features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_branch '3': org:country_of_branch '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:political/religious_affiliation '11': org:shareholders '12': org:stateorprovince_of_branch '13': org:top_members/employees '14': org:website '15': per:age '16': per:cause_of_death '17': per:charges '18': per:children '19': per:cities_of_residence '20': per:city_of_birth '21': per:city_of_death '22': per:countries_of_residence '23': per:country_of_birth '24': per:country_of_death '25': per:date_of_birth '26': per:date_of_death '27': per:employee_of '28': per:identity '29': per:origin '30': per:other_family '31': per:parents '32': per:religion '33': per:schools_attended '34': per:siblings '35': per:spouse '36': per:stateorprovince_of_birth '37': per:stateorprovince_of_death '38': per:stateorprovinces_of_residence '39': per:title splits: - name: train num_bytes: 21807425 num_examples: 57332 - name: test num_bytes: 4724204 num_examples: 13046 - name: validation num_bytes: 7084020 num_examples: 19278 - name: backtranslated_test num_bytes: 4475178 num_examples: 12480 download_size: 3702157 dataset_size: 38090827 - config_name: original-fr features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 29580179 num_examples: 66856 - name: test num_bytes: 6409145 num_examples: 15237 - name: validation num_bytes: 9601199 num_examples: 22298 - name: backtranslated_test num_bytes: 5535658 num_examples: 15088 download_size: 0 dataset_size: 51126181 - config_name: revisited-fr features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 29580179 num_examples: 66856 - name: test num_bytes: 6409145 num_examples: 15237 - name: validation num_bytes: 9601199 num_examples: 22298 - name: backtranslated_test num_bytes: 5535658 num_examples: 15088 download_size: 157165 dataset_size: 51126181 - config_name: retacred-fr features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_branch '3': org:country_of_branch '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:political/religious_affiliation '11': org:shareholders '12': org:stateorprovince_of_branch '13': org:top_members/employees '14': org:website '15': per:age '16': per:cause_of_death '17': per:charges '18': per:children '19': per:cities_of_residence '20': per:city_of_birth '21': per:city_of_death '22': per:countries_of_residence '23': per:country_of_birth '24': per:country_of_death '25': per:date_of_birth '26': per:date_of_death '27': per:employee_of '28': per:identity '29': per:origin '30': per:other_family '31': per:parents '32': per:religion '33': per:schools_attended '34': per:siblings '35': per:spouse '36': per:stateorprovince_of_birth '37': per:stateorprovince_of_death '38': per:stateorprovinces_of_residence '39': per:title splits: - name: train num_bytes: 25484188 num_examples: 57466 - name: test num_bytes: 5553110 num_examples: 13209 - name: validation num_bytes: 8323210 num_examples: 19341 - name: backtranslated_test num_bytes: 4786142 num_examples: 13078 download_size: 3702157 dataset_size: 44146650 - config_name: original-hi features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 47358490 num_examples: 67751 - name: test num_bytes: 10235547 num_examples: 15440 - name: validation num_bytes: 15362616 num_examples: 22511 - name: backtranslated_test num_bytes: 5654198 num_examples: 15440 download_size: 0 dataset_size: 78610851 - config_name: revisited-hi features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 47358490 num_examples: 67751 - name: test num_bytes: 10235547 num_examples: 15440 - name: validation num_bytes: 15362616 num_examples: 22511 - name: backtranslated_test num_bytes: 5654198 num_examples: 15440 download_size: 157165 dataset_size: 78610851 - config_name: retacred-hi features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_branch '3': org:country_of_branch '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:political/religious_affiliation '11': org:shareholders '12': org:stateorprovince_of_branch '13': org:top_members/employees '14': org:website '15': per:age '16': per:cause_of_death '17': per:charges '18': per:children '19': per:cities_of_residence '20': per:city_of_birth '21': per:city_of_death '22': per:countries_of_residence '23': per:country_of_birth '24': per:country_of_death '25': per:date_of_birth '26': per:date_of_death '27': per:employee_of '28': per:identity '29': per:origin '30': per:other_family '31': per:parents '32': per:religion '33': per:schools_attended '34': per:siblings '35': per:spouse '36': per:stateorprovince_of_birth '37': per:stateorprovince_of_death '38': per:stateorprovinces_of_residence '39': per:title splits: - name: train num_bytes: 40764637 num_examples: 58186 - name: test num_bytes: 8839508 num_examples: 13363 - name: validation num_bytes: 13280435 num_examples: 19488 - name: backtranslated_test num_bytes: 4878649 num_examples: 13363 download_size: 3702157 dataset_size: 67763229 - config_name: original-hu features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 26869925 num_examples: 67766 - name: test num_bytes: 5810768 num_examples: 15436 - name: validation num_bytes: 8658082 num_examples: 22519 - name: backtranslated_test num_bytes: 5695172 num_examples: 15436 download_size: 0 dataset_size: 47033947 - config_name: revisited-hu features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 26869925 num_examples: 67766 - name: test num_bytes: 5810768 num_examples: 15436 - name: validation num_bytes: 8658082 num_examples: 22519 - name: backtranslated_test num_bytes: 5695172 num_examples: 15436 download_size: 157165 dataset_size: 47033947 - config_name: retacred-hu features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_branch '3': org:country_of_branch '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:political/religious_affiliation '11': org:shareholders '12': org:stateorprovince_of_branch '13': org:top_members/employees '14': org:website '15': per:age '16': per:cause_of_death '17': per:charges '18': per:children '19': per:cities_of_residence '20': per:city_of_birth '21': per:city_of_death '22': per:countries_of_residence '23': per:country_of_birth '24': per:country_of_death '25': per:date_of_birth '26': per:date_of_death '27': per:employee_of '28': per:identity '29': per:origin '30': per:other_family '31': per:parents '32': per:religion '33': per:schools_attended '34': per:siblings '35': per:spouse '36': per:stateorprovince_of_birth '37': per:stateorprovince_of_death '38': per:stateorprovinces_of_residence '39': per:title splits: - name: train num_bytes: 23084933 num_examples: 58200 - name: test num_bytes: 5011087 num_examples: 13357 - name: validation num_bytes: 7476013 num_examples: 19495 - name: backtranslated_test num_bytes: 4912553 num_examples: 13357 download_size: 3702157 dataset_size: 40484586 - config_name: original-ja features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 31425001 num_examples: 61571 - name: test num_bytes: 6560885 num_examples: 13701 - name: validation num_bytes: 9996196 num_examples: 20290 - name: backtranslated_test num_bytes: 4706581 num_examples: 12913 download_size: 0 dataset_size: 52688663 - config_name: revisited-ja features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 31425001 num_examples: 61571 - name: test num_bytes: 6560885 num_examples: 13701 - name: validation num_bytes: 9996196 num_examples: 20290 - name: backtranslated_test num_bytes: 4706581 num_examples: 12913 download_size: 157165 dataset_size: 52688663 - config_name: retacred-ja features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_branch '3': org:country_of_branch '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:political/religious_affiliation '11': org:shareholders '12': org:stateorprovince_of_branch '13': org:top_members/employees '14': org:website '15': per:age '16': per:cause_of_death '17': per:charges '18': per:children '19': per:cities_of_residence '20': per:city_of_birth '21': per:city_of_death '22': per:countries_of_residence '23': per:country_of_birth '24': per:country_of_death '25': per:date_of_birth '26': per:date_of_death '27': per:employee_of '28': per:identity '29': per:origin '30': per:other_family '31': per:parents '32': per:religion '33': per:schools_attended '34': per:siblings '35': per:spouse '36': per:stateorprovince_of_birth '37': per:stateorprovince_of_death '38': per:stateorprovinces_of_residence '39': per:title splits: - name: train num_bytes: 26944316 num_examples: 52748 - name: test num_bytes: 5627890 num_examples: 11815 - name: validation num_bytes: 8591269 num_examples: 17470 - name: backtranslated_test num_bytes: 4032503 num_examples: 11138 download_size: 3702157 dataset_size: 45195978 - config_name: original-pl features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 26989666 num_examples: 68124 - name: test num_bytes: 5845988 num_examples: 15509 - name: validation num_bytes: 8728082 num_examples: 22631 - name: backtranslated_test num_bytes: 5594933 num_examples: 15509 download_size: 0 dataset_size: 47158669 - config_name: revisited-pl features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 26989666 num_examples: 68124 - name: test num_bytes: 5845988 num_examples: 15509 - name: validation num_bytes: 8728082 num_examples: 22631 - name: backtranslated_test num_bytes: 5594933 num_examples: 15509 download_size: 157165 dataset_size: 47158669 - config_name: retacred-pl features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_branch '3': org:country_of_branch '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:political/religious_affiliation '11': org:shareholders '12': org:stateorprovince_of_branch '13': org:top_members/employees '14': org:website '15': per:age '16': per:cause_of_death '17': per:charges '18': per:children '19': per:cities_of_residence '20': per:city_of_birth '21': per:city_of_death '22': per:countries_of_residence '23': per:country_of_birth '24': per:country_of_death '25': per:date_of_birth '26': per:date_of_death '27': per:employee_of '28': per:identity '29': per:origin '30': per:other_family '31': per:parents '32': per:religion '33': per:schools_attended '34': per:siblings '35': per:spouse '36': per:stateorprovince_of_birth '37': per:stateorprovince_of_death '38': per:stateorprovinces_of_residence '39': per:title splits: - name: train num_bytes: 23161229 num_examples: 58465 - name: test num_bytes: 5044812 num_examples: 13418 - name: validation num_bytes: 7535491 num_examples: 19584 - name: backtranslated_test num_bytes: 4824801 num_examples: 13418 download_size: 3702157 dataset_size: 40566333 - config_name: original-ru features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 36546830 num_examples: 66413 - name: test num_bytes: 7846828 num_examples: 14995 - name: validation num_bytes: 11847712 num_examples: 21998 - name: backtranslated_test num_bytes: 5335337 num_examples: 14703 download_size: 0 dataset_size: 61576707 - config_name: revisited-ru features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 36546830 num_examples: 66413 - name: test num_bytes: 7846828 num_examples: 14995 - name: validation num_bytes: 11847712 num_examples: 21998 - name: backtranslated_test num_bytes: 5335337 num_examples: 14703 download_size: 157165 dataset_size: 61576707 - config_name: retacred-ru features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_branch '3': org:country_of_branch '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:political/religious_affiliation '11': org:shareholders '12': org:stateorprovince_of_branch '13': org:top_members/employees '14': org:website '15': per:age '16': per:cause_of_death '17': per:charges '18': per:children '19': per:cities_of_residence '20': per:city_of_birth '21': per:city_of_death '22': per:countries_of_residence '23': per:country_of_birth '24': per:country_of_death '25': per:date_of_birth '26': per:date_of_death '27': per:employee_of '28': per:identity '29': per:origin '30': per:other_family '31': per:parents '32': per:religion '33': per:schools_attended '34': per:siblings '35': per:spouse '36': per:stateorprovince_of_birth '37': per:stateorprovince_of_death '38': per:stateorprovinces_of_residence '39': per:title splits: - name: train num_bytes: 31523203 num_examples: 57060 - name: test num_bytes: 6793985 num_examples: 12975 - name: validation num_bytes: 10263742 num_examples: 19052 - name: backtranslated_test num_bytes: 4603168 num_examples: 12724 download_size: 3702157 dataset_size: 53184098 - config_name: original-tr features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 26093320 num_examples: 67749 - name: test num_bytes: 5633846 num_examples: 15429 - name: validation num_bytes: 8403271 num_examples: 22510 - name: backtranslated_test num_bytes: 5571104 num_examples: 15429 download_size: 0 dataset_size: 45701541 - config_name: revisited-tr features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 26093320 num_examples: 67749 - name: test num_bytes: 5633846 num_examples: 15429 - name: validation num_bytes: 8403271 num_examples: 22510 - name: backtranslated_test num_bytes: 5571104 num_examples: 15429 download_size: 157165 dataset_size: 45701541 - config_name: retacred-tr features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_branch '3': org:country_of_branch '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:political/religious_affiliation '11': org:shareholders '12': org:stateorprovince_of_branch '13': org:top_members/employees '14': org:website '15': per:age '16': per:cause_of_death '17': per:charges '18': per:children '19': per:cities_of_residence '20': per:city_of_birth '21': per:city_of_death '22': per:countries_of_residence '23': per:country_of_birth '24': per:country_of_death '25': per:date_of_birth '26': per:date_of_death '27': per:employee_of '28': per:identity '29': per:origin '30': per:other_family '31': per:parents '32': per:religion '33': per:schools_attended '34': per:siblings '35': per:spouse '36': per:stateorprovince_of_birth '37': per:stateorprovince_of_death '38': per:stateorprovinces_of_residence '39': per:title splits: - name: train num_bytes: 22386009 num_examples: 58183 - name: test num_bytes: 4857933 num_examples: 13352 - name: validation num_bytes: 7257304 num_examples: 19488 - name: backtranslated_test num_bytes: 4805734 num_examples: 13352 download_size: 3702157 dataset_size: 39306980 - config_name: original-zh features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 26159615 num_examples: 65260 - name: test num_bytes: 5483795 num_examples: 14694 - name: validation num_bytes: 8348430 num_examples: 21538 - name: backtranslated_test num_bytes: 5155679 num_examples: 14021 download_size: 0 dataset_size: 45147519 - config_name: revisited-zh features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_headquarters '3': org:country_of_headquarters '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:parents '11': org:political/religious_affiliation '12': org:shareholders '13': org:stateorprovince_of_headquarters '14': org:subsidiaries '15': org:top_members/employees '16': org:website '17': per:age '18': per:alternate_names '19': per:cause_of_death '20': per:charges '21': per:children '22': per:cities_of_residence '23': per:city_of_birth '24': per:city_of_death '25': per:countries_of_residence '26': per:country_of_birth '27': per:country_of_death '28': per:date_of_birth '29': per:date_of_death '30': per:employee_of '31': per:origin '32': per:other_family '33': per:parents '34': per:religion '35': per:schools_attended '36': per:siblings '37': per:spouse '38': per:stateorprovince_of_birth '39': per:stateorprovince_of_death '40': per:stateorprovinces_of_residence '41': per:title splits: - name: train num_bytes: 26159615 num_examples: 65260 - name: test num_bytes: 5483795 num_examples: 14694 - name: validation num_bytes: 8348430 num_examples: 21538 - name: backtranslated_test num_bytes: 5155679 num_examples: 14021 download_size: 157165 dataset_size: 45147519 - config_name: retacred-zh features: - name: id dtype: string - name: token sequence: string - name: subj_start dtype: int32 - name: subj_end dtype: int32 - name: subj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: obj_start dtype: int32 - name: obj_end dtype: int32 - name: obj_type dtype: class_label: names: '0': LOCATION '1': ORGANIZATION '2': PERSON '3': DATE '4': MONEY '5': PERCENT '6': TIME '7': CAUSE_OF_DEATH '8': CITY '9': COUNTRY '10': CRIMINAL_CHARGE '11': EMAIL '12': HANDLE '13': IDEOLOGY '14': NATIONALITY '15': RELIGION '16': STATE_OR_PROVINCE '17': TITLE '18': URL '19': NUMBER '20': ORDINAL '21': MISC '22': DURATION '23': O - name: relation dtype: class_label: names: '0': no_relation '1': org:alternate_names '2': org:city_of_branch '3': org:country_of_branch '4': org:dissolved '5': org:founded '6': org:founded_by '7': org:member_of '8': org:members '9': org:number_of_employees/members '10': org:political/religious_affiliation '11': org:shareholders '12': org:stateorprovince_of_branch '13': org:top_members/employees '14': org:website '15': per:age '16': per:cause_of_death '17': per:charges '18': per:children '19': per:cities_of_residence '20': per:city_of_birth '21': per:city_of_death '22': per:countries_of_residence '23': per:country_of_birth '24': per:country_of_death '25': per:date_of_birth '26': per:date_of_death '27': per:employee_of '28': per:identity '29': per:origin '30': per:other_family '31': per:parents '32': per:religion '33': per:schools_attended '34': per:siblings '35': per:spouse '36': per:stateorprovince_of_birth '37': per:stateorprovince_of_death '38': per:stateorprovinces_of_residence '39': per:title splits: - name: train num_bytes: 22440419 num_examples: 56049 - name: test num_bytes: 4717593 num_examples: 12718 - name: validation num_bytes: 7200681 num_examples: 18642 - name: backtranslated_test num_bytes: 4441386 num_examples: 12127 download_size: 3702157 dataset_size: 38800079 --- # Dataset Card for "MultiTACRED" ## Dataset Description - **Homepage:** [https://github.com/DFKI-NLP/MultiTACRED](https://github.com/DFKI-NLP/MultiTACRED) - **Paper:** [MultiTACRED: A Multilingual Version of the TAC Relation Extraction Dataset](https://arxiv.org/abs/2305.04582) - **Point of Contact:** See [https://github.com/DFKI-NLP/MultiTACRED](https://github.com/DFKI-NLP/MultiTACRED) - **Size of downloaded dataset files:** 15.4KB (TACRED-Revisited), 3.7 MB (Re-TACRED) - **Size of the generated dataset:** 1.7 GB (all languages, all versions) - **Total amount of disk used:** 1.7 GB (all languages, all versions) ### Dataset Summary MultiTACRED is a multilingual version of the large-scale [TAC Relation Extraction Dataset](https://nlp.stanford.edu/projects/tacred). It covers 12 typologically diverse languages from 9 language families, and was created by the [Speech & Language Technology group of DFKI](https://www.dfki.de/slt) by machine-translating the instances of the original TACRED dataset and automatically projecting their entity annotations. For details of the original TACRED's data collection and annotation process, see the [Stanford paper](https://aclanthology.org/D17-1004/). Translations are syntactically validated by checking the correctness of the XML tag markup. Any translations with an invalid tag structure, e.g. missing or invalid head or tail tag pairs, are discarded (on average, 2.3% of the instances). Languages covered are: Arabic, Chinese, Finnish, French, German, Hindi, Hungarian, Japanese, Polish, Russian, Spanish, Turkish. Intended use is supervised relation classification. Audience - researchers. Please see [our ACL paper](https://arxiv.org/abs/2305.04582) for full details. NOTE: This Datasetreader supports a reduced version of the original TACRED JSON format with the following changes: - Removed fields: stanford_pos, stanford_ner, stanford_head, stanford_deprel, docid The motivation for this is that we want to support additional languages, for which these fields were not required or available. The reader expects the specification of a language-specific configuration specifying the variant (original, revisited or retacred) and the language (as a two-letter iso code). The DatasetReader changes the offsets of the following fields, to conform with standard Python usage (see _generate_examples()): - subj_end to subj_end + 1 (make end offset exclusive) - obj_end to obj_end + 1 (make end offset exclusive) NOTE 2: The MultiTACRED dataset offers an additional 'split', namely the backtranslated test data (translated to a target language and then back to English). To access this split, use dataset['backtranslated_test']. You can find the TACRED dataset reader for the English version of the dataset at [https://huggingface.co/datasets/DFKI-SLT/tacred](https://huggingface.co/datasets/DFKI-SLT/tacred). ### Supported Tasks and Leaderboards - **Tasks:** Relation Classification - **Leaderboards:** [https://paperswithcode.com/sota/relation-extraction-on-multitacred](https://paperswithcode.com/sota/relation-extraction-on-multitacred) ### Languages The languages in the dataset are Arabic, German, English, Spanish, Finnish, French, Hindi, Hungarian, Japanese, Polish, Russian, Turkish, and Chinese. All languages except English are machine-translated using either Deepl's or Google's translation APIs. ## Dataset Structure ### Data Instances - **Size of downloaded dataset files:** 15.4KB (TACRED-Revisited), 3.7 MB (Re-TACRED) - **Size of the generated dataset:** 1.7 GB (all languages, all versions) - **Total amount of disk used:** 1.7 GB (all languages, all versions) An example of 'train' looks as follows: ```json { "id": "61b3a5c8c9a882dcfcd2", "token": ["Tom", "Thabane", "trat", "im", "Oktober", "letzten", "Jahres", "zurück", ",", "um", "die", "All", "Basotho", "Convention", "-LRB-", "ABC", "-RRB-", "zu", "gründen", ",", "die", "mit", "17", "Abgeordneten", "das", "Wort", "ergriff", ",", "woraufhin", "der", "konstitutionelle", "Monarch", "König", "Letsie", "III.", "das", "Parlament", "auflöste", "und", "Neuwahlen", "ansetzte", "."], "relation": "org:founded_by", "subj_start": 11, "subj_end": 13, "obj_start": 0, "obj_end": 1, "subj_type": "ORGANIZATION", "obj_type": "PERSON" } ``` ### Data Fields The data fields are the same among all splits. - `id`: the instance id of this sentence, a `string` feature. - `token`: the list of tokens of this sentence, a `list` of `string` features. - `relation`: the relation label of this instance, a `string` classification label. - `subj_start`: the 0-based index of the start token of the relation subject mention, an `ìnt` feature. - `subj_end`: the 0-based index of the end token of the relation subject mention, exclusive, an `ìnt` feature. - `subj_type`: the NER type of the subject mention, among the types used in the [Stanford NER system](https://stanfordnlp.github.io/CoreNLP/ner.html), a `string` feature. - `obj_start`: the 0-based index of the start token of the relation object mention, an `ìnt` feature. - `obj_end`: the 0-based index of the end token of the relation object mention, exclusive, an `ìnt` feature. - `obj_type`: the NER type of the object mention, among 23 fine-grained types used in the [Stanford NER system](https://stanfordnlp.github.io/CoreNLP/ner.html), a `string` feature. ### Data Splits To miminize dataset bias, TACRED is stratified across years in which the TAC KBP challenge was run. Languages statistics for the splits differ because not all instances could be translated with the subject and object entity markup still intact, these were discarded. | Language | Train | Dev | Test | Backtranslated Test | Translation Engine | | ----- | ------ | ----- | ---- | ---- | ---- | | en | 68,124 | 22,631 | 15,509 | - | - | | ar | 67,736 | 22,502 | 15,425 | 15,425 | Google | | de | 67,253 | 22,343 | 15,282 | 15,079 | DeepL | | es | 65,247 | 21,697 | 14,908 | 14,688 | DeepL | | fi | 66,751 | 22,268 | 15,083 | 14,462 | DeepL | | fr | 66,856 | 22,298 | 15,237 | 15,088 | DeepL | | hi | 67,751 | 22,511 | 15,440 | 15,440 | Google | | hu | 67,766 | 22,519 | 15,436 | 15,436 | Google | | ja | 61,571 | 20,290 | 13,701 | 12,913 | DeepL | | pl | 68,124 | 22,631 | 15,509 | 15,509 | Google | | ru | 66,413 | 21,998 | 14,995 | 14,703 | DeepL | | tr | 67,749 | 22,510 | 15,429 | 15,429 | Google | | zh | 65,260 | 21,538 | 14,694 | 14,021 | DeepL | ## Dataset Creation ### Curation Rationale To enable more research on multilingual Relation Extraction, we generate translations of the TAC relation extraction dataset using DeepL and Google Translate. ### Source Data #### Initial Data Collection and Normalization The instances of this dataset are sentences from the [original TACRED dataset](https://nlp.stanford.edu/projects/tacred/), which in turn are sampled from the [corpus](https://catalog.ldc.upenn.edu/LDC2018T03) used in the yearly [TAC Knowledge Base Population (TAC KBP) challenges](https://tac.nist.gov/2017/KBP/index.html). #### Who are the source language producers? Newswire and web texts collected for the [TAC Knowledge Base Population (TAC KBP) challenges](https://tac.nist.gov/2017/KBP/index.html). ### Annotations #### Annotation process See the Stanford paper, the TACRED Revisited paper, and the Re-TACRED paper, plus their appendices, for details on the original annotation process. The translated versions do not change the original labels. Translations were tokenized with language-specific Spacy models (Spacy 3.1, 'core_news/web_sm' models) or Trankit (Trankit 1.1.0) when there was no Spacy model for a given language (Hungarian, Turkish, Arabic, Hindi). #### Who are the annotators? The original TACRED dataset was annotated by crowd workers, see the [TACRED paper](https://nlp.stanford.edu/pubs/zhang2017tacred.pdf). ### Personal and Sensitive Information The [authors](https://nlp.stanford.edu/pubs/zhang2017tacred.pdf) of the original TACRED dataset have not stated measures that prevent collecting sensitive or offensive text. Therefore, we do not rule out the possible risk of sensitive/offensive content in the translated data. ## Considerations for Using the Data ### Social Impact of Dataset not applicable ### Discussion of Biases The dataset is drawn from web and newswire text, and thus reflects any biases of these original texts, as well as biases introduced by the MT models. ### Other Known Limitations not applicable ## Additional Information ### Dataset Curators The dataset was created by members of the [DFKI SLT team: Leonhard Hennig, Philippe Thomas, Sebastian Möller, Gabriel Kressin](https://www.dfki.de/en/web/research/research-departments/speech-and-language-technology/speech-and-language-technology-staff-members) ### Licensing Information To respect the copyright of the underlying TACRED dataset, MultiTACRED is released via the Linguistic Data Consortium ([LDC License](https://catalog.ldc.upenn.edu/license/ldc-non-members-agreement.pdf)). You can download MultiTACRED from the [LDC MultiTACRED webpage](https://catalog.ldc.upenn.edu/TODO). If you are an LDC member, the access will be free; otherwise, an access fee of $25 is needed. ### Citation Information The original dataset: ``` @inproceedings{zhang2017tacred, author = {Zhang, Yuhao and Zhong, Victor and Chen, Danqi and Angeli, Gabor and Manning, Christopher D.}, booktitle = {Proceedings of the 2017 Conference on Empirical Methods in Natural Language Processing (EMNLP 2017)}, title = {Position-aware Attention and Supervised Data Improve Slot Filling}, url = {https://nlp.stanford.edu/pubs/zhang2017tacred.pdf}, pages = {35--45}, year = {2017} } ``` For the revised version, please also cite: ``` @inproceedings{alt-etal-2020-tacred, title = "{TACRED} Revisited: A Thorough Evaluation of the {TACRED} Relation Extraction Task", author = "Alt, Christoph and Gabryszak, Aleksandra and Hennig, Leonhard", booktitle = "Proceedings of the 58th Annual Meeting of the Association for Computational Linguistics", month = jul, year = "2020", address = "Online", publisher = "Association for Computational Linguistics", url = "https://www.aclweb.org/anthology/2020.acl-main.142", doi = "10.18653/v1/2020.acl-main.142", pages = "1558--1569", } ``` For the Re-TACRED version, please also cite: ``` @inproceedings{DBLP:conf/aaai/StoicaPP21, author = {George Stoica and Emmanouil Antonios Platanios and Barnab{\'{a}}s P{\'{o}}czos}, title = {Re-TACRED: Addressing Shortcomings of the {TACRED} Dataset}, booktitle = {Thirty-Fifth {AAAI} Conference on Artificial Intelligence, {AAAI} 2021, Thirty-Third Conference on Innovative Applications of Artificial Intelligence, {IAAI} 2021, The Eleventh Symposium on Educational Advances in Artificial Intelligence, {EAAI} 2021, Virtual Event, February 2-9, 2021}, pages = {13843--13850}, publisher = {{AAAI} Press}, year = {2021}, url = {https://ojs.aaai.org/index.php/AAAI/article/view/17631}, } ``` ### Contributions Thanks to [@leonhardhennig](https://github.com/leonhardhennig) for adding this dataset.
132,448
[ [ -0.043731689453125, -0.039276123046875, 0.0194244384765625, 0.024810791015625, -0.017730712890625, 0.0011358261108398438, -0.03765869140625, -0.0293121337890625, 0.0251007080078125, 0.03070068359375, -0.041259765625, -0.055267333984375, -0.044464111328125, 0...
bigbio/chebi_nactem
2022-12-22T15:44:20.000Z
[ "multilinguality:monolingual", "language:en", "license:cc-by-4.0", "region:us" ]
bigbio
The ChEBI corpus contains 199 annotated abstracts and 100 annotated full papers. All documents in the corpus have been annotated for named entities and relations between these. In total, our corpus provides over 15000 named entity annotations and over 6,000 relations between entities.
@inproceedings{Shardlow2018, title = { A New Corpus to Support Text Mining for the Curation of Metabolites in the {ChEBI} Database }, author = { Shardlow, M J and Nguyen, N and Owen, G and O'Donovan, C and Leach, A and McNaught, J and Turner, S and Ananiadou, S }, year = 2018, month = may, booktitle = { Proceedings of the Eleventh International Conference on Language Resources and Evaluation ({LREC} 2018) }, location = {Miyazaki, Japan}, pages = {280--285}, conference = { Eleventh International Conference on Language Resources and Evaluation (LREC 2018) }, language = {en} }
0
79
2022-11-13T22:07:43
--- language: - en bigbio_language: - English license: cc-by-4.0 multilinguality: monolingual bigbio_license_shortname: CC_BY_4p0 pretty_name: CHEBI Corpus homepage: http://www.nactem.ac.uk/chebi bigbio_pubmed: True bigbio_public: True bigbio_tasks: - NAMED_ENTITY_RECOGNITION - RELATION_EXTRACTION --- # Dataset Card for CHEBI Corpus ## Dataset Description - **Homepage:** http://www.nactem.ac.uk/chebi - **Pubmed:** True - **Public:** True - **Tasks:** NER,RE The ChEBI corpus contains 199 annotated abstracts and 100 annotated full papers. All documents in the corpus have been annotated for named entities and relations between these. In total, our corpus provides over 15000 named entity annotations and over 6,000 relations between entities. ## Citation Information ``` @inproceedings{Shardlow2018, title = { A New Corpus to Support Text Mining for the Curation of Metabolites in the {ChEBI} Database }, author = { Shardlow, M J and Nguyen, N and Owen, G and O'Donovan, C and Leach, A and McNaught, J and Turner, S and Ananiadou, S }, year = 2018, month = may, booktitle = { Proceedings of the Eleventh International Conference on Language Resources and Evaluation ({LREC} 2018) }, location = {Miyazaki, Japan}, pages = {280--285}, conference = { Eleventh International Conference on Language Resources and Evaluation (LREC 2018) }, language = {en} } ```
1,482
[ [ -0.0162811279296875, -0.029266357421875, 0.0447998046875, 0.00524139404296875, -0.007808685302734375, 0.00153350830078125, -0.01287841796875, -0.047943115234375, 0.0279388427734375, 0.046722412109375, -0.03521728515625, -0.0709228515625, -0.037384033203125, ...
keremberke/german-traffic-sign-detection
2023-01-16T21:06:06.000Z
[ "task_categories:object-detection", "roboflow", "roboflow2huggingface", "Self Driving", "Transportation", "region:us" ]
keremberke
null
@misc{ gtsdb---german-traffic-sign-detection-benchmark_dataset, title = { GTSDB - German Traffic Sign Detection Benchmark Dataset }, type = { Open Source Dataset }, author = { Mohamed Traore }, howpublished = { \\url{ https://universe.roboflow.com/mohamed-traore-2ekkp/gtsdb---german-traffic-sign-detection-benchmark } }, url = { https://universe.roboflow.com/mohamed-traore-2ekkp/gtsdb---german-traffic-sign-detection-benchmark }, journal = { Roboflow Universe }, publisher = { Roboflow }, year = { 2022 }, month = { jul }, note = { visited on 2023-01-16 }, }
2
79
2023-01-16T21:04:50
--- task_categories: - object-detection tags: - roboflow - roboflow2huggingface - Self Driving - Transportation --- <div align="center"> <img width="640" alt="keremberke/german-traffic-sign-detection" src="https://huggingface.co/datasets/keremberke/german-traffic-sign-detection/resolve/main/thumbnail.jpg"> </div> ### Dataset Labels ``` ['animals', 'construction', 'cycles crossing', 'danger', 'no entry', 'pedestrian crossing', 'school crossing', 'snow', 'stop', 'bend', 'bend left', 'bend right', 'give way', 'go left', 'go left or straight', 'go right', 'go right or straight', 'go straight', 'keep left', 'keep right', 'no overtaking', 'no overtaking -trucks-', 'no traffic both ways', 'no trucks', 'priority at next intersection', 'priority road', 'restriction ends', 'restriction ends -overtaking -trucks--', 'restriction ends -overtaking-', 'restriction ends 80', 'road narrows', 'roundabout', 'slippery road', 'speed limit 100', 'speed limit 120', 'speed limit 20', 'speed limit 30', 'speed limit 50', 'speed limit 60', 'speed limit 70', 'speed limit 80', 'traffic signal', 'uneven road'] ``` ### Number of Images ```json {'test': 54, 'valid': 108, 'train': 383} ``` ### How to Use - Install [datasets](https://pypi.org/project/datasets/): ```bash pip install datasets ``` - Load the dataset: ```python from datasets import load_dataset ds = load_dataset("keremberke/german-traffic-sign-detection", name="full") example = ds['train'][0] ``` ### Roboflow Dataset Page [https://universe.roboflow.com/mohamed-traore-2ekkp/gtsdb---german-traffic-sign-detection-benchmark/dataset/1](https://universe.roboflow.com/mohamed-traore-2ekkp/gtsdb---german-traffic-sign-detection-benchmark/dataset/1?ref=roboflow2huggingface) ### Citation ``` @misc{ gtsdb---german-traffic-sign-detection-benchmark_dataset, title = { GTSDB - German Traffic Sign Detection Benchmark Dataset }, type = { Open Source Dataset }, author = { Mohamed Traore }, howpublished = { \\url{ https://universe.roboflow.com/mohamed-traore-2ekkp/gtsdb---german-traffic-sign-detection-benchmark } }, url = { https://universe.roboflow.com/mohamed-traore-2ekkp/gtsdb---german-traffic-sign-detection-benchmark }, journal = { Roboflow Universe }, publisher = { Roboflow }, year = { 2022 }, month = { jul }, note = { visited on 2023-01-16 }, } ``` ### License CC BY 4.0 ### Dataset Summary This dataset was exported via roboflow.com on January 16, 2023 at 9:04 PM GMT Roboflow is an end-to-end computer vision platform that helps you * collaborate with your team on computer vision projects * collect & organize images * understand and search unstructured image data * annotate, and create datasets * export, train, and deploy computer vision models * use active learning to improve your dataset over time For state of the art Computer Vision training notebooks you can use with this dataset, visit https://github.com/roboflow/notebooks To find over 100k other datasets and pre-trained models, visit https://universe.roboflow.com The dataset includes 545 images. Signs are annotated in COCO format. The following pre-processing was applied to each image: * Auto-orientation of pixel data (with EXIF-orientation stripping) No image augmentation techniques were applied.
3,294
[ [ -0.038421630859375, -0.04205322265625, 0.034576416015625, 0.005126953125, -0.041046142578125, -0.01477813720703125, -0.001827239990234375, -0.055511474609375, 0.01325225830078125, 0.01427459716796875, -0.04144287109375, -0.07318115234375, -0.056640625, 0.015...
erkam/clevr-with-depth
2023-02-03T02:09:24.000Z
[ "region:us" ]
erkam
null
null
1
79
2023-02-03T02:09:11
--- dataset_info: features: - name: image dtype: image - name: depth dtype: image - name: prompt dtype: string splits: - name: train num_bytes: 115079852.0 num_examples: 1400 - name: test num_bytes: 24726160.0 num_examples: 300 - name: val num_bytes: 24696560.0 num_examples: 300 download_size: 164000762 dataset_size: 164502572.0 --- # Dataset Card for "clevr-with-depth" [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
561
[ [ -0.058563232421875, -0.0131988525390625, 0.0219268798828125, 0.01078033447265625, -0.027587890625, 0.0067596435546875, 0.01561737060546875, -0.0166015625, 0.051361083984375, 0.04052734375, -0.046234130859375, -0.060302734375, -0.049163818359375, -0.023284912...
vietgpt/news_summarization_vi
2023-07-04T05:30:39.000Z
[ "task_categories:summarization", "size_categories:10K<n<100K", "language:vi", "LM", "region:us" ]
vietgpt
null
null
0
79
2023-02-19T17:53:02
--- dataset_info: features: - name: content dtype: string - name: summary dtype: string splits: - name: train num_bytes: 213621060.91992286 num_examples: 65361 - name: test num_bytes: 3268326.0800771536 num_examples: 1000 download_size: 117151304 dataset_size: 216889387 language: - vi task_categories: - summarization size_categories: - 10K<n<100K tags: - LM --- # Summarization - Source: https://github.com/binhvq/news-corpus - Language: Vietnamese - Labeling: text-davinci-003 - Num examples: - 65,361 (train) - 10,000 (test) ```python from datasets import load_dataset load_dataset("tdtunlp/news_summarization_vi") ``` - Format for Summarization task ```python def preprocess( sample, sep_key="<|endofprompt|>", end_key="<|endoftext|>", ): article = sample['content'] completion = sample['summary'] return {'text': """{article} TL;DR: {sep_key} {completion} {end_key}""".format( article=article, sep_key=sep_key, completion=completion, end_key=end_key, )} """ Suốt bao năm, để dòng tranh này không bị rơi vào quên lãng, mỗi ngày người ta đều thấy ông Đạt cặm cụi làm nên những bức tranh từ mũi dao, cán đục. Ông bảo, tranh sơn khắc ở nước ta ra đời sớm nhất và còn đẹp hơn cả tranh sơn khắc của Nhật. Quý giá như vậy nên ông chẳng thể để nghề mai một trong sự chông chênh của thời cuộc. Một trong những sản phẩm sơn khắc của ông Đạt được trả 25 triệu. Theo ông Đạt, thời điểm năm 1945 đến 1995 là lúc tranh sơn khắc ở nước ta phát triển mạnh nhất. Thời điểm đó, các sản phẩm của Hạ Thái chiếm tới 70% hàng xuất khẩu, giải quyết được công ăn việc làm cho người dân trong làng và cả các địa phương khác, đem lại cuộc sống khấm khá cho nhiều hộ gia đình. Say mê hội họa từ nhỏ, nên chuyện ông Đạt đến với tranh sơn khắc như một mối duyên tiền định. Khi mới tiếp xúc với những bức tranh này, ông Đạt như bị lôi cuốn chẳng thể nào dứt ra được. Học hết cấp 3, tôi thi vào Đại học sư phạm nhưng sức khỏe không đảm bảo nên xin vào làm thợ vẽ trong xưởng của hợp tác xã. Năm 1979, tôi được hợp tác xã cử đi học thêm ở trường Mỹ Nghệ. Khi về lại xưởng, nhờ năng khiếu hội họa nên tôi được chuyển sang khâu đoạn khảm trai rồi sang tranh khắc. Tôi làm tranh khắc từ đó đến giờ ông Đạt chia sẻ. Theo lời ông Đạt, học sơn khắc khó bởi cách vẽ của dòng tranh này khác hẳn với sơn mài. Nếu như sơn mài người ta có thể vẽ bằng chổi hay bút lông, cũng có khi là chất liệu mềm rồi mới quét sơn lên vóc thì sơn khắc khâu đoạn lại làm khác hẳn. Sơn khắc là nghệ thuật của đồ họa, sự hoàn thiện của bức tranh phụ thuộc vào những nét chạm khắc và những mảng hình tinh tế, giàu cảm xúc. Cuối cùng mới là việc tô màu nhằm tạo sự khắc họa mạnh. Như một lẽ xoay vần tự nhiên, sự phát triển của làng nghề Hạ Thái dần chùng xuống. Làng nghề bước vào thời kỳ suy thoái, đặc biệt là trong giai đoạn khủng hoảng kinh tế Đông Âu từ 1984 đến 1990 đã làm hợp tác xã tan rã. Ông Đạt khi đó cũng như bao người thợ khác đều phải quay về làm ruộng. Ông Đạt giải thích, tranh sơn khắc xuất phát từ gốc tranh sơn mài. Nếu như ở tranh sơn mài thông thường, để có một tấm vóc vẽ người ta phủ sơn ta, vải lên tấm gỗ và mài phẳng thì tranh sơn khắc độc đáo ở chỗ, phải sử dụng kỹ thuật thủ công để khắc lên tấm vóc sơn mài. Tranh sơn khắc từ phôi thai, phác thảo đến lúc hoàn thành có khi kéo dài cả năm trời. Chẳng hạn, riêng công khắc ở bức tranh khổ nhỏ thường tôi làm cả ngày lẫn đêm thì mất 2 ngày, phối màu mất 3 ngày. Để người trẻ học được nghề cũng sẽ mất khoảng 6 tháng đến 1 năm - ông Trần Thành Đạt chia sẻ. Tranh sơn khắc đòi hỏi rất kỹ về phác thảo, bố cục, cũng như mảng màu sáng tối mà màu đen của vóc là chủ đạo. Dù trên diện tích bức tranh khổ lớn bao nhiêu nó vẫn rất cần kỹ càng và chính xác đến từng xen-ti-met. Nếu sai, bức tranh sẽ gần như bị hỏng, các đường nét phải khắc họa lại từ đầu. Kỳ công là vậy nên giá thành mỗi sản phẩm sơn khắc thường khá cao, trung bình từ 4 đến 25 triệu đồng/bức tranh. Giá thành cao lại yêu cầu khắt khe về mặt kỹ thuật, mỹ thuật nên theo Nghệ nhân Trần Thành Đạt, nhiều người trong làng đã từ bỏ, không làm dòng tranh này nữa. Tranh sơn khắc làm mất nhiều thời gian và công sức nhưng khó bán. Họ đều tập trung làm tranh sơn mài, với chất liệu ngoại nhập cho rẻ và ít tốn công sức. Hầu như cả làng đã quay lưng, bỏ rơi dòng tranh sơn khắc vào lãng quên ông Đạt buồn bã kể. Được biết, hiện xưởng sản xuất tranh của ông Đạt chủ yếu là các thành viên trong gia đình. Ông khoe, hai con trai và con gái đều tốt nghiệp Trường Đại học Mĩ thuật, con rể và các con dâu cũng là họa sĩ của trường. Tất cả các thành viên trong gia đình ông đều chung niềm say mê với sơn khắc. Đinh Luyện. TL;DR: <|endofprompt|> Ông Đạt Trần Thành là một trong những nghệ nhân sơn khắc của làng nghề Hạ Thái, Hà Nội. Từ năm 1945 đến 1995, ông Đạt đã nỗ lực bảo vệ dòng tranh sơn khắc của nước ta không bị rơi vào quên lãng. Ông Đạt cũng là người đã giới thiệu tranh sơn khắc của nước ta đến với nhiều quốc gia khác. Tuy nhiên, trong giai đoạn khủng hoảng kinh tế Đông Âu từ 1984 đến 1990, làng nghề Hạ Thái đã bước vào thời kỳ suy thoái. Ông Đạt và nhiều người thợ khác đã phải quay về làm ruộng. Tuy nhiên, ông Đạt vẫn nỗ lực bảo vệ dòng tranh sơn khắc của nước ta. Hiện nay, ông Đạt đã truyền cảm hứng và kỹ năng sơn khắc cho các thành viên trong gia đình. <|endoftext|> """ ```
5,359
[ [ -0.0312042236328125, -0.0216217041015625, 0.031768798828125, 0.0224456787109375, -0.0233154296875, 0.009552001953125, 0.0006308555603027344, -0.032196044921875, 0.05389404296875, 0.0308380126953125, -0.0099639892578125, -0.03863525390625, -0.037200927734375, ...
Francesco/vehicles-q0x2v
2023-03-30T09:17:19.000Z
[ "task_categories:object-detection", "annotations_creators:crowdsourced", "language_creators:found", "multilinguality:monolingual", "size_categories:1K<n<10K", "source_datasets:original", "language:en", "license:cc", "rf100", "region:us" ]
Francesco
null
null
2
79
2023-03-30T09:16:17
--- dataset_info: features: - name: image_id dtype: int64 - name: image dtype: image - name: width dtype: int32 - name: height dtype: int32 - name: objects sequence: - name: id dtype: int64 - name: area dtype: int64 - name: bbox sequence: float32 length: 4 - name: category dtype: class_label: names: '0': vehicles '1': big bus '2': big truck '3': bus-l- '4': bus-s- '5': car '6': mid truck '7': small bus '8': small truck '9': truck-l- '10': truck-m- '11': truck-s- '12': truck-xl- annotations_creators: - crowdsourced language_creators: - found language: - en license: - cc multilinguality: - monolingual size_categories: - 1K<n<10K source_datasets: - original task_categories: - object-detection task_ids: [] pretty_name: vehicles-q0x2v tags: - rf100 --- # Dataset Card for vehicles-q0x2v ** The original COCO dataset is stored at `dataset.tar.gz`** ## Dataset Description - **Homepage:** https://universe.roboflow.com/object-detection/vehicles-q0x2v - **Point of Contact:** francesco.zuppichini@gmail.com ### Dataset Summary vehicles-q0x2v ### Supported Tasks and Leaderboards - `object-detection`: The dataset can be used to train a model for Object Detection. ### Languages English ## Dataset Structure ### Data Instances A data point comprises an image and its object annotations. ``` { 'image_id': 15, 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=640x640 at 0x2373B065C18>, 'width': 964043, 'height': 640, 'objects': { 'id': [114, 115, 116, 117], 'area': [3796, 1596, 152768, 81002], 'bbox': [ [302.0, 109.0, 73.0, 52.0], [810.0, 100.0, 57.0, 28.0], [160.0, 31.0, 248.0, 616.0], [741.0, 68.0, 202.0, 401.0] ], 'category': [4, 4, 0, 0] } } ``` ### Data Fields - `image`: the image id - `image`: `PIL.Image.Image` object containing the image. Note that when accessing the image column: `dataset[0]["image"]` the image file is automatically decoded. Decoding of a large number of image files might take a significant amount of time. Thus it is important to first query the sample index before the `"image"` column, *i.e.* `dataset[0]["image"]` should **always** be preferred over `dataset["image"][0]` - `width`: the image width - `height`: the image height - `objects`: a dictionary containing bounding box metadata for the objects present on the image - `id`: the annotation id - `area`: the area of the bounding box - `bbox`: the object's bounding box (in the [coco](https://albumentations.ai/docs/getting_started/bounding_boxes_augmentation/#coco) format) - `category`: the object's category. #### Who are the annotators? Annotators are Roboflow users ## Additional Information ### Licensing Information See original homepage https://universe.roboflow.com/object-detection/vehicles-q0x2v ### Citation Information ``` @misc{ vehicles-q0x2v, title = { vehicles q0x2v Dataset }, type = { Open Source Dataset }, author = { Roboflow 100 }, howpublished = { \url{ https://universe.roboflow.com/object-detection/vehicles-q0x2v } }, url = { https://universe.roboflow.com/object-detection/vehicles-q0x2v }, journal = { Roboflow Universe }, publisher = { Roboflow }, year = { 2022 }, month = { nov }, note = { visited on 2023-03-29 }, }" ``` ### Contributions Thanks to [@mariosasko](https://github.com/mariosasko) for adding this dataset.
3,641
[ [ -0.048126220703125, -0.0227813720703125, 0.018646240234375, -0.0069122314453125, -0.03033447265625, -0.0026912689208984375, -0.003482818603515625, -0.038787841796875, 0.0017099380493164062, 0.022796630859375, -0.055328369140625, -0.05975341796875, -0.02790832519...
jamimulgrave/Song-Interpretation-Dataset
2023-05-13T03:41:53.000Z
[ "region:us" ]
jamimulgrave
null
null
0
79
2023-05-08T04:27:22
Entry not found
15
[ [ -0.0214080810546875, -0.01494598388671875, 0.057159423828125, 0.02880859375, -0.035064697265625, 0.046478271484375, 0.052520751953125, 0.00505828857421875, 0.051361083984375, 0.016998291015625, -0.05206298828125, -0.01496124267578125, -0.06036376953125, 0.03...
d0rj/OpenOrca-ru
2023-07-26T15:18:17.000Z
[ "task_categories:conversational", "task_categories:text-classification", "task_categories:token-classification", "task_categories:table-question-answering", "task_categories:question-answering", "task_categories:zero-shot-classification", "task_categories:summarization", "task_categories:feature-extra...
d0rj
null
null
6
79
2023-07-19T21:29:12
--- dataset_info: features: - name: id dtype: string - name: system_prompt dtype: string - name: question dtype: string - name: response dtype: string splits: - name: train num_bytes: 11568757682 num_examples: 4233923 download_size: 5699482220 dataset_size: 11568757682 size_categories: - 1M<n<10M language_creators: - translated language: - ru multilinguality: - monolingual pretty_name: Dolphin (ru) source_datasets: - Open-Orca/OpenOrca license: mit tags: - ChatGPT - instruct - instruct-tune task_categories: - conversational - text-classification - token-classification - table-question-answering - question-answering - zero-shot-classification - summarization - feature-extraction - text-generation - text2text-generation paperswithcode_id: orca-progressive-learning-from-complex --- # OpenOrca-ru ## Dataset Description - **Paper:** https://arxiv.org/abs/2306.02707 This is translated version of [Open-Orca/OpenOrca](https://huggingface.co/datasets/Open-Orca/OpenOrca) into Russian.
1,034
[ [ 0.0033092498779296875, -0.0229034423828125, 0.005001068115234375, 0.006580352783203125, -0.046295166015625, -0.01812744140625, 0.00028204917907714844, -0.0382080078125, 0.038360595703125, 0.04669189453125, -0.033966064453125, -0.0618896484375, -0.033477783203125...
open-llm-leaderboard/details_Corianas__Quokka_2.7b
2023-09-18T03:06:10.000Z
[ "region:us" ]
open-llm-leaderboard
null
null
0
79
2023-08-17T22:25:42
--- pretty_name: Evaluation run of Corianas/Quokka_2.7b dataset_summary: "Dataset automatically created during the evaluation run of model\ \ [Corianas/Quokka_2.7b](https://huggingface.co/Corianas/Quokka_2.7b) on the [Open\ \ LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard).\n\ \nThe dataset is composed of 64 configuration, each one coresponding to one of the\ \ evaluated task.\n\nThe dataset has been created from 2 run(s). Each run can be\ \ found as a specific split in each configuration, the split being named using the\ \ timestamp of the run.The \"train\" split is always pointing to the latest results.\n\ \nAn additional configuration \"results\" store all the aggregated results of the\ \ run (and is used to compute and display the agregated metrics on the [Open LLM\ \ Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard)).\n\ \nTo load the details from a run, you can for instance do the following:\n```python\n\ from datasets import load_dataset\ndata = load_dataset(\"open-llm-leaderboard/details_Corianas__Quokka_2.7b\"\ ,\n\t\"harness_winogrande_5\",\n\tsplit=\"train\")\n```\n\n## Latest results\n\n\ These are the [latest results from run 2023-09-18T03:05:58.053951](https://huggingface.co/datasets/open-llm-leaderboard/details_Corianas__Quokka_2.7b/blob/main/results_2023-09-18T03-05-58.053951.json)(note\ \ that their might be results for other tasks in the repos if successive evals didn't\ \ cover the same tasks. You find each in the results and the \"latest\" split for\ \ each eval):\n\n```python\n{\n \"all\": {\n \"em\": 0.027055369127516778,\n\ \ \"em_stderr\": 0.0016615386418947858,\n \"f1\": 0.0843078859060403,\n\ \ \"f1_stderr\": 0.0021162612701253174,\n \"acc\": 0.27932236818091244,\n\ \ \"acc_stderr\": 0.007830181847252834\n },\n \"harness|drop|3\": {\n\ \ \"em\": 0.027055369127516778,\n \"em_stderr\": 0.0016615386418947858,\n\ \ \"f1\": 0.0843078859060403,\n \"f1_stderr\": 0.0021162612701253174\n\ \ },\n \"harness|gsm8k|5\": {\n \"acc\": 0.0037907505686125853,\n \ \ \"acc_stderr\": 0.0016927007401501802\n },\n \"harness|winogrande|5\"\ : {\n \"acc\": 0.5548539857932123,\n \"acc_stderr\": 0.013967662954355487\n\ \ }\n}\n```" repo_url: https://huggingface.co/Corianas/Quokka_2.7b leaderboard_url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard point_of_contact: clementine@hf.co configs: - config_name: harness_arc_challenge_25 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|arc:challenge|25_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|arc:challenge|25_2023-07-19T15:58:12.174583.parquet' - config_name: harness_drop_3 data_files: - split: 2023_09_18T03_05_58.053951 path: - '**/details_harness|drop|3_2023-09-18T03-05-58.053951.parquet' - split: latest path: - '**/details_harness|drop|3_2023-09-18T03-05-58.053951.parquet' - config_name: harness_gsm8k_5 data_files: - split: 2023_09_18T03_05_58.053951 path: - '**/details_harness|gsm8k|5_2023-09-18T03-05-58.053951.parquet' - split: latest path: - '**/details_harness|gsm8k|5_2023-09-18T03-05-58.053951.parquet' - config_name: harness_hellaswag_10 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hellaswag|10_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hellaswag|10_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-abstract_algebra|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-anatomy|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-astronomy|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-business_ethics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-college_biology|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-college_chemistry|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-college_computer_science|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-college_mathematics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-college_medicine|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-college_physics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-computer_security|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-conceptual_physics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-econometrics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-electrical_engineering|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-formal_logic|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-global_facts|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_biology|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_european_history|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_geography|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_physics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_psychology|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_statistics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_us_history|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_world_history|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-human_aging|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-human_sexuality|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-international_law|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-jurisprudence|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-logical_fallacies|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-machine_learning|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-management|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-marketing|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-medical_genetics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-miscellaneous|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-moral_disputes|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-moral_scenarios|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-nutrition|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-philosophy|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-prehistory|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-professional_accounting|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-professional_law|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-professional_medicine|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-professional_psychology|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-public_relations|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-security_studies|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-sociology|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-virology|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-world_religions|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-abstract_algebra|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-anatomy|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-astronomy|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-business_ethics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-college_biology|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-college_chemistry|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-college_computer_science|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-college_mathematics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-college_medicine|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-college_physics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-computer_security|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-conceptual_physics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-econometrics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-electrical_engineering|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-formal_logic|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-global_facts|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_biology|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_european_history|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_geography|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_physics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_psychology|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_statistics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_us_history|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-high_school_world_history|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-human_aging|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-human_sexuality|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-international_law|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-jurisprudence|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-logical_fallacies|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-machine_learning|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-management|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-marketing|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-medical_genetics|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-miscellaneous|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-moral_disputes|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-moral_scenarios|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-nutrition|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-philosophy|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-prehistory|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-professional_accounting|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-professional_law|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-professional_medicine|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-professional_psychology|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-public_relations|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-security_studies|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-sociology|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-virology|5_2023-07-19T15:58:12.174583.parquet' - '**/details_harness|hendrycksTest-world_religions|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_abstract_algebra_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-abstract_algebra|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-abstract_algebra|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_anatomy_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-anatomy|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-anatomy|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_astronomy_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-astronomy|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-astronomy|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_business_ethics_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-business_ethics|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-business_ethics|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_clinical_knowledge_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_college_biology_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-college_biology|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-college_biology|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_college_chemistry_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-college_chemistry|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-college_chemistry|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_college_computer_science_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-college_computer_science|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-college_computer_science|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_college_mathematics_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-college_mathematics|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-college_mathematics|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_college_medicine_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-college_medicine|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-college_medicine|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_college_physics_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-college_physics|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-college_physics|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_computer_security_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-computer_security|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-computer_security|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_conceptual_physics_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-conceptual_physics|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-conceptual_physics|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_econometrics_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-econometrics|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-econometrics|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_electrical_engineering_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-electrical_engineering|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-electrical_engineering|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_elementary_mathematics_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_formal_logic_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-formal_logic|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-formal_logic|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_global_facts_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-global_facts|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-global_facts|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_high_school_biology_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-high_school_biology|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_biology|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_high_school_chemistry_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_high_school_computer_science_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_high_school_european_history_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-high_school_european_history|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_european_history|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_high_school_geography_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-high_school_geography|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_geography|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_high_school_government_and_politics_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_high_school_macroeconomics_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_high_school_mathematics_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_high_school_microeconomics_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_high_school_physics_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-high_school_physics|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_physics|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_high_school_psychology_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-high_school_psychology|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_psychology|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_high_school_statistics_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-high_school_statistics|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_statistics|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_high_school_us_history_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-high_school_us_history|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_us_history|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_high_school_world_history_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-high_school_world_history|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-high_school_world_history|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_human_aging_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-human_aging|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-human_aging|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_human_sexuality_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-human_sexuality|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-human_sexuality|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_international_law_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-international_law|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-international_law|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_jurisprudence_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-jurisprudence|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-jurisprudence|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_logical_fallacies_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-logical_fallacies|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-logical_fallacies|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_machine_learning_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-machine_learning|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-machine_learning|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_management_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-management|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-management|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_marketing_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-marketing|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-marketing|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_medical_genetics_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-medical_genetics|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-medical_genetics|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_miscellaneous_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-miscellaneous|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-miscellaneous|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_moral_disputes_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-moral_disputes|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-moral_disputes|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_moral_scenarios_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-moral_scenarios|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-moral_scenarios|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_nutrition_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-nutrition|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-nutrition|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_philosophy_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-philosophy|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-philosophy|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_prehistory_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-prehistory|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-prehistory|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_professional_accounting_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-professional_accounting|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-professional_accounting|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_professional_law_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-professional_law|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-professional_law|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_professional_medicine_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-professional_medicine|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-professional_medicine|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_professional_psychology_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-professional_psychology|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-professional_psychology|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_public_relations_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-public_relations|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-public_relations|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_security_studies_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-security_studies|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-security_studies|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_sociology_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-sociology|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-sociology|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_us_foreign_policy_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_virology_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-virology|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-virology|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_hendrycksTest_world_religions_5 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|hendrycksTest-world_religions|5_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|hendrycksTest-world_religions|5_2023-07-19T15:58:12.174583.parquet' - config_name: harness_truthfulqa_mc_0 data_files: - split: 2023_07_19T15_58_12.174583 path: - '**/details_harness|truthfulqa:mc|0_2023-07-19T15:58:12.174583.parquet' - split: latest path: - '**/details_harness|truthfulqa:mc|0_2023-07-19T15:58:12.174583.parquet' - config_name: harness_winogrande_5 data_files: - split: 2023_09_18T03_05_58.053951 path: - '**/details_harness|winogrande|5_2023-09-18T03-05-58.053951.parquet' - split: latest path: - '**/details_harness|winogrande|5_2023-09-18T03-05-58.053951.parquet' - config_name: results data_files: - split: 2023_07_19T15_58_12.174583 path: - results_2023-07-19T15:58:12.174583.parquet - split: 2023_09_18T03_05_58.053951 path: - results_2023-09-18T03-05-58.053951.parquet - split: latest path: - results_2023-09-18T03-05-58.053951.parquet --- # Dataset Card for Evaluation run of Corianas/Quokka_2.7b ## Dataset Description - **Homepage:** - **Repository:** https://huggingface.co/Corianas/Quokka_2.7b - **Paper:** - **Leaderboard:** https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard - **Point of Contact:** clementine@hf.co ### Dataset Summary Dataset automatically created during the evaluation run of model [Corianas/Quokka_2.7b](https://huggingface.co/Corianas/Quokka_2.7b) on the [Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard). The dataset is composed of 64 configuration, each one coresponding to one of the evaluated task. The dataset has been created from 2 run(s). Each run can be found as a specific split in each configuration, the split being named using the timestamp of the run.The "train" split is always pointing to the latest results. An additional configuration "results" store all the aggregated results of the run (and is used to compute and display the agregated metrics on the [Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard)). To load the details from a run, you can for instance do the following: ```python from datasets import load_dataset data = load_dataset("open-llm-leaderboard/details_Corianas__Quokka_2.7b", "harness_winogrande_5", split="train") ``` ## Latest results These are the [latest results from run 2023-09-18T03:05:58.053951](https://huggingface.co/datasets/open-llm-leaderboard/details_Corianas__Quokka_2.7b/blob/main/results_2023-09-18T03-05-58.053951.json)(note that their might be results for other tasks in the repos if successive evals didn't cover the same tasks. You find each in the results and the "latest" split for each eval): ```python { "all": { "em": 0.027055369127516778, "em_stderr": 0.0016615386418947858, "f1": 0.0843078859060403, "f1_stderr": 0.0021162612701253174, "acc": 0.27932236818091244, "acc_stderr": 0.007830181847252834 }, "harness|drop|3": { "em": 0.027055369127516778, "em_stderr": 0.0016615386418947858, "f1": 0.0843078859060403, "f1_stderr": 0.0021162612701253174 }, "harness|gsm8k|5": { "acc": 0.0037907505686125853, "acc_stderr": 0.0016927007401501802 }, "harness|winogrande|5": { "acc": 0.5548539857932123, "acc_stderr": 0.013967662954355487 } } ``` ### Supported Tasks and Leaderboards [More Information Needed] ### Languages [More Information Needed] ## Dataset Structure ### Data Instances [More Information Needed] ### Data Fields [More Information Needed] ### Data Splits [More Information Needed] ## Dataset Creation ### Curation Rationale [More Information Needed] ### Source Data #### Initial Data Collection and Normalization [More Information Needed] #### Who are the source language producers? [More Information Needed] ### Annotations #### Annotation process [More Information Needed] #### Who are the annotators? [More Information Needed] ### Personal and Sensitive Information [More Information Needed] ## Considerations for Using the Data ### Social Impact of Dataset [More Information Needed] ### Discussion of Biases [More Information Needed] ### Other Known Limitations [More Information Needed] ## Additional Information ### Dataset Curators [More Information Needed] ### Licensing Information [More Information Needed] ### Citation Information [More Information Needed] ### Contributions [More Information Needed]
38,568
[ [ -0.0276336669921875, -0.0543212890625, 0.010894775390625, 0.0199127197265625, -0.01435089111328125, 0.01222991943359375, -0.0200653076171875, -0.01348114013671875, 0.0357666015625, 0.03131103515625, -0.056121826171875, -0.0653076171875, -0.04425048828125, 0....