datasetId
stringlengths 2
117
| author
stringlengths 2
42
⌀ | last_modified
timestamp[us, tz=UTC] | downloads
int64 0
9.36M
| likes
int64 0
3.89k
| tags
list | task_categories
list | createdAt
timestamp[us, tz=UTC] | card
stringlengths 19
1.01M
| embedding
list |
---|---|---|---|---|---|---|---|---|---|
huggingartists/the-gazette | huggingartists | 2022-10-25T09:47:15Z | 262 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/9793a6d598f68414ca37eb1135e6b0c1.686x686x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6479215025901794,
-0.5560068488121033,
0.10612708330154419,
0.2765202522277832,
-0.2684946656227112,
-0.013533110730350018,
-0.32905107736587524,
-0.4551364779472351,
0.9113455414772034,
0.3260601758956909,
-0.884964644908905,
-0.8131563067436218,
-0.6006086468696594,
0.15599656105041504,
-0.10556918382644653,
1.2433042526245117,
-0.18531815707683563,
-0.40754783153533936,
-0.3153926432132721,
-0.1875891089439392,
-0.267535924911499,
-0.3176589608192444,
-0.3048817217350006,
-0.2970432639122009,
0.35887134075164795,
0.48376622796058655,
0.7152919173240662,
0.883094847202301,
0.49188733100891113,
0.34505248069763184,
-0.09204253554344177,
0.014407142996788025,
-0.3431382179260254,
-0.16023750603199005,
0.1769067347049713,
-0.25301679968833923,
-0.6425254344940186,
0.2710571885108948,
0.5332070589065552,
0.39160600304603577,
-0.08589626103639603,
0.4470760226249695,
0.06181950494647026,
0.8541096448898315,
-0.30787503719329834,
0.46626734733581543,
-0.25220587849617004,
-0.21528185904026031,
-0.3126429617404938,
0.04739215224981308,
0.18411491811275482,
-0.6190913915634155,
-0.040888383984565735,
-0.7287616729736328,
0.05912081524729729,
-0.010791849344968796,
1.0493690967559814,
0.02852419577538967,
0.06265155971050262,
-0.21218720078468323,
-0.1287250518798828,
0.49795034527778625,
-0.5829403400421143,
-0.03080625645816326,
0.6067350506782532,
0.11734243482351303,
0.033800091594457626,
-0.6236368417739868,
-0.6119699478149414,
0.09985986351966858,
-0.18753036856651306,
0.30296841263771057,
-0.20014436542987823,
-0.34448859095573425,
0.4754764437675476,
0.5607249736785889,
-0.5204228758811951,
-0.2680974006652832,
-0.5233338475227356,
-0.1334896683692932,
1.1799730062484741,
0.12602080404758453,
0.39073824882507324,
-0.5314602851867676,
-0.19945263862609863,
-0.3769003748893738,
-0.2227240949869156,
0.3312584161758423,
0.5908221006393433,
0.46513038873672485,
-1.0155805349349976,
0.6515066027641296,
-0.1964264065027237,
0.5913387537002563,
0.12949992716312408,
-0.006406101398169994,
0.7864189743995667,
-0.38548120856285095,
-0.1186319962143898,
-0.1020672619342804,
1.0702959299087524,
0.6791479587554932,
0.20685240626335144,
0.0954783707857132,
-0.08076757192611694,
0.0947977676987648,
-0.12047657370567322,
-0.7694804072380066,
-0.41878750920295715,
0.6270128488540649,
-0.5661189556121826,
-0.6159592866897583,
0.14372017979621887,
-0.9556471705436707,
-0.2036460041999817,
-0.301036536693573,
0.2416960895061493,
-0.3750014305114746,
-0.5301578044891357,
0.16666223108768463,
-0.30391374230384827,
0.09936320781707764,
0.058808524161577225,
-0.5867875218391418,
0.1857687532901764,
0.6041960716247559,
0.7571393251419067,
0.22843261063098907,
-0.2790273427963257,
-0.261080265045166,
-0.22659286856651306,
-0.1340746283531189,
0.7178530097007751,
-0.2858469486236572,
-0.3228621184825897,
-0.12313272804021835,
0.3379769027233124,
-0.086813785135746,
-0.23863130807876587,
0.9262543320655823,
0.012934938073158264,
0.1936844140291214,
-0.5876920223236084,
-0.4190547466278076,
0.02076786570250988,
0.3296010494232178,
-0.778380811214447,
1.0698298215866089,
0.35088789463043213,
-1.027206540107727,
0.15939229726791382,
-0.7214372158050537,
-0.3443136215209961,
-0.02972768247127533,
0.11739140748977661,
-0.7887527346611023,
-0.15029212832450867,
0.2375793755054474,
0.6988127827644348,
-0.2976103723049164,
-0.009268621914088726,
-0.5699375867843628,
-0.10400712490081787,
0.3621950149536133,
0.20138026773929596,
1.2027599811553955,
0.0849754586815834,
-0.08681698143482208,
0.050695497542619705,
-0.9289764165878296,
0.09844734519720078,
0.45414820313453674,
-0.19272883236408234,
-0.14459148049354553,
-0.2629614472389221,
0.4322134852409363,
0.2966199219226837,
0.10492286831140518,
-0.6213499307632446,
0.45206964015960693,
-0.19549007713794708,
0.4342157542705536,
0.7371464967727661,
0.019661253318190575,
0.3169522285461426,
-0.6740870475769043,
0.4046422243118286,
0.06914917379617691,
0.3670457899570465,
-0.017038509249687195,
-0.5827998518943787,
-0.4381234645843506,
-0.26667752861976624,
0.33010920882225037,
0.4568248391151428,
-0.7093520164489746,
0.982408344745636,
-0.3390945494174957,
-0.8354347348213196,
-0.5887084007263184,
0.09351377934217453,
0.18222469091415405,
0.5389792323112488,
0.36665022373199463,
-0.4688035547733307,
-0.5953790545463562,
-0.6336283683776855,
0.008085313253104687,
-0.24584628641605377,
0.21119458973407745,
0.38884979486465454,
0.7585694193840027,
-0.23969249427318573,
0.8462976217269897,
-0.6885524988174438,
-0.27961158752441406,
-0.2528171241283417,
-0.3114585280418396,
0.396640807390213,
0.728468120098114,
0.650885283946991,
-0.8841947317123413,
-0.47873204946517944,
-0.300152063369751,
-0.6772502064704895,
-0.11722898483276367,
-0.04739421233534813,
-0.264158695936203,
0.05299062281847,
0.11872921139001846,
-0.7481756806373596,
0.5757192969322205,
0.5156843066215515,
-0.7062079906463623,
0.582236647605896,
0.09155546128749847,
-0.0055064549669623375,
-1.2543559074401855,
0.30552348494529724,
0.308551162481308,
-0.015738150104880333,
-0.5796487927436829,
-0.22547806799411774,
-0.044390179216861725,
-0.02991114743053913,
-0.10414572805166245,
0.6167880892753601,
-0.37045392394065857,
0.294988214969635,
0.16046957671642303,
0.10739926248788834,
0.12443443387746811,
0.40937507152557373,
-0.05546886846423149,
0.26188331842422485,
0.9911152124404907,
-0.37608909606933594,
0.6603396534919739,
0.6124167442321777,
-0.2108583003282547,
0.7962059378623962,
-0.7530109286308289,
0.009349377825856209,
-0.2673136293888092,
0.40927690267562866,
-0.8407707810401917,
-0.5441184639930725,
0.8363348245620728,
-0.6878901124000549,
0.41257432103157043,
-0.21289150416851044,
-0.5547458529472351,
-0.821628749370575,
-0.6774616241455078,
0.13450008630752563,
0.5212531089782715,
-0.3487612009048462,
0.4148343801498413,
0.5913106799125671,
0.08113593608140945,
-0.37673571705818176,
-0.8088277578353882,
-0.08766236901283264,
-0.3208657205104828,
-0.7952193021774292,
0.3663451373577118,
-0.2933676838874817,
-0.09575024992227554,
0.19507597386837006,
0.10293138772249222,
0.07380207628011703,
-0.017813468351960182,
0.3610447943210602,
0.3215899169445038,
0.1137339249253273,
0.01116079743951559,
-0.11010323464870453,
-0.2230294644832611,
0.1287582516670227,
-0.2132478505373001,
0.25513097643852234,
-0.2712787985801697,
-0.13659407198429108,
-0.6429583430290222,
0.18658162653446198,
0.40731292963027954,
-0.27389925718307495,
0.6841842532157898,
0.7668001651763916,
-0.22863349318504333,
0.002647386398166418,
-0.5098639130592346,
-0.14182603359222412,
-0.40558621287345886,
0.020464535802602768,
-0.1903616189956665,
-0.591960608959198,
0.8933506608009338,
0.22307248413562775,
0.05341242626309395,
0.6912590265274048,
0.47890591621398926,
-0.07894779741764069,
0.6000124216079712,
0.359115332365036,
-0.30803436040878296,
0.5109318494796753,
-0.6489769220352173,
-0.22133545577526093,
-0.8352798819541931,
-0.4274347424507141,
-0.5029810070991516,
-0.502590000629425,
-0.8584107756614685,
-0.44154584407806396,
0.19590799510478973,
0.10500792413949966,
-0.1731637865304947,
0.47491583228111267,
-0.9963731169700623,
0.24615825712680817,
0.32649466395378113,
0.3180898427963257,
-0.07523294538259506,
0.10014320909976959,
0.13671216368675232,
0.15469641983509064,
-0.5955702662467957,
-0.2298218309879303,
1.156541109085083,
0.49248725175857544,
0.5907268524169922,
-0.09159693866968155,
0.8685675859451294,
0.0525180846452713,
0.23720405995845795,
-0.5279030799865723,
0.4727937877178192,
-0.005256798584014177,
-0.498011976480484,
-0.15030838549137115,
-0.5051965713500977,
-0.9147759079933167,
-0.15793927013874054,
-0.4298485219478607,
-0.6887145638465881,
0.5168669819831848,
0.08657263219356537,
-0.19899490475654602,
0.39264434576034546,
-0.6017424464225769,
0.8179900050163269,
-0.058992765843868256,
-0.434083491563797,
0.29062730073928833,
-1.0001450777053833,
0.21864396333694458,
0.18916745483875275,
0.3112868368625641,
-0.4074585735797882,
-0.012784226797521114,
0.9628631472587585,
-0.7977843880653381,
0.927323043346405,
-0.3231140971183777,
0.11589566618204117,
0.5938408374786377,
-0.3333478271961212,
0.47028928995132446,
0.09562695026397705,
-0.28292882442474365,
0.35676056146621704,
-0.005578514188528061,
-0.44798770546913147,
-0.4043461084365845,
0.6738157272338867,
-0.7189912796020508,
0.05527428910136223,
-0.403099924325943,
-0.4645569324493408,
0.06793726980686188,
0.19580033421516418,
0.3009403347969055,
0.46030330657958984,
0.004306721035391092,
0.08543910086154938,
0.43551304936408997,
-0.0853177085518837,
0.3163595199584961,
-0.005876262206584215,
-0.0984194427728653,
-0.7580516338348389,
0.8876163959503174,
0.18911178410053253,
0.034606773406267166,
-0.02228647470474243,
0.4234450161457062,
-0.40814533829689026,
-0.09175906330347061,
-0.5917778015136719,
0.46293359994888306,
-0.40881145000457764,
-0.4022364616394043,
-0.512969434261322,
-0.16671991348266602,
-0.6571300625801086,
-0.17410895228385925,
-0.2341385930776596,
-0.5433906316757202,
-0.34823405742645264,
-0.15835238993167877,
1.0440351963043213,
0.472212553024292,
-0.6777868270874023,
0.10891038179397583,
-0.5343058705329895,
0.31975626945495605,
-0.08319276571273804,
0.6436100006103516,
-0.11713911592960358,
-0.3057105541229248,
-0.22842273116111755,
0.07927578687667847,
-0.2109699547290802,
-0.7167823314666748,
0.27530938386917114,
-0.06470786035060883,
0.32368677854537964,
0.07634065300226212,
0.18419195711612701,
0.6260826587677002,
-0.05459071695804596,
0.66083824634552,
0.28670835494995117,
-0.7978909015655518,
0.6507895588874817,
-0.5336396098136902,
0.18477463722229004,
0.7155141830444336,
0.36006781458854675,
-0.584416389465332,
-0.16124962270259857,
-0.9955288171768188,
-0.8443024158477783,
0.76099693775177,
0.4252554774284363,
0.09743836522102356,
0.1680760532617569,
0.5512050986289978,
-0.26289883255958557,
0.2939831018447876,
-0.6175719499588013,
-0.8538838028907776,
-0.4169273376464844,
-0.36013263463974,
-0.046581070870161057,
-0.10864865779876709,
-0.2687719762325287,
-0.6578454971313477,
0.7789579629898071,
-0.11948850750923157,
0.34428396821022034,
0.46848157048225403,
0.4086773991584778,
-0.22888796031475067,
0.010031715966761112,
0.27311843633651733,
0.4172195792198181,
-0.20926649868488312,
-0.2690661549568176,
-0.18485170602798462,
-0.6329289078712463,
-0.10554241389036179,
0.5191176533699036,
-0.34757447242736816,
-0.031209100037813187,
0.34477171301841736,
0.8715348243713379,
0.0014091797638684511,
-0.2183045893907547,
0.6455556154251099,
-0.10082204639911652,
-0.40236303210258484,
-0.41268008947372437,
-0.02876368910074234,
0.15564440190792084,
0.2046145498752594,
0.08059751242399216,
0.12783227860927582,
-0.1163196712732315,
-0.41863250732421875,
0.41845381259918213,
0.2665415108203888,
-0.37579652667045593,
-0.43700236082077026,
0.576474666595459,
0.05182803049683571,
-0.1401875913143158,
0.4803334176540375,
-0.19421185553073883,
-0.609856903553009,
0.7869393825531006,
0.11905093491077423,
0.8126733303070068,
-0.1192377433180809,
0.32234370708465576,
0.722484827041626,
0.2648138701915741,
-0.0809427946805954,
0.538131833076477,
-0.16772449016571045,
-0.6415494084358215,
-0.0756601095199585,
-0.5691587328910828,
-0.08536822348833084,
0.03975887969136238,
-0.8541945815086365,
0.4398668110370636,
-0.49307605624198914,
-0.25893741846084595,
-0.0033898947294801474,
0.3844802677631378,
-0.716540515422821,
0.2251155525445938,
-0.025427699089050293,
1.1271164417266846,
-1.0851765871047974,
0.4601019024848938,
0.7113900780677795,
-0.648587703704834,
-1.2236425876617432,
-0.08679328858852386,
0.19534923136234283,
-0.56804358959198,
0.1628272533416748,
0.1781299114227295,
0.5156821012496948,
-0.06938689947128296,
-0.8901796936988831,
-0.6301161050796509,
1.1163852214813232,
0.019620748236775398,
-0.2560001313686371,
0.3342532515525818,
0.06910450011491776,
0.585387647151947,
-0.3327751159667969,
0.3400602638721466,
0.653539776802063,
0.710252583026886,
0.25859740376472473,
-0.7307566404342651,
0.2985885739326477,
-0.600597083568573,
-0.2218421846628189,
0.07823926210403442,
-1.0237871408462524,
0.6551554203033447,
-0.1417449414730072,
-0.028106627985835075,
-0.008436688221991062,
0.6255612969398499,
0.3804185688495636,
0.4340135157108307,
0.4313957989215851,
0.8219555020332336,
0.7919632196426392,
-0.35180675983428955,
1.3039854764938354,
-0.2331334501504898,
0.6617531180381775,
0.7677671313285828,
0.0945054143667221,
0.5104749202728271,
0.22647802531719208,
-0.3237602412700653,
0.5865824222564697,
0.6323183178901672,
-0.4129563271999359,
0.24013036489486694,
0.33175188302993774,
-0.06301791220903397,
-0.06999031454324722,
-0.24686473608016968,
-0.5544921159744263,
0.3224799633026123,
0.2017945796251297,
-0.3117045760154724,
-0.03828064352273941,
-0.04422023892402649,
0.38446706533432007,
-0.01180526614189148,
-0.318704754114151,
0.664657711982727,
0.05765967816114426,
-0.3441917896270752,
0.5487646460533142,
-0.18337036669254303,
0.6862122416496277,
-0.5965166091918945,
0.16815324127674103,
-0.06038152426481247,
0.11080271750688553,
-0.6336796879768372,
-1.1274677515029907,
0.42029473185539246,
-0.08969735354185104,
-0.2823987603187561,
-0.32774803042411804,
0.7943956851959229,
-0.4757058620452881,
-0.8128000497817993,
0.2030240297317505,
0.20126716792583466,
0.2932601869106293,
0.12302624434232712,
-1.2577362060546875,
0.630851149559021,
0.14330437779426575,
-0.5126466751098633,
0.11409932374954224,
0.5232162475585938,
0.15805022418498993,
0.5072132349014282,
0.7065728306770325,
0.29859086871147156,
-0.26139596104621887,
0.050702087581157684,
1.1568533182144165,
-0.5299581289291382,
-0.5083180665969849,
-0.764329731464386,
0.8899113535881042,
-0.4026530981063843,
-0.40529918670654297,
0.734412670135498,
0.7724649906158447,
0.8479704856872559,
0.009589067660272121,
0.8528333306312561,
-0.6645078659057617,
0.6824440956115723,
-0.2108970284461975,
0.9547227621078491,
-0.7054653763771057,
-0.09237801283597946,
-0.7372691631317139,
-0.5412304401397705,
-0.4173007011413574,
0.6377086043357849,
-0.23579774796962738,
0.19440805912017822,
0.28371283411979675,
0.9169402122497559,
-0.0020236866548657417,
0.1243477538228035,
-0.26706552505493164,
0.2858363389968872,
0.24180817604064941,
0.528103768825531,
0.4157615005970001,
-0.917862057685852,
0.34648364782333374,
-0.7842867970466614,
-0.3109777867794037,
0.03190525248646736,
-0.8887004852294922,
-0.8834224343299866,
-0.9340794682502747,
-0.6641274094581604,
-0.8227277398109436,
-0.27810800075531006,
1.0383566617965698,
0.7053771018981934,
-0.6566458344459534,
-0.22019599378108978,
0.08338257670402527,
0.2659161388874054,
-0.06062227487564087,
-0.32387104630470276,
0.6752051711082458,
0.3615608513355255,
-0.5759225487709045,
-0.16291338205337524,
0.008550798520445824,
0.18768683075904846,
0.08030874282121658,
-0.04638979211449623,
-0.14596432447433472,
-0.26269495487213135,
0.3331512212753296,
0.5018563866615295,
-0.3165481388568878,
-0.08941172063350677,
-0.28360307216644287,
-0.015845101326704025,
0.15812906622886658,
0.49624764919281006,
-0.5644385814666748,
0.21617986261844635,
0.6460695266723633,
0.3257594108581543,
0.43888241052627563,
0.25813305377960205,
-0.03712184727191925,
-0.5367414355278015,
0.12383932620286942,
-0.023439984768629074,
0.2987135946750641,
0.4394131004810333,
-0.5270771980285645,
0.7387736439704895,
0.5977718830108643,
-0.5175812840461731,
-0.778794527053833,
-0.15983596444129944,
-1.3148902654647827,
0.08497937768697739,
1.0591953992843628,
0.03955034539103508,
-0.5998314619064331,
0.054726094007492065,
-0.213762104511261,
0.15674088895320892,
-0.6003606915473938,
0.46560901403427124,
0.5148202180862427,
-0.10598514974117279,
0.0813029482960701,
-0.3312060236930847,
0.6161248683929443,
-0.08484667539596558,
-0.9823322296142578,
0.17150558531284332,
0.44328635931015015,
0.4605520963668823,
0.31870272755622864,
0.8475898504257202,
-0.24696367979049683,
0.05476187914609909,
-0.04472722113132477,
0.2641620635986328,
-0.295451283454895,
0.03679952770471573,
-0.3825604319572449,
-0.1441488265991211,
-0.5133143067359924,
-0.20675133168697357
]
|
huggingartists/the-grateful-dead | huggingartists | 2022-10-25T09:47:22Z | 262 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/18f21c424e2f02f0c9a59c15bac56406.736x736x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6826525330543518,
-0.5022615790367126,
0.09842009097337723,
0.2231263667345047,
-0.35997843742370605,
-0.007708463817834854,
-0.3388676047325134,
-0.45978841185569763,
0.8655930757522583,
0.3355313241481781,
-0.8831485509872437,
-0.8594455718994141,
-0.5181488394737244,
0.18089993298053741,
-0.05759566277265549,
1.3105756044387817,
-0.08274871855974197,
-0.3173156678676605,
-0.3204292356967926,
-0.3165118396282196,
-0.2990052402019501,
-0.32393088936805725,
-0.3295280933380127,
-0.29981866478919983,
0.38001614809036255,
0.43791040778160095,
0.7878785133361816,
0.8676692843437195,
0.5423566699028015,
0.3125600814819336,
-0.0547172874212265,
-0.07677972316741943,
-0.41181662678718567,
-0.10732690989971161,
0.20824086666107178,
-0.2385336309671402,
-0.6445418000221252,
0.21721407771110535,
0.5404431223869324,
0.41676652431488037,
-0.06929977983236313,
0.4652218818664551,
-0.034951429814100266,
0.74242103099823,
-0.27115121483802795,
0.4231286644935608,
-0.23792721331119537,
-0.19227024912834167,
-0.2893952429294586,
-0.02029968984425068,
0.21356527507305145,
-0.7195674180984497,
-0.08446265757083893,
-0.7422585487365723,
0.07965521514415741,
-0.1200171634554863,
0.9602798223495483,
0.10019373893737793,
0.19250471889972687,
-0.12964236736297607,
-0.14980639517307281,
0.5427324175834656,
-0.7103365063667297,
0.008698541671037674,
0.598741352558136,
0.18032409250736237,
0.039954327046871185,
-0.5782864093780518,
-0.6029704809188843,
0.10591109097003937,
-0.07515576481819153,
0.35136812925338745,
-0.14679305255413055,
-0.28700003027915955,
0.5121510028839111,
0.59215247631073,
-0.5455846786499023,
-0.21135108172893524,
-0.5271089673042297,
-0.14765238761901855,
1.1609766483306885,
0.15238787233829498,
0.3948588967323303,
-0.460895836353302,
-0.1401844024658203,
-0.3798396587371826,
-0.22362717986106873,
0.2566758096218109,
0.5164134502410889,
0.49571844935417175,
-1.1258865594863892,
0.5795749425888062,
-0.19091016054153442,
0.6785376071929932,
-0.0033155789133161306,
-0.08797149360179901,
0.8226639628410339,
-0.4066026210784912,
-0.11306536942720413,
-0.16552734375,
1.0357615947723389,
0.7517856955528259,
0.23261457681655884,
0.027626672759652138,
-0.06992921978235245,
0.1554737091064453,
-0.21611109375953674,
-0.8069124221801758,
-0.39119797945022583,
0.6725525856018066,
-0.576966404914856,
-0.5456814169883728,
0.07600952684879303,
-0.9626320004463196,
-0.23854386806488037,
-0.3146488070487976,
0.22653450071811676,
-0.3868705630302429,
-0.5243761539459229,
0.19931693375110626,
-0.43069353699684143,
0.09047677367925644,
0.13395985960960388,
-0.516474187374115,
0.160170778632164,
0.5660339593887329,
0.8367617130279541,
0.23651424050331116,
-0.2630275785923004,
-0.36415407061576843,
-0.1548784077167511,
-0.026178449392318726,
0.7376683950424194,
-0.32166433334350586,
-0.3366093933582306,
-0.11121048033237457,
0.33756694197654724,
0.05373741313815117,
-0.22452187538146973,
0.9078869223594666,
-0.0022923368960618973,
0.2175874412059784,
-0.567807137966156,
-0.4100298583507538,
-0.0033778806682676077,
0.26572248339653015,
-0.7699071764945984,
0.9755938053131104,
0.36344537138938904,
-1.020189642906189,
0.1645950973033905,
-0.6838854551315308,
-0.34964150190353394,
0.060293663293123245,
-0.018350796774029732,
-0.7787129282951355,
-0.15279914438724518,
0.09868443012237549,
0.7190932631492615,
-0.3314339518547058,
-0.08710066974163055,
-0.6852847933769226,
-0.18432503938674927,
0.31138548254966736,
0.22184211015701294,
1.2667371034622192,
0.14248721301555634,
-0.07507205754518509,
0.016746938228607178,
-1.031610131263733,
0.1183617040514946,
0.4189753532409668,
-0.21493586897850037,
-0.1687217503786087,
-0.19814333319664001,
0.451241672039032,
0.25951701402664185,
0.012771151028573513,
-0.5016013979911804,
0.39914098381996155,
-0.241835355758667,
0.47106271982192993,
0.750928521156311,
0.05342652648687363,
0.3242378234863281,
-0.6501777172088623,
0.40593573451042175,
0.004179087933152914,
0.3760649859905243,
-0.02189681865274906,
-0.5414510369300842,
-0.38143253326416016,
-0.257659912109375,
0.2735353112220764,
0.4403267800807953,
-0.6228935122489929,
0.9748271703720093,
-0.3658987879753113,
-0.8039891123771667,
-0.5472020506858826,
0.0636226013302803,
0.08702357113361359,
0.522522509098053,
0.4209096133708954,
-0.5575602650642395,
-0.5465858578681946,
-0.5996125340461731,
0.15911275148391724,
-0.25904354453086853,
0.1251085251569748,
0.4325350224971771,
0.6862601637840271,
-0.25187382102012634,
0.8423413634300232,
-0.6719371676445007,
-0.26119107007980347,
-0.18788450956344604,
-0.2941915988922119,
0.439287930727005,
0.7809568643569946,
0.7017379403114319,
-0.8154526352882385,
-0.418937623500824,
-0.27921468019485474,
-0.7046589851379395,
-0.12311898171901703,
-0.10362211614847183,
-0.21704572439193726,
-0.07013524323701859,
0.025653349235653877,
-0.7338879704475403,
0.49445825815200806,
0.4291881322860718,
-0.594295084476471,
0.5535004138946533,
0.10669266432523727,
0.004432003479450941,
-1.2627981901168823,
0.34098511934280396,
0.23243436217308044,
0.014473185874521732,
-0.6039558053016663,
-0.228598490357399,
-0.039317596703767776,
-0.006336195394396782,
-0.11302002519369125,
0.5610694885253906,
-0.4218437969684601,
0.25652962923049927,
0.13391177356243134,
0.10509233176708221,
0.06675566732883453,
0.3847828209400177,
-0.07053257524967194,
0.2895283102989197,
1.021561622619629,
-0.44065019488334656,
0.6680982112884521,
0.5619450807571411,
-0.14620783925056458,
0.8058958649635315,
-0.7870727777481079,
0.005621881689876318,
-0.30922627449035645,
0.4493314027786255,
-0.8159530758857727,
-0.5219364762306213,
0.8030430674552917,
-0.7288962602615356,
0.3440873920917511,
-0.27836528420448303,
-0.5533199906349182,
-0.7618789076805115,
-0.6854320764541626,
0.18814344704151154,
0.578069269657135,
-0.19543857872486115,
0.4096847474575043,
0.6008680462837219,
0.1099473387002945,
-0.34495553374290466,
-0.8095367550849915,
-0.11197105795145035,
-0.3920365273952484,
-0.7681035399436951,
0.3575785160064697,
-0.3848079442977905,
-0.13643674552440643,
0.08865312486886978,
0.1242438331246376,
0.10012668371200562,
0.027059849351644516,
0.345699280500412,
0.31922557950019836,
0.04935675859451294,
0.03948782756924629,
-0.12629377841949463,
-0.2513439655303955,
0.09573817998170853,
-0.21467851102352142,
0.27949026226997375,
-0.19362322986125946,
-0.16119417548179626,
-0.6398463845252991,
0.17281509935855865,
0.49510377645492554,
-0.28529590368270874,
0.604875922203064,
0.749118983745575,
-0.2691330313682556,
0.022595806047320366,
-0.5413925647735596,
-0.16433310508728027,
-0.3850359320640564,
-0.0007372910622507334,
-0.13150441646575928,
-0.5696883201599121,
0.9902963042259216,
0.2242574840784073,
0.15412990748882294,
0.623502254486084,
0.49056315422058105,
0.00661430461332202,
0.6214595437049866,
0.3329189419746399,
-0.33695441484451294,
0.4986804127693176,
-0.6562917828559875,
-0.31110525131225586,
-0.8023132085800171,
-0.29389655590057373,
-0.5528096556663513,
-0.4357760548591614,
-0.7924803495407104,
-0.4951450526714325,
0.19568105041980743,
0.15449456870555878,
-0.2295001596212387,
0.4052342176437378,
-0.9640707969665527,
0.25223278999328613,
0.2643844485282898,
0.292211651802063,
-0.07558539509773254,
0.11167033016681671,
0.11260468512773514,
0.22254565358161926,
-0.513386607170105,
-0.24478262662887573,
1.1108152866363525,
0.47768285870552063,
0.6090420484542847,
-0.056863151490688324,
0.7945134043693542,
0.07191745191812515,
0.2699267268180847,
-0.5304244756698608,
0.4626443386077881,
0.010583529248833656,
-0.45696884393692017,
-0.13456988334655762,
-0.4993368089199066,
-0.8183502554893494,
-0.15758737921714783,
-0.3900134861469269,
-0.6507260799407959,
0.46858516335487366,
0.07301957905292511,
-0.3176451623439789,
0.32746514678001404,
-0.6397013068199158,
0.7996739149093628,
-0.1040600836277008,
-0.4663996994495392,
0.2846495807170868,
-1.1073721647262573,
0.14526212215423584,
0.2193596214056015,
0.31743869185447693,
-0.4139024019241333,
-0.016723550856113434,
0.9826596975326538,
-0.7577751278877258,
0.946471631526947,
-0.3609517216682434,
0.14300425350666046,
0.5456770658493042,
-0.35416242480278015,
0.5367612242698669,
0.2105807214975357,
-0.3567104637622833,
0.41551923751831055,
-0.013284106738865376,
-0.4416242241859436,
-0.40351203083992004,
0.6452071666717529,
-0.7354663610458374,
0.029525134712457657,
-0.37383750081062317,
-0.4112786054611206,
0.04563065245747566,
0.2390369027853012,
0.27747830748558044,
0.40653347969055176,
0.020236730575561523,
0.08796974271535873,
0.49381500482559204,
-0.15030395984649658,
0.2894735336303711,
0.10411900281906128,
0.010951214469969273,
-0.8636525869369507,
0.8510180115699768,
0.16292116045951843,
0.1024208813905716,
-0.0026386247482150793,
0.383230596780777,
-0.3573336601257324,
-0.18740801513195038,
-0.6780601739883423,
0.48910534381866455,
-0.43681415915489197,
-0.43892979621887207,
-0.5518783926963806,
-0.1362699568271637,
-0.6695407629013062,
-0.1814005821943283,
-0.20901775360107422,
-0.551211416721344,
-0.4496123790740967,
-0.2132490575313568,
1.1149377822875977,
0.3625184893608093,
-0.7132042050361633,
0.0935807153582573,
-0.554379403591156,
0.3130247890949249,
-0.1272316426038742,
0.6767833232879639,
-0.050017520785331726,
-0.26750943064689636,
-0.18752048909664154,
0.13321653008460999,
-0.1682194322347641,
-0.7736902832984924,
0.22157828509807587,
-0.02968793921172619,
0.39641138911247253,
0.19545918703079224,
0.1840936690568924,
0.7180131673812866,
-0.07857918739318848,
0.7027317881584167,
0.38015812635421753,
-0.691926896572113,
0.6654068231582642,
-0.5282953977584839,
0.18604964017868042,
0.7705400586128235,
0.3382857143878937,
-0.6374155879020691,
-0.2177569568157196,
-0.934889018535614,
-0.8309705853462219,
0.7782966494560242,
0.3952605426311493,
0.12129820883274078,
0.1842729151248932,
0.5033756494522095,
-0.11092051863670349,
0.24220909178256989,
-0.6653611063957214,
-0.9249616265296936,
-0.4738599359989166,
-0.32874882221221924,
-0.10735106468200684,
-0.050311390310525894,
-0.28114354610443115,
-0.6821323037147522,
0.6720255613327026,
-0.11296321451663971,
0.34770968556404114,
0.40960535407066345,
0.43612197041511536,
-0.27194538712501526,
0.03275701031088829,
0.3501298427581787,
0.4143593907356262,
-0.29732486605644226,
-0.2416394203901291,
-0.151078000664711,
-0.6100038886070251,
-0.14225554466247559,
0.5758995413780212,
-0.35968223214149475,
-0.020687848329544067,
0.3402978777885437,
0.8284515738487244,
-0.05078413709998131,
-0.2735307514667511,
0.5753096342086792,
-0.132035493850708,
-0.27647799253463745,
-0.4756614863872528,
0.025952691212296486,
0.14174985885620117,
0.13658319413661957,
0.13598883152008057,
0.11231376975774765,
-0.11090367287397385,
-0.36509233713150024,
0.4292522072792053,
0.31737878918647766,
-0.3747440278530121,
-0.4811495840549469,
0.6332827210426331,
0.06723365932703018,
-0.14575573801994324,
0.44200190901756287,
-0.11803149431943893,
-0.5872038006782532,
0.7253314256668091,
0.1328454613685608,
0.8318955898284912,
-0.09939737617969513,
0.32200729846954346,
0.7110750079154968,
0.24375562369823456,
-0.016666293144226074,
0.4705751836299896,
-0.29287561774253845,
-0.579283595085144,
-0.032861944288015366,
-0.5990508198738098,
-0.05652739480137825,
0.12350985407829285,
-0.7868061065673828,
0.47684377431869507,
-0.49534937739372253,
-0.2538872957229614,
0.026189208030700684,
0.34690237045288086,
-0.7036400437355042,
0.21317735314369202,
-0.09796842932701111,
1.079161286354065,
-1.0946992635726929,
0.4068930745124817,
0.714667558670044,
-0.7928978800773621,
-1.124868631362915,
-0.1197604313492775,
0.12815211713314056,
-0.5670099258422852,
0.13713273406028748,
0.12202929705381393,
0.5578781366348267,
-0.0032001659274101257,
-0.8659660220146179,
-0.6563019752502441,
1.1329166889190674,
0.05501565709710121,
-0.16560028493404388,
0.3549705147743225,
0.09353416413068771,
0.6318329572677612,
-0.28856757283210754,
0.46515321731567383,
0.5180428624153137,
0.6960384249687195,
0.27371707558631897,
-0.6781547665596008,
0.31650426983833313,
-0.5763993859291077,
-0.2550325095653534,
0.06773810088634491,
-1.090650200843811,
0.5936011672019958,
-0.14777837693691254,
-0.11574456840753555,
-0.017544902861118317,
0.6058436036109924,
0.4475593566894531,
0.4617495536804199,
0.4493827819824219,
0.8233104348182678,
0.7533829808235168,
-0.2867462635040283,
1.2113147974014282,
-0.2166537493467331,
0.6052162647247314,
0.7248501181602478,
0.034872204065322876,
0.4665699303150177,
0.23252707719802856,
-0.3589935004711151,
0.5074427127838135,
0.7034364938735962,
-0.44807666540145874,
0.2996074855327606,
0.40884557366371155,
-0.12496932595968246,
-0.10986923426389694,
-0.22268971800804138,
-0.7487708926200867,
0.2068607062101364,
0.20872730016708374,
-0.34476423263549805,
-0.09981431812047958,
-0.05141614004969597,
0.3177107572555542,
-0.11247413605451584,
-0.23929128050804138,
0.6479038000106812,
0.0320860929787159,
-0.31951865553855896,
0.650383710861206,
-0.1802968978881836,
0.6694537997245789,
-0.597143828868866,
0.057333026081323624,
-0.14850766956806183,
0.07732713967561722,
-0.6365434527397156,
-1.009619116783142,
0.34557005763053894,
-0.08658955246210098,
-0.27933844923973083,
-0.24753491580486298,
0.716011643409729,
-0.3475883901119232,
-0.7751908898353577,
0.2056335210800171,
0.17955899238586426,
0.3925829231739044,
0.2275598645210266,
-1.2648258209228516,
0.650641679763794,
0.17709749937057495,
-0.40426182746887207,
0.134363055229187,
0.5265050530433655,
0.16000896692276,
0.4904685616493225,
0.7358797788619995,
0.3493090271949768,
-0.231035053730011,
0.16303224861621857,
1.1703219413757324,
-0.5766021609306335,
-0.5002076029777527,
-0.7180966138839722,
0.9124254584312439,
-0.38757357001304626,
-0.4060644507408142,
0.7124618291854858,
0.8299075961112976,
0.8796682357788086,
-0.03209451213479042,
0.8801583647727966,
-0.6379227638244629,
0.6908201575279236,
-0.18170979619026184,
0.9701264500617981,
-0.7432675957679749,
-0.0004383916675578803,
-0.7464167475700378,
-0.4874810576438904,
-0.4927891492843628,
0.6822784543037415,
-0.15854604542255402,
0.2098710983991623,
0.24710538983345032,
0.9094585180282593,
-0.024850983172655106,
0.13308541476726532,
-0.25352925062179565,
0.2654753029346466,
0.2834160625934601,
0.568895161151886,
0.41623011231422424,
-0.9187918901443481,
0.34748104214668274,
-0.7314066290855408,
-0.39848610758781433,
0.055715132504701614,
-0.8516055941581726,
-0.8548717498779297,
-0.8873804807662964,
-0.6910437345504761,
-0.8009095191955566,
-0.25450828671455383,
1.0001380443572998,
0.6514073610305786,
-0.7291139960289001,
-0.24372786283493042,
0.0020194139797240496,
0.33592870831489563,
-0.10175745189189911,
-0.33890992403030396,
0.6434844732284546,
0.40935537219047546,
-0.5230582356452942,
-0.15683679282665253,
0.06389348953962326,
0.23987127840518951,
0.03995625674724579,
-0.09995266050100327,
-0.10872001945972443,
-0.35600048303604126,
0.31848710775375366,
0.5498412251472473,
-0.36127862334251404,
-0.1008690819144249,
-0.32766908407211304,
0.016668574884533882,
0.14709419012069702,
0.4902728796005249,
-0.579340398311615,
0.19023384153842926,
0.6962838172912598,
0.2939080595970154,
0.3414219617843628,
0.2857777178287506,
-0.004279176704585552,
-0.4701659381389618,
0.08927176892757416,
0.09560506045818329,
0.24786292016506195,
0.3822980523109436,
-0.49671047925949097,
0.7816024422645569,
0.638200044631958,
-0.5074980854988098,
-0.8944522738456726,
-0.17928139865398407,
-1.4000715017318726,
0.11192136257886887,
1.0811952352523804,
0.08587837219238281,
-0.47455814480781555,
-0.034978948533535004,
-0.15348099172115326,
0.19350212812423706,
-0.612931489944458,
0.47222721576690674,
0.48022928833961487,
-0.09815523773431778,
0.07940783351659775,
-0.3644624948501587,
0.6173575520515442,
-0.09477852284908295,
-0.9240681529045105,
0.22033827006816864,
0.5773452520370483,
0.44943463802337646,
0.3671340048313141,
0.8532750606536865,
-0.2756250500679016,
0.13041263818740845,
-0.08987253904342651,
0.2814880311489105,
-0.26246365904808044,
0.16483134031295776,
-0.3786456882953644,
-0.08965414017438889,
-0.49680206179618835,
-0.20423656702041626
]
|
huggingartists/the-king-and-the-jester | huggingartists | 2022-10-25T09:47:30Z | 262 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/eab8847b08e686561c3593f987917434.1000x1000x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6838229298591614,
-0.5420507192611694,
0.0828607976436615,
0.1684526652097702,
-0.23467473685741425,
0.018663696944713593,
-0.337793231010437,
-0.4725542366504669,
0.8904384970664978,
0.36164721846580505,
-0.8279211521148682,
-0.7875621318817139,
-0.5819190144538879,
0.1511537730693817,
-0.07196051627397537,
1.2475336790084839,
-0.2151469886302948,
-0.3398469388484955,
-0.3225916922092438,
-0.21760252118110657,
-0.29359427094459534,
-0.3244597315788269,
-0.24994809925556183,
-0.36215317249298096,
0.42240771651268005,
0.5186134576797485,
0.7997057437896729,
0.9474900960922241,
0.4848886728286743,
0.3475474417209625,
-0.13517822325229645,
-0.009918542578816414,
-0.39513686299324036,
-0.021784259006381035,
0.13383224606513977,
-0.23757542669773102,
-0.6144834160804749,
0.24116593599319458,
0.5289587378501892,
0.3604313135147095,
-0.0816253051161766,
0.4383040964603424,
0.07552938163280487,
0.9346657395362854,
-0.3478752374649048,
0.4977480471134186,
-0.21556438505649567,
-0.14708256721496582,
-0.26809951663017273,
0.020173197612166405,
0.1572670340538025,
-0.6547690033912659,
0.04598911479115486,
-0.7698700428009033,
0.003956065513193607,
0.01100193616002798,
1.03730309009552,
0.006332976743578911,
0.07112974673509598,
-0.22978104650974274,
-0.1733638197183609,
0.5245770812034607,
-0.5091462731361389,
-0.01396139245480299,
0.5412799715995789,
0.162022665143013,
-0.012942024506628513,
-0.6212896704673767,
-0.6487964391708374,
0.012572425417602062,
-0.20513278245925903,
0.33292409777641296,
-0.18907257914543152,
-0.29952165484428406,
0.4929588735103607,
0.5534616708755493,
-0.5514460206031799,
-0.29439669847488403,
-0.5298787355422974,
-0.11352423578500748,
1.138735294342041,
0.14852572977542877,
0.45442330837249756,
-0.5801131725311279,
-0.2301265448331833,
-0.5184608697891235,
-0.2502269744873047,
0.3856508433818817,
0.6229394674301147,
0.43203336000442505,
-1.0029664039611816,
0.6312230229377747,
-0.07207871228456497,
0.4594111442565918,
0.2244015485048294,
-0.022252893075346947,
0.7266916036605835,
-0.3688025176525116,
-0.0862618237733841,
-0.0704018846154213,
1.0328668355941772,
0.6669179201126099,
0.28410881757736206,
0.09532185643911362,
-0.028860779479146004,
0.14799505472183228,
-0.06867893785238266,
-0.8760325908660889,
-0.48728951811790466,
0.6029087901115417,
-0.6038583517074585,
-0.6018667221069336,
0.13202328979969025,
-0.999828040599823,
-0.2904733419418335,
-0.341706246137619,
0.3260045647621155,
-0.37848323583602905,
-0.579688549041748,
0.16348737478256226,
-0.34150901436805725,
0.08382029831409454,
0.07253335416316986,
-0.5817233324050903,
0.192520871758461,
0.5498940944671631,
0.6878761649131775,
0.12878437340259552,
-0.2501020133495331,
-0.27008673548698425,
-0.1469479501247406,
-0.16731992363929749,
0.6646913290023804,
-0.34296104311943054,
-0.37279441952705383,
-0.13487666845321655,
0.33837687969207764,
-0.11164403706789017,
-0.3234577775001526,
0.8368459939956665,
0.009179108776152134,
0.20321643352508545,
-0.5653855204582214,
-0.45584794878959656,
-0.03746859356760979,
0.29667651653289795,
-0.8216475248336792,
1.007764220237732,
0.34425947070121765,
-1.0462019443511963,
0.11863504350185394,
-0.7415842413902283,
-0.34259703755378723,
-0.0033979767467826605,
0.005126504227519035,
-0.7931637763977051,
-0.17935629189014435,
0.18469659984111786,
0.719336748123169,
-0.30045926570892334,
0.010558968409895897,
-0.6240637898445129,
-0.17141415178775787,
0.34260231256484985,
0.26950857043266296,
1.1488604545593262,
0.06910455226898193,
-0.14026132225990295,
0.059870053082704544,
-0.8765555024147034,
0.13977155089378357,
0.46454307436943054,
-0.18689969182014465,
-0.1331813782453537,
-0.16775096952915192,
0.41911327838897705,
0.2877406179904938,
0.07199312001466751,
-0.4914841949939728,
0.42305895686149597,
-0.1854744404554367,
0.3722812235355377,
0.7807038426399231,
0.01928684301674366,
0.3247879445552826,
-0.6877226233482361,
0.4678916335105896,
0.07786878943443298,
0.36100471019744873,
0.05794515460729599,
-0.5070116519927979,
-0.45369160175323486,
-0.23729771375656128,
0.3561553955078125,
0.4879573583602905,
-0.7348146438598633,
0.974117636680603,
-0.3516243100166321,
-0.8295301198959351,
-0.5809230804443359,
0.048801034688949585,
0.21120218932628632,
0.4605649411678314,
0.3900049030780792,
-0.4664247930049896,
-0.6119874715805054,
-0.7516828775405884,
0.05787007138133049,
-0.35648787021636963,
0.21684235334396362,
0.4365890920162201,
0.8168635964393616,
-0.18941755592823029,
0.7629444003105164,
-0.6011387705802917,
-0.2291719615459442,
-0.2907975912094116,
-0.33456870913505554,
0.3740207552909851,
0.7795206904411316,
0.6305190324783325,
-0.8555947542190552,
-0.5342049598693848,
-0.20098266005516052,
-0.6729686260223389,
-0.05624370649456978,
-0.030937854200601578,
-0.29691779613494873,
-0.0026748045347630978,
0.09884306788444519,
-0.6671056747436523,
0.5505108833312988,
0.4976574778556824,
-0.6485661864280701,
0.6434375047683716,
0.1474067121744156,
0.1400838941335678,
-1.3243952989578247,
0.34159719944000244,
0.22795206308364868,
0.019770946353673935,
-0.6300155520439148,
-0.20631247758865356,
-0.019346747547388077,
0.05681157484650612,
-0.06517646461725235,
0.5420177578926086,
-0.3354387879371643,
0.3379679024219513,
0.12511491775512695,
0.11126089841127396,
0.09838489443063736,
0.4415310025215149,
-0.07606750726699829,
0.3056653141975403,
0.994325578212738,
-0.3408786356449127,
0.61532062292099,
0.610474705696106,
-0.21909576654434204,
0.8819597363471985,
-0.7468110918998718,
0.00929490476846695,
-0.2760273814201355,
0.38609617948532104,
-0.8082854747772217,
-0.5577468276023865,
0.8089209198951721,
-0.7115071415901184,
0.446560263633728,
-0.3167245090007782,
-0.5738537907600403,
-0.8098154067993164,
-0.7530632615089417,
0.10165615379810333,
0.5956487059593201,
-0.36438947916030884,
0.46808764338493347,
0.6090990900993347,
0.08527246117591858,
-0.40112707018852234,
-0.7271950244903564,
-0.15998652577400208,
-0.39061787724494934,
-0.8279829025268555,
0.41789278388023376,
-0.3410770893096924,
-0.10824336856603622,
0.16689425706863403,
-0.004770735278725624,
0.14261022210121155,
-0.053578656166791916,
0.44093000888824463,
0.3370700478553772,
0.07912041246891022,
-0.05950299650430679,
-0.10145552456378937,
-0.2414708286523819,
0.1541149914264679,
-0.1495477259159088,
0.23074080049991608,
-0.24532830715179443,
-0.12353148311376572,
-0.674370527267456,
0.2216005176305771,
0.4739011824131012,
-0.16177023947238922,
0.6331350207328796,
0.7585002779960632,
-0.23599235713481903,
-0.025670267641544342,
-0.4919126629829407,
-0.16728655993938446,
-0.42116600275039673,
0.026657044887542725,
-0.22096024453639984,
-0.6779621243476868,
0.93017578125,
0.2339770495891571,
0.048990003764629364,
0.7047698497772217,
0.5097912549972534,
-0.07967248558998108,
0.737691342830658,
0.3555665910243988,
-0.27936869859695435,
0.5024294853210449,
-0.6386818885803223,
-0.23784928023815155,
-0.8289915323257446,
-0.4177437126636505,
-0.5430874824523926,
-0.5764831900596619,
-0.9361575841903687,
-0.4036865234375,
0.26946067810058594,
0.2172200232744217,
-0.23387347161769867,
0.5259285569190979,
-0.9768613576889038,
0.2881438136100769,
0.3368644714355469,
0.24995528161525726,
-0.127386212348938,
0.126816526055336,
0.04194355756044388,
0.1238614022731781,
-0.5129157900810242,
-0.25334012508392334,
1.0925545692443848,
0.44310465455055237,
0.5691484212875366,
-0.08426026254892349,
0.7941098213195801,
0.11002884805202484,
0.1666077971458435,
-0.47807496786117554,
0.5031022429466248,
0.043806228786706924,
-0.5183842182159424,
-0.09894204884767532,
-0.5166909694671631,
-0.9123080968856812,
-0.08600609004497528,
-0.38652104139328003,
-0.7434611320495605,
0.5155840516090393,
0.0990905910730362,
-0.18724864721298218,
0.4322868585586548,
-0.5986417531967163,
0.8755602240562439,
0.05465574190020561,
-0.37649962306022644,
0.19805486500263214,
-1.0696086883544922,
0.1847512274980545,
0.22078324854373932,
0.2234676033258438,
-0.38568544387817383,
0.03613843768835068,
0.9901513457298279,
-0.7394843697547913,
0.8610469698905945,
-0.3508559763431549,
0.17105625569820404,
0.5761941075325012,
-0.23181085288524628,
0.5797936320304871,
0.10610983520746231,
-0.2639622688293457,
0.23461009562015533,
0.09213383495807648,
-0.39224427938461304,
-0.42205071449279785,
0.6795029044151306,
-0.7693224549293518,
0.04700569063425064,
-0.39471280574798584,
-0.44035014510154724,
0.05948936566710472,
0.07077161967754364,
0.22836926579475403,
0.38734039664268494,
0.029800210148096085,
0.162092924118042,
0.47106122970581055,
-0.1219187006354332,
0.23550236225128174,
0.034649889916181564,
-0.10805416852235794,
-0.8504546284675598,
0.8886863589286804,
0.17781876027584076,
0.07763843983411789,
-0.03895223140716553,
0.4389442801475525,
-0.3545060157775879,
-0.1273670643568039,
-0.651961088180542,
0.39677372574806213,
-0.4281504154205322,
-0.3900447487831116,
-0.5454167723655701,
-0.21961170434951782,
-0.5754694938659668,
-0.20968343317508698,
-0.19980375468730927,
-0.5141683220863342,
-0.3081205189228058,
-0.14890719950199127,
1.0805073976516724,
0.49299705028533936,
-0.6962026953697205,
0.0863015428185463,
-0.48545119166374207,
0.33797112107276917,
-0.07569821923971176,
0.5840492844581604,
-0.03793361410498619,
-0.3458360731601715,
-0.23518703877925873,
0.018647177144885063,
-0.2250179648399353,
-0.783353328704834,
0.21272879838943481,
-0.1313432902097702,
0.3292703628540039,
0.09127646684646606,
0.17125900089740753,
0.7226589918136597,
-0.09642326831817627,
0.6494874954223633,
0.3175439238548279,
-0.7571507096290588,
0.6293420791625977,
-0.5097073316574097,
0.13676802814006805,
0.7813735604286194,
0.36318135261535645,
-0.6812465786933899,
-0.18698817491531372,
-0.9572961926460266,
-0.8613343238830566,
0.8035590052604675,
0.46104153990745544,
0.026339760050177574,
0.19051381945610046,
0.4863620102405548,
-0.1636529117822647,
0.26848527789115906,
-0.6403805613517761,
-0.9091180562973022,
-0.3453558087348938,
-0.3388843536376953,
0.057278092950582504,
-0.061341721564531326,
-0.19925719499588013,
-0.741065263748169,
0.8196766376495361,
-0.07336790859699249,
0.3165220022201538,
0.400463342666626,
0.3587459921836853,
-0.290449321269989,
0.03799952566623688,
0.23958660662174225,
0.38608577847480774,
-0.20884770154953003,
-0.25310349464416504,
-0.1603538691997528,
-0.6913517117500305,
-0.09280038625001907,
0.5223461389541626,
-0.3308923542499542,
-0.09278322011232376,
0.29093021154403687,
0.8310016393661499,
-0.06839242577552795,
-0.24198010563850403,
0.6243042349815369,
-0.056765761226415634,
-0.4085291922092438,
-0.43788042664527893,
0.03678775578737259,
0.1623518317937851,
0.29653745889663696,
0.05332551896572113,
0.09911901503801346,
-0.10245175659656525,
-0.3547992408275604,
0.443053662776947,
0.22747254371643066,
-0.41137513518333435,
-0.49086955189704895,
0.5786737203598022,
0.0026936123613268137,
-0.07093916833400726,
0.42581579089164734,
-0.20078177750110626,
-0.6418578028678894,
0.7893081903457642,
0.12653841078281403,
0.842551052570343,
-0.1384352445602417,
0.31609535217285156,
0.7347379922866821,
0.24112005531787872,
-0.04801521450281143,
0.5859346389770508,
-0.16015340387821198,
-0.5598316192626953,
-0.11774817109107971,
-0.5547488927841187,
-0.10672611743211746,
0.10497681796550751,
-0.8770097494125366,
0.4107595384120941,
-0.4936644732952118,
-0.2029491513967514,
0.02007429488003254,
0.4141550362110138,
-0.7104208469390869,
0.08577993512153625,
-0.04772019013762474,
1.0080808401107788,
-1.0192534923553467,
0.4587591290473938,
0.658782958984375,
-0.6266942620277405,
-1.2122503519058228,
-0.12766607105731964,
0.22105883061885834,
-0.5699203610420227,
0.12967489659786224,
0.23894111812114716,
0.515365719795227,
-0.07232800871133804,
-0.9162115454673767,
-0.636843204498291,
1.1235617399215698,
0.0025534643791615963,
-0.27025988698005676,
0.3706096112728119,
0.06472481042146683,
0.5721806883811951,
-0.3121688663959503,
0.3235803246498108,
0.6610888838768005,
0.7892357110977173,
0.2064909040927887,
-0.734229564666748,
0.3072156012058258,
-0.6430791020393372,
-0.21514424681663513,
0.1709851175546646,
-0.9121297001838684,
0.6156041026115417,
-0.10129528492689133,
-0.05990704521536827,
0.06342608481645584,
0.5993619561195374,
0.44659700989723206,
0.34555351734161377,
0.509323239326477,
0.7866244912147522,
0.7379806637763977,
-0.3197430968284607,
1.2230604887008667,
-0.23468762636184692,
0.5940808653831482,
0.7586241364479065,
-0.008825051598250866,
0.5081977844238281,
0.253068745136261,
-0.33714985847473145,
0.5952257513999939,
0.6426421403884888,
-0.4831094443798065,
0.25935301184654236,
0.4785918891429901,
-0.04957655444741249,
-0.12566865980625153,
-0.2750982344150543,
-0.6223806142807007,
0.21308393776416779,
0.20326444506645203,
-0.3010532259941101,
-0.00313586532138288,
-0.021249843761324883,
0.3965992033481598,
0.002790573053061962,
-0.2715524733066559,
0.6596753597259521,
0.010427659377455711,
-0.32041141390800476,
0.5341249704360962,
-0.2143622487783432,
0.6761831641197205,
-0.5818784236907959,
0.12880830466747284,
-0.02623048797249794,
0.11132566630840302,
-0.5269086956977844,
-1.0843275785446167,
0.3042678236961365,
-0.07657596468925476,
-0.3077305853366852,
-0.32386767864227295,
0.7518067359924316,
-0.44867759943008423,
-0.7354955673217773,
0.28500908613204956,
0.2533906400203705,
0.34443604946136475,
0.16353164613246918,
-1.2755998373031616,
0.5878636240959167,
0.13502196967601776,
-0.5455297231674194,
0.13040196895599365,
0.49941951036453247,
0.13951663672924042,
0.43483391404151917,
0.6735377311706543,
0.25953546166419983,
-0.2971210181713104,
0.10320503264665604,
1.1137136220932007,
-0.5701943635940552,
-0.4254629909992218,
-0.7755271196365356,
0.8902550935745239,
-0.380300909280777,
-0.39023542404174805,
0.6890775561332703,
0.7920005321502686,
0.8918495178222656,
0.01604308933019638,
0.8220680356025696,
-0.6825937032699585,
0.6712989211082458,
-0.16529318690299988,
0.9748603105545044,
-0.733874499797821,
-0.1493687927722931,
-0.7529301643371582,
-0.5161885023117065,
-0.3714824318885803,
0.6202349662780762,
-0.16766825318336487,
0.22249071300029755,
0.31731224060058594,
0.9315507411956787,
-0.00838056392967701,
0.16067373752593994,
-0.2321038693189621,
0.3043012022972107,
0.23657441139221191,
0.571963906288147,
0.4916165769100189,
-0.879047691822052,
0.405397891998291,
-0.7350475788116455,
-0.21717502176761627,
0.0030388268642127514,
-0.8174797892570496,
-0.9483616948127747,
-0.9377729892730713,
-0.6466239094734192,
-0.8576290011405945,
-0.22309543192386627,
1.1025574207305908,
0.6795825362205505,
-0.745808482170105,
-0.26452112197875977,
0.14851759374141693,
0.30026447772979736,
-0.09088535606861115,
-0.31512853503227234,
0.7327379584312439,
0.42044970393180847,
-0.5541278123855591,
-0.0933433547616005,
0.03702586144208908,
0.24936527013778687,
0.03307603672146797,
-0.12038881331682205,
-0.07749900221824646,
-0.26727306842803955,
0.3030315041542053,
0.42093709111213684,
-0.36688095331192017,
-0.181240975856781,
-0.2774864733219147,
-0.020725224167108536,
0.19712089002132416,
0.48352575302124023,
-0.5722751021385193,
0.19914104044437408,
0.7248178124427795,
0.2983047068119049,
0.43523937463760376,
0.20443546772003174,
-0.007862710393965244,
-0.45355916023254395,
-0.0008429493173025548,
0.003997941967099905,
0.2971797585487366,
0.3610290586948395,
-0.4293293058872223,
0.7666592001914978,
0.5646432638168335,
-0.5436328649520874,
-0.8525394201278687,
-0.1315041035413742,
-1.3118817806243896,
0.07719998061656952,
0.9945793747901917,
0.09954472631216049,
-0.5688877105712891,
0.04423027113080025,
-0.16657136380672455,
0.17075885832309723,
-0.5981168746948242,
0.4529017210006714,
0.543445885181427,
-0.06377675384283066,
0.1839803159236908,
-0.45698463916778564,
0.6502681970596313,
-0.05555107071995735,
-0.9569923281669617,
0.2083543837070465,
0.467765748500824,
0.4060114920139313,
0.356467604637146,
0.6982491612434387,
-0.2984047830104828,
0.13229337334632874,
-0.06986800581216812,
0.35298213362693787,
-0.2559037506580353,
-0.039364393800497055,
-0.33521896600723267,
-0.08428386598825455,
-0.546391487121582,
-0.18297651410102844
]
|
huggingartists/the-sugarcubes | huggingartists | 2022-10-25T09:47:46Z | 262 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/da10eeb7730741736a4f7ac4cc998c4e.1000x1000x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6140648126602173,
-0.5461985468864441,
0.08534080535173416,
0.24453704059123993,
-0.2475498914718628,
0.052253060042858124,
-0.34597334265708923,
-0.42206448316574097,
0.90635746717453,
0.33597254753112793,
-0.8590588569641113,
-0.8210468888282776,
-0.5959234237670898,
0.1685476154088974,
-0.09864601492881775,
1.296338438987732,
-0.1932770311832428,
-0.3314211368560791,
-0.39480313658714294,
-0.16049422323703766,
-0.33957839012145996,
-0.34377118945121765,
-0.3031400740146637,
-0.2822394073009491,
0.3112387955188751,
0.5481653213500977,
0.7289332151412964,
0.8882259726524353,
0.48897597193717957,
0.34947261214256287,
-0.16167470812797546,
-0.04190322384238243,
-0.3846633732318878,
-0.10304787009954453,
0.20437371730804443,
-0.35763439536094666,
-0.6616131663322449,
0.23627156019210815,
0.4567396342754364,
0.4254392683506012,
-0.06275353580713272,
0.4696575999259949,
0.07174462080001831,
0.7712392210960388,
-0.2947719395160675,
0.4898523986339569,
-0.2635800540447235,
-0.1540045440196991,
-0.28767871856689453,
0.07093191146850586,
0.16893260180950165,
-0.6249279975891113,
-0.06304635107517242,
-0.7258949279785156,
0.08211731910705566,
-0.0007645088480785489,
1.0017385482788086,
0.049001067876815796,
0.10640448331832886,
-0.2411688268184662,
-0.13524654507637024,
0.5034277439117432,
-0.5801458954811096,
-0.044113967567682266,
0.6215576529502869,
0.12616439163684845,
-0.0010714255040511489,
-0.6231893301010132,
-0.5696494579315186,
0.059668492525815964,
-0.22044236958026886,
0.319200336933136,
-0.14085562527179718,
-0.355705201625824,
0.5077155828475952,
0.5165350437164307,
-0.5031908750534058,
-0.26731544733047485,
-0.5337595343589783,
-0.10827647894620895,
1.155698537826538,
0.1737068146467209,
0.3820561468601227,
-0.5332764387130737,
-0.19751250743865967,
-0.3476964831352234,
-0.195286363363266,
0.38245904445648193,
0.5293388962745667,
0.46911221742630005,
-1.0166890621185303,
0.5897321105003357,
-0.08980371057987213,
0.5158624053001404,
0.1431616246700287,
-0.01450940128415823,
0.7705920338630676,
-0.4452231228351593,
-0.14353886246681213,
-0.10839825868606567,
1.0656262636184692,
0.6102733016014099,
0.19346433877944946,
0.08634359389543533,
-0.0680101215839386,
0.0858212485909462,
-0.13144679367542267,
-0.8422002196311951,
-0.4437451958656311,
0.6717908978462219,
-0.558932363986969,
-0.5630530714988708,
0.18603123724460602,
-1.0519875288009644,
-0.2120242714881897,
-0.2658078670501709,
0.22324736416339874,
-0.3934408128261566,
-0.49247318506240845,
0.17107507586479187,
-0.28588423132896423,
0.045527175068855286,
0.054123010486364365,
-0.6604474186897278,
0.28202229738235474,
0.6327841281890869,
0.7770628929138184,
0.2130471020936966,
-0.26402536034584045,
-0.30375856161117554,
-0.2107659876346588,
-0.11592692881822586,
0.6666233539581299,
-0.326357364654541,
-0.35505953431129456,
-0.18477727472782135,
0.368576318025589,
-0.09170064330101013,
-0.3038232922554016,
0.917349636554718,
0.1117861345410347,
0.17318324744701385,
-0.5648677349090576,
-0.45855191349983215,
0.041877374053001404,
0.22632409632205963,
-0.7316142320632935,
1.0360184907913208,
0.3356862962245941,
-0.9477797746658325,
0.20384545624256134,
-0.7739502191543579,
-0.32685062289237976,
0.041469693183898926,
0.07971812039613724,
-0.8264845013618469,
-0.167452871799469,
0.17234250903129578,
0.710565447807312,
-0.3260118365287781,
0.051809556782245636,
-0.6027019023895264,
-0.11170639842748642,
0.35552534461021423,
0.26146751642227173,
1.175313115119934,
0.12423717975616455,
-0.14438724517822266,
0.07411700487136841,
-0.8960791826248169,
0.10648668557405472,
0.4837604761123657,
-0.10193803906440735,
-0.16265816986560822,
-0.24363726377487183,
0.3841952085494995,
0.22557435929775238,
0.06213594600558281,
-0.5408721566200256,
0.453632116317749,
-0.16589486598968506,
0.5037503242492676,
0.7415481805801392,
-0.04938257485628128,
0.30187323689460754,
-0.5821087956428528,
0.4364631175994873,
0.09628979861736298,
0.4364430010318756,
-0.027023443952202797,
-0.5767308473587036,
-0.4722680151462555,
-0.2402316778898239,
0.3763214647769928,
0.4404012858867645,
-0.6236751079559326,
1.0392123460769653,
-0.315195769071579,
-0.8455915451049805,
-0.6043994426727295,
0.12245064228773117,
0.17113468050956726,
0.5262302756309509,
0.41300490498542786,
-0.47177791595458984,
-0.5770485401153564,
-0.62884122133255,
0.12340822070837021,
-0.21652594208717346,
0.19511614739894867,
0.43631041049957275,
0.8841192126274109,
-0.21367612481117249,
0.8374544978141785,
-0.7147245407104492,
-0.23584577441215515,
-0.23498496413230896,
-0.3382454216480255,
0.41686150431632996,
0.7759454250335693,
0.7560031414031982,
-0.8861218094825745,
-0.47205469012260437,
-0.27953702211380005,
-0.6464580297470093,
-0.13728415966033936,
-0.028391025960445404,
-0.2675877809524536,
0.006120762787759304,
0.08316481113433838,
-0.6927109360694885,
0.5888474583625793,
0.5094529986381531,
-0.7429553270339966,
0.6175908446311951,
0.125588521361351,
0.06845104694366455,
-1.2889574766159058,
0.34956294298171997,
0.24109628796577454,
0.007650949992239475,
-0.6128922700881958,
-0.25677287578582764,
-0.015233108773827553,
-0.0033451050985604525,
-0.10736452043056488,
0.5970495939254761,
-0.36702781915664673,
0.2831723988056183,
0.11857980489730835,
0.13571886718273163,
0.12634195387363434,
0.4226645529270172,
-0.07956289499998093,
0.29433223605155945,
1.0706883668899536,
-0.4106537699699402,
0.698512613773346,
0.6674239635467529,
-0.18980157375335693,
0.8412485718727112,
-0.755644679069519,
-0.003538197837769985,
-0.24551177024841309,
0.39575818181037903,
-0.8265634775161743,
-0.5171424746513367,
0.8305231332778931,
-0.7329453825950623,
0.3407580852508545,
-0.27259114384651184,
-0.4879475235939026,
-0.8609654903411865,
-0.657992959022522,
0.1496695727109909,
0.5258346796035767,
-0.35299038887023926,
0.41477322578430176,
0.5925562977790833,
0.0715077817440033,
-0.3407856822013855,
-0.8065797090530396,
-0.0929533988237381,
-0.3905963897705078,
-0.7950637936592102,
0.3998819589614868,
-0.37026360630989075,
-0.09422712028026581,
0.1663358062505722,
0.0395672507584095,
0.09849611669778824,
0.04098491370677948,
0.41766640543937683,
0.2978784441947937,
0.11457767337560654,
0.0013465507654473186,
-0.1395815908908844,
-0.2298641800880432,
0.12387054413557053,
-0.2082003951072693,
0.30018937587738037,
-0.26633569598197937,
-0.07442044466733932,
-0.6191561222076416,
0.19209560751914978,
0.3927079737186432,
-0.24486054480075836,
0.6615266799926758,
0.7535790801048279,
-0.24119162559509277,
-0.002809112658724189,
-0.4281473159790039,
-0.17864066362380981,
-0.4076611399650574,
0.032837897539138794,
-0.2525945007801056,
-0.59804767370224,
0.9380131959915161,
0.2560844123363495,
0.030228840187191963,
0.62735915184021,
0.46603474020957947,
-0.03049233742058277,
0.6227980852127075,
0.3772720992565155,
-0.27694234251976013,
0.4910801649093628,
-0.677132248878479,
-0.24297954142093658,
-0.8232999444007874,
-0.4883793890476227,
-0.5789029002189636,
-0.49757006764411926,
-0.812869131565094,
-0.4313719868659973,
0.17131879925727844,
0.1607477366924286,
-0.2018251270055771,
0.547229528427124,
-0.9109853506088257,
0.2688922584056854,
0.3589644730091095,
0.2810879945755005,
-0.14036588370800018,
0.042457688599824905,
0.05579955503344536,
0.1610918790102005,
-0.593688428401947,
-0.2510004937648773,
1.0914204120635986,
0.4407760202884674,
0.5850576162338257,
-0.10530193895101547,
0.7967797517776489,
0.041848693042993546,
0.2152884602546692,
-0.5642492175102234,
0.4833473265171051,
-0.02231847681105137,
-0.4446275532245636,
-0.09961333870887756,
-0.5574268102645874,
-0.961395800113678,
-0.1749713122844696,
-0.4312257170677185,
-0.7410137057304382,
0.4503451883792877,
0.10850132256746292,
-0.23807533085346222,
0.39373210072517395,
-0.6640432476997375,
0.8851978778839111,
-0.15564417839050293,
-0.4811936318874359,
0.3176972270011902,
-1.0425704717636108,
0.17622379958629608,
0.16755811870098114,
0.2823156416416168,
-0.38856929540634155,
0.022069863975048065,
0.9823600053787231,
-0.8275986909866333,
0.9125836491584778,
-0.34846073389053345,
0.15487229824066162,
0.5556482076644897,
-0.26288917660713196,
0.44612205028533936,
0.1600981503725052,
-0.27463051676750183,
0.329285204410553,
0.025879502296447754,
-0.45345786213874817,
-0.4349007308483124,
0.676422119140625,
-0.6971104145050049,
-0.020127294585108757,
-0.35273122787475586,
-0.3991102874279022,
0.04965358227491379,
0.16680020093917847,
0.22079752385616302,
0.35789501667022705,
0.0460042804479599,
0.10437432676553726,
0.39285144209861755,
-0.12292402982711792,
0.2999534010887146,
-0.027041176334023476,
-0.09196110814809799,
-0.8290910720825195,
0.8263189196586609,
0.1223691776394844,
0.08000808209180832,
-0.024976395070552826,
0.4577905535697937,
-0.3619728982448578,
-0.12320030480623245,
-0.5635377168655396,
0.44043636322021484,
-0.3620443046092987,
-0.4353647530078888,
-0.5139349102973938,
-0.14088541269302368,
-0.7331727147102356,
-0.19065752625465393,
-0.23389415442943573,
-0.48607298731803894,
-0.39647477865219116,
-0.1978013962507248,
1.0519452095031738,
0.4363928437232971,
-0.664413571357727,
0.14299313724040985,
-0.5543034672737122,
0.30177175998687744,
-0.12152352184057236,
0.6750337481498718,
-0.11596380919218063,
-0.33749595284461975,
-0.2419128119945526,
0.11721155047416687,
-0.2109704315662384,
-0.7207502126693726,
0.30637359619140625,
-0.07396038621664047,
0.3592304587364197,
0.10121016204357147,
0.0819898247718811,
0.743765115737915,
-0.031960465013980865,
0.6853315234184265,
0.307359516620636,
-0.8680593967437744,
0.7016122341156006,
-0.41299742460250854,
0.1422787606716156,
0.7540134191513062,
0.41540467739105225,
-0.6534340977668762,
-0.12377939373254776,
-0.9825196266174316,
-0.8682335019111633,
0.8091994524002075,
0.4397093653678894,
0.0317460335791111,
0.23835113644599915,
0.5685558915138245,
-0.13790132105350494,
0.293007493019104,
-0.6490839123725891,
-0.8722125291824341,
-0.44080621004104614,
-0.3441651165485382,
-0.07636132836341858,
-0.05434725806117058,
-0.21425659954547882,
-0.689391553401947,
0.7710756659507751,
-0.12178091704845428,
0.2998412251472473,
0.3850647211074829,
0.4262685477733612,
-0.22126440703868866,
-0.005841244012117386,
0.25603726506233215,
0.353097140789032,
-0.23445719480514526,
-0.23831193149089813,
-0.2058868259191513,
-0.6577898859977722,
-0.09853760898113251,
0.49600961804389954,
-0.3620636761188507,
-0.12243921309709549,
0.26326224207878113,
0.9137384295463562,
-0.06150037422776222,
-0.27267900109291077,
0.5942628979682922,
-0.12026452273130417,
-0.381478875875473,
-0.38670480251312256,
0.05055036023259163,
0.1322934329509735,
0.18887722492218018,
0.038072556257247925,
0.11780434101819992,
-0.14895561337471008,
-0.44001930952072144,
0.464971661567688,
0.23123827576637268,
-0.38614174723625183,
-0.5020959377288818,
0.6609014868736267,
0.08605378121137619,
-0.14896301925182343,
0.47425761818885803,
-0.14241090416908264,
-0.6400988101959229,
0.845024585723877,
0.16325761377811432,
0.8132171630859375,
-0.16356772184371948,
0.34771835803985596,
0.7411820292472839,
0.21222439408302307,
-0.03894009068608284,
0.4979568123817444,
-0.1876354068517685,
-0.5899784564971924,
-0.012205558829009533,
-0.5910599231719971,
-0.08762166649103165,
0.08367683738470078,
-0.7856530547142029,
0.5085992217063904,
-0.46017196774482727,
-0.257152795791626,
0.03179435059428215,
0.38594257831573486,
-0.6737368106842041,
0.19872361421585083,
-0.02987028658390045,
1.0356048345565796,
-1.0540788173675537,
0.40447086095809937,
0.6700916290283203,
-0.6732752323150635,
-1.1631860733032227,
-0.1312800943851471,
0.18293020129203796,
-0.5593746900558472,
0.15256042778491974,
0.1819342076778412,
0.5365278720855713,
-0.10310002416372299,
-0.9346534609794617,
-0.6663944721221924,
1.1691887378692627,
0.05501285940408707,
-0.2290247529745102,
0.39456379413604736,
0.15502490103244781,
0.6210085153579712,
-0.3421589732170105,
0.4211868941783905,
0.676089882850647,
0.7287434935569763,
0.31891191005706787,
-0.7299702763557434,
0.2950514853000641,
-0.6139662265777588,
-0.275931179523468,
0.08184506744146347,
-1.0646048784255981,
0.6215898394584656,
-0.20748074352741241,
-0.05413041263818741,
0.028014397248625755,
0.597245991230011,
0.4263182580471039,
0.3887022137641907,
0.43735936284065247,
0.7329898476600647,
0.8162235617637634,
-0.3803657293319702,
1.185304045677185,
-0.25700849294662476,
0.6507221460342407,
0.7846911549568176,
0.024794790893793106,
0.42693084478378296,
0.230836421251297,
-0.33373117446899414,
0.4869842827320099,
0.7199762463569641,
-0.513517439365387,
0.2143351435661316,
0.42808371782302856,
-0.007220372557640076,
-0.08846388012170792,
-0.2660706639289856,
-0.5513840317726135,
0.306988000869751,
0.22649212181568146,
-0.3241417706012726,
0.030857594683766365,
-0.02448089048266411,
0.43517112731933594,
-0.0127330357208848,
-0.30745992064476013,
0.6212905645370483,
0.06405481696128845,
-0.35800209641456604,
0.5499305725097656,
-0.2041545957326889,
0.7091924548149109,
-0.5892575979232788,
0.16687332093715668,
-0.15710914134979248,
0.081569604575634,
-0.632288932800293,
-1.1147568225860596,
0.3607507050037384,
-0.042210597544908524,
-0.19758421182632446,
-0.3165398836135864,
0.7095206379890442,
-0.47574594616889954,
-0.777622640132904,
0.24484138190746307,
0.19381462037563324,
0.32379016280174255,
0.20273418724536896,
-1.2860238552093506,
0.5698573589324951,
0.1588016152381897,
-0.46223825216293335,
0.056896571069955826,
0.511380672454834,
0.17160899937152863,
0.5253903865814209,
0.6574171781539917,
0.28589296340942383,
-0.25507932901382446,
0.07766720652580261,
1.0851478576660156,
-0.6049497723579407,
-0.46503886580467224,
-0.7946595549583435,
0.8679699301719666,
-0.3566727042198181,
-0.3893347382545471,
0.7089424729347229,
0.8521336317062378,
0.8828596472740173,
-0.013856969773769379,
0.8418091535568237,
-0.7161580324172974,
0.6036157608032227,
-0.225547656416893,
0.9058088660240173,
-0.7254862189292908,
-0.08727610856294632,
-0.7567434906959534,
-0.48144394159317017,
-0.45806875824928284,
0.5682724118232727,
-0.18350771069526672,
0.23894521594047546,
0.32548877596855164,
0.9139642715454102,
-0.015436622314155102,
0.15845715999603271,
-0.2226250320672989,
0.35502973198890686,
0.2958888113498688,
0.5931961536407471,
0.40146541595458984,
-0.8904847502708435,
0.3779422342777252,
-0.7443764805793762,
-0.30735647678375244,
0.019972888752818108,
-0.8403236865997314,
-0.868992805480957,
-0.9439719915390015,
-0.6551632285118103,
-0.797832727432251,
-0.29333049058914185,
1.0762981176376343,
0.6954803466796875,
-0.7359590530395508,
-0.28056272864341736,
0.08366221934556961,
0.2624087333679199,
-0.08563703298568726,
-0.3254762887954712,
0.6657558083534241,
0.3719594180583954,
-0.6367975473403931,
-0.161567822098732,
-0.004135571885854006,
0.2742297053337097,
0.09519296884536743,
-0.0649629682302475,
-0.11217520385980606,
-0.3021881580352783,
0.3201204836368561,
0.43608301877975464,
-0.2658982574939728,
-0.10142482072114944,
-0.21572245657444,
0.03532111272215843,
0.2507762014865875,
0.518825352191925,
-0.5367398858070374,
0.18060573935508728,
0.6359355449676514,
0.2685393691062927,
0.44357988238334656,
0.24922052025794983,
-0.04404674842953682,
-0.46146896481513977,
0.07744213938713074,
0.01763247884809971,
0.35457414388656616,
0.38369977474212646,
-0.4842316210269928,
0.7931137681007385,
0.637061595916748,
-0.5162059664726257,
-0.7803778052330017,
-0.16060017049312592,
-1.3540033102035522,
0.047144290059804916,
1.078432321548462,
0.03123677708208561,
-0.6386513710021973,
0.05887409672141075,
-0.21756796538829803,
0.14694009721279144,
-0.6195653080940247,
0.4948124885559082,
0.47994866967201233,
-0.12114808708429337,
0.165755495429039,
-0.3324524760246277,
0.6257719993591309,
-0.04116852208971977,
-1.0898683071136475,
0.24269406497478485,
0.45877885818481445,
0.473635733127594,
0.3273566961288452,
0.7698259353637695,
-0.2493828684091568,
0.008323452435433865,
-0.05554670840501785,
0.2910729944705963,
-0.24539527297019958,
-0.008678896352648735,
-0.339275062084198,
-0.12941789627075195,
-0.5844048857688904,
-0.16987870633602142
]
|
huggingartists/tom-waits | huggingartists | 2022-10-25T09:48:23Z | 262 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/505d2d5d1d43304dca446fd2e788a0f8.750x750x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6298277974128723,
-0.43657663464546204,
0.12643861770629883,
0.30455783009529114,
-0.25645002722740173,
-0.04463111609220505,
-0.3498784005641937,
-0.45930376648902893,
0.8684903979301453,
0.31097203493118286,
-0.9360843300819397,
-0.725384533405304,
-0.565341591835022,
0.18957975506782532,
-0.11674787849187851,
1.2687236070632935,
-0.21562480926513672,
-0.3263975977897644,
-0.47920700907707214,
-0.25416094064712524,
-0.27637895941734314,
-0.29727351665496826,
-0.31417587399482727,
-0.30801504850387573,
0.42542916536331177,
0.48893022537231445,
0.7992361783981323,
0.9739239811897278,
0.4903440773487091,
0.3351733088493347,
-0.14570939540863037,
-0.031870268285274506,
-0.3906107246875763,
-0.0586659274995327,
0.2273617684841156,
-0.3220665454864502,
-0.6500186920166016,
0.21294967830181122,
0.5469569563865662,
0.44524678587913513,
-0.09164781123399734,
0.5090833902359009,
0.02962608076632023,
0.8145569562911987,
-0.27056384086608887,
0.5214065909385681,
-0.2052110880613327,
-0.11229212582111359,
-0.40321066975593567,
0.00217110151425004,
0.15720194578170776,
-0.6772936582565308,
0.037517525255680084,
-0.8380505442619324,
0.07373569905757904,
-0.08242303133010864,
1.0192511081695557,
0.18900811672210693,
0.11356256157159805,
-0.21769335865974426,
-0.05719592049717903,
0.5317064523696899,
-0.6392886638641357,
-0.041769370436668396,
0.5838949084281921,
0.13265670835971832,
-0.05510963499546051,
-0.5745487809181213,
-0.7213332056999207,
0.11818140000104904,
-0.19974620640277863,
0.24588890373706818,
0.01863444596529007,
-0.3144935071468353,
0.5525618195533752,
0.6613947153091431,
-0.6303080320358276,
-0.2764676511287689,
-0.5073456168174744,
-0.031405847519636154,
1.219786286354065,
0.14703045785427094,
0.4231255352497101,
-0.4530152976512909,
-0.22172506153583527,
-0.5027327537536621,
-0.2120523899793625,
0.297762393951416,
0.4988349974155426,
0.574777364730835,
-1.037114143371582,
0.6347548961639404,
-0.13229146599769592,
0.5272308588027954,
0.0650261864066124,
-0.0301352646201849,
0.80110764503479,
-0.31488704681396484,
-0.12149219214916229,
-0.23757630586624146,
0.9399622082710266,
0.7085589170455933,
0.2810782194137573,
0.13390526175498962,
-0.04760543256998062,
0.09860877692699432,
-0.1800878942012787,
-0.7666655778884888,
-0.45302900671958923,
0.6759974956512451,
-0.584080696105957,
-0.5227254033088684,
0.08978816121816635,
-1.0510021448135376,
-0.2902800440788269,
-0.3791161775588989,
0.2265455275774002,
-0.2923402488231659,
-0.5710167288780212,
0.13695663213729858,
-0.325643926858902,
0.1564415842294693,
0.06197243556380272,
-0.5802924633026123,
0.18711990118026733,
0.5685955882072449,
0.8047841191291809,
0.10497649013996124,
-0.3436230421066284,
-0.2546994686126709,
-0.18127235770225525,
-0.0942571684718132,
0.6737064719200134,
-0.3248445391654968,
-0.4354756772518158,
-0.059269629418849945,
0.41049009561538696,
-0.09886496514081955,
-0.2531890571117401,
0.8963171243667603,
0.04537717625498772,
0.27393877506256104,
-0.6763532757759094,
-0.5012782216072083,
0.062868632376194,
0.24251124262809753,
-0.7882246375083923,
1.1451416015625,
0.25635573267936707,
-0.9786966443061829,
0.23109593987464905,
-0.8749935626983643,
-0.42156895995140076,
0.049476150423288345,
0.01631682738661766,
-0.81366366147995,
-0.1753830760717392,
0.18040244281291962,
0.7281707525253296,
-0.27987420558929443,
0.042315851897001266,
-0.6550646424293518,
-0.12190667539834976,
0.31958550214767456,
0.3011033236980438,
1.2102748155593872,
0.14876903593540192,
-0.08141414821147919,
0.06372500211000443,
-0.967011034488678,
0.15431907773017883,
0.5777063369750977,
-0.23103228211402893,
-0.11199990659952164,
-0.21927936375141144,
0.5087026953697205,
0.20479902625083923,
0.09010253101587296,
-0.43342530727386475,
0.47387048602104187,
-0.13888640701770782,
0.4428982436656952,
0.8023895621299744,
-0.05738938972353935,
0.26250553131103516,
-0.6901773810386658,
0.4874129295349121,
0.013283701613545418,
0.3638063371181488,
-0.09611403942108154,
-0.597903847694397,
-0.47739335894584656,
-0.18019571900367737,
0.3017922043800354,
0.4237304925918579,
-0.7040896415710449,
0.8870706558227539,
-0.3855458199977875,
-0.7825260758399963,
-0.5248008966445923,
0.008027462288737297,
0.17642255127429962,
0.44143182039260864,
0.3521895110607147,
-0.45547565817832947,
-0.5796880125999451,
-0.6013413667678833,
0.08340655267238617,
-0.298736572265625,
0.163019061088562,
0.3897583484649658,
0.759983241558075,
-0.1644172966480255,
0.8374189734458923,
-0.7615256309509277,
-0.20019711554050446,
-0.12227105349302292,
-0.2759048640727997,
0.40127071738243103,
0.8450157046318054,
0.741182804107666,
-0.860988438129425,
-0.4481700360774994,
-0.34611284732818604,
-0.6755952835083008,
-0.08952245861291885,
-0.058735620230436325,
-0.23645472526550293,
-0.021987877786159515,
0.04413057118654251,
-0.8027006983757019,
0.5100449919700623,
0.4416029751300812,
-0.6168023943901062,
0.5652819871902466,
0.14580696821212769,
0.033248767256736755,
-1.3106961250305176,
0.36338838934898376,
0.23204219341278076,
0.0351506844162941,
-0.5390984416007996,
-0.15296830236911774,
-0.1251893788576126,
-0.0822216272354126,
-0.05846458300948143,
0.6738192439079285,
-0.381644070148468,
0.1927221417427063,
0.14163024723529816,
0.09272482246160507,
0.12638039886951447,
0.4365580677986145,
-0.006103424821048975,
0.3091681897640228,
0.9742053151130676,
-0.3696584701538086,
0.5460253357887268,
0.6539605259895325,
-0.1872837096452713,
0.8437825441360474,
-0.7520443797111511,
0.11877945065498352,
-0.24464310705661774,
0.34905606508255005,
-0.8626986145973206,
-0.6103573441505432,
0.6984828114509583,
-0.6867769956588745,
0.38413116335868835,
-0.2554876506328583,
-0.617420494556427,
-0.8683857321739197,
-0.603996753692627,
0.19224171340465546,
0.5077600479125977,
-0.38500672578811646,
0.3957917392253876,
0.6401458382606506,
-0.0032892506569623947,
-0.3056492507457733,
-0.8588964939117432,
-0.18732266128063202,
-0.37384501099586487,
-0.7505057454109192,
0.3380955457687378,
-0.49344033002853394,
-0.060017142444849014,
0.14049111306667328,
0.15047763288021088,
0.03460603952407837,
0.015656037256121635,
0.3442988693714142,
0.22330433130264282,
0.0701407790184021,
0.08239500224590302,
-0.10223864018917084,
-0.22350552678108215,
0.09833713620901108,
-0.22171008586883545,
0.18984976410865784,
-0.20546048879623413,
-0.12827357649803162,
-0.6486878395080566,
0.2363857626914978,
0.50505131483078,
-0.20389921963214874,
0.5295296311378479,
0.7626862525939941,
-0.30430158972740173,
-0.03621351718902588,
-0.4199616312980652,
-0.1655612736940384,
-0.4149860739707947,
-0.012809934094548225,
-0.23613229393959045,
-0.5632416009902954,
0.9271361827850342,
0.24538026750087738,
0.13349151611328125,
0.6077508330345154,
0.4569447338581085,
-0.058459244668483734,
0.6153942942619324,
0.414563924074173,
-0.2750270366668701,
0.4924331307411194,
-0.5799903869628906,
-0.31256723403930664,
-0.720578134059906,
-0.3361791670322418,
-0.5136038661003113,
-0.48991459608078003,
-0.8449387550354004,
-0.4709683060646057,
0.1427554041147232,
0.02361707016825676,
-0.17345207929611206,
0.46688124537467957,
-0.9827253818511963,
0.32764264941215515,
0.3849541246891022,
0.19357581436634064,
-0.15592560172080994,
0.04222217947244644,
0.07817702740430832,
0.14379888772964478,
-0.5287343263626099,
-0.20839297771453857,
1.1611257791519165,
0.4667220413684845,
0.4780653715133667,
-0.10682835429906845,
0.7258803844451904,
0.1359684318304062,
0.19127069413661957,
-0.5135226249694824,
0.5171019434928894,
-0.030275989323854446,
-0.5370883941650391,
-0.1723533421754837,
-0.4356619417667389,
-0.8581903576850891,
-0.12921111285686493,
-0.37081965804100037,
-0.6123358607292175,
0.49950405955314636,
0.14947284758090973,
-0.26771846413612366,
0.3620702028274536,
-0.6376795768737793,
0.8399887084960938,
-0.11403584480285645,
-0.4309639632701874,
0.34521958231925964,
-1.058070421218872,
0.13896393775939941,
0.2439519762992859,
0.21684908866882324,
-0.4093587398529053,
0.10378680378198624,
1.0228255987167358,
-0.8065515756607056,
0.9244775176048279,
-0.44952651858329773,
0.15047727525234222,
0.4697800576686859,
-0.3710310161113739,
0.4902326166629791,
0.07765215635299683,
-0.3128478527069092,
0.3324383795261383,
0.11945613473653793,
-0.5304862260818481,
-0.42545291781425476,
0.6088213920593262,
-0.6899155974388123,
0.05692223459482193,
-0.40285730361938477,
-0.4905608892440796,
-0.009970929473638535,
0.221673846244812,
0.18578743934631348,
0.2961752414703369,
0.07565013319253922,
0.08243058621883392,
0.38068342208862305,
-0.09615582227706909,
0.3076505661010742,
0.05343370884656906,
-0.1484738439321518,
-0.8179360032081604,
0.8167029619216919,
0.19788555800914764,
-0.012809990905225277,
-0.024564675986766815,
0.40098822116851807,
-0.37144190073013306,
-0.1417294591665268,
-0.5882992148399353,
0.42903071641921997,
-0.40042558312416077,
-0.3385733664035797,
-0.4534508287906647,
-0.11477676033973694,
-0.636172890663147,
-0.1715548187494278,
-0.25902846455574036,
-0.5265100002288818,
-0.3638552725315094,
-0.27081021666526794,
1.0753018856048584,
0.4850623309612274,
-0.6479071378707886,
0.228241428732872,
-0.4476361572742462,
0.2536991238594055,
-0.0628378763794899,
0.6421368718147278,
-0.0558619387447834,
-0.22073328495025635,
-0.2818245589733124,
0.031053725630044937,
-0.1749948114156723,
-0.6574128270149231,
0.23344503343105316,
-0.08088020980358124,
0.3453327715396881,
0.1984114944934845,
0.17673815786838531,
0.8342297077178955,
-0.03756062313914299,
0.7596836686134338,
0.24016053974628448,
-0.7874525785446167,
0.6883437633514404,
-0.5098090767860413,
0.17588961124420166,
0.8024788498878479,
0.3786681294441223,
-0.5819246172904968,
-0.05221342667937279,
-0.8912165760993958,
-0.9129121899604797,
0.7967850565910339,
0.429269939661026,
0.010006958618760109,
0.17907118797302246,
0.6191163063049316,
-0.09908267855644226,
0.350154846906662,
-0.7035317420959473,
-0.8560753464698792,
-0.3527476489543915,
-0.32330939173698425,
-0.10118874162435532,
-0.07103998214006424,
-0.2546476125717163,
-0.6498434543609619,
0.7373139262199402,
-0.203888401389122,
0.2827097177505493,
0.42459872364997864,
0.48259252309799194,
-0.306596577167511,
-0.06897826492786407,
0.3017192482948303,
0.3909333050251007,
-0.262625515460968,
-0.34061625599861145,
-0.2015196979045868,
-0.5684939622879028,
-0.18882577121257782,
0.5780117511749268,
-0.3534059226512909,
-0.05427974835038185,
0.35695332288742065,
0.8781120181083679,
-0.051966629922389984,
-0.277459979057312,
0.5667622089385986,
-0.13318076729774475,
-0.26932278275489807,
-0.5318156480789185,
-0.05745301768183708,
0.08174394071102142,
0.23917797207832336,
0.05560150742530823,
0.12004230916500092,
-0.14215601980686188,
-0.35506102442741394,
0.45223134756088257,
0.1712554395198822,
-0.3425404727458954,
-0.5480536818504333,
0.6537472009658813,
0.09989948570728302,
-0.11895748972892761,
0.46469494700431824,
-0.1597488522529602,
-0.5500411987304688,
0.7702873945236206,
0.10755431652069092,
0.8410362601280212,
-0.1639527827501297,
0.3085119426250458,
0.6878547668457031,
0.17281170189380646,
-0.10773724317550659,
0.6514801979064941,
-0.29016220569610596,
-0.5821234583854675,
-0.027335966005921364,
-0.5731162428855896,
-0.15520232915878296,
0.1287773996591568,
-0.9460527300834656,
0.43262431025505066,
-0.42601871490478516,
-0.29384347796440125,
-0.0629691407084465,
0.4204336106777191,
-0.7626250386238098,
0.22438663244247437,
-0.03317825868725777,
1.0457861423492432,
-1.1249583959579468,
0.46275681257247925,
0.6941828727722168,
-0.7209199666976929,
-1.1118266582489014,
-0.005816996097564697,
0.2503933012485504,
-0.6027994751930237,
0.13484016060829163,
0.2114158719778061,
0.5766962766647339,
-0.1346520483493805,
-0.8739074468612671,
-0.682733952999115,
1.2026950120925903,
0.061695314943790436,
-0.2591547966003418,
0.3007720708847046,
0.10124348104000092,
0.6472457051277161,
-0.347470223903656,
0.3517869710922241,
0.5452509522438049,
0.7684440612792969,
0.2846606373786926,
-0.7559324502944946,
0.2854352593421936,
-0.7032259702682495,
-0.18816179037094116,
-0.0008219764567911625,
-1.033270001411438,
0.7052147388458252,
-0.2107362598180771,
-0.10521012544631958,
0.16000723838806152,
0.625766396522522,
0.5211225152015686,
0.5093289613723755,
0.5313525199890137,
0.7975932359695435,
0.9305106401443481,
-0.33970141410827637,
1.2471542358398438,
-0.2064438760280609,
0.5747573375701904,
0.8898748159408569,
-0.09531614184379578,
0.5941360592842102,
0.285184383392334,
-0.42220810055732727,
0.48901623487472534,
0.8002380132675171,
-0.4433102011680603,
0.22590313851833344,
0.44613000750541687,
0.055058371275663376,
-0.05139463022351265,
-0.23055081069469452,
-0.6481080651283264,
0.25841614603996277,
0.21424469351768494,
-0.30961161851882935,
0.11893324553966522,
-0.022473279386758804,
0.4145926535129547,
-0.024171404540538788,
-0.16751568019390106,
0.6072319149971008,
0.048924483358860016,
-0.39646172523498535,
0.5023020505905151,
-0.36341506242752075,
0.6061801314353943,
-0.542291522026062,
0.12861770391464233,
-0.11968185007572174,
0.07025118172168732,
-0.5666834115982056,
-1.1204469203948975,
0.34862220287323,
-0.10203775763511658,
-0.34487444162368774,
-0.35329124331474304,
0.5618804097175598,
-0.44543033838272095,
-0.7470043897628784,
0.3182363510131836,
0.20926333963871002,
0.40682291984558105,
0.2111470103263855,
-1.2811675071716309,
0.5754551887512207,
0.13587012887001038,
-0.46000078320503235,
0.05606883391737938,
0.48592469096183777,
0.18872734904289246,
0.48719915747642517,
0.753169596195221,
0.3042360842227936,
-0.2380339503288269,
0.159490168094635,
1.0844227075576782,
-0.5931644439697266,
-0.5846247673034668,
-0.615440309047699,
0.991972804069519,
-0.4020233154296875,
-0.4610764980316162,
0.6355624198913574,
0.806540310382843,
0.960319459438324,
-0.06128429248929024,
0.860136866569519,
-0.6144092679023743,
0.7187083959579468,
-0.269807368516922,
0.9194527864456177,
-0.8353161811828613,
-0.06428907811641693,
-0.6795040369033813,
-0.4955190122127533,
-0.4719890058040619,
0.5643945336341858,
-0.20077061653137207,
0.26673340797424316,
0.2736457884311676,
0.8888421058654785,
0.056398190557956696,
0.1356535106897354,
-0.2162097543478012,
0.37041595578193665,
0.23223614692687988,
0.5018945932388306,
0.43050476908683777,
-0.8667022585868835,
0.3234928548336029,
-0.6932486891746521,
-0.26574429869651794,
0.03158389776945114,
-0.8989776372909546,
-0.8663402199745178,
-1.063353419303894,
-0.7150132656097412,
-0.701535701751709,
-0.19819216430187225,
1.0303678512573242,
0.856283962726593,
-0.7952893376350403,
-0.27484798431396484,
0.08467183262109756,
0.2738766074180603,
-0.11941663920879364,
-0.35255634784698486,
0.6969954967498779,
0.3859736919403076,
-0.6652489304542542,
-0.0982595831155777,
-0.010740783996880054,
0.24295687675476074,
0.02547331340610981,
-0.07851385325193405,
-0.09698865562677383,
-0.2877085208892822,
0.3222062885761261,
0.5236861109733582,
-0.3756377398967743,
-0.07007244974374771,
-0.3253742754459381,
0.15051329135894775,
0.20389369130134583,
0.5161731839179993,
-0.4804530143737793,
0.2919478416442871,
0.6687821745872498,
0.3185856342315674,
0.40820741653442383,
0.20367632806301117,
0.062372639775276184,
-0.5420112013816833,
0.08605732023715973,
-0.02986028604209423,
0.3758440613746643,
0.42782458662986755,
-0.5267324447631836,
0.812350332736969,
0.5718922019004822,
-0.6089064478874207,
-0.9045768976211548,
-0.13996782898902893,
-1.386630654335022,
0.11261291801929474,
0.9948179721832275,
-0.04901003837585449,
-0.5214467644691467,
0.10966680198907852,
-0.08413078635931015,
0.15781275928020477,
-0.5902712941169739,
0.5115968585014343,
0.543829619884491,
-0.1296551376581192,
0.08882448077201843,
-0.3653703033924103,
0.6282458901405334,
-0.02425244264304638,
-0.9938729405403137,
0.201662078499794,
0.4188944399356842,
0.38179606199264526,
0.37106701731681824,
0.7958208322525024,
-0.2832062244415283,
0.0035924550611525774,
-0.04668404534459114,
0.33291125297546387,
-0.1896149069070816,
0.04482436925172806,
-0.36763232946395874,
-0.07150901854038239,
-0.43363243341445923,
-0.2536628246307373
]
|
huggingartists/travis-scott | huggingartists | 2022-10-25T09:48:52Z | 262 | 1 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/travis-scott"
## 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.483549 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('https://images.genius.com/5d19fecdb3828ca9ec89dda588e2eb7d.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/travis-scott">
<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">Travis Scott</div>
<a href="https://genius.com/artists/travis-scott">
<div style="text-align: center; font-size: 14px;">@travis-scott</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/travis-scott).
### 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/travis-scott")
```
## 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|
|------:|---------:|---:|
|761| -| -|
'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/travis-scott")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6399363279342651,
-0.5917602777481079,
0.1449088603258133,
0.2667761743068695,
-0.2586253881454468,
0.13928131759166718,
-0.38733136653900146,
-0.4469079375267029,
0.8964569568634033,
0.2940734326839447,
-0.9787765145301819,
-0.8624634742736816,
-0.5627316832542419,
0.10626735538244247,
-0.22783245146274567,
1.2810468673706055,
-0.21941126883029938,
-0.46184241771698,
-0.2856281101703644,
-0.27247270941734314,
-0.3514552712440491,
-0.37354040145874023,
-0.2873016595840454,
-0.2797045111656189,
0.41809332370758057,
0.5041733980178833,
0.739608108997345,
0.8915746212005615,
0.5927467942237854,
0.33646029233932495,
-0.08361424505710602,
-0.050733551383018494,
-0.370834082365036,
-0.03825065493583679,
0.16956797242164612,
-0.2460436224937439,
-0.6185198426246643,
0.2205629199743271,
0.5236467123031616,
0.32785436511039734,
-0.11846181750297546,
0.48047560453414917,
-0.015425249934196472,
0.829016387462616,
-0.2977215051651001,
0.4574882686138153,
-0.3029515743255615,
-0.27345627546310425,
-0.33514198660850525,
-0.000840327178593725,
0.2036750763654709,
-0.5489714741706848,
-0.08563829958438873,
-0.7300393581390381,
0.07894746959209442,
0.03243977576494217,
1.0223777294158936,
0.0824548676609993,
0.08589376509189606,
-0.2465888112783432,
-0.21203108131885529,
0.5207439661026001,
-0.5759245753288269,
0.07853061705827713,
0.5214555859565735,
0.19539706408977509,
0.0684555321931839,
-0.6762966513633728,
-0.6536263823509216,
0.09284871816635132,
-0.1393238753080368,
0.24805255234241486,
-0.175828754901886,
-0.31663480401039124,
0.4867722988128662,
0.5412407517433167,
-0.48340725898742676,
-0.26746314764022827,
-0.5364645719528198,
-0.11181356757879257,
1.1760036945343018,
0.19336988031864166,
0.4153834581375122,
-0.43239936232566833,
-0.2323893904685974,
-0.4597834050655365,
-0.25690779089927673,
0.38326942920684814,
0.5127689838409424,
0.5107674598693848,
-1.0134960412979126,
0.5909326076507568,
-0.20528146624565125,
0.5225129127502441,
0.13311199843883514,
-0.011980867944657803,
0.8266128301620483,
-0.4923286437988281,
-0.12851256132125854,
-0.15782368183135986,
1.078434705734253,
0.605412483215332,
0.1676485389471054,
0.05773065611720085,
-0.12194447964429855,
0.04195777699351311,
-0.14398275315761566,
-0.8119527101516724,
-0.39838555455207825,
0.7021693587303162,
-0.5083149671554565,
-0.5908456444740295,
0.258638858795166,
-0.9291682243347168,
-0.22316765785217285,
-0.30561739206314087,
0.23516374826431274,
-0.40086808800697327,
-0.5062403082847595,
0.11887439340353012,
-0.30428364872932434,
0.14150968194007874,
0.011095019057393074,
-0.5688594579696655,
0.20090554654598236,
0.5732170939445496,
0.7344537377357483,
0.23209303617477417,
-0.32617372274398804,
-0.3055877089500427,
-0.16070473194122314,
-0.12730929255485535,
0.6420566439628601,
-0.2981266379356384,
-0.3315375745296478,
-0.17978566884994507,
0.36544567346572876,
-0.03338788077235222,
-0.24480828642845154,
0.9189460873603821,
0.028578167781233788,
0.09288153797388077,
-0.6816414594650269,
-0.37841522693634033,
0.003370607038959861,
0.268912136554718,
-0.7419903874397278,
1.072167992591858,
0.3736828565597534,
-0.9676138758659363,
0.21950075030326843,
-0.8532533645629883,
-0.3520709276199341,
0.0644274428486824,
0.03263726085424423,
-0.760925829410553,
-0.22672221064567566,
0.23007264733314514,
0.7120734453201294,
-0.2916436791419983,
0.03888041153550148,
-0.6312583088874817,
-0.1323031485080719,
0.40775614976882935,
0.3001243770122528,
1.1910496950149536,
0.14638693630695343,
-0.1534005105495453,
0.16163082420825958,
-0.8782877326011658,
0.18742716312408447,
0.46859103441238403,
-0.1508551985025406,
-0.047844815999269485,
-0.18284207582473755,
0.5100931525230408,
0.2952248156070709,
0.03623666986823082,
-0.5935329794883728,
0.36545461416244507,
-0.19612208008766174,
0.5790703296661377,
0.7483327388763428,
0.0437588170170784,
0.2812539339065552,
-0.6568977236747742,
0.39481252431869507,
0.09510842710733414,
0.3721516728401184,
-0.006365448702126741,
-0.5079647898674011,
-0.4094720482826233,
-0.2989775538444519,
0.309079110622406,
0.42652204632759094,
-0.6196768283843994,
1.0250449180603027,
-0.395994633436203,
-0.8220919370651245,
-0.5488263368606567,
0.2183481901884079,
0.1176750436425209,
0.46125128865242004,
0.3706066906452179,
-0.43456971645355225,
-0.6368178129196167,
-0.6451532244682312,
0.07232455164194107,
-0.25088492035865784,
0.2003399282693863,
0.3996034562587738,
0.812153697013855,
-0.2920181453227997,
0.9208018779754639,
-0.6401393413543701,
-0.2669715881347656,
-0.29814210534095764,
-0.364551305770874,
0.34092575311660767,
0.7876502275466919,
0.7679799199104309,
-0.8167364597320557,
-0.4433944523334503,
-0.27238425612449646,
-0.6400519013404846,
-0.061936184763908386,
-0.06449196487665176,
-0.29634296894073486,
-0.004539616405963898,
0.14234262704849243,
-0.682111382484436,
0.5343891978263855,
0.4462928771972656,
-0.6786866188049316,
0.43653273582458496,
0.08926335722208023,
0.02632640115916729,
-1.2499892711639404,
0.32748785614967346,
0.2495829164981842,
0.004312352742999792,
-0.5273754000663757,
-0.18815413117408752,
-0.0063104345463216305,
0.009514698758721352,
-0.06809256225824356,
0.5755959749221802,
-0.29940277338027954,
0.3022862374782562,
0.15987469255924225,
0.09944138675928116,
0.09166152030229568,
0.4305717349052429,
-0.1366625428199768,
0.29774022102355957,
0.9727345705032349,
-0.34828582406044006,
0.7376051545143127,
0.5697339177131653,
-0.1912023425102234,
0.7840396165847778,
-0.8038007020950317,
0.06251610815525055,
-0.21449385583400726,
0.45892900228500366,
-0.8782802820205688,
-0.5700326561927795,
0.8289772868156433,
-0.7296126484870911,
0.3424755930900574,
-0.19101062417030334,
-0.6317071914672852,
-0.8732873797416687,
-0.7087269425392151,
0.15718971192836761,
0.553307056427002,
-0.41394391655921936,
0.365938663482666,
0.5672598481178284,
0.12176656723022461,
-0.3197956383228302,
-0.8145869374275208,
-0.1339908093214035,
-0.3897043466567993,
-0.8109906315803528,
0.39379793405532837,
-0.3493635654449463,
-0.12498407065868378,
0.13746720552444458,
0.04828038439154625,
0.0669749304652214,
0.03026263788342476,
0.4676956534385681,
0.3469547927379608,
0.08744348585605621,
0.0435527078807354,
-0.1005542054772377,
-0.16843245923519135,
0.1490294337272644,
-0.2335611879825592,
0.27736589312553406,
-0.3263811767101288,
-0.12485706806182861,
-0.6680518984794617,
0.14650468528270721,
0.48231062293052673,
-0.29211145639419556,
0.6769254207611084,
0.7860069870948792,
-0.23101741075515747,
-0.047287240624427795,
-0.4628508388996124,
-0.14855073392391205,
-0.41726091504096985,
0.02557591162621975,
-0.2028646171092987,
-0.5334076881408691,
0.9397275447845459,
0.27529412508010864,
0.09904492646455765,
0.7077160477638245,
0.5341734290122986,
-0.13513484597206116,
0.63209068775177,
0.32893484830856323,
-0.29527825117111206,
0.5924091339111328,
-0.7114314436912537,
-0.13640332221984863,
-0.7991090416908264,
-0.419850617647171,
-0.550396740436554,
-0.5528385639190674,
-0.8359485864639282,
-0.4134705364704132,
0.13167156279087067,
0.11510692536830902,
-0.27429109811782837,
0.5336278676986694,
-0.9626755118370056,
0.3134818971157074,
0.40323591232299805,
0.3155752122402191,
-0.11998295038938522,
0.04439966380596161,
0.1342524290084839,
0.1850779950618744,
-0.5097540616989136,
-0.23611733317375183,
1.2493901252746582,
0.45967772603034973,
0.5600236058235168,
-0.08559368550777435,
0.8312055468559265,
0.0818728506565094,
0.23215772211551666,
-0.5175344347953796,
0.40615788102149963,
0.12448243796825409,
-0.5976643562316895,
-0.16087421774864197,
-0.4596363306045532,
-0.8311503529548645,
-0.24598343670368195,
-0.44944092631340027,
-0.6788927316665649,
0.430671751499176,
0.06621227413415909,
-0.2225315272808075,
0.3711739778518677,
-0.7047384977340698,
0.8244032859802246,
-0.11942203342914581,
-0.41424253582954407,
0.26065972447395325,
-1.0607775449752808,
0.19776052236557007,
0.15215378999710083,
0.352812796831131,
-0.3967331349849701,
0.01978589966893196,
1.034731388092041,
-0.8273785710334778,
0.8429489731788635,
-0.34833675622940063,
0.17370568215847015,
0.6031405925750732,
-0.3635815382003784,
0.4867991507053375,
0.14288543164730072,
-0.21704444289207458,
0.3005571961402893,
0.13374581933021545,
-0.49759143590927124,
-0.44941291213035583,
0.6987655758857727,
-0.7366849780082703,
0.11017842590808868,
-0.3300279378890991,
-0.45497021079063416,
0.014658273197710514,
0.15709076821804047,
0.2669413685798645,
0.37219953536987305,
0.007724444381892681,
0.16074737906455994,
0.30646181106567383,
-0.07654281705617905,
0.3224533200263977,
-0.00601203041151166,
-0.06947045773267746,
-0.7876126766204834,
0.8849316239356995,
0.15583711862564087,
0.030305180698633194,
-0.06810374557971954,
0.3690503239631653,
-0.4065726101398468,
-0.16965338587760925,
-0.5633501410484314,
0.44492003321647644,
-0.45467618107795715,
-0.434671014547348,
-0.46739915013313293,
-0.20160634815692902,
-0.6526639461517334,
-0.24466772377490997,
-0.2555556297302246,
-0.5077002048492432,
-0.2209112048149109,
-0.24730898439884186,
1.1051878929138184,
0.4857850968837738,
-0.6000820994377136,
0.18873217701911926,
-0.47046446800231934,
0.29020997881889343,
-0.13810479640960693,
0.6918105483055115,
-0.10153757780790329,
-0.2745164632797241,
-0.2283361256122589,
0.17308266460895538,
-0.2650013864040375,
-0.6615116000175476,
0.23340044915676117,
-0.06424682587385178,
0.3768657147884369,
0.1144552156329155,
0.22717991471290588,
0.6979466676712036,
0.04966602101922035,
0.6232643723487854,
0.29577258229255676,
-0.8349326848983765,
0.7440467476844788,
-0.4821809232234955,
0.06309262663125992,
0.7930432558059692,
0.2327464520931244,
-0.5951751470565796,
-0.23786324262619019,
-1.0196681022644043,
-0.8705437183380127,
0.8394734859466553,
0.4865947961807251,
0.08999783545732498,
0.19485722482204437,
0.5126420855522156,
-0.21165411174297333,
0.25869864225387573,
-0.6489035487174988,
-0.8503416180610657,
-0.4232308566570282,
-0.41818496584892273,
-0.09444547444581985,
-0.012440383434295654,
-0.3020433783531189,
-0.736565113067627,
0.7379695177078247,
-0.06986591219902039,
0.2706698775291443,
0.4178585410118103,
0.38486143946647644,
-0.21344979107379913,
0.041706472635269165,
0.26709645986557007,
0.4124055504798889,
-0.30386126041412354,
-0.34588250517845154,
-0.18803627789020538,
-0.6145666241645813,
-0.13593029975891113,
0.4290887117385864,
-0.2927040159702301,
-0.08706088364124298,
0.32793447375297546,
0.8381236791610718,
-0.051104526966810226,
-0.2801050543785095,
0.6150580048561096,
-0.06274949759244919,
-0.4498641788959503,
-0.353079229593277,
0.042659610509872437,
0.1551969349384308,
0.24568921327590942,
0.07148148864507675,
0.11799238622188568,
-0.18867610394954681,
-0.47934919595718384,
0.37499526143074036,
0.2744844853878021,
-0.3533470630645752,
-0.47773849964141846,
0.6785329580307007,
0.1160329058766365,
-0.17707060277462006,
0.48594191670417786,
-0.08781620860099792,
-0.614503026008606,
0.8230920433998108,
0.06155577301979065,
0.8077294826507568,
-0.015922516584396362,
0.2290143370628357,
0.7487490177154541,
0.23246276378631592,
-0.029441028833389282,
0.5155185461044312,
-0.31617677211761475,
-0.5773517489433289,
0.024023625999689102,
-0.47989383339881897,
-0.08625518530607224,
0.013114871457219124,
-0.8147546052932739,
0.5101979374885559,
-0.5470380783081055,
-0.25176912546157837,
0.07057880610227585,
0.4279024600982666,
-0.7882627248764038,
0.20147964358329773,
-0.08812157809734344,
1.023241400718689,
-1.0160038471221924,
0.5514106154441833,
0.6497806906700134,
-0.7400851845741272,
-1.2390809059143066,
-0.11530090123414993,
0.19520610570907593,
-0.5927363038063049,
0.20106400549411774,
0.14769960939884186,
0.47619467973709106,
-0.035382166504859924,
-0.9430452585220337,
-0.6154062747955322,
1.2410926818847656,
0.03737655654549599,
-0.23096270859241486,
0.33724796772003174,
0.06632295250892639,
0.6118234992027283,
-0.3646281361579895,
0.3339996933937073,
0.6337866187095642,
0.6887613534927368,
0.3761216998100281,
-0.67930668592453,
0.3292646110057831,
-0.5606167316436768,
-0.2526310682296753,
0.09779568761587143,
-0.9738539457321167,
0.6108716130256653,
-0.23600555956363678,
-0.08833829313516617,
-0.03493824228644371,
0.5270760655403137,
0.40259984135627747,
0.45338374376296997,
0.456764280796051,
0.6994604468345642,
0.8199288249015808,
-0.37198150157928467,
1.2231369018554688,
-0.36984458565711975,
0.7085992097854614,
0.787495493888855,
0.04746431112289429,
0.5300648808479309,
0.3007892370223999,
-0.37024328112602234,
0.5538754463195801,
0.6735281944274902,
-0.4015223979949951,
0.25013619661331177,
0.3510887324810028,
0.0027233490254729986,
-0.06011475250124931,
-0.11506912112236023,
-0.6740822196006775,
0.2934371829032898,
0.17928066849708557,
-0.36316922307014465,
0.027535056695342064,
-0.07991166412830353,
0.3028404414653778,
-0.04484356939792633,
-0.21447435021400452,
0.6079533100128174,
-0.042951829731464386,
-0.2965547442436218,
0.553508460521698,
-0.15128690004348755,
0.6687299609184265,
-0.5831583738327026,
0.2431512176990509,
-0.1021953821182251,
0.12799818813800812,
-0.6413446664810181,
-1.111811876296997,
0.4296605587005615,
-0.038087159395217896,
-0.23576956987380981,
-0.3885551989078522,
0.6392912864685059,
-0.35658568143844604,
-0.8062304854393005,
0.25758981704711914,
0.23651671409606934,
0.24683943390846252,
0.08746719360351562,
-1.1882591247558594,
0.6116057634353638,
0.09377937763929367,
-0.4587990343570709,
0.05509823188185692,
0.5239306688308716,
0.154041588306427,
0.5542507767677307,
0.7645427584648132,
0.2223825603723526,
-0.2168705314397812,
0.05219707638025284,
1.1413363218307495,
-0.6656838655471802,
-0.5052751898765564,
-0.7752202749252319,
0.8442960381507874,
-0.3356935977935791,
-0.373125284910202,
0.6499075889587402,
0.8232365250587463,
0.9061065316200256,
0.08787158876657486,
0.8128598928451538,
-0.7083578705787659,
0.6948748826980591,
-0.1598132848739624,
0.924808919429779,
-0.7307565808296204,
0.0363054983317852,
-0.7417458295822144,
-0.4796290695667267,
-0.36310437321662903,
0.5870516896247864,
-0.195721834897995,
0.2262779325246811,
0.3394611179828644,
0.8852739930152893,
0.028674738481640816,
0.14354410767555237,
-0.3058142066001892,
0.2695474326610565,
0.3139301538467407,
0.5724957585334778,
0.4030942916870117,
-0.9086560010910034,
0.4407441020011902,
-0.8062174916267395,
-0.24665233492851257,
0.05876299366354942,
-0.754682183265686,
-0.863078773021698,
-1.005494236946106,
-0.6244550943374634,
-0.8196741938591003,
-0.3194767236709595,
1.1164792776107788,
0.7808599472045898,
-0.7127173542976379,
-0.23800334334373474,
-0.003329765284433961,
0.3346838057041168,
-0.07741247117519379,
-0.32733091711997986,
0.5972071886062622,
0.31839799880981445,
-0.5666327476501465,
-0.19974887371063232,
0.0031986066605895758,
0.21054497361183167,
0.131494402885437,
-0.10159818828105927,
-0.08499463647603989,
-0.2923276126384735,
0.30671852827072144,
0.4904817044734955,
-0.41585880517959595,
-0.13480547070503235,
-0.19587604701519012,
-0.017515596002340317,
0.2683066129684448,
0.5272096991539001,
-0.6096451878547668,
0.15970999002456665,
0.5942419767379761,
0.29612621665000916,
0.4707026481628418,
0.24885322153568268,
-0.012361466884613037,
-0.49052390456199646,
0.08029893040657043,
-0.05265149474143982,
0.2747831642627716,
0.3615977466106415,
-0.45624253153800964,
0.7892470359802246,
0.5902600884437561,
-0.4368174076080322,
-0.859094500541687,
-0.20729170739650726,
-1.4209803342819214,
0.09657121449708939,
1.0268654823303223,
0.08102048188447952,
-0.5269526243209839,
0.09674954414367676,
-0.238119974732399,
0.14195141196250916,
-0.6129403710365295,
0.43118202686309814,
0.5959718823432922,
-0.08857420086860657,
0.13212330639362335,
-0.36028677225112915,
0.5735651850700378,
-0.12774702906608582,
-0.9814134836196899,
0.2397320568561554,
0.4016840159893036,
0.5257109999656677,
0.2433835119009018,
0.8276380896568298,
-0.22930926084518433,
0.06308054178953171,
-0.03358326107263565,
0.2304549515247345,
-0.3106500208377838,
0.042393021285533905,
-0.32488852739334106,
-0.1746445894241333,
-0.44507747888565063,
-0.28921249508857727
]
|
huggingartists/yung-lean | huggingartists | 2022-10-25T09:50:26Z | 262 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/8c898f8c39dbd271b3ccfd5303d423c7.1000x1000x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.5896052718162537,
-0.48624613881111145,
0.056187763810157776,
0.2728913426399231,
-0.24747112393379211,
-0.02757323533296585,
-0.2788821756839752,
-0.45829033851623535,
0.8543632626533508,
0.3051343262195587,
-0.9172382950782776,
-0.8562703132629395,
-0.5590162873268127,
0.10679452866315842,
-0.08924952894449234,
1.2777280807495117,
-0.16716131567955017,
-0.3624277412891388,
-0.2595619261264801,
-0.24440036714076996,
-0.3227287530899048,
-0.26547351479530334,
-0.32283705472946167,
-0.31225112080574036,
0.3342878222465515,
0.519370436668396,
0.7142724394798279,
0.9144257307052612,
0.47057729959487915,
0.34784117341041565,
-0.10583183914422989,
-0.035566408187150955,
-0.41816967725753784,
-0.12794195115566254,
0.23198701441287994,
-0.3215426206588745,
-0.6981661915779114,
0.21608012914657593,
0.5515180826187134,
0.3929928243160248,
-0.0585862398147583,
0.48081710934638977,
0.06050840765237808,
0.8454015254974365,
-0.3105594515800476,
0.5000717639923096,
-0.28275543451309204,
-0.15836714208126068,
-0.2799747586250305,
0.09725602716207504,
0.2177661657333374,
-0.6152457594871521,
-0.042744092643260956,
-0.7376922965049744,
0.03093460388481617,
-0.027584154158830643,
1.062903881072998,
0.0863877534866333,
0.09757204353809357,
-0.1776908040046692,
-0.09877532720565796,
0.5235438346862793,
-0.6609055399894714,
0.012769459746778011,
0.5691888928413391,
0.13263285160064697,
0.07491981983184814,
-0.6233590245246887,
-0.5849682688713074,
0.08350779861211777,
-0.181871235370636,
0.3176683485507965,
-0.08650963753461838,
-0.2880443334579468,
0.5445356965065002,
0.5643008947372437,
-0.4993492066860199,
-0.22525674104690552,
-0.5439167618751526,
-0.11111216992139816,
1.1828240156173706,
0.14554111659526825,
0.4235308766365051,
-0.5210458636283875,
-0.2606309950351715,
-0.37795859575271606,
-0.2657536268234253,
0.3540353775024414,
0.5524129867553711,
0.44249293208122253,
-1.0079245567321777,
0.6237013339996338,
-0.209828183054924,
0.5527599453926086,
0.17164941132068634,
-0.095314159989357,
0.7862287163734436,
-0.45063769817352295,
-0.16866177320480347,
-0.11519014090299606,
1.0812325477600098,
0.6573949456214905,
0.158688485622406,
0.1229441687464714,
-0.10630641877651215,
-0.009686130098998547,
-0.17560482025146484,
-0.8582721948623657,
-0.40509966015815735,
0.6231905221939087,
-0.631539523601532,
-0.5823526382446289,
0.20854106545448303,
-1.01719331741333,
-0.20507466793060303,
-0.3129502534866333,
0.27218368649482727,
-0.37106120586395264,
-0.5440956950187683,
0.15002261102199554,
-0.25394806265830994,
0.21065948903560638,
0.028107859194278717,
-0.6046850085258484,
0.17490310966968536,
0.5781623721122742,
0.7925531268119812,
0.22876738011837006,
-0.2643246650695801,
-0.2633613646030426,
-0.1895909309387207,
-0.13405631482601166,
0.6157321929931641,
-0.2611337900161743,
-0.36682504415512085,
-0.11965899914503098,
0.32379406690597534,
-0.09374544769525528,
-0.31804198026657104,
0.9699234962463379,
0.10071375221014023,
0.10675929486751556,
-0.6095741987228394,
-0.42358994483947754,
-0.006789281964302063,
0.2931620180606842,
-0.7561919689178467,
1.0860099792480469,
0.31301701068878174,
-1.0079760551452637,
0.22742094099521637,
-0.7621073722839355,
-0.3178822994232178,
0.04159493371844292,
0.09013830125331879,
-0.7864260673522949,
-0.17840714752674103,
0.22283650934696198,
0.7762817144393921,
-0.30119478702545166,
0.013719574548304081,
-0.5893262028694153,
-0.1444474458694458,
0.35999447107315063,
0.28269556164741516,
1.225480556488037,
0.14392098784446716,
-0.14534401893615723,
0.10232723504304886,
-0.9621325731277466,
0.205980122089386,
0.4074574410915375,
-0.17084890604019165,
-0.10295949131250381,
-0.2352958619594574,
0.4203430116176605,
0.28268900513648987,
0.07776214927434921,
-0.5650129914283752,
0.4270300567150116,
-0.2020794302225113,
0.4505387544631958,
0.7138345837593079,
-0.02220846340060234,
0.2796821892261505,
-0.6551308035850525,
0.40065518021583557,
0.08312808722257614,
0.3751009702682495,
-0.036026593297719955,
-0.5554272532463074,
-0.5002633333206177,
-0.28735801577568054,
0.29301872849464417,
0.44100868701934814,
-0.6888099312782288,
1.0015541315078735,
-0.33363276720046997,
-0.8486275672912598,
-0.6667165160179138,
0.1641962230205536,
0.17464321851730347,
0.5113852620124817,
0.3742501437664032,
-0.37686386704444885,
-0.5986096262931824,
-0.6504424810409546,
0.08657535910606384,
-0.2856829762458801,
0.12916672229766846,
0.39231935143470764,
0.8044993281364441,
-0.284988135099411,
0.8061708807945251,
-0.6936137676239014,
-0.2890215516090393,
-0.28106430172920227,
-0.2972380518913269,
0.3663475811481476,
0.7784796953201294,
0.7412212491035461,
-0.8669522404670715,
-0.503908097743988,
-0.22464029490947723,
-0.6731439828872681,
-0.16175784170627594,
-0.0618533156812191,
-0.25939494371414185,
0.015700815245509148,
0.17133471369743347,
-0.6482168436050415,
0.545373260974884,
0.49821737408638,
-0.6594966650009155,
0.6113860607147217,
0.1353469341993332,
0.019484732300043106,
-1.265379548072815,
0.36519646644592285,
0.24160818755626678,
0.050476882606744766,
-0.5964279770851135,
-0.20853093266487122,
-0.0450865812599659,
-0.03991766273975372,
-0.09045769274234772,
0.6188574433326721,
-0.34906652569770813,
0.2994705140590668,
0.1371069848537445,
0.05082867294549942,
0.08390267938375473,
0.46458426117897034,
-0.08279742300510406,
0.2489747703075409,
1.0221831798553467,
-0.4059797525405884,
0.6756249666213989,
0.5734006762504578,
-0.24081170558929443,
0.8431938290596008,
-0.8407992720603943,
0.0003739843668881804,
-0.2338385283946991,
0.35759299993515015,
-0.8611812591552734,
-0.5504018068313599,
0.8193604946136475,
-0.676119863986969,
0.4302646517753601,
-0.25514236092567444,
-0.5279024839401245,
-0.7962470650672913,
-0.7034846544265747,
0.16613717377185822,
0.514811098575592,
-0.4056355953216553,
0.3712133467197418,
0.5696121454238892,
0.10015890747308731,
-0.38504478335380554,
-0.7967329621315002,
-0.15477684140205383,
-0.3841455578804016,
-0.819126307964325,
0.3993438482284546,
-0.337653249502182,
-0.08334667980670929,
0.13857947289943695,
0.0755201205611229,
0.054068297147750854,
0.008878842927515507,
0.3763066828250885,
0.3281974196434021,
0.05663752183318138,
0.0019497526809573174,
-0.09898556023836136,
-0.19252625107765198,
0.13029876351356506,
-0.2463814914226532,
0.2009260207414627,
-0.3039718568325043,
-0.11344069242477417,
-0.6635735630989075,
0.17668600380420685,
0.4700847268104553,
-0.23259466886520386,
0.6747587323188782,
0.8500049710273743,
-0.24935615062713623,
-0.021399637684226036,
-0.5109383463859558,
-0.11106394231319427,
-0.4143093228340149,
0.07750742882490158,
-0.2334321141242981,
-0.5781490802764893,
0.9391214847564697,
0.23830831050872803,
0.07953835278749466,
0.6448701620101929,
0.4875856041908264,
-0.032933007925748825,
0.6633312702178955,
0.36986586451530457,
-0.29151636362075806,
0.5188273191452026,
-0.6879688501358032,
-0.19188183546066284,
-0.8571674823760986,
-0.47881823778152466,
-0.5165157318115234,
-0.5466872453689575,
-0.8905069828033447,
-0.449589341878891,
0.19361045956611633,
0.13720965385437012,
-0.19039294123649597,
0.4545044004917145,
-0.9156171679496765,
0.2375686764717102,
0.330267995595932,
0.2912310063838959,
-0.15091653168201447,
0.000704663572832942,
0.06803888082504272,
0.12283553183078766,
-0.6162953972816467,
-0.20221693813800812,
1.125992774963379,
0.4820241630077362,
0.6070274114608765,
-0.1403481811285019,
0.8337053060531616,
-0.03480071574449539,
0.2437535673379898,
-0.606700599193573,
0.4953007102012634,
0.039007481187582016,
-0.487206369638443,
-0.13664115965366364,
-0.5248607993125916,
-0.8580037951469421,
-0.13632433116436005,
-0.42125558853149414,
-0.6693539023399353,
0.4987368583679199,
0.07139196991920471,
-0.20468424260616302,
0.39471590518951416,
-0.6524997353553772,
0.8688470125198364,
-0.11778546124696732,
-0.464352011680603,
0.34296008944511414,
-1.037292718887329,
0.25290292501449585,
0.2117701917886734,
0.22910380363464355,
-0.3955008387565613,
0.010077061131596565,
1.0185623168945312,
-0.8254619836807251,
0.9200124740600586,
-0.36079350113868713,
0.12378186732530594,
0.627707302570343,
-0.35908064246177673,
0.41883137822151184,
0.13665582239627838,
-0.2763737142086029,
0.31704646348953247,
0.05285674333572388,
-0.46491822600364685,
-0.45025521516799927,
0.679010272026062,
-0.7126211524009705,
0.06757934391498566,
-0.3220486342906952,
-0.4595288336277008,
0.045864537358284,
0.18182805180549622,
0.28830891847610474,
0.3522490859031677,
0.0029214161913841963,
0.1668606847524643,
0.43098536133766174,
-0.14900165796279907,
0.262104332447052,
-0.02281046099960804,
-0.07851211726665497,
-0.7676727175712585,
0.8991703987121582,
0.18045689165592194,
0.08250616490840912,
-0.01980915665626526,
0.44128021597862244,
-0.3912813365459442,
-0.12050382047891617,
-0.561039924621582,
0.4676307439804077,
-0.40439677238464355,
-0.43592727184295654,
-0.47368523478507996,
-0.2056632936000824,
-0.6825277209281921,
-0.1806812733411789,
-0.26596835255622864,
-0.4753989577293396,
-0.3006800413131714,
-0.22785618901252747,
0.9733840823173523,
0.44980648159980774,
-0.6717274188995361,
0.11943881213665009,
-0.5320318341255188,
0.2962612211704254,
-0.04314408823847771,
0.6566346883773804,
-0.06634916365146637,
-0.3049417734146118,
-0.2558131814002991,
0.13456487655639648,
-0.17666105926036835,
-0.6984207630157471,
0.2890295684337616,
-0.02210240252315998,
0.3631088137626648,
0.21048389375209808,
0.14103710651397705,
0.702760636806488,
0.017129864543676376,
0.6279950737953186,
0.3132644593715668,
-0.8035463094711304,
0.6710225343704224,
-0.5130748152732849,
0.2059754878282547,
0.7522784471511841,
0.3822150230407715,
-0.6064658164978027,
-0.10031988471746445,
-0.91346275806427,
-0.8611839413642883,
0.7705798745155334,
0.38249456882476807,
0.023695554584264755,
0.2438252866268158,
0.5852540135383606,
-0.18267636001110077,
0.2754949927330017,
-0.6978784799575806,
-0.8488118648529053,
-0.4728989899158478,
-0.3454797565937042,
0.007310336921364069,
-0.12771421670913696,
-0.21395626664161682,
-0.698986291885376,
0.7568001747131348,
-0.1626221090555191,
0.3117588460445404,
0.4081937372684479,
0.467772513628006,
-0.19087344408035278,
-0.006443692836910486,
0.2321697324514389,
0.3451051414012909,
-0.23640984296798706,
-0.33786076307296753,
-0.1778491884469986,
-0.635246217250824,
-0.11678864061832428,
0.46451807022094727,
-0.4182151257991791,
-0.09287496656179428,
0.29616454243659973,
0.8998744487762451,
0.04154263436794281,
-0.2501751184463501,
0.5654515027999878,
-0.05727345868945122,
-0.438698947429657,
-0.3220902681350708,
0.017711302265524864,
0.14609387516975403,
0.1975173056125641,
0.05547032505273819,
0.0723809078335762,
-0.11336574703454971,
-0.44195953011512756,
0.3920224905014038,
0.24733781814575195,
-0.4064749479293823,
-0.5023964643478394,
0.6334202289581299,
0.08919485658407211,
-0.0709635466337204,
0.4878109097480774,
-0.16450271010398865,
-0.6523734927177429,
0.7975435256958008,
0.10585222393274307,
0.8631056547164917,
-0.16252057254314423,
0.3549984395503998,
0.8271989822387695,
0.21596264839172363,
-0.10161910951137543,
0.5083772540092468,
-0.20851773023605347,
-0.6091845035552979,
-0.07298789173364639,
-0.593934178352356,
-0.04484205320477486,
0.11501986533403397,
-0.848649799823761,
0.4853161573410034,
-0.47777870297431946,
-0.21205754578113556,
-0.04539986327290535,
0.4272492527961731,
-0.7149748206138611,
0.21069779992103577,
-0.05028620362281799,
1.0203008651733398,
-1.0335688591003418,
0.4593731760978699,
0.6918832063674927,
-0.6366867423057556,
-1.2315174341201782,
-0.09571611881256104,
0.20743344724178314,
-0.5696923136711121,
0.23782312870025635,
0.21713894605636597,
0.50120609998703,
-0.09368941187858582,
-0.9420576095581055,
-0.6570736169815063,
1.1939133405685425,
0.03687511757016182,
-0.1951087862253189,
0.34255027770996094,
0.0941440612077713,
0.6238170862197876,
-0.33391475677490234,
0.3054056465625763,
0.6294941902160645,
0.7210855484008789,
0.3765278458595276,
-0.7052363753318787,
0.2989285886287689,
-0.6048327684402466,
-0.24991846084594727,
0.04471680894494057,
-1.0461562871932983,
0.617949366569519,
-0.2348947376012802,
-0.07335811108350754,
0.028577040880918503,
0.6339205503463745,
0.4084242582321167,
0.41588035225868225,
0.4307796359062195,
0.7587271332740784,
0.7935759425163269,
-0.3401249647140503,
1.1753013134002686,
-0.2283264547586441,
0.5960795879364014,
0.7513676881790161,
0.013309495523571968,
0.46245983242988586,
0.20449019968509674,
-0.30327171087265015,
0.4979134500026703,
0.6324223279953003,
-0.4481451213359833,
0.21476493775844574,
0.3917437195777893,
-0.020225659012794495,
-0.05294860899448395,
-0.2699807286262512,
-0.575571596622467,
0.35793960094451904,
0.22058261930942535,
-0.267332524061203,
0.030945977196097374,
-0.08184035867452621,
0.39257293939590454,
-0.04833656921982765,
-0.3304760456085205,
0.617318332195282,
0.04941115155816078,
-0.3627508878707886,
0.5642080903053284,
-0.18385793268680573,
0.7197273373603821,
-0.6317459940910339,
0.15887324512004852,
-0.10584741085767746,
0.12098215520381927,
-0.6563576459884644,
-1.0413036346435547,
0.37482595443725586,
-0.0913017988204956,
-0.1990569531917572,
-0.3542156219482422,
0.7630576491355896,
-0.5014714002609253,
-0.8160516023635864,
0.2298666089773178,
0.2170562744140625,
0.2674142122268677,
0.16980507969856262,
-1.2725414037704468,
0.5794950127601624,
0.16976481676101685,
-0.4578920900821686,
0.1267194300889969,
0.5516697764396667,
0.2044103443622589,
0.5498660206794739,
0.6726476550102234,
0.27130430936813354,
-0.18957798182964325,
0.06697452813386917,
1.1065247058868408,
-0.5399893522262573,
-0.4734714925289154,
-0.7152307629585266,
0.8801430463790894,
-0.3538888394832611,
-0.4046535789966583,
0.7074308395385742,
0.7771138548851013,
0.9176716208457947,
0.017146890982985497,
0.8145073652267456,
-0.6856546401977539,
0.6431325674057007,
-0.2469126582145691,
0.9570045471191406,
-0.7343212366104126,
-0.07067183405160904,
-0.7378503680229187,
-0.5047004818916321,
-0.3928206264972687,
0.6537289023399353,
-0.14493568241596222,
0.24710407853126526,
0.2738465964794159,
0.9096665978431702,
0.05156145244836807,
0.09755950421094894,
-0.19654695689678192,
0.33741405606269836,
0.28454717993736267,
0.5591467022895813,
0.3775964081287384,
-0.9349825382232666,
0.3845633268356323,
-0.7621268630027771,
-0.2962896227836609,
0.026605362072587013,
-0.8280914425849915,
-0.9077519178390503,
-0.9615705013275146,
-0.6791173815727234,
-0.728996217250824,
-0.3156640827655792,
1.0242624282836914,
0.7307905554771423,
-0.691924512386322,
-0.29195496439933777,
0.10998496413230896,
0.29704785346984863,
-0.1359558254480362,
-0.33187147974967957,
0.6527986526489258,
0.332305371761322,
-0.6424652934074402,
-0.16691681742668152,
0.0030360189266502857,
0.24312114715576172,
0.07882090657949448,
-0.1058189868927002,
-0.16276466846466064,
-0.32208141684532166,
0.328999787569046,
0.4925593137741089,
-0.2970200181007385,
-0.08510730415582657,
-0.2007877230644226,
0.02240714058279991,
0.17490458488464355,
0.5210826396942139,
-0.5322285890579224,
0.2103298306465149,
0.6846202611923218,
0.3185561001300812,
0.413162499666214,
0.23458556830883026,
0.012932312674820423,
-0.49058765172958374,
0.09983087331056595,
-0.005454313475638628,
0.31406962871551514,
0.40543267130851746,
-0.4438289403915405,
0.8101325035095215,
0.5679669976234436,
-0.5073413848876953,
-0.8036143779754639,
-0.1485457867383957,
-1.3357523679733276,
0.10404948145151138,
1.0602293014526367,
-0.012085315771400928,
-0.565977156162262,
0.07381325215101242,
-0.24940979480743408,
0.1584135890007019,
-0.5339378118515015,
0.49425840377807617,
0.5171529650688171,
-0.07737674564123154,
0.12368262559175491,
-0.3551281988620758,
0.6510287523269653,
-0.029759064316749573,
-0.9910291433334351,
0.195797398686409,
0.4437527358531952,
0.43384531140327454,
0.2686046361923218,
0.7897623777389526,
-0.2685425281524658,
0.03955993428826332,
-0.046402934938669205,
0.2363571673631668,
-0.28443917632102966,
0.048674311488866806,
-0.32005587220191956,
-0.15849612653255463,
-0.5297898650169373,
-0.2248157262802124
]
|
huggingartists/yung-plague | huggingartists | 2022-10-25T09:50:33Z | 262 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/6c0f8e02f467c694379f242ea2897efd.1000x1000x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6053687930107117,
-0.5088281035423279,
0.05381988734006882,
0.26973333954811096,
-0.2751103937625885,
-0.001060824142768979,
-0.2620023488998413,
-0.4656795263290405,
0.873547375202179,
0.3763759136199951,
-0.8326599597930908,
-0.9038437008857727,
-0.555767834186554,
0.1394660323858261,
-0.083210788667202,
1.298215627670288,
-0.08959731459617615,
-0.4113452434539795,
-0.23473936319351196,
-0.20220376551151276,
-0.278105229139328,
-0.3158823549747467,
-0.3988476097583771,
-0.296284556388855,
0.41036713123321533,
0.5064893960952759,
0.708888828754425,
0.9222901463508606,
0.5086243748664856,
0.3315891623497009,
-0.11331842094659805,
-0.01598125509917736,
-0.40382930636405945,
-0.13036657869815826,
0.20122259855270386,
-0.30377301573753357,
-0.6561798453330994,
0.19926829636096954,
0.5046366453170776,
0.39256975054740906,
-0.06385461241006851,
0.441668838262558,
0.028156550601124763,
0.8314120769500732,
-0.29775866866111755,
0.46724575757980347,
-0.25604087114334106,
-0.1731584668159485,
-0.36455684900283813,
0.06022164225578308,
0.1539360135793686,
-0.629709780216217,
-0.03998261317610741,
-0.7626081705093384,
0.04289165511727333,
-0.023075096309185028,
1.0045826435089111,
0.09539739787578583,
0.08945592492818832,
-0.161710724234581,
-0.1310853213071823,
0.47328245639801025,
-0.6901343464851379,
-0.0837179571390152,
0.5846244096755981,
0.1663525253534317,
0.02472892962396145,
-0.6485393643379211,
-0.5828033685684204,
0.06505803018808365,
-0.17318762838840485,
0.3633418083190918,
-0.14514309167861938,
-0.24823316931724548,
0.5362834334373474,
0.5531488060951233,
-0.5271661281585693,
-0.1982639580965042,
-0.5562641024589539,
-0.16982871294021606,
1.1896748542785645,
0.16078035533428192,
0.44303369522094727,
-0.5568903088569641,
-0.23433783650398254,
-0.365326851606369,
-0.29578959941864014,
0.3681284487247467,
0.5860832929611206,
0.44655895233154297,
-1.0248582363128662,
0.5689610242843628,
-0.14306476712226868,
0.6103087663650513,
0.13820110261440277,
-0.09912010282278061,
0.7684072852134705,
-0.4288920760154724,
-0.13546669483184814,
-0.1140054315328598,
1.0748505592346191,
0.6806285381317139,
0.1329762488603592,
0.12739653885364532,
-0.048949822783470154,
0.01911597140133381,
-0.10947129875421524,
-0.8624591827392578,
-0.45140230655670166,
0.6169958114624023,
-0.6382453441619873,
-0.6067997813224792,
0.13776148855686188,
-1.0808076858520508,
-0.27149972319602966,
-0.24475060403347015,
0.28151050209999084,
-0.3967466652393341,
-0.5367094874382019,
0.16400682926177979,
-0.2783394157886505,
0.12486390769481659,
0.03570035845041275,
-0.5890503525733948,
0.16354332864284515,
0.5869183540344238,
0.7981499433517456,
0.17933513224124908,
-0.23173761367797852,
-0.32660359144210815,
-0.18099452555179596,
-0.1337665617465973,
0.6781783699989319,
-0.3216862082481384,
-0.3990637958049774,
-0.15122653543949127,
0.32927995920181274,
-0.07216885685920715,
-0.3280937969684601,
0.9505981206893921,
0.057641658931970596,
0.08391675353050232,
-0.5900595784187317,
-0.41469085216522217,
-0.0655864030122757,
0.22109626233577728,
-0.7617145776748657,
1.045534610748291,
0.3101729154586792,
-1.057595133781433,
0.16849899291992188,
-0.7345479130744934,
-0.3324654996395111,
0.05590052902698517,
0.07344058901071548,
-0.8071765899658203,
-0.19667775928974152,
0.20426607131958008,
0.7415210008621216,
-0.30444198846817017,
0.007608422078192234,
-0.6164773106575012,
-0.1287795454263687,
0.3164147734642029,
0.26590031385421753,
1.2451202869415283,
0.1234312653541565,
-0.14309759438037872,
0.08793725073337555,
-0.994417130947113,
0.1131872609257698,
0.4003884494304657,
-0.14446258544921875,
-0.13928456604480743,
-0.19597843289375305,
0.43828919529914856,
0.2297198623418808,
0.05134253948926926,
-0.5736104249954224,
0.4669705033302307,
-0.2775372564792633,
0.4461500644683838,
0.7176119089126587,
0.056333765387535095,
0.23055967688560486,
-0.6968705654144287,
0.4224088191986084,
0.08211372792720795,
0.37713494896888733,
-0.03708372265100479,
-0.5989136099815369,
-0.46966949105262756,
-0.2642325162887573,
0.29372116923332214,
0.482199102640152,
-0.7350627183914185,
0.9962814450263977,
-0.2855955958366394,
-0.8944326639175415,
-0.6311684846878052,
0.07505523413419724,
0.1827438473701477,
0.5416687726974487,
0.3961700201034546,
-0.4313695728778839,
-0.6204328536987305,
-0.661490797996521,
0.14347030222415924,
-0.2911132276058197,
0.18880142271518707,
0.39458662271499634,
0.7812739014625549,
-0.2751542925834656,
0.7997985482215881,
-0.6952384114265442,
-0.25409558415412903,
-0.28146159648895264,
-0.2583644688129425,
0.38931918144226074,
0.769623875617981,
0.760265052318573,
-0.8544373512268066,
-0.48099419474601746,
-0.19333553314208984,
-0.6394996643066406,
-0.20108525454998016,
-0.05826660245656967,
-0.2502557337284088,
0.009781003929674625,
0.13225530087947845,
-0.563195526599884,
0.6064613461494446,
0.49523302912712097,
-0.6095479130744934,
0.6410840153694153,
0.09861718118190765,
0.014964993111789227,
-1.3256466388702393,
0.38025838136672974,
0.1968434453010559,
0.05180971696972847,
-0.6441767811775208,
-0.18997570872306824,
-0.051380231976509094,
-0.0142661202698946,
-0.07462462037801743,
0.6436060070991516,
-0.29022032022476196,
0.3044949769973755,
0.08607441931962967,
0.06342307478189468,
0.04546058550477028,
0.4230545461177826,
-0.10810060054063797,
0.307759165763855,
1.060987114906311,
-0.42321157455444336,
0.7292709946632385,
0.5557363629341125,
-0.2157437950372696,
0.8041685223579407,
-0.8057825565338135,
-0.02270994894206524,
-0.21005350351333618,
0.36936965584754944,
-0.8514273166656494,
-0.5422812700271606,
0.8384772539138794,
-0.6881176233291626,
0.3935539126396179,
-0.2747609317302704,
-0.5421855449676514,
-0.8300252556800842,
-0.6619647741317749,
0.1996423453092575,
0.5265350341796875,
-0.3575226068496704,
0.3875885605812073,
0.5686724781990051,
0.07325814664363861,
-0.38323143124580383,
-0.7786250114440918,
-0.126235693693161,
-0.4013080298900604,
-0.8116365075111389,
0.4341246485710144,
-0.344696044921875,
-0.09341324865818024,
0.11531512439250946,
0.09799578040838242,
0.08561991900205612,
0.010550355538725853,
0.39232879877090454,
0.3000979423522949,
0.06061019003391266,
0.02599555067718029,
-0.09924687445163727,
-0.25185173749923706,
0.09326889365911484,
-0.22494637966156006,
0.25145310163497925,
-0.21336859464645386,
-0.17460858821868896,
-0.6527705788612366,
0.17707432806491852,
0.4324823319911957,
-0.26307615637779236,
0.6141552925109863,
0.8361606597900391,
-0.24993880093097687,
0.009671487845480442,
-0.5135633945465088,
-0.10098718106746674,
-0.4108324944972992,
0.04293818399310112,
-0.1938609480857849,
-0.5722367763519287,
1.002194881439209,
0.23880167305469513,
0.0812804326415062,
0.6862034201622009,
0.48220548033714294,
0.0035050720907747746,
0.6076770424842834,
0.381515771150589,
-0.3379453718662262,
0.46440282464027405,
-0.6520729064941406,
-0.22217826545238495,
-0.8634478449821472,
-0.413185715675354,
-0.5153414011001587,
-0.5148798227310181,
-0.8949418663978577,
-0.4497183859348297,
0.27228260040283203,
0.12630802392959595,
-0.1832740604877472,
0.4173942506313324,
-0.9507030248641968,
0.20486319065093994,
0.34713518619537354,
0.31590771675109863,
-0.12675757706165314,
0.019356869161128998,
0.06735680252313614,
0.17145340144634247,
-0.5747586488723755,
-0.20972779393196106,
1.1679494380950928,
0.3999524712562561,
0.5711097717285156,
-0.1219811737537384,
0.8684451580047607,
0.025197627022862434,
0.2221205085515976,
-0.5285051465034485,
0.46148595213890076,
-0.040925074368715286,
-0.4760032594203949,
-0.14153853058815002,
-0.4957599639892578,
-0.950079619884491,
-0.15856347978115082,
-0.3669842779636383,
-0.7358027100563049,
0.5197840929031372,
0.0553942434489727,
-0.3261665105819702,
0.4364379048347473,
-0.5899781584739685,
0.8573922514915466,
-0.07852237671613693,
-0.39805734157562256,
0.28366541862487793,
-1.061956763267517,
0.22804029285907745,
0.16313360631465912,
0.27868083119392395,
-0.36839425563812256,
0.0028391971718519926,
1.019673228263855,
-0.8248952627182007,
0.9671653509140015,
-0.3425045311450958,
0.1288425326347351,
0.6058574318885803,
-0.33850809931755066,
0.41802477836608887,
0.165812686085701,
-0.3174532949924469,
0.2967197597026825,
0.05865797773003578,
-0.4523443877696991,
-0.41302454471588135,
0.6237636208534241,
-0.7297913432121277,
-0.0062670037150382996,
-0.3363417983055115,
-0.4287274181842804,
0.10440006107091904,
0.16223880648612976,
0.3400268852710724,
0.45825886726379395,
0.02095138467848301,
0.11848962306976318,
0.4490353763103485,
-0.2263752967119217,
0.2734622061252594,
0.013449999503791332,
-0.14495787024497986,
-0.8163594007492065,
0.9115184545516968,
0.1762174665927887,
0.10542156547307968,
0.0029552059713751078,
0.4490695297718048,
-0.2956230938434601,
-0.1652299165725708,
-0.6121466159820557,
0.45969486236572266,
-0.3762335181236267,
-0.44339117407798767,
-0.5251157283782959,
-0.2411976307630539,
-0.6831243634223938,
-0.17442691326141357,
-0.182153582572937,
-0.4468664824962616,
-0.3389618992805481,
-0.19266600906848907,
1.0697152614593506,
0.482668936252594,
-0.7378416657447815,
0.16783775389194489,
-0.54725182056427,
0.3358863592147827,
-0.06062145531177521,
0.5957362651824951,
-0.05901508405804634,
-0.34101176261901855,
-0.22040696442127228,
0.11025995761156082,
-0.2093997746706009,
-0.7812356352806091,
0.2936224043369293,
-0.056260161101818085,
0.3592771291732788,
0.23202632367610931,
0.16610045731067657,
0.7115729451179504,
-0.017844613641500473,
0.6670068502426147,
0.2505092918872833,
-0.773691713809967,
0.6846402287483215,
-0.540748119354248,
0.15515010058879852,
0.7015053629875183,
0.3502330780029297,
-0.6717662215232849,
-0.17065761983394623,
-0.9335503578186035,
-0.8348634243011475,
0.8071940541267395,
0.3893771469593048,
-0.013853272423148155,
0.2175244390964508,
0.598643958568573,
-0.13043971359729767,
0.21927066147327423,
-0.6679739356040955,
-0.9175670742988586,
-0.4215950667858124,
-0.3132669925689697,
-0.03434441238641739,
-0.14630943536758423,
-0.20245686173439026,
-0.6836447715759277,
0.7410258054733276,
-0.09801188111305237,
0.2896517217159271,
0.3991382420063019,
0.49287164211273193,
-0.17611317336559296,
-0.017195798456668854,
0.26118412613868713,
0.33977875113487244,
-0.2139827162027359,
-0.2795846164226532,
-0.20966212451457977,
-0.6646205186843872,
-0.1120813712477684,
0.5396836996078491,
-0.41023868322372437,
-0.09201556444168091,
0.34130585193634033,
0.8615627884864807,
0.01738506555557251,
-0.2216598391532898,
0.5727562308311462,
-0.016394395381212234,
-0.37448906898498535,
-0.3391604423522949,
0.05301282927393913,
0.15152941644191742,
0.19255472719669342,
0.08834759145975113,
0.07105852663516998,
-0.07299860566854477,
-0.38664722442626953,
0.4121497571468353,
0.20854666829109192,
-0.31834644079208374,
-0.4944218397140503,
0.586595356464386,
0.07393036037683487,
-0.10364637523889542,
0.44119390845298767,
-0.2377559244632721,
-0.6484448313713074,
0.8532565832138062,
0.12457924336194992,
0.8340302109718323,
-0.21325108408927917,
0.38371068239212036,
0.797629714012146,
0.25207388401031494,
-0.043686382472515106,
0.5207024812698364,
-0.1615026295185089,
-0.5809541940689087,
-0.07947011291980743,
-0.6054493188858032,
-0.061419133096933365,
0.12978595495224,
-0.8343408107757568,
0.45512157678604126,
-0.46517693996429443,
-0.1993079036474228,
0.0139643969014287,
0.40254756808280945,
-0.6556161046028137,
0.1803639531135559,
-0.06630516797304153,
1.011018991470337,
-1.0197516679763794,
0.4543263912200928,
0.6638541221618652,
-0.6818444728851318,
-1.1720548868179321,
-0.09586230665445328,
0.20570135116577148,
-0.6060522794723511,
0.21726259589195251,
0.21023321151733398,
0.5522992014884949,
-0.05449588969349861,
-0.9140110015869141,
-0.7150187492370605,
1.1327332258224487,
-0.006404465064406395,
-0.21085703372955322,
0.35058969259262085,
0.08150386065244675,
0.6314509510993958,
-0.31687796115875244,
0.31528615951538086,
0.6248789429664612,
0.7544710040092468,
0.31223446130752563,
-0.7443426847457886,
0.27652689814567566,
-0.5991794466972351,
-0.25010210275650024,
0.07417571544647217,
-1.0132721662521362,
0.6180433630943298,
-0.19876250624656677,
-0.09089929610490799,
0.051926299929618835,
0.5972024202346802,
0.4063347578048706,
0.4483180344104767,
0.4228786826133728,
0.7890961766242981,
0.8046835064888,
-0.3314366936683655,
1.1871531009674072,
-0.2386903464794159,
0.5534100532531738,
0.7703149318695068,
0.020331844687461853,
0.4544883966445923,
0.1184956505894661,
-0.3395489454269409,
0.5425527095794678,
0.7107646465301514,
-0.45975375175476074,
0.24182014167308807,
0.4238058924674988,
-0.041000526398420334,
-0.08213251084089279,
-0.23121458292007446,
-0.6317265033721924,
0.31706470251083374,
0.27389928698539734,
-0.24653184413909912,
-0.03596042841672897,
0.03372015431523323,
0.36152732372283936,
-0.036034632474184036,
-0.34045538306236267,
0.6591389179229736,
0.03179783374071121,
-0.32394641637802124,
0.5693934559822083,
-0.18643248081207275,
0.7105467319488525,
-0.5919402837753296,
0.148873969912529,
-0.09934572875499725,
0.05944233015179634,
-0.6301479935646057,
-1.034751296043396,
0.4079274833202362,
-0.09611699730157852,
-0.23510922491550446,
-0.24564091861248016,
0.7307259440422058,
-0.44962596893310547,
-0.8238599896430969,
0.23787914216518402,
0.2030692994594574,
0.33475837111473083,
0.16839119791984558,
-1.238073706626892,
0.5713996887207031,
0.18301978707313538,
-0.3935205042362213,
0.11373939365148544,
0.5746883749961853,
0.18695788085460663,
0.5354074835777283,
0.6784235835075378,
0.3413573205471039,
-0.20603878796100616,
0.07239190489053726,
1.0870229005813599,
-0.5619878172874451,
-0.45024436712265015,
-0.745861828327179,
0.8342077136039734,
-0.35017725825309753,
-0.3814293444156647,
0.6881315112113953,
0.8039584755897522,
0.8871666789054871,
0.03219814971089363,
0.8551210165023804,
-0.654204785823822,
0.6796910762786865,
-0.2346949577331543,
0.9824816584587097,
-0.7304157018661499,
-0.10170333832502365,
-0.7286269068717957,
-0.4452654719352722,
-0.42686930298805237,
0.6202812194824219,
-0.19962197542190552,
0.18372689187526703,
0.2857007682323456,
0.933175802230835,
0.07135174423456192,
0.10933957248926163,
-0.18203334510326385,
0.3597303628921509,
0.30466145277023315,
0.5703598260879517,
0.37397539615631104,
-0.8625872731208801,
0.356984943151474,
-0.7768711447715759,
-0.3341785967350006,
-0.044463708996772766,
-0.8271012306213379,
-0.9041895866394043,
-0.970931351184845,
-0.6392855644226074,
-0.7323160171508789,
-0.2740578353404999,
1.0115413665771484,
0.6673063635826111,
-0.7113408446311951,
-0.2633526027202606,
0.11868948489427567,
0.29990920424461365,
-0.12889441847801208,
-0.3205164968967438,
0.7100493907928467,
0.31991446018218994,
-0.5813536643981934,
-0.1543312817811966,
0.08873594552278519,
0.23665721714496613,
0.0740494653582573,
-0.008444463834166527,
-0.12233416736125946,
-0.31339097023010254,
0.31789126992225647,
0.5001878142356873,
-0.38411521911621094,
-0.10198629647493362,
-0.26916274428367615,
0.0001431601122021675,
0.1779005527496338,
0.5057425498962402,
-0.5652830600738525,
0.2741844654083252,
0.6492267847061157,
0.34130021929740906,
0.3782060742378235,
0.20841923356056213,
-0.0006973053095862269,
-0.45132315158843994,
0.08815125375986099,
-0.002779641654342413,
0.3083761930465698,
0.3663674294948578,
-0.48522597551345825,
0.7832903265953064,
0.5837859511375427,
-0.5329138040542603,
-0.8039954900741577,
-0.10592413693666458,
-1.3565219640731812,
0.09319838881492615,
1.0691907405853271,
0.012676744721829891,
-0.5425081849098206,
0.010850077494978905,
-0.2657354772090912,
0.19243395328521729,
-0.54280686378479,
0.5097197890281677,
0.5002007484436035,
-0.08122450113296509,
0.15238969027996063,
-0.35335472226142883,
0.6753579378128052,
-0.07678446173667908,
-1.0292171239852905,
0.2282867729663849,
0.43358269333839417,
0.3904809355735779,
0.328344464302063,
0.8077337741851807,
-0.23990708589553833,
0.08775872737169266,
-0.07191216945648193,
0.284176230430603,
-0.2600245177745819,
0.06414914131164551,
-0.33248963952064514,
-0.1561412364244461,
-0.5617918968200684,
-0.18903322517871857
]
|
nlp-thedeep/humset | nlp-thedeep | 2023-05-25T17:14:31Z | 262 | 1 | [
"task_categories:text-classification",
"task_categories:text-retrieval",
"task_categories:token-classification",
"task_ids:multi-label-classification",
"annotations_creators:expert-generated",
"language_creators:expert-generated",
"multilinguality:multilingual",
"size_categories:100K<n<1M",
"source_datasets:original",
"language:en",
"language:fr",
"language:es",
"license:apache-2.0",
"humanitarian",
"research",
"analytical-framework",
"multilabel",
"humset",
"humbert",
"region:us"
]
| [
"text-classification",
"text-retrieval",
"token-classification"
]
| 2023-01-12T16:00:58Z | ---
annotations_creators:
- expert-generated
language:
- en
- fr
- es
language_creators:
- expert-generated
license:
- apache-2.0
multilinguality:
- multilingual
pretty_name: HumSet
size_categories:
- 100K<n<1M
source_datasets:
- original
tags:
- humanitarian
- research
- analytical-framework
- multilabel
- humset
- humbert
task_categories:
- text-classification
- text-retrieval
- token-classification
task_ids:
- multi-label-classification
dataset_info:
features:
- name: entry_id
dtype: string
- name: lead_id
dtype: string
- name: project_id
dtype: string
- name: lang
dtype: string
- name: n_tokens
dtype: int64
- name: project_title
dtype: string
- name: created_at
dtype: string
- name: document
dtype: string
- name: excerpt
dtype: string
- name: sectors
sequence:
class_label:
names:
0: Agriculture
1: Cross
2: Education
3: Food Security
4: Health
5: Livelihoods
6: Logistics
7: Nutrition
8: Protection
9: Shelter
10: WASH
- name: pillars_1d
sequence:
class_label:
names:
0: Casualties
1: Context
2: Covid-19
3: Displacement
4: Humanitarian Access
5: Information And Communication
6: Shock/Event
- name: pillars_2d
sequence:
class_label:
names:
0: At Risk
1: Capacities & Response
2: Humanitarian Conditions
3: Impact
4: Priority Interventions
5: Priority Needs
- name: subpillars_1d
sequence:
class_label:
names:
0: Casualties->Dead
1: Casualties->Injured
2: Casualties->Missing
3: Context->Demography
4: Context->Economy
5: Context->Environment
6: Context->Legal & Policy
7: Context->Politics
8: Context->Security & Stability
9: Context->Socio Cultural
10: Covid-19->Cases
11: Covid-19->Contact Tracing
12: Covid-19->Deaths
13: Covid-19->Hospitalization & Care
14: Covid-19->Restriction Measures
15: Covid-19->Testing
16: Covid-19->Vaccination
17: Displacement->Intentions
18: Displacement->Local Integration
19: Displacement->Pull Factors
20: Displacement->Push Factors
21: Displacement->Type/Numbers/Movements
22: Humanitarian Access->Number Of People Facing Humanitarian Access Constraints/Humanitarian Access Gaps
23: Humanitarian Access->Physical Constraints
24: Humanitarian Access->Population To Relief
25: Humanitarian Access->Relief To Population
26: Information And Communication->Communication Means And Preferences
27: Information And Communication->Information Challenges And Barriers
28: Information And Communication->Knowledge And Info Gaps (Hum)
29: Information And Communication->Knowledge And Info Gaps (Pop)
30: Shock/Event->Hazard & Threats
31: Shock/Event->Type And Characteristics
32: Shock/Event->Underlying/Aggravating Factors
- name: subpillars_2d
sequence:
class_label:
names:
0: At Risk->Number Of People At Risk
1: At Risk->Risk And Vulnerabilities
2: Capacities & Response->International Response
3: Capacities & Response->Local Response
4: Capacities & Response->National Response
5: Capacities & Response->Number Of People Reached/Response Gaps
6: Humanitarian Conditions->Coping Mechanisms
7: Humanitarian Conditions->Living Standards
8: Humanitarian Conditions->Number Of People In Need
9: Humanitarian Conditions->Physical And Mental Well Being
10: Impact->Driver/Aggravating Factors
11: Impact->Impact On People
12: Impact->Impact On Systems, Services And Networks
13: Impact->Number Of People Affected
14: Priority Interventions->Expressed By Humanitarian Staff
15: Priority Interventions->Expressed By Population
16: Priority Needs->Expressed By Humanitarian Staff
17: Priority Needs->Expressed By Population
splits:
- name: train
num_examples: 117435
- name: validation
num_examples: 16039
- name: test
num_examples: 15147
---
# Dataset Card for HumSet
## Table of Contents
- [Table of Contents](#table-of-contents)
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [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:** [http://blog.thedeep.io/humset/](http://blog.thedeep.io/humset/)
- **Repository:** [https://github.com/the-deep/humset](https://github.com/the-deep/humset)
- **Paper:** [EMNLP Findings 2022](https://aclanthology.org/2022.findings-emnlp.321)
- **Leaderboard:**
- **Point of Contact:**[the DEEP NLP team](mailto:[email protected])
### Dataset Summary
HumSet is a novel and rich multilingual dataset of humanitarian response documents annotated by experts in the humanitarian response community. HumSet is curated by humanitarian analysts and covers various disasters around the globe that occurred from 2018 to 2021 in 46 humanitarian response projects. The dataset consists of approximately 17K annotated documents in three languages of English, French, and Spanish, originally taken from publicly-available resources. For each document, analysts have identified informative snippets (entries) in respect to common humanitarian frameworks, and assigned one or many classes to each entry. See the our paper for details.
### Supported Tasks and Leaderboards
This dataset is intended for multi-label classification
### Languages
This dataset is in English, French and Spanish
## Dataset Structure
### Data Instances
[More Information Needed]
### Data Fields
- **entry_id**: unique identification number for a given entry. (string)
- **lead_id**: unique identification number for the document to which the corrisponding entry belongs. (string)
- **project_id** unique identification number for the project to which the corrisponding entry belongs. (string)
- **sectors**, **pillars_1d**, **pillars_2d**, **subpillars_1d**, **subpillars_2d**: labels assigned to the corresponding entry. Since this is a multi-label dataset (each entry may have several annotations belonging to the same category), they are reported as arrays of strings. See the paper for a detailed description of these categories. (list)
- **lang**: language. (str)
- **n_tokens**: number of tokens (tokenized using NLTK v3.7 library). (int64)
- **project_title**: the name of the project where the corresponding annotation was created. (str)
- **created_at**: date and time of creation of the annotation in stardard ISO 8601 format. (str)
- **document**: document URL source of the excerpt. (str)
- **excerpt**: excerpt text. (str)
### Data Splits
The dataset includes a set of train/validation/test splits, with 117435, 16039 and 15147 examples respectively.
## Dataset Creation
The collection originated from a multi-organizational platform called <em>the Data Entry and Exploration Platform (DEEP)</em> developed and maintained by Data Friendly Space (DFS). The platform facilitates classifying primarily qualitative information with respect to analysis frameworks and allows for collaborative classification and annotation of secondary data.
### Curation Rationale
[More Information Needed]
### Source Data
Documents are selected from different sources, ranging from official reports by humanitarian organizations to international and national media articles. See the paper for more informations.
#### Initial Data Collection and Normalization
#### Who are the source language producers?
[More Information Needed]
#### Annotation process
HumSet is curated by humanitarian analysts and covers various disasters around the globe that occurred from 2018 to 2021 in 46 humanitarian response projects. The dataset consists of approximately 17K annotated documents in three
languages of English, French, and Spanish, originally taken from publicly-available resources. For
each document, analysts have identified informative snippets (entries, or excerpt in the imported dataset) with respect to common <em>humanitarian frameworks</em> and assigned one or many classes to each entry.
#### 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
NLP team at [Data Friendly Space](https://datafriendlyspace.org/)
### Licensing Information
The GitHub repository which houses this dataset has an Apache License 2.0.
### Citation Information
```
@inproceedings{fekih-etal-2022-humset,
title = "{H}um{S}et: Dataset of Multilingual Information Extraction and Classification for Humanitarian Crises Response",
author = "Fekih, Selim and
Tamagnone, Nicolo{'} and
Minixhofer, Benjamin and
Shrestha, Ranjan and
Contla, Ximena and
Oglethorpe, Ewan and
Rekabsaz, Navid",
booktitle = "Findings of the Association for Computational Linguistics: EMNLP 2022",
month = dec,
year = "2022",
address = "Abu Dhabi, United Arab Emirates",
publisher = "Association for Computational Linguistics",
url = "https://aclanthology.org/2022.findings-emnlp.321",
pages = "4379--4389",
}
```
| [
-0.6031290292739868,
-0.643334150314331,
-0.044097986072301865,
0.312176376581192,
-0.13863493502140045,
0.16600164771080017,
-0.3086291551589966,
-0.5832398533821106,
0.2690775692462921,
0.34365716576576233,
-0.673843502998352,
-0.9059509038925171,
-0.6727387309074402,
0.39737045764923096,
-0.0923035740852356,
1.397597312927246,
0.036437515169382095,
-0.4033379852771759,
0.08898213505744934,
-0.3897339403629303,
-0.33082953095436096,
-0.49587205052375793,
-0.33695507049560547,
-0.1758701354265213,
0.5116450786590576,
0.7105399966239929,
0.7990423440933228,
0.7142777442932129,
0.8415222764015198,
0.2140924632549286,
-0.12355873733758926,
-0.01906786672770977,
-0.4586804211139679,
-0.2009468674659729,
0.00591299869120121,
0.09723082929849625,
-0.6519374847412109,
0.07351513206958771,
0.5108799338340759,
0.6027126908302307,
-0.1764560490846634,
0.7322193384170532,
0.3400462865829468,
0.628278911113739,
-0.40057432651519775,
0.47381263971328735,
-0.17411623895168304,
0.1623162180185318,
-0.32384130358695984,
-0.002487187972292304,
0.011758724227547646,
-0.3671443462371826,
0.17091238498687744,
-0.6660265922546387,
0.23145133256912231,
0.16914929449558258,
0.8299883604049683,
0.19413787126541138,
-0.09390925616025925,
-0.19185598194599152,
-0.30410706996917725,
0.9164615273475647,
-0.6687020659446716,
0.23150306940078735,
0.779773473739624,
0.28106433153152466,
0.047094814479351044,
-0.6673567295074463,
-0.4323998987674713,
0.1903599053621292,
-0.06828653067350388,
0.28976383805274963,
0.0706477239727974,
-0.20634879171848297,
0.45544710755348206,
0.5453909635543823,
-0.6265890002250671,
-0.0543845072388649,
-0.4056449830532074,
-0.22441430389881134,
0.8630242347717285,
0.18019352853298187,
0.1603359580039978,
-0.7855693697929382,
-0.43085458874702454,
-0.17692016065120697,
-0.5466840267181396,
0.10994129627943039,
0.1404183954000473,
0.5671553015708923,
-1.0523972511291504,
0.609498918056488,
-0.24431157112121582,
0.42805108428001404,
-0.20515799522399902,
-0.23381473124027252,
0.7045831680297852,
-0.6298937797546387,
-0.2948404550552368,
0.015672506764531136,
0.7972108721733093,
0.5388850569725037,
0.05514029785990715,
0.11654533445835114,
-0.08744899928569794,
-0.23822051286697388,
-0.09316380321979523,
-0.7342111468315125,
-0.22665295004844666,
0.27511268854141235,
-0.6727502346038818,
-0.36437565088272095,
0.13244172930717468,
-1.1673009395599365,
-0.5722452402114868,
-0.2696551978588104,
-0.039034731686115265,
0.00038343630149029195,
-0.32751336693763733,
0.044463951140642166,
0.025716861709952354,
0.24705839157104492,
0.1361268311738968,
-0.39825454354286194,
0.29411497712135315,
0.42948853969573975,
0.8266103267669678,
0.01705758087337017,
-0.30226632952690125,
-0.2971263825893402,
0.056627899408340454,
0.1801111251115799,
0.6134467720985413,
-0.3115239441394806,
-0.4759398102760315,
0.1719670444726944,
0.23592521250247955,
0.2655770778656006,
-0.3546595573425293,
0.960547924041748,
-0.24621538817882538,
0.29173803329467773,
-0.7456084489822388,
-0.20444785058498383,
-0.3508389890193939,
0.3837769329547882,
-0.7152172923088074,
1.3526607751846313,
0.2712975740432739,
-0.9923776388168335,
0.41134515404701233,
-0.7500167489051819,
-0.41800063848495483,
0.06873529404401779,
-0.105926513671875,
-0.47550809383392334,
-0.28451791405677795,
0.4380130469799042,
0.6025369763374329,
-0.8620555400848389,
0.5064574480056763,
-0.2949471175670624,
-0.1016736775636673,
-0.07801871746778488,
-0.09130129963159561,
1.1634312868118286,
0.25814759731292725,
-0.3606448471546173,
0.11090125888586044,
-0.8975358605384827,
-0.2506965100765228,
0.23463207483291626,
-0.4984048902988434,
-0.0713692381978035,
-0.17864005267620087,
0.62697833776474,
0.5290024280548096,
0.19193485379219055,
-0.45467591285705566,
0.07818367332220078,
-0.39159443974494934,
0.0875013917684555,
0.7126957774162292,
0.13477127254009247,
0.2829422652721405,
-0.6198260188102722,
0.5756548047065735,
-0.03872092440724373,
0.5030039548873901,
-0.048683006316423416,
-0.8122192621231079,
-0.8036863803863525,
-0.3572721481323242,
0.19754405319690704,
0.673071026802063,
-0.5179129838943481,
0.8367913961410522,
-0.4237869083881378,
-0.45065805315971375,
-0.6362413763999939,
-0.03793014585971832,
0.3118303716182709,
0.6911593675613403,
0.6647264957427979,
-0.09511224925518036,
-1.0064677000045776,
-0.9140650629997253,
-0.011434905230998993,
-0.06059154495596886,
0.1412835419178009,
0.5052449107170105,
0.9063857793807983,
-0.28245973587036133,
0.7658159732818604,
-0.36533108353614807,
-0.5129823684692383,
-0.3477163016796112,
-0.011999489739537239,
0.4756096601486206,
0.5146984457969666,
0.4812772572040558,
-0.8585560321807861,
-0.4838307797908783,
-0.0877060741186142,
-1.0296175479888916,
-0.10285309702157974,
-0.12130898237228394,
-0.1727704554796219,
0.11352640390396118,
0.09272914379835129,
-0.18743930757045746,
0.5343754887580872,
0.5519676804542542,
-0.49778810143470764,
0.3844468891620636,
0.21353401243686676,
0.19181707501411438,
-1.270614743232727,
0.3377942442893982,
-0.00534041365608573,
0.15106648206710815,
-0.39715301990509033,
-0.15391887724399567,
-0.22517600655555725,
-0.10277676582336426,
-0.3477289080619812,
0.8499568700790405,
-0.4726434051990509,
0.11607402563095093,
0.21133571863174438,
0.10209231078624725,
-0.06658031046390533,
0.4533821642398834,
-0.1726430505514145,
0.44353166222572327,
0.6935957670211792,
-0.47508054971694946,
0.38368913531303406,
0.636403501033783,
-0.4527443051338196,
0.5155428051948547,
-0.7956942319869995,
-0.12301331013441086,
-0.07738123834133148,
0.3020547926425934,
-0.7140843272209167,
-0.4018630087375641,
0.5651873350143433,
-0.3208193778991699,
0.0497857891023159,
-0.10886110365390778,
-0.6321870684623718,
-0.5191838145256042,
-0.6291929483413696,
0.3048079013824463,
0.42233312129974365,
-0.29013723134994507,
0.3932928740978241,
0.6360614895820618,
-0.19949133694171906,
-0.8192293643951416,
-0.8533276915550232,
0.12531086802482605,
-0.31853652000427246,
-0.4855908155441284,
0.09580609202384949,
-0.12366592884063721,
-0.08182083815336227,
0.001874664449132979,
0.10574628412723541,
0.06491530686616898,
0.22248587012290955,
0.5364521145820618,
0.2127295583486557,
-0.08835313469171524,
-0.0217556431889534,
-0.06816031038761139,
-0.07189103215932846,
-0.09977913647890091,
0.06133471056818962,
0.47166767716407776,
-0.2207896113395691,
-0.2128443866968155,
-0.5145279765129089,
0.5760048627853394,
0.3895534873008728,
-0.22385729849338531,
0.8339886665344238,
0.8406431674957275,
-0.5206151604652405,
0.33092519640922546,
-0.6714140176773071,
-0.17314694821834564,
-0.3744581639766693,
0.350045770406723,
-0.214302659034729,
-0.6418202519416809,
1.0008070468902588,
0.20793943107128143,
0.21071359515190125,
0.8164747357368469,
0.5334681272506714,
0.04075001925230026,
0.4989269971847534,
0.5337221622467041,
-0.32220539450645447,
0.19566674530506134,
-0.6223815679550171,
-0.10895603150129318,
-1.014602541923523,
-0.5659227967262268,
-0.749496340751648,
-0.40937167406082153,
-0.7366303205490112,
-0.5437584519386292,
0.2359495311975479,
-0.005091313738375902,
-0.6203945279121399,
0.13541994988918304,
-0.49443113803863525,
0.13778124749660492,
0.4645470380783081,
-0.07327739894390106,
0.1683756560087204,
0.25086504220962524,
-0.018444696441292763,
-0.18391069769859314,
-0.8661364912986755,
-0.5570113062858582,
0.990498960018158,
0.5190807580947876,
0.5824835896492004,
0.06510716676712036,
0.8476576209068298,
0.37913087010383606,
0.5116305947303772,
-0.4915277659893036,
0.3892764747142792,
0.08100049197673798,
-0.77631676197052,
-0.3202674686908722,
-0.2769075632095337,
-0.9586291313171387,
-0.054064929485321045,
-0.38123443722724915,
-0.5769660472869873,
0.6713196635246277,
-0.09996993839740753,
-0.34773004055023193,
0.15767069160938263,
-0.3643118739128113,
0.7114638686180115,
-0.027368366718292236,
-0.17490142583847046,
-0.013743112795054913,
-0.9635223150253296,
0.06227073073387146,
0.008537419140338898,
0.6199601292610168,
-0.2103041708469391,
-0.07698490470647812,
0.9736791253089905,
-0.18434952199459076,
1.1822723150253296,
-0.17063766717910767,
-0.05228832736611366,
0.37471020221710205,
-0.2165054976940155,
0.5125206112861633,
0.2255927175283432,
-0.3840234577655792,
0.613033652305603,
-0.3801040053367615,
-0.42819568514823914,
-0.15970370173454285,
0.6300882697105408,
-0.7706001400947571,
-0.3724767565727234,
-0.5300408601760864,
-0.6019443869590759,
0.10306849330663681,
0.2856103181838989,
0.3299816846847534,
0.5090778470039368,
-0.26057979464530945,
0.3407909870147705,
0.27423718571662903,
-0.4878127872943878,
0.3463081121444702,
0.22405238449573517,
-0.05195590853691101,
-0.7487034797668457,
0.7028821706771851,
0.3225843608379364,
-0.1312839388847351,
0.22147685289382935,
0.21446749567985535,
-0.41132134199142456,
-0.2796002924442291,
-0.4847428798675537,
0.34618136286735535,
-0.6505444049835205,
-0.49825969338417053,
-0.7207368016242981,
-0.1221553385257721,
-0.42384466528892517,
-0.2408415973186493,
-0.08308051526546478,
-0.48344799876213074,
-0.30367177724838257,
-0.2668772041797638,
0.47925493121147156,
0.5667470693588257,
-0.3564956784248352,
0.03480178862810135,
-0.7965299487113953,
0.3473407030105591,
-0.08269751071929932,
0.3397669494152069,
0.10089609771966934,
-0.7086802124977112,
-0.5212755799293518,
0.20463848114013672,
-0.1821449249982834,
-0.7586669921875,
0.33644795417785645,
0.35307949781417847,
0.5006095767021179,
0.16478873789310455,
0.26156315207481384,
0.6833154559135437,
-0.25371071696281433,
0.9250718355178833,
0.07747103273868561,
-0.5862035155296326,
0.757480263710022,
-0.626031219959259,
0.3704535663127899,
0.6339426040649414,
0.47487279772758484,
-0.6994389891624451,
-0.22645561397075653,
-0.8739486336708069,
-1.0655543804168701,
0.7702336311340332,
0.29724714159965515,
-0.010767894797027111,
-0.0903722420334816,
0.12174631655216217,
0.07597730308771133,
0.2680889368057251,
-0.694686233997345,
-0.7294984459877014,
-0.2797730267047882,
-0.3692654073238373,
-0.039423633366823196,
-0.4917510449886322,
-0.531173050403595,
-0.41339996457099915,
0.7065188884735107,
0.14223963022232056,
0.26371636986732483,
0.24165959656238556,
-0.010021509602665901,
-0.012631595134735107,
0.2615532875061035,
0.4503047466278076,
0.4617142081260681,
-0.24469903111457825,
0.0423521026968956,
0.13809986412525177,
-0.7808539271354675,
0.012628168798983097,
0.3817931115627289,
-0.25994768738746643,
-0.13783074915409088,
0.6828861832618713,
0.600907564163208,
0.20333875715732574,
-0.40567559003829956,
0.35832279920578003,
0.06629544496536255,
-0.1436959207057953,
-0.2893456816673279,
-0.2977053225040436,
-0.17743808031082153,
0.3044741451740265,
0.42502668499946594,
0.06081034243106842,
0.36417949199676514,
-0.3158614933490753,
0.2390270233154297,
-0.0420578233897686,
-0.22218576073646545,
-0.4155002534389496,
0.41400596499443054,
0.35312899947166443,
-0.20218390226364136,
0.6388584971427917,
-0.2143973410129547,
-0.2662310004234314,
0.6129554510116577,
0.3116322457790375,
0.928071916103363,
-0.2299954742193222,
0.44896599650382996,
0.8409254550933838,
0.5435094237327576,
-0.0028142931405454874,
0.7457444667816162,
-0.0393851064145565,
-0.6348050236701965,
-0.3080497682094574,
-0.7388508915901184,
0.07036817073822021,
0.18884719908237457,
-0.9012982845306396,
0.24275575578212738,
-0.4151025414466858,
-0.21692535281181335,
-0.16105924546718597,
0.1915358304977417,
-1.0080316066741943,
0.18888239562511444,
0.09274563193321228,
0.8227048516273499,
-0.9316461086273193,
0.35135793685913086,
0.870432436466217,
-0.664103627204895,
-0.732218861579895,
-0.24621820449829102,
0.24013814330101013,
-0.591259241104126,
0.6664825677871704,
0.1299978643655777,
0.2198556363582611,
-0.0745176151394844,
-0.4412531554698944,
-0.9289279580116272,
0.9476947784423828,
0.18896327912807465,
-0.4035007059574127,
0.13801568746566772,
0.298885315656662,
0.48897784948349,
-0.3085772395133972,
0.01595008186995983,
0.4478249251842499,
0.9329453706741333,
-0.2249823361635208,
-0.9337426424026489,
0.32999104261398315,
-0.42869892716407776,
-0.11941739916801453,
-0.15645822882652283,
-0.6081277132034302,
0.6780442595481873,
-0.3440167307853699,
-0.3128613829612732,
-0.178518608212471,
0.5910996198654175,
0.2791924476623535,
0.3757168650627136,
0.2514653503894806,
0.6971184015274048,
0.8742339611053467,
-0.28039008378982544,
1.2703297138214111,
-0.15450376272201538,
0.5802398920059204,
1.1835654973983765,
-0.025832829996943474,
0.5652660727500916,
0.3066336512565613,
-0.3082219064235687,
0.47519129514694214,
0.687677264213562,
-0.2273365706205368,
0.45294225215911865,
-0.02624133601784706,
0.084657683968544,
-0.0030255219899117947,
-0.5579985976219177,
-0.7812162637710571,
0.5208437442779541,
0.33900395035743713,
-0.4185646176338196,
-0.24317282438278198,
0.026103954762220383,
0.16991907358169556,
-0.16774721443653107,
-0.1284991055727005,
0.6353955864906311,
0.07892725616693497,
-0.18735705316066742,
0.8352018594741821,
-0.17777763307094574,
0.5735359787940979,
-0.23129798471927643,
-0.11819903552532196,
-0.2652876079082489,
-0.08093108236789703,
-0.5249366164207458,
-0.8870059251785278,
0.3809276521205902,
-0.012267939746379852,
-0.4598626494407654,
-0.13445842266082764,
0.4327847361564636,
-0.27479633688926697,
-0.7112016677856445,
0.1404736191034317,
0.694269061088562,
0.14627134799957275,
0.1753407120704651,
-1.1039347648620605,
0.22989016771316528,
0.04926588758826256,
-0.44435304403305054,
0.1491910219192505,
0.4826052486896515,
-0.049082715064287186,
0.505833089351654,
0.6181625723838806,
0.16770455241203308,
-0.041783787310123444,
0.33080393075942993,
0.8970397114753723,
-0.7546885013580322,
-0.4732603430747986,
-0.7118024826049805,
0.741234540939331,
-0.33760297298431396,
-0.5232062935829163,
1.097686529159546,
0.7825528979301453,
0.7684833407402039,
-0.14239263534545898,
0.9319373965263367,
-0.4330057203769684,
0.5870859622955322,
-0.1383548527956009,
0.6333742737770081,
-0.548171877861023,
0.21345090866088867,
-0.6007474064826965,
-0.8317069411277771,
-0.5639002919197083,
0.8084445595741272,
-0.1381770819425583,
0.14313599467277527,
0.43786823749542236,
0.6982476711273193,
0.132701113820076,
0.06608092039823532,
-0.09898485243320465,
0.406948447227478,
0.23644965887069702,
0.29639506340026855,
0.6293743848800659,
-0.7423665523529053,
0.2451808750629425,
-0.48664575815200806,
-0.2293306142091751,
-0.20115235447883606,
-0.906389057636261,
-0.8640449047088623,
-0.7910429835319519,
-0.42052027583122253,
-0.40178897976875305,
-0.05276799947023392,
0.9117793440818787,
0.5339038372039795,
-1.0524249076843262,
-0.35552504658699036,
0.26325833797454834,
0.24281883239746094,
-0.24465607106685638,
-0.22251123189926147,
0.7957460880279541,
0.1644241362810135,
-0.4965500235557556,
-0.033124037086963654,
0.29664498567581177,
0.07272941619157791,
-0.12208583950996399,
-0.1224636510014534,
-0.477983295917511,
-0.34618839621543884,
0.6951608657836914,
0.3851045072078705,
-0.7323970198631287,
-0.21474000811576843,
0.08801260590553284,
0.016522563993930817,
0.06452924758195877,
0.4376043677330017,
-0.5333167910575867,
0.25714120268821716,
0.49773940443992615,
0.5398425459861755,
0.12944923341274261,
-0.06761981546878815,
0.04438404738903046,
-0.829861044883728,
0.49143892526626587,
0.37245798110961914,
0.2592408359050751,
0.5521378517150879,
-0.4444209337234497,
0.7738091945648193,
0.2723854184150696,
-0.5717585682868958,
-0.9618117809295654,
-0.04891614243388176,
-1.0339624881744385,
0.16623367369174957,
1.4242786169052124,
-0.034866347908973694,
-0.005912921391427517,
-0.5874492526054382,
-0.22878049314022064,
0.34362563490867615,
-0.6787612438201904,
0.8608008027076721,
0.6453490257263184,
0.10191235691308975,
-0.03290693461894989,
-0.5503486394882202,
0.6631314158439636,
0.04941481724381447,
-0.9869195222854614,
0.14359189569950104,
0.5038056373596191,
-0.025916730985045433,
0.25697004795074463,
0.6836403608322144,
-0.18870241940021515,
0.17976278066635132,
-0.28689393401145935,
0.30015993118286133,
0.033631496131420135,
-0.39741289615631104,
-0.16590853035449982,
0.08103577792644501,
-0.24333985149860382,
0.09812898933887482
]
|
Cubpaw/voxelgym_5c_42x42_25000 | Cubpaw | 2023-05-31T21:28:34Z | 262 | 0 | [
"region:us"
]
| null | 2023-05-31T21:28:02Z | ---
dataset_info:
features:
- name: image
dtype: image
- name: label
dtype: image
- name: rgb_label
dtype: image
- name: path_label
dtype: image
- name: path_rgb_label
dtype: image
splits:
- name: train
num_bytes: 18480640.0
num_examples: 20000
- name: validation
num_bytes: 4639555.0
num_examples: 5000
download_size: 17635174
dataset_size: 23120195.0
---
# Dataset Card for "voxelgym_5c_42x42_25000"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) | [
-0.7928507924079895,
-0.11817806214094162,
0.29798540472984314,
0.22553624212741852,
-0.22527804970741272,
-0.025015899911522865,
0.17317938804626465,
0.02244335226714611,
0.5753763914108276,
0.6159740090370178,
-0.6924735307693481,
-0.9701443314552307,
-0.4656849205493927,
-0.2686157524585724,
-0.3764166533946991,
1.048967957496643,
0.39398279786109924,
0.1349717527627945,
-0.7264478206634521,
-0.1513727903366089,
-0.29878461360931396,
-0.7377769351005554,
-0.5756311416625977,
-0.4223034679889679,
1.1456886529922485,
0.8373473286628723,
0.36404845118522644,
0.5830360651016235,
0.5703718662261963,
0.24932308495044708,
-0.17577655613422394,
-0.2601868212223053,
-0.6626198291778564,
-0.4157414436340332,
-0.07341233640909195,
-0.562345564365387,
-0.9152846932411194,
-0.024695152416825294,
0.799306333065033,
0.6069498062133789,
-0.5269314646720886,
0.6380497813224792,
-0.15159904956817627,
0.5850241184234619,
-0.3724729120731354,
0.5676366090774536,
-0.30594226717948914,
0.022987879812717438,
-0.5252827405929565,
0.012208908796310425,
0.07332064211368561,
-0.7747855186462402,
-0.234195739030838,
-0.9201005697250366,
0.29293081164360046,
0.1496916562318802,
0.5960332155227661,
0.1803455650806427,
0.018314337357878685,
-0.0344286747276783,
-0.24582742154598236,
0.2517021894454956,
-0.34124165773391724,
0.2979217767715454,
0.49973264336586,
0.45151397585868835,
0.1338292807340622,
-0.7381530404090881,
-0.4364212155342102,
0.320525199174881,
0.18110157549381256,
0.3404309153556824,
-0.06835281848907471,
-0.016269685700535774,
0.813264787197113,
0.5984092354774475,
-0.508965790271759,
-0.13526129722595215,
-0.9466069340705872,
-0.45292824506759644,
0.7607728838920593,
0.3181334435939789,
0.2490684688091278,
-0.3127971291542053,
-0.3124408423900604,
-0.3780330717563629,
-0.5782235264778137,
-0.18660365045070648,
0.49931642413139343,
0.10870098322629929,
-1.1175048351287842,
0.6436012387275696,
0.08791250735521317,
0.48154470324516296,
-0.001998375868424773,
0.6921414732933044,
0.6435967087745667,
-0.5307201147079468,
-0.3372378945350647,
0.2389962077140808,
0.536152720451355,
0.38978952169418335,
0.08515483886003494,
0.3352803885936737,
0.19843780994415283,
-0.08800778537988663,
0.3582143783569336,
-1.2608329057693481,
-0.7099629640579224,
0.4118826687335968,
-0.7612221837043762,
-0.2172238677740097,
0.31783807277679443,
-0.9885030388832092,
-0.49175384640693665,
-0.28967761993408203,
-0.004420268815010786,
-0.24703821539878845,
-0.5330577492713928,
-0.12607567012310028,
-0.5711320042610168,
0.36412563920021057,
0.03296917304396629,
-0.8394386172294617,
0.2932591140270233,
0.49841630458831787,
0.5351581573486328,
0.20932252705097198,
0.02041846513748169,
-0.41749659180641174,
0.13183660805225372,
-0.37903326749801636,
0.9049990177154541,
-0.45886945724487305,
-0.9184914231300354,
0.0026465528644621372,
0.2594209611415863,
0.1541416347026825,
-0.5371546149253845,
1.1023553609848022,
-0.1977073699235916,
0.09083005040884018,
-0.8437423706054688,
-0.6077398061752319,
-0.2825508415699005,
0.1859075427055359,
-0.9479184150695801,
1.03399658203125,
0.35760581493377686,
-0.584229052066803,
0.30583205819129944,
-0.9628729224205017,
0.10237732529640198,
0.7015893459320068,
-0.2138051837682724,
-0.7218970656394958,
0.3966706395149231,
-0.03341417759656906,
0.5638952851295471,
-0.07174642384052277,
0.06591765582561493,
-0.7732425928115845,
-0.26739776134490967,
0.23492904007434845,
0.0016902248607948422,
0.934346616268158,
0.305258184671402,
0.6352756023406982,
0.1906285285949707,
-1.062674880027771,
0.1866866648197174,
0.11574253439903259,
-0.24398642778396606,
-0.009728322736918926,
-0.3156103193759918,
0.5268778204917908,
-0.0283807422965765,
0.2917473614215851,
-0.43937450647354126,
0.36650094389915466,
0.14496447145938873,
-0.10280336439609528,
0.6425600647926331,
0.03960566967725754,
0.02256440557539463,
-0.425271600484848,
0.5270600914955139,
0.1635529100894928,
0.1410546451807022,
0.12082688510417938,
-0.4932904839515686,
-0.5831751227378845,
-0.1042262464761734,
0.6151267290115356,
0.44844377040863037,
-0.5752404928207397,
0.49505507946014404,
0.10729394853115082,
-0.8468506932258606,
-0.23574002087116241,
-0.13838675618171692,
0.21871140599250793,
0.10360191017389297,
0.4684922695159912,
-0.5803567171096802,
-0.9213035702705383,
-0.9163148999214172,
0.292019248008728,
0.05649332329630852,
-0.2158573567867279,
0.7334412932395935,
0.6722106337547302,
-0.3945437967777252,
0.39640840888023376,
-0.8827390670776367,
-0.27949297428131104,
0.10086407512426376,
-0.04813003912568092,
0.3601110875606537,
0.6835907697677612,
0.901328980922699,
-0.6091627478599548,
-0.3759845793247223,
-0.4905955493450165,
-0.40706202387809753,
-0.23670078814029694,
0.26484647393226624,
-0.2608835995197296,
-0.23574109375476837,
0.3091491460800171,
-0.309274822473526,
0.4827628433704376,
1.049294114112854,
-0.6202475428581238,
0.37479841709136963,
-0.14451290667057037,
0.16325445473194122,
-1.36420738697052,
0.26614585518836975,
0.025064049288630486,
-0.24926118552684784,
-0.23878221213817596,
-0.2515549957752228,
0.14633184671401978,
-0.13914881646633148,
-0.2469353973865509,
0.25034043192863464,
-0.5592576265335083,
-0.09680451452732086,
0.08335941284894943,
-0.0648883730173111,
-0.3499280512332916,
0.3501409590244293,
0.16388408839702606,
0.4315505027770996,
1.036386251449585,
-0.24164243042469025,
0.9172877073287964,
0.5665853023529053,
-0.045174721628427505,
1.1467854976654053,
-0.8310551047325134,
0.36890506744384766,
-0.10868336260318756,
0.3023383319377899,
-0.6041706800460815,
-0.5819783806800842,
0.48641592264175415,
-0.4729420840740204,
0.1960509717464447,
-0.5599859356880188,
-0.30023112893104553,
-0.56627357006073,
-0.3405615985393524,
0.8943143486976624,
0.5767459273338318,
-0.5336058735847473,
0.2792470455169678,
0.7370281219482422,
-0.0036028053145855665,
0.018803613260388374,
-0.6141868829727173,
0.18670174479484558,
-0.2783384323120117,
-0.09943144768476486,
0.6229634881019592,
-0.5103453397750854,
0.18211235105991364,
-0.19545477628707886,
0.45961031317710876,
0.01973593793809414,
-0.642606258392334,
0.5908803343772888,
0.2724902927875519,
-0.0924912840127945,
0.1589469164609909,
-0.31074562668800354,
-0.6448131203651428,
0.4816572070121765,
-0.24577036499977112,
0.35189610719680786,
0.03292587772011757,
-0.08421187102794647,
-0.3504435122013092,
0.4973119795322418,
0.3850550949573517,
-0.028803875669836998,
0.4337308406829834,
1.0976003408432007,
-0.7661700248718262,
-0.09656383097171783,
-0.4707571268081665,
0.02661631442606449,
-0.45236432552337646,
0.29358741641044617,
-0.3470022678375244,
-0.5108713507652283,
0.5135324001312256,
0.014173801057040691,
-0.3324418365955353,
0.6841567158699036,
1.080955982208252,
0.0773787796497345,
0.9484614133834839,
0.5187550783157349,
-0.16268442571163177,
0.418999046087265,
-0.40716972947120667,
-0.35333922505378723,
-0.9431807994842529,
-0.6630598306655884,
-0.6750311255455017,
-0.2935076951980591,
-0.967668354511261,
-0.7755817174911499,
0.19701452553272247,
-0.33239197731018066,
-0.06305890530347824,
0.4619784355163574,
-0.8887527585029602,
0.2384432703256607,
0.6604905724525452,
0.2385639101266861,
-0.2423219233751297,
-0.07359079271554947,
-0.03450816124677658,
0.14140628278255463,
-0.9458388090133667,
-0.11849368363618851,
1.1774120330810547,
0.3167860507965088,
0.8690449595451355,
0.24287748336791992,
0.6710507273674011,
0.10101057589054108,
0.18881694972515106,
-0.4477212131023407,
0.41239306330680847,
-0.00840415433049202,
-0.6823035478591919,
0.06975853443145752,
-0.36352285742759705,
-0.9567413330078125,
-0.36984267830848694,
-0.4952054023742676,
-0.3994022011756897,
0.5576380491256714,
0.4053422212600708,
-0.30243176221847534,
0.19324372708797455,
-0.7244540452957153,
0.9352779984474182,
-0.0001673681690590456,
-0.22273194789886475,
-0.40937310457229614,
-0.4452316462993622,
0.042493268847465515,
0.3654649257659912,
0.12037141621112823,
-0.25356432795524597,
-0.024304227903485298,
0.9674397706985474,
-0.35919877886772156,
0.9897371530532837,
-0.5561991333961487,
0.07679367810487747,
0.34213051199913025,
-0.4840116798877716,
0.09670161455869675,
0.7036635875701904,
0.1442265808582306,
0.3625670075416565,
0.4666863977909088,
-0.7733848690986633,
-0.08262708783149719,
0.9681705832481384,
-0.8730002641677856,
0.1637071818113327,
-0.5645944476127625,
-0.7183923721313477,
0.013147310353815556,
0.19609728455543518,
0.375931054353714,
0.6672456860542297,
-0.5846508145332336,
0.4429700970649719,
0.9201792478561401,
0.012253597378730774,
0.3828040361404419,
0.03283630311489105,
-0.312147855758667,
-0.6090514659881592,
1.118443489074707,
0.3282930552959442,
-0.2940386235713959,
0.08439408242702484,
0.2361544966697693,
-0.31961458921432495,
-0.6533128023147583,
-0.4082447588443756,
0.05942198261618614,
-0.2989778518676758,
-0.3968425393104553,
-0.26908451318740845,
-0.50657719373703,
-0.25158703327178955,
-0.03999317064881325,
-0.37010806798934937,
-0.4090005159378052,
-0.6819624304771423,
-0.3928430676460266,
0.6842535734176636,
0.6952475309371948,
-0.6467506289482117,
0.27177518606185913,
-0.7809260487556458,
0.5396130681037903,
0.2668476998806,
1.0405704975128174,
-0.43662992119789124,
-0.23708899319171906,
-0.3500649929046631,
0.07114233821630478,
-0.1357867568731308,
-0.7161213755607605,
0.006240068934857845,
-0.05018655210733414,
0.705410897731781,
0.23869504034519196,
-0.34543749690055847,
0.49414893984794617,
-0.04727262631058693,
0.652755856513977,
0.39728686213493347,
-0.7169917225837708,
0.2128915935754776,
-0.5077122449874878,
0.7123454213142395,
0.40127235651016235,
0.39233043789863586,
-0.5635846853256226,
0.32667574286460876,
-1.1021000146865845,
-0.6238166689872742,
0.38804638385772705,
0.22529269754886627,
0.2835792899131775,
0.3087761104106903,
0.4522774815559387,
-0.03759673982858658,
0.2155166119337082,
-0.597183346748352,
-0.6067764759063721,
-0.45773348212242126,
-0.42760246992111206,
0.04178916662931442,
-0.6242863535881042,
-0.36687812209129333,
-0.7327936291694641,
0.639715850353241,
-0.2927819490432739,
0.6665425896644592,
0.017694341018795967,
0.4310723543167114,
0.079805389046669,
-0.15387237071990967,
0.6158338189125061,
0.5425248742103577,
-0.3934769630432129,
-0.0014908279990777373,
0.26273083686828613,
-0.5479717254638672,
-0.45779627561569214,
0.6032392382621765,
0.17885753512382507,
-0.2834285795688629,
0.28648772835731506,
0.6760050654411316,
-0.2880851626396179,
-0.12957540154457092,
0.12450378388166428,
-0.29606953263282776,
-0.4976157546043396,
-0.657983660697937,
0.28539684414863586,
0.5122560262680054,
0.06653297692537308,
0.009203181602060795,
-0.12477404624223709,
0.2471637725830078,
-0.4237044155597687,
0.3880191147327423,
0.2083444744348526,
-1.0038892030715942,
-0.44130563735961914,
0.6014695167541504,
0.4639233946800232,
-0.47131702303886414,
0.9466449618339539,
-0.044677842408418655,
-0.3364723324775696,
0.8907556533813477,
0.2508791387081146,
0.6788098216056824,
-0.34005892276763916,
0.2866550087928772,
0.8622738718986511,
-0.0645478367805481,
0.46927744150161743,
0.8498695492744446,
-0.2498292177915573,
-0.8202887773513794,
0.09485547244548798,
-0.2945571839809418,
-0.3874998390674591,
-0.14684268832206726,
-1.0533020496368408,
0.4479612410068512,
-0.5717990398406982,
-0.18329857289791107,
0.14756476879119873,
0.17418691515922546,
-0.9895447492599487,
0.44276607036590576,
0.6833330392837524,
1.2930665016174316,
-0.42763110995292664,
0.969131350517273,
0.6698769330978394,
-0.26636189222335815,
-0.735291600227356,
-0.5208752155303955,
0.29040825366973877,
-0.9054065942764282,
-0.3942146301269531,
0.027894139289855957,
0.3660708963871002,
-0.048530660569667816,
-1.0381900072097778,
-0.7794402241706848,
1.1803700923919678,
0.11175266653299332,
-1.048302412033081,
0.5404588580131531,
-0.045125365257263184,
0.33760032057762146,
-0.4844891130924225,
0.4523313343524933,
0.42344796657562256,
0.7764334082603455,
0.44394806027412415,
-0.391561359167099,
0.008567897602915764,
-0.43311911821365356,
-0.012801663018763065,
0.19675983488559723,
-0.9506098628044128,
0.14696575701236725,
-0.193491131067276,
0.19497206807136536,
0.06830842792987823,
0.6798583269119263,
0.17987732589244843,
0.1553274393081665,
0.5090380311012268,
0.8194333910942078,
0.8753450512886047,
-0.45124998688697815,
0.8870868682861328,
-0.08444487303495407,
0.637148380279541,
0.8717261552810669,
0.005011574365198612,
0.19083063304424286,
0.5762760043144226,
-0.1775336116552353,
0.5486928820610046,
0.8226363658905029,
-0.6751919984817505,
0.32526490092277527,
0.5581294298171997,
-0.18984714150428772,
-0.25203779339790344,
-0.05422601476311684,
-0.8105039000511169,
0.34639403223991394,
0.6483259201049805,
-0.4118426442146301,
0.10632311552762985,
-0.3844752907752991,
0.22547300159931183,
-0.1850425899028778,
-0.5463060140609741,
0.8576329946517944,
0.09471846371889114,
-0.23342029750347137,
0.1463458240032196,
-0.12087241560220718,
0.11978678405284882,
-0.5935906171798706,
-0.3822571933269501,
-0.015211071819067001,
0.2730191946029663,
-0.5795895457267761,
-1.0162543058395386,
0.7561501264572144,
-0.4345843195915222,
-0.2767163813114166,
-0.14757384359836578,
0.4181285798549652,
-0.5122643113136292,
-1.1480865478515625,
0.21506263315677643,
0.10374578088521957,
0.06928358227014542,
0.16298015415668488,
-1.291197419166565,
0.4197338819503784,
-0.07066639512777328,
-0.12797294557094574,
0.09490775316953659,
0.10183310508728027,
0.1486191749572754,
0.44366762042045593,
0.6814351677894592,
0.08935953676700592,
-0.4124664068222046,
0.24914239346981049,
0.9455574154853821,
-0.7840421199798584,
-0.3278645873069763,
-0.617608904838562,
0.7022964954376221,
-0.6124268770217896,
-0.7653241157531738,
0.5581528544425964,
1.1766362190246582,
0.8985673189163208,
-0.02423379011452198,
0.8920764923095703,
-0.504824161529541,
0.480027437210083,
-0.3762517273426056,
0.7258058786392212,
-0.2797204554080963,
-0.05393459275364876,
-0.0011314019793644547,
-0.8090006709098816,
-0.5753140449523926,
0.4536164402961731,
0.2966727614402771,
0.21862146258354187,
0.5154621601104736,
1.0579344034194946,
-0.177250474691391,
0.08935146778821945,
0.29144689440727234,
0.5255553722381592,
0.19276544451713562,
0.5901477932929993,
0.4189227521419525,
-0.36652785539627075,
0.4029648005962372,
-0.21683789789676666,
-0.411470890045166,
0.08519584685564041,
-1.0598138570785522,
-0.9665421843528748,
-0.7462170124053955,
-0.6468448042869568,
-0.5165860652923584,
-0.0005763215012848377,
0.7543762922286987,
1.2575292587280273,
-0.9582850337028503,
-0.36845967173576355,
0.09147687256336212,
0.4455133378505707,
-0.13821062445640564,
-0.13227519392967224,
0.5039743781089783,
0.43826207518577576,
-0.7608075141906738,
-0.2784295082092285,
0.0837923213839531,
0.09383857250213623,
-0.35434314608573914,
0.10341006517410278,
0.00040502616320736706,
0.23563629388809204,
0.30431199073791504,
0.253098726272583,
-0.09242462366819382,
-0.5245316028594971,
-0.44776445627212524,
0.008454032242298126,
0.36254167556762695,
0.9710701704025269,
-0.556006908416748,
0.30019402503967285,
0.6418030858039856,
0.051444463431835175,
0.9941786527633667,
0.08063706010580063,
0.7305190563201904,
-0.6529669761657715,
0.12531134486198425,
-0.0128510482609272,
0.4702534079551697,
0.27704355120658875,
-0.4217457175254822,
0.5517336130142212,
0.4067252576351166,
-0.6425303816795349,
-0.3207443356513977,
0.01264816801995039,
-1.54153311252594,
0.2668682038784027,
0.8044900894165039,
0.17845283448696136,
-0.334177166223526,
-0.01584973931312561,
-0.7327010631561279,
0.08429252356290817,
-0.5828027725219727,
0.5636693239212036,
0.6207034587860107,
0.09406997263431549,
-0.5900141596794128,
-0.3956378400325775,
0.7179468274116516,
-0.2100430130958557,
-1.1705130338668823,
-0.12714074552059174,
0.5272006392478943,
0.20143292844295502,
0.03805428370833397,
0.5110146999359131,
-0.4108811318874359,
0.3032921552658081,
0.3705019950866699,
0.5089834332466125,
-0.11557893455028534,
-0.20165610313415527,
-0.2109111249446869,
0.25753477215766907,
-0.30351877212524414,
-0.5326122045516968
]
|
vivym/midjourney-messages | vivym | 2023-08-29T08:19:56Z | 262 | 120 | [
"license:apache-2.0",
"region:us"
]
| null | 2023-08-25T14:27:58Z | ---
license: apache-2.0
---
# midjourney-messages
## Description
This dataset contains the raw messages from Midjourney.
Total messages: 55,082,563
| [
0.07283119857311249,
-0.2286788523197174,
0.3685336112976074,
0.5189531445503235,
-0.6757752299308777,
-0.23043295741081238,
0.11086568981409073,
0.02471575140953064,
0.7032173871994019,
0.6843889355659485,
-1.0720109939575195,
-0.5146657228469849,
-0.6516674160957336,
-0.06808771938085556,
-0.5499211549758911,
1.2805004119873047,
0.49286016821861267,
-0.10470248013734818,
0.35307174921035767,
-0.12307151407003403,
-0.45820480585098267,
-0.9025746583938599,
-0.4160698652267456,
0.027475209906697273,
1.0910303592681885,
1.3521074056625366,
0.21948277950286865,
-0.04788758605718613,
0.42050042748451233,
0.299279123544693,
0.22964315116405487,
-0.1518704891204834,
-1.1026729345321655,
-0.18614110350608826,
-0.10488250106573105,
-0.5330177545547485,
-0.7314519882202148,
0.09499387443065643,
0.9679377675056458,
0.7530625462532043,
-0.2601969540119171,
0.8256146311759949,
-0.2524259686470032,
0.867281436920166,
-0.5320648550987244,
-0.18776434659957886,
-0.3995685875415802,
0.23702067136764526,
-0.7277683019638062,
0.007740896660834551,
-0.2199937105178833,
-0.03086378052830696,
0.3310379087924957,
-0.5913571119308472,
0.10892925411462784,
0.4885508716106415,
1.2124532461166382,
-0.3297805190086365,
-1.1602388620376587,
-0.07476437836885452,
-0.3686401844024658,
1.1074789762496948,
-0.3259119987487793,
0.15266427397727966,
0.8051503896713257,
0.664995014667511,
-0.23988674581050873,
-0.72658371925354,
-0.4193844795227051,
0.4932449758052826,
-0.11800822615623474,
0.445220023393631,
-0.494276225566864,
0.029505189508199692,
0.24585120379924774,
0.5920476913452148,
-1.0815272331237793,
-0.06899739801883698,
-0.8392453193664551,
-0.34053075313568115,
0.839821457862854,
0.7565164566040039,
0.35169872641563416,
-0.2461957335472107,
0.06737625598907471,
-0.24099937081336975,
-0.493642121553421,
-0.22805841267108917,
0.33467188477516174,
-0.1594826877117157,
-0.748220682144165,
0.9774817228317261,
-0.36561381816864014,
0.4318947196006775,
-0.27840930223464966,
0.40635421872138977,
0.10569552332162857,
-0.8341752290725708,
-0.9329065680503845,
0.10734568536281586,
0.7742588520050049,
0.8340312242507935,
0.2559794783592224,
-0.29725900292396545,
0.10930382460355759,
-0.007173552643507719,
-0.21359388530254364,
-0.9977821707725525,
-0.1939232349395752,
0.22903063893318176,
-0.6437711715698242,
0.058491844683885574,
0.40582701563835144,
-0.8900604248046875,
-0.03979146108031273,
-0.378734827041626,
-0.4373573958873749,
-0.21906262636184692,
-0.2239462286233902,
0.2971041202545166,
-0.18459577858448029,
0.1096862331032753,
0.21782077848911285,
-0.5110055804252625,
0.0660143792629242,
0.02506505325436592,
0.8297532200813293,
0.262552946805954,
-0.2047193944454193,
-0.013120697811245918,
-0.3006061613559723,
-0.290545254945755,
0.7811660170555115,
-0.513263463973999,
-0.9310150742530823,
-0.17526306211948395,
0.6151826977729797,
-0.22747094929218292,
-0.33389416337013245,
0.983479917049408,
-0.6582419872283936,
0.6836570501327515,
-0.9200459122657776,
-0.21369481086730957,
-0.15740817785263062,
0.4058443605899811,
-0.6032059788703918,
0.9973634481430054,
0.3465665876865387,
-0.5898416638374329,
-0.015028286725282669,
-0.629170835018158,
-0.1336904615163803,
-0.1970990151166916,
0.34785398840904236,
-0.1362496316432953,
-0.04578648507595062,
-0.15885353088378906,
0.5281364917755127,
-0.4295267164707184,
0.027328070253133774,
-0.20895697176456451,
-0.47891077399253845,
0.4063490629196167,
-0.781157374382019,
0.8973124623298645,
0.6591774821281433,
0.36930057406425476,
0.03702376410365105,
-1.2035212516784668,
-0.21170258522033691,
0.2727380692958832,
-0.1805846244096756,
-0.10358855873346329,
-0.5173986554145813,
0.33857154846191406,
0.22289584577083588,
0.39922571182250977,
-0.8437500596046448,
0.5330350399017334,
-0.3447848856449127,
-0.2770625352859497,
0.7081457376480103,
0.6628327965736389,
0.5749294757843018,
-0.626896321773529,
0.4796546995639801,
0.7329021692276001,
0.503315806388855,
-0.14039523899555206,
-0.4932684600353241,
-0.6115608215332031,
0.4344191551208496,
0.0073053473606705666,
0.6403050422668457,
-0.4048314392566681,
0.6193035244941711,
-0.5352345108985901,
-0.5951716303825378,
-0.1899452805519104,
-0.2028762549161911,
0.2699229419231415,
0.3360755145549774,
0.32542943954467773,
-0.035067275166511536,
-0.8874052166938782,
-0.869665801525116,
0.031836848706007004,
-0.09137576818466187,
0.011598407290875912,
0.2648176848888397,
0.5328733921051025,
-0.5478923916816711,
0.5862025618553162,
-0.9106254577636719,
-0.22940300405025482,
0.11368763446807861,
0.142746239900589,
0.6934722065925598,
0.26804062724113464,
0.7845817804336548,
-0.7067806720733643,
-0.5861334204673767,
-0.5489616990089417,
-0.5743211507797241,
0.1004733145236969,
-0.530646800994873,
-0.9365531206130981,
-0.6111258268356323,
-0.1584012508392334,
-0.5475721955299377,
0.6511526703834534,
0.4708409905433655,
-1.1464345455169678,
0.3798867464065552,
-0.06299587339162827,
0.2135503590106964,
-1.121533989906311,
-0.24188090860843658,
-0.3231678009033203,
-0.006793492939323187,
-0.3744189739227295,
-1.1451061964035034,
-0.28425300121307373,
0.251772403717041,
-0.5216403007507324,
0.3224678337574005,
-0.7613338232040405,
-0.04197470471262932,
-0.3411514163017273,
0.020554527640342712,
0.05735081434249878,
0.09356535971164703,
-0.6319723129272461,
0.471743106842041,
0.7892636060714722,
-0.320422887802124,
1.044440507888794,
0.5518704056739807,
0.03940831497311592,
0.7407215237617493,
-0.5844084024429321,
0.2931070327758789,
-0.4208497107028961,
0.4325585663318634,
-1.062455177307129,
-0.6285490393638611,
0.32030728459358215,
-0.39045795798301697,
-0.19725212454795837,
-0.25742432475090027,
-0.5311403274536133,
-0.2827199399471283,
-0.00504686962813139,
0.40211835503578186,
0.6433051228523254,
-0.2502530515193939,
0.011277657933533192,
0.4398915469646454,
-0.05277005583047867,
-0.4683338403701782,
-0.622765064239502,
0.639957070350647,
0.08635949343442917,
-0.3061685860157013,
-0.02541133388876915,
-0.0007634488283656538,
-0.03643597289919853,
0.02720552496612072,
-0.07732817530632019,
0.11453970521688461,
-0.34054356813430786,
0.4132663309574127,
0.4410474896430969,
-0.020405758172273636,
-0.10903982818126678,
0.3390772044658661,
-0.08403836190700531,
-0.038532644510269165,
-0.13371911644935608,
0.7393739223480225,
-0.3351086378097534,
-0.43719348311424255,
-0.07413378357887268,
0.6244358420372009,
0.6709578633308411,
0.24424847960472107,
0.9659245610237122,
0.590668261051178,
-0.4365786910057068,
0.18905222415924072,
-0.06923858076334,
-0.15860842168331146,
-0.43909987807273865,
0.13336478173732758,
-0.20563183724880219,
-0.5489428043365479,
0.4470292329788208,
0.1441313922405243,
0.010053747333586216,
0.6453747749328613,
0.6330336332321167,
-0.3238030672073364,
0.7386044859886169,
0.15263055264949799,
-0.3520336151123047,
0.26040512323379517,
-0.5550062656402588,
0.07223273813724518,
-0.80038982629776,
-0.9210680723190308,
-0.3964943587779999,
-0.6259541511535645,
-0.3082551658153534,
-0.18258872628211975,
0.12540395557880402,
0.10117040574550629,
-0.6788240075111389,
0.13854028284549713,
-0.7890670299530029,
0.5687146186828613,
0.4298030436038971,
0.11109153926372528,
-0.04998059570789337,
-0.29562318325042725,
-0.0353069081902504,
-0.1548348218202591,
-0.5509272813796997,
-0.6170638203620911,
1.3804419040679932,
-0.03138682246208191,
0.6329520344734192,
0.45179662108421326,
0.16356338560581207,
0.49336549639701843,
0.4065541625022888,
-0.15633229911327362,
0.9570869207382202,
-0.013099576346576214,
-0.9656058549880981,
-0.4111078381538391,
-0.3585571050643921,
-1.3138426542282104,
0.03232481703162193,
-0.38965103030204773,
-0.7615705728530884,
0.24283252656459808,
-0.29096874594688416,
-0.2661574184894562,
0.30383923649787903,
-0.8365264534950256,
0.5831670761108398,
-0.4514112174510956,
0.3012247383594513,
-0.03032461367547512,
-1.2660539150238037,
0.4615529179573059,
0.04186088219285011,
-0.18719281256198883,
-0.8038917779922485,
0.3615089952945709,
1.188498616218567,
-0.28489208221435547,
1.3512248992919922,
-0.20758572220802307,
0.5655192732810974,
0.13931404054164886,
-0.5048315525054932,
0.22101712226867676,
0.18540579080581665,
0.4856719374656677,
-0.2526497542858124,
0.4207139313220978,
-0.8328502774238586,
-0.01747099496424198,
0.7793689966201782,
-0.8847208619117737,
0.24601063132286072,
-0.808425784111023,
-0.4692275822162628,
0.21883107721805573,
0.5381613373756409,
0.654797375202179,
0.8564885854721069,
-0.31024089455604553,
0.35876554250717163,
0.6574455499649048,
-0.31144243478775024,
0.7515350580215454,
0.49712133407592773,
-0.29033875465393066,
-0.654163658618927,
0.5632474422454834,
0.3785243034362793,
-0.27130603790283203,
0.25553208589553833,
0.019205015152692795,
-0.5948362350463867,
-0.18717993795871735,
-0.35299965739250183,
0.3703633248806,
-0.5222300291061401,
-0.34170806407928467,
-0.7350879311561584,
-0.09298937022686005,
-0.4722360670566559,
-0.00112888403236866,
-0.24903132021427155,
-0.2984967529773712,
-0.7610620260238647,
-0.4293844997882843,
0.2976231873035431,
0.5854175090789795,
-0.08124865591526031,
1.2869662046432495,
-1.3216880559921265,
0.45998162031173706,
0.01591417007148266,
0.43160396814346313,
-0.3229862451553345,
-0.8396809697151184,
-0.6527438759803772,
0.3649596869945526,
-0.32499706745147705,
-1.1195906400680542,
0.3349929749965668,
0.34823402762413025,
0.5910075902938843,
0.8017109632492065,
0.2776130437850952,
0.8323427438735962,
-0.25616714358329773,
1.304978609085083,
0.2733323276042938,
-0.6269209980964661,
0.5183795094490051,
-0.5490853190422058,
0.5060009956359863,
0.5170727968215942,
0.5391284823417664,
-1.0342302322387695,
0.23596973717212677,
-1.164137363433838,
-0.50745689868927,
0.48909032344818115,
0.26715975999832153,
0.2896778881549835,
0.3028111457824707,
0.22945508360862732,
-0.4636300504207611,
0.060170575976371765,
-0.5512334704399109,
-0.4973389506340027,
-0.3220142126083374,
-0.5127650499343872,
-0.16518573462963104,
-0.5759732723236084,
-0.2949279248714447,
-0.4027145802974701,
0.6150485873222351,
0.3549126088619232,
0.37473130226135254,
0.1495087891817093,
0.1867249757051468,
-0.06603547185659409,
0.16793423891067505,
0.8909116983413696,
0.5954484939575195,
-0.3027961552143097,
0.27622246742248535,
0.4543812572956085,
-0.9788911938667297,
0.3132801353931427,
-0.045332372188568115,
0.15819427371025085,
0.4123252332210541,
0.8546004891395569,
0.8352649807929993,
0.04340151324868202,
-0.5465297102928162,
0.5253086090087891,
-0.155765101313591,
0.09056848287582397,
-0.6307728290557861,
-0.3005352020263672,
0.017757035791873932,
-0.04378509521484375,
0.5006665587425232,
-0.006003628950566053,
0.2537882328033447,
-0.625319242477417,
0.4730795621871948,
-0.04087437689304352,
-0.8428444266319275,
-0.9866869449615479,
0.6084738969802856,
-0.023309191688895226,
0.1736477017402649,
1.3616446256637573,
0.1970759630203247,
-0.5325741767883301,
0.38101449608802795,
0.4806283414363861,
0.6388537287712097,
-0.3871776759624481,
0.060155030339956284,
0.13230030238628387,
0.35229405760765076,
0.22259874641895294,
0.74666428565979,
0.21629473567008972,
-0.9814897179603577,
-0.34988823533058167,
-0.525070071220398,
-0.47347986698150635,
0.0038734711706638336,
-0.9862183332443237,
0.11146814376115799,
0.08883470296859741,
-0.36155539751052856,
-0.20218735933303833,
0.192048117518425,
-0.7802324891090393,
0.7830387353897095,
0.1696554273366928,
1.2727333307266235,
-1.473596453666687,
1.036315679550171,
1.0646207332611084,
-0.21884767711162567,
-0.704271137714386,
-0.42021363973617554,
-0.027905229479074478,
-0.5694843530654907,
0.3091231882572174,
0.010299834422767162,
0.12231326848268509,
-0.3138085603713989,
-1.0131992101669312,
-0.49231430888175964,
1.106308937072754,
-0.12495507299900055,
-0.8506193161010742,
0.09466841071844101,
0.4285840690135956,
0.4087427854537964,
-0.19812899827957153,
0.5159042477607727,
1.1406046152114868,
0.5675526261329651,
0.4346810579299927,
-0.8050880432128906,
-0.4544351398944855,
-0.6535043716430664,
-0.48747050762176514,
0.08880522847175598,
-1.2200959920883179,
0.6026381254196167,
0.06291776150465012,
-0.16729432344436646,
-0.53691166639328,
0.6794754266738892,
0.44892895221710205,
0.8038071393966675,
0.5187587738037109,
0.4069449007511139,
0.8858489990234375,
-0.5836315751075745,
0.755620539188385,
0.2612378001213074,
0.25676530599594116,
0.7362172603607178,
-0.32922598719596863,
-0.050761837512254715,
0.6685430407524109,
-0.1375722587108612,
0.2443487048149109,
0.9266276359558105,
0.16984976828098297,
0.816848874092102,
0.11208558827638626,
-0.2975943684577942,
0.16146977245807648,
-0.0210289116948843,
-0.11453506350517273,
0.30152490735054016,
0.4351348578929901,
0.0987769365310669,
-0.3762495815753937,
0.22987544536590576,
0.8125239014625549,
-0.31173938512802124,
-0.18824028968811035,
0.7048069834709167,
0.28812116384506226,
-0.5044302940368652,
0.1289631724357605,
-0.0846678838133812,
0.23126408457756042,
-0.4940411448478699,
-0.12173132598400116,
-0.5610784292221069,
0.1385357826948166,
-0.1757964789867401,
-1.3034518957138062,
0.7577935457229614,
0.06693538278341293,
-0.10770035535097122,
-0.3667603135108948,
0.8975631594657898,
-0.6361224055290222,
-0.7196468114852905,
-0.21163307130336761,
0.29311564564704895,
0.4076717495918274,
-0.1170068085193634,
-0.8710756897926331,
0.16698549687862396,
0.20590412616729736,
-0.45160427689552307,
0.022295808419585228,
0.9319919347763062,
0.14456818997859955,
0.5280376076698303,
0.810359001159668,
0.42082908749580383,
0.3593762218952179,
-0.20596212148666382,
1.0284690856933594,
-0.8273072242736816,
-0.43842992186546326,
-0.9491581916809082,
0.6807383894920349,
-0.6363157629966736,
-0.9396422505378723,
1.0419425964355469,
1.3054907321929932,
0.2969951927661896,
-0.06045215204358101,
0.8040668368339539,
-0.09587793797254562,
0.938685417175293,
-0.2620408833026886,
0.383745014667511,
-0.25906869769096375,
0.1979864537715912,
0.12868721783161163,
-0.6969091296195984,
-0.22209040820598602,
0.23313239216804504,
-0.3565436899662018,
-0.46724292635917664,
0.2179218977689743,
0.4451381266117096,
-0.2578490972518921,
0.4284094572067261,
0.2670937180519104,
0.13714192807674408,
0.40832433104515076,
0.784609317779541,
1.1580013036727905,
-0.7844799757003784,
0.24505344033241272,
-0.19915956258773804,
-0.3009994626045227,
-0.4302688241004944,
-0.7269656658172607,
-1.0207315683364868,
-0.5881064534187317,
0.12405762821435928,
-0.7333812713623047,
-0.028404170647263527,
0.7867209315299988,
0.8456659317016602,
-0.7598473429679871,
-0.1395263969898224,
0.34245678782463074,
-0.13640007376670837,
0.3680593967437744,
-0.14308783411979675,
0.6181261539459229,
0.35914236307144165,
-0.4534708857536316,
0.40322256088256836,
0.15942129492759705,
0.622361958026886,
0.17460432648658752,
0.01229111012071371,
-0.3441510498523712,
0.42136457562446594,
0.8227999806404114,
0.009242713451385498,
0.32169297337532043,
-0.08444041758775711,
0.5645291805267334,
-0.342446893453598,
-0.24123887717723846,
0.5762844681739807,
-0.04195008426904678,
-0.06647121906280518,
0.49801236391067505,
-0.01165399607270956,
1.1028863191604614,
0.44292113184928894,
0.1763765513896942,
-1.1460274457931519,
0.6316101551055908,
0.4075664281845093,
0.38954704999923706,
0.029470263049006462,
-0.5089508891105652,
0.4583996534347534,
0.5578106641769409,
-0.9407995343208313,
-1.1801609992980957,
-0.19758403301239014,
-1.4757802486419678,
0.06793120503425598,
0.9250906705856323,
0.10773589462041855,
-0.3200716972351074,
-0.3001704216003418,
-0.4955751299858093,
0.22682057321071625,
-0.3848091959953308,
0.022209016606211662,
0.7875173687934875,
-0.06601999700069427,
-0.30921369791030884,
-0.5634551048278809,
0.10671015828847885,
0.05720187723636627,
-1.0573800802230835,
-0.2827762961387634,
0.662092924118042,
0.26947930455207825,
-0.24289192259311676,
1.0828303098678589,
-0.10312612354755402,
-0.10131914168596268,
0.2107686847448349,
-0.02838866598904133,
0.35868191719055176,
-0.8075584173202515,
0.2952132225036621,
-0.0862845778465271,
-0.6189342737197876,
-0.910259485244751
]
|
open-llm-leaderboard/details_team-lucid__mptk-1b | open-llm-leaderboard | 2023-12-03T14:33:55Z | 262 | 0 | [
"region:us"
]
| null | 2023-09-14T22:37:02Z | ---
pretty_name: Evaluation run of team-lucid/mptk-1b
dataset_summary: "Dataset automatically created during the evaluation run of model\
\ [team-lucid/mptk-1b](https://huggingface.co/team-lucid/mptk-1b) 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 3 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 aggregated 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_team-lucid__mptk-1b\"\
,\n\t\"harness_gsm8k_5\",\n\tsplit=\"train\")\n```\n\n## Latest results\n\nThese\
\ are the [latest results from run 2023-12-03T14:33:48.115586](https://huggingface.co/datasets/open-llm-leaderboard/details_team-lucid__mptk-1b/blob/main/results_2023-12-03T14-33-48.115586.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.0,\n \"\
acc_stderr\": 0.0\n },\n \"harness|gsm8k|5\": {\n \"acc\": 0.0,\n \
\ \"acc_stderr\": 0.0\n }\n}\n```"
repo_url: https://huggingface.co/team-lucid/mptk-1b
leaderboard_url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard
point_of_contact: [email protected]
configs:
- config_name: harness_arc_challenge_25
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|arc:challenge|25_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|arc:challenge|25_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_drop_3
data_files:
- split: 2023_10_24T09_56_21.993036
path:
- '**/details_harness|drop|3_2023-10-24T09-56-21.993036.parquet'
- split: latest
path:
- '**/details_harness|drop|3_2023-10-24T09-56-21.993036.parquet'
- config_name: harness_gsm8k_5
data_files:
- split: 2023_10_24T09_56_21.993036
path:
- '**/details_harness|gsm8k|5_2023-10-24T09-56-21.993036.parquet'
- split: 2023_12_03T14_33_48.115586
path:
- '**/details_harness|gsm8k|5_2023-12-03T14-33-48.115586.parquet'
- split: latest
path:
- '**/details_harness|gsm8k|5_2023-12-03T14-33-48.115586.parquet'
- config_name: harness_hellaswag_10
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hellaswag|10_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hellaswag|10_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-anatomy|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-astronomy|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-business_ethics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-college_biology|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-college_medicine|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-college_physics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-computer_security|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-econometrics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-formal_logic|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-global_facts|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-human_aging|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-international_law|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-machine_learning|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-management|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-marketing|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-nutrition|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-philosophy|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-prehistory|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-professional_law|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-public_relations|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-security_studies|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-sociology|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-virology|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-world_religions|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-anatomy|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-astronomy|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-business_ethics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-college_biology|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-college_medicine|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-college_physics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-computer_security|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-econometrics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-formal_logic|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-global_facts|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-human_aging|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-international_law|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-machine_learning|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-management|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-marketing|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-nutrition|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-philosophy|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-prehistory|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-professional_law|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-public_relations|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-security_studies|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-sociology|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-virology|5_2023-09-14T22-36-48.355605.parquet'
- '**/details_harness|hendrycksTest-world_religions|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_abstract_algebra_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_anatomy_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-anatomy|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-anatomy|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_astronomy_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-astronomy|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-astronomy|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_business_ethics_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-business_ethics|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-business_ethics|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_clinical_knowledge_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_college_biology_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-college_biology|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_biology|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_college_chemistry_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_college_computer_science_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_college_mathematics_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_college_medicine_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-college_medicine|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_medicine|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_college_physics_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-college_physics|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_physics|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_computer_security_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-computer_security|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-computer_security|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_conceptual_physics_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_econometrics_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-econometrics|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-econometrics|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_electrical_engineering_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_elementary_mathematics_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_formal_logic_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-formal_logic|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-formal_logic|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_global_facts_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-global_facts|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-global_facts|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_high_school_biology_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_high_school_chemistry_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_high_school_computer_science_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_high_school_european_history_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_high_school_geography_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_high_school_government_and_politics_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_high_school_macroeconomics_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_high_school_mathematics_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_high_school_microeconomics_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_high_school_physics_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_high_school_psychology_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_high_school_statistics_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_high_school_us_history_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_high_school_world_history_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_human_aging_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-human_aging|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-human_aging|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_human_sexuality_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_international_law_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-international_law|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-international_law|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_jurisprudence_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_logical_fallacies_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_machine_learning_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-machine_learning|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-machine_learning|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_management_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-management|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-management|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_marketing_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-marketing|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-marketing|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_medical_genetics_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_miscellaneous_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_moral_disputes_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_moral_scenarios_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_nutrition_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-nutrition|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-nutrition|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_philosophy_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-philosophy|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-philosophy|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_prehistory_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-prehistory|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-prehistory|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_professional_accounting_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_professional_law_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-professional_law|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_law|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_professional_medicine_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_professional_psychology_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_public_relations_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-public_relations|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-public_relations|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_security_studies_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-security_studies|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-security_studies|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_sociology_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-sociology|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-sociology|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_us_foreign_policy_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_virology_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-virology|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-virology|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_hendrycksTest_world_religions_5
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|hendrycksTest-world_religions|5_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-world_religions|5_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_truthfulqa_mc_0
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- '**/details_harness|truthfulqa:mc|0_2023-09-14T22-36-48.355605.parquet'
- split: latest
path:
- '**/details_harness|truthfulqa:mc|0_2023-09-14T22-36-48.355605.parquet'
- config_name: harness_winogrande_5
data_files:
- split: 2023_10_24T09_56_21.993036
path:
- '**/details_harness|winogrande|5_2023-10-24T09-56-21.993036.parquet'
- split: latest
path:
- '**/details_harness|winogrande|5_2023-10-24T09-56-21.993036.parquet'
- config_name: results
data_files:
- split: 2023_09_14T22_36_48.355605
path:
- results_2023-09-14T22-36-48.355605.parquet
- split: 2023_10_24T09_56_21.993036
path:
- results_2023-10-24T09-56-21.993036.parquet
- split: 2023_12_03T14_33_48.115586
path:
- results_2023-12-03T14-33-48.115586.parquet
- split: latest
path:
- results_2023-12-03T14-33-48.115586.parquet
---
# Dataset Card for Evaluation run of team-lucid/mptk-1b
## Dataset Description
- **Homepage:**
- **Repository:** https://huggingface.co/team-lucid/mptk-1b
- **Paper:**
- **Leaderboard:** https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard
- **Point of Contact:** [email protected]
### Dataset Summary
Dataset automatically created during the evaluation run of model [team-lucid/mptk-1b](https://huggingface.co/team-lucid/mptk-1b) 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 3 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 aggregated 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_team-lucid__mptk-1b",
"harness_gsm8k_5",
split="train")
```
## Latest results
These are the [latest results from run 2023-12-03T14:33:48.115586](https://huggingface.co/datasets/open-llm-leaderboard/details_team-lucid__mptk-1b/blob/main/results_2023-12-03T14-33-48.115586.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.0,
"acc_stderr": 0.0
},
"harness|gsm8k|5": {
"acc": 0.0,
"acc_stderr": 0.0
}
}
```
### 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] | [
-0.3553158938884735,
-0.49905523657798767,
0.18134470283985138,
0.23074045777320862,
-0.32515281438827515,
0.22342725098133087,
-0.3934590816497803,
-0.07143736630678177,
0.32695409655570984,
0.5808900594711304,
-0.7933380007743835,
-0.9309444427490234,
-0.7394207119941711,
0.22228379547595978,
-0.03251957520842552,
1.2493855953216553,
-0.33787038922309875,
-0.146337628364563,
-0.07102575898170471,
-0.358137845993042,
-0.3785112500190735,
-0.38230618834495544,
-0.5979636907577515,
-0.5125399827957153,
0.48518168926239014,
0.7253051400184631,
0.24484363198280334,
0.602951169013977,
0.7038446664810181,
0.3430546820163727,
0.0364496186375618,
0.1979762613773346,
-0.5688848495483398,
-0.027882983908057213,
0.18122561275959015,
-0.5364201664924622,
-0.7502561807632446,
0.2684425413608551,
0.826380729675293,
0.3590656518936157,
-0.14669039845466614,
0.6098381280899048,
0.09589780122041702,
0.6352809071540833,
-0.4596308171749115,
0.5614388585090637,
-0.3344854712486267,
0.08282331377267838,
-0.30815306305885315,
-0.21753880381584167,
-0.1522456407546997,
-0.3084561228752136,
-0.17283794283866882,
-0.441264271736145,
0.08988197892904282,
-0.0268132034689188,
0.9771549105644226,
0.2858925759792328,
-0.19666238129138947,
-0.13119126856327057,
-0.32499897480010986,
0.8252770900726318,
-0.7981038093566895,
-0.09989972412586212,
0.6561577320098877,
0.22264623641967773,
-0.13013440370559692,
-0.5651841163635254,
-0.3297026455402374,
-0.05796525627374649,
-0.226293683052063,
0.3067137598991394,
0.13246777653694153,
-0.034563060849905014,
0.48765191435813904,
0.4850970506668091,
-0.6673632860183716,
0.04433431476354599,
-0.5524160861968994,
-0.08666759729385376,
1.0218337774276733,
0.45396947860717773,
0.07580529898405075,
-0.5300989747047424,
-0.45295652747154236,
-0.2588111460208893,
-0.3967937231063843,
0.17991824448108673,
0.359200656414032,
0.43748876452445984,
-0.6385882496833801,
0.8778550624847412,
-0.3778926134109497,
0.49149370193481445,
-0.15871085226535797,
-0.30984193086624146,
0.8170374035835266,
-0.7214756011962891,
-0.19266416132450104,
0.03600328043103218,
1.0166956186294556,
0.5035310387611389,
0.013203486800193787,
0.09807775169610977,
-0.3157511353492737,
-0.13824664056301117,
-0.0341966487467289,
-0.8783264756202698,
-0.22107969224452972,
0.3989984393119812,
-0.5413038730621338,
-0.41197335720062256,
0.30341169238090515,
-0.7862437963485718,
-0.2498997002840042,
-0.30832281708717346,
0.20968568325042725,
-0.23933111131191254,
-0.42861443758010864,
-0.2660778760910034,
-0.06252183020114899,
0.3217407166957855,
0.09759673476219177,
-0.6024568676948547,
0.3524143099784851,
0.7495477795600891,
1.0073902606964111,
-0.27476850152015686,
-0.502183198928833,
-0.4504238963127136,
-0.11735698580741882,
-0.11492685973644257,
0.47459766268730164,
-0.12626750767230988,
-0.34442704916000366,
-0.265748530626297,
0.252740740776062,
-0.40775954723358154,
-0.5961034893989563,
0.647437572479248,
-0.15935704112052917,
0.13808013498783112,
-0.414580374956131,
-0.534202516078949,
-0.022192249074578285,
0.33423346281051636,
-0.5790975093841553,
1.3396997451782227,
0.3803104758262634,
-0.8833156228065491,
0.35881197452545166,
-0.9959007501602173,
-0.21211305260658264,
0.13822205364704132,
0.02125811018049717,
-0.5954824686050415,
-0.13291335105895996,
0.09533974528312683,
0.7008386850357056,
-0.20672635734081268,
0.12170816957950592,
-0.21290723979473114,
-0.4104498624801636,
0.07156898826360703,
0.06843430548906326,
1.0314370393753052,
0.22125351428985596,
-0.20109599828720093,
0.2639491558074951,
-0.8426827788352966,
0.11904129385948181,
0.2877354323863983,
-0.5528364777565002,
-0.1522883176803589,
-0.12746047973632812,
0.14472459256649017,
0.20606324076652527,
0.4294511675834656,
-0.6416298747062683,
0.3710134029388428,
-0.11087056994438171,
0.3499961793422699,
1.0483263731002808,
0.09129117429256439,
0.2192813903093338,
-0.522258996963501,
0.5723938345909119,
0.015579490922391415,
0.3420937657356262,
0.1461668610572815,
-0.6285710334777832,
-0.6462069749832153,
-0.31279924511909485,
0.212639719247818,
0.648300290107727,
-0.5405833125114441,
0.7043625116348267,
-0.48090338706970215,
-0.6327288150787354,
-0.6833630204200745,
0.05886492133140564,
0.3892795145511627,
0.613012433052063,
0.2680618166923523,
-0.20034432411193848,
-0.821843683719635,
-1.0913945436477661,
0.06449537724256516,
-0.19444851577281952,
0.09595716744661331,
0.5753694176673889,
1.0543138980865479,
-0.1707322746515274,
0.6940909028053284,
-0.6229734420776367,
-0.23434515297412872,
-0.3784099519252777,
0.102383553981781,
0.7865933775901794,
0.5307661294937134,
0.36699527502059937,
-0.6869332194328308,
-0.5651698112487793,
-0.1839478611946106,
-0.7185858488082886,
-0.2593190371990204,
-0.04526633396744728,
-0.26297250390052795,
0.30675002932548523,
-0.13228175044059753,
-0.5050393342971802,
0.43250855803489685,
0.5071375966072083,
-0.6256505250930786,
0.6712638139724731,
0.1020631194114685,
0.47770944237709045,
-1.2993003129959106,
0.24144655466079712,
-0.009550143964588642,
-0.021937495097517967,
-0.31988972425460815,
-0.16936810314655304,
-0.10650017112493515,
0.29440492391586304,
-0.40407297015190125,
0.5600692629814148,
-0.30817288160324097,
-0.20873379707336426,
0.027077922597527504,
0.06464910507202148,
-0.18420454859733582,
0.5399607419967651,
-0.25888991355895996,
0.7988314032554626,
0.4162260890007019,
-0.342977374792099,
0.5698289275169373,
0.4434710443019867,
-0.5271807312965393,
0.35274380445480347,
-0.4323239326477051,
0.12596791982650757,
0.18882501125335693,
0.15427428483963013,
-0.9103174209594727,
-0.4661182761192322,
0.5010585188865662,
-0.5719351768493652,
0.2569725513458252,
-0.4171797037124634,
-0.8547572493553162,
-0.41754665970802307,
-0.4802054464817047,
0.21836817264556885,
0.5559911727905273,
-0.3913835287094116,
0.1699838787317276,
0.49466192722320557,
0.03438575565814972,
-0.6156976222991943,
-0.6925913691520691,
-0.08472850173711777,
-0.3447847068309784,
-0.7332669496536255,
0.360409140586853,
-0.27640941739082336,
-0.2341899424791336,
0.04262010380625725,
-0.06535752862691879,
-0.1714164763689041,
0.1400102972984314,
0.36727672815322876,
0.4741706848144531,
-0.15947218239307404,
-0.2831783592700958,
-0.30397748947143555,
-0.20776274800300598,
0.06219799444079399,
0.21217544376850128,
0.5384088158607483,
-0.22408467531204224,
-0.11674632132053375,
-0.2585389316082001,
0.1328374147415161,
0.4842599332332611,
-0.06222036853432655,
0.9753208756446838,
0.7741495966911316,
-0.3188631534576416,
-0.017964433878660202,
-0.4646720290184021,
-0.04972594976425171,
-0.4171960949897766,
0.3893378973007202,
-0.2829018831253052,
-0.7393340468406677,
0.7465326189994812,
0.28585144877433777,
0.11174768954515457,
0.6607311964035034,
0.6834333539009094,
-0.060684919357299805,
0.7763379216194153,
0.2912362217903137,
-0.08398331701755524,
0.5024405121803284,
-0.7570229172706604,
-0.24053272604942322,
-1.230973482131958,
-0.4264373481273651,
-0.3642180860042572,
-0.5264020562171936,
-0.7571347951889038,
-0.3381628394126892,
0.30801042914390564,
0.19248543679714203,
-0.3239898383617401,
0.5043907165527344,
-0.6276008486747742,
0.36068037152290344,
0.5486974716186523,
0.2429891675710678,
0.08640243858098984,
-0.0894450917840004,
-0.1635308414697647,
0.09016260504722595,
-0.5707842111587524,
-0.385197252035141,
1.449411153793335,
0.25667470693588257,
0.3862753212451935,
-0.05257543921470642,
1.0031951665878296,
0.2310839295387268,
0.4326513111591339,
-0.5510213375091553,
0.7175761461257935,
-0.06831349432468414,
-0.47758111357688904,
-0.1562112420797348,
-0.6439000368118286,
-0.8132893443107605,
0.10730652511119843,
-0.04941049590706825,
-0.8510640263557434,
-0.10784192383289337,
-0.11656296998262405,
-0.14570455253124237,
0.32199329137802124,
-0.6944315433502197,
0.9310916662216187,
-0.1898234337568283,
-0.437214195728302,
-0.03693963214755058,
-0.782196581363678,
0.46656617522239685,
-0.029649395495653152,
0.22060321271419525,
-0.35415536165237427,
-0.13623765110969543,
1.189268946647644,
-0.6036074757575989,
0.7043056488037109,
-0.40155017375946045,
0.2944280207157135,
0.33603933453559875,
-0.42708227038383484,
0.5537645220756531,
-0.008155743591487408,
-0.3039366602897644,
0.3110771179199219,
-0.2265920639038086,
-0.33772513270378113,
-0.33177703619003296,
0.8776875138282776,
-0.8255250453948975,
-0.20731978118419647,
-0.46756473183631897,
-0.6611551642417908,
0.128639817237854,
0.2094694972038269,
0.31782448291778564,
0.1272546350955963,
0.0719505175948143,
0.3252433240413666,
0.27926334738731384,
-0.16298778355121613,
0.5832209587097168,
0.4859653115272522,
-0.16560743749141693,
-0.7274287343025208,
0.6642096042633057,
0.34862443804740906,
0.005024023354053497,
0.2103843092918396,
0.1279078871011734,
-0.4300394356250763,
-0.6725800633430481,
-0.2803340256214142,
0.2804822623729706,
-0.49734359979629517,
-0.2809455096721649,
-0.3607175946235657,
-0.3089618384838104,
-0.3440193235874176,
0.13337963819503784,
-0.4339451789855957,
-0.45554131269454956,
-0.2653602361679077,
-0.29175451397895813,
0.5564327836036682,
0.6754130721092224,
-0.3580741286277771,
0.24507294595241547,
-0.7121023535728455,
0.1823337972164154,
-0.1446644812822342,
0.6009173393249512,
-0.2789938151836395,
-0.48047444224357605,
-0.533414363861084,
0.06921839714050293,
-0.2886728346347809,
-0.8598256707191467,
0.48410162329673767,
-0.02291703037917614,
0.751924455165863,
-0.008758381940424442,
0.11330365389585495,
0.6233981847763062,
-0.20020999014377594,
1.0016911029815674,
-0.04287658631801605,
-0.5051695704460144,
0.7926427721977234,
-0.4498133957386017,
0.14074479043483734,
0.5786734819412231,
0.15268851816654205,
-0.40073251724243164,
-0.03971507400274277,
-0.8529269099235535,
-1.1159335374832153,
1.1643131971359253,
0.6487604379653931,
-0.40910467505455017,
0.18316543102264404,
0.42394185066223145,
-0.060463543981313705,
0.2299807220697403,
-0.7353389859199524,
-0.6634318232536316,
-0.07453768700361252,
-0.2443244308233261,
-0.14066876471042633,
-0.18052098155021667,
-0.41085395216941833,
-0.48032620549201965,
0.9422223567962646,
0.027255427092313766,
0.39333009719848633,
0.16140128672122955,
-0.0076829916797578335,
-0.1901266723871231,
0.16929025948047638,
0.564541220664978,
0.7830727696418762,
-0.501706600189209,
-0.18663306534290314,
0.2398422807455063,
-0.5739501118659973,
-0.013353201560676098,
0.28128930926322937,
0.04999598115682602,
-0.23420006036758423,
0.6680271625518799,
0.8651747107505798,
0.04322104901075363,
-0.33268997073173523,
0.4788387715816498,
0.05637852102518082,
-0.20424768328666687,
-0.41953253746032715,
0.11479131877422333,
-0.046928342431783676,
0.3566191494464874,
0.3321366310119629,
0.02185957320034504,
-0.10276978462934494,
-0.24428878724575043,
0.41852426528930664,
0.1705610454082489,
-0.10320515185594559,
-0.3172847032546997,
0.4481090009212494,
-0.003678343491628766,
-0.3403385281562805,
0.7617061734199524,
-0.16650786995887756,
-0.5676297545433044,
1.0784028768539429,
0.16443917155265808,
1.0381500720977783,
-0.14582745730876923,
0.14169469475746155,
0.6317499279975891,
0.34882107377052307,
-0.028112580999732018,
0.590745747089386,
0.04389107972383499,
-0.6140797138214111,
-0.40754857659339905,
-0.757468044757843,
-0.1953718066215515,
0.3819832503795624,
-0.8228635191917419,
0.3732559084892273,
-0.2590864896774292,
-0.2185434252023697,
-0.19747577607631683,
0.5511969923973083,
-0.82066810131073,
0.026918111369013786,
0.1108686625957489,
0.8198609948158264,
-0.940295398235321,
0.7337575554847717,
0.8468673825263977,
-0.6075943112373352,
-0.8314882516860962,
-0.3304330110549927,
0.07009326666593552,
-0.8427469730377197,
0.5954407453536987,
0.23338128626346588,
0.5284673571586609,
-0.14376848936080933,
-0.7058694362640381,
-0.8034867644309998,
1.6075254678726196,
0.15020276606082916,
-0.42328956723213196,
0.23671038448810577,
0.22135941684246063,
0.3869497776031494,
-0.5241358876228333,
0.48672574758529663,
0.6242815852165222,
0.8100290298461914,
0.0901801660656929,
-0.9689693450927734,
0.22304388880729675,
-0.4713250696659088,
-0.21933823823928833,
0.1603579968214035,
-0.9229384064674377,
1.0173273086547852,
-0.21842721104621887,
0.05537862703204155,
-0.08980956673622131,
0.21628537774085999,
0.5728646516799927,
0.33976078033447266,
0.4682164788246155,
0.7796235084533691,
0.613999605178833,
-0.3727428615093231,
1.132319688796997,
-0.1989831030368805,
0.8117173910140991,
1.215549349784851,
0.06731448322534561,
0.729097843170166,
0.36118683218955994,
-0.4620995819568634,
0.39372700452804565,
0.8886862993240356,
-0.4893874526023865,
0.4729090631008148,
0.25715649127960205,
-0.04692072421312332,
-0.09250427782535553,
-0.06820209324359894,
-0.38937029242515564,
0.4867683947086334,
0.13603541254997253,
-0.6436255574226379,
-0.17041940987110138,
-0.3060096204280853,
0.10365083813667297,
-0.40134766697883606,
-0.2708503305912018,
0.6736619472503662,
-0.030299190431833267,
-0.5990114808082581,
0.6143234372138977,
-0.12439277768135071,
0.6212127804756165,
-0.6934090256690979,
-0.21459798514842987,
-0.23004142940044403,
0.17286884784698486,
-0.5760913491249084,
-1.005957841873169,
0.345010906457901,
0.053050801157951355,
-0.3514123558998108,
-0.32417547702789307,
0.5572565197944641,
-0.2769072651863098,
-0.5324432849884033,
0.37028831243515015,
0.40033334493637085,
0.37680724263191223,
0.08569265902042389,
-1.0647202730178833,
0.20970231294631958,
0.21365229785442352,
-0.6857188940048218,
0.3619072139263153,
0.15595228970050812,
0.23547177016735077,
0.5561521053314209,
0.6137493848800659,
0.10549893230199814,
0.08228211104869843,
0.005530071910470724,
0.9567899107933044,
-0.6538032293319702,
-0.3000270128250122,
-0.9085761308670044,
0.9442415833473206,
-0.32205620408058167,
-0.5470877289772034,
0.8058434128761292,
1.088602900505066,
0.6950825452804565,
0.14709243178367615,
0.8010193109512329,
-0.4026203751564026,
0.5146518349647522,
-0.41238081455230713,
1.0390102863311768,
-0.5747355222702026,
0.3920370042324066,
-0.29099005460739136,
-0.8828155994415283,
-0.05230985954403877,
0.5693070888519287,
-0.20189066231250763,
-0.00749930739402771,
0.5997289419174194,
0.7804330587387085,
0.021066468209028244,
0.1455862820148468,
-0.04038193076848984,
0.6186519265174866,
0.22026491165161133,
0.6817552447319031,
0.5911449193954468,
-0.6582743525505066,
0.4607129991054535,
-0.6852191090583801,
-0.5061290860176086,
-0.0070991008542478085,
-0.7640203237533569,
-0.8348203301429749,
-0.6131966710090637,
-0.4928455054759979,
-0.5687055587768555,
0.034547653049230576,
1.0756117105484009,
0.5757737159729004,
-0.8909687995910645,
-0.4268932640552521,
0.006124707404524088,
0.31692764163017273,
-0.11825143545866013,
-0.34585991501808167,
0.5447597503662109,
-0.12513817846775055,
-0.6962423920631409,
0.32779359817504883,
-0.12269619107246399,
-0.19925567507743835,
-0.043045300990343094,
-0.26025643944740295,
-0.5115442276000977,
-0.4399493932723999,
0.4465462267398834,
0.045237213373184204,
-0.6243169903755188,
-0.3376021981239319,
-0.18680556118488312,
0.0154262138530612,
0.3742430508136749,
0.36390531063079834,
-0.6276499032974243,
0.17829109728336334,
0.6449832916259766,
0.15254434943199158,
0.7108306884765625,
-0.07033553719520569,
0.2968735992908478,
-0.8306534886360168,
-0.15455277264118195,
0.18163655698299408,
0.5172380208969116,
0.21140028536319733,
-0.4075467586517334,
1.1633830070495605,
0.5333752632141113,
-0.6906000375747681,
-0.950980544090271,
-0.18466253578662872,
-1.1085201501846313,
0.09434530138969421,
1.366355299949646,
-0.28803813457489014,
-0.20985722541809082,
0.07914439588785172,
-0.11891952902078629,
0.4361214339733124,
-0.6965245604515076,
0.44934797286987305,
0.8877608180046082,
-0.46099916100502014,
-0.16016943752765656,
-0.6621299982070923,
0.4495718479156494,
-0.05484728142619133,
-0.9118261337280273,
-0.003456400940194726,
0.24143695831298828,
0.5054712295532227,
0.046867188066244125,
0.7419385313987732,
-0.06672515720129013,
-0.1536121517419815,
-0.018074866384267807,
0.1017073467373848,
-0.3273666501045227,
-0.0818638950586319,
-0.17143604159355164,
0.1687440276145935,
-0.458257257938385,
-0.44638362526893616
]
|
open-llm-leaderboard/details_adonlee__LLaMA_2_70B_LoRA | open-llm-leaderboard | 2023-09-22T21:37:15Z | 262 | 0 | [
"region:us"
]
| null | 2023-09-22T21:36:15Z | ---
pretty_name: Evaluation run of adonlee/LLaMA_2_70B_LoRA
dataset_summary: "Dataset automatically created during the evaluation run of model\
\ [adonlee/LLaMA_2_70B_LoRA](https://huggingface.co/adonlee/LLaMA_2_70B_LoRA) on\
\ the [Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard).\n\
\nThe dataset is composed of 61 configuration, each one coresponding to one of the\
\ evaluated task.\n\nThe dataset has been created from 1 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_adonlee__LLaMA_2_70B_LoRA\"\
,\n\t\"harness_truthfulqa_mc_0\",\n\tsplit=\"train\")\n```\n\n## Latest results\n\
\nThese are the [latest results from run 2023-09-22T21:35:51.410251](https://huggingface.co/datasets/open-llm-leaderboard/details_adonlee__LLaMA_2_70B_LoRA/blob/main/results_2023-09-22T21-35-51.410251.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.7077096775676626,\n\
\ \"acc_stderr\": 0.030867670314758275,\n \"acc_norm\": 0.7114995822621553,\n\
\ \"acc_norm_stderr\": 0.030836833292351554,\n \"mc1\": 0.4663402692778458,\n\
\ \"mc1_stderr\": 0.017463793867168106,\n \"mc2\": 0.6451679386365279,\n\
\ \"mc2_stderr\": 0.014753028795637621\n },\n \"harness|arc:challenge|25\"\
: {\n \"acc\": 0.6902730375426621,\n \"acc_stderr\": 0.013512058415238361,\n\
\ \"acc_norm\": 0.726962457337884,\n \"acc_norm_stderr\": 0.013019332762635743\n\
\ },\n \"harness|hellaswag|10\": {\n \"acc\": 0.6886078470424218,\n\
\ \"acc_stderr\": 0.004621163476949205,\n \"acc_norm\": 0.8755228042222665,\n\
\ \"acc_norm_stderr\": 0.003294504807555228\n },\n \"harness|hendrycksTest-abstract_algebra|5\"\
: {\n \"acc\": 0.35,\n \"acc_stderr\": 0.0479372485441102,\n \
\ \"acc_norm\": 0.35,\n \"acc_norm_stderr\": 0.0479372485441102\n },\n\
\ \"harness|hendrycksTest-anatomy|5\": {\n \"acc\": 0.6370370370370371,\n\
\ \"acc_stderr\": 0.041539484047424,\n \"acc_norm\": 0.6370370370370371,\n\
\ \"acc_norm_stderr\": 0.041539484047424\n },\n \"harness|hendrycksTest-astronomy|5\"\
: {\n \"acc\": 0.8223684210526315,\n \"acc_stderr\": 0.03110318238312338,\n\
\ \"acc_norm\": 0.8223684210526315,\n \"acc_norm_stderr\": 0.03110318238312338\n\
\ },\n \"harness|hendrycksTest-business_ethics|5\": {\n \"acc\": 0.76,\n\
\ \"acc_stderr\": 0.04292346959909283,\n \"acc_norm\": 0.76,\n \
\ \"acc_norm_stderr\": 0.04292346959909283\n },\n \"harness|hendrycksTest-clinical_knowledge|5\"\
: {\n \"acc\": 0.7358490566037735,\n \"acc_stderr\": 0.02713429162874171,\n\
\ \"acc_norm\": 0.7358490566037735,\n \"acc_norm_stderr\": 0.02713429162874171\n\
\ },\n \"harness|hendrycksTest-college_biology|5\": {\n \"acc\": 0.8263888888888888,\n\
\ \"acc_stderr\": 0.03167473383795718,\n \"acc_norm\": 0.8263888888888888,\n\
\ \"acc_norm_stderr\": 0.03167473383795718\n },\n \"harness|hendrycksTest-college_chemistry|5\"\
: {\n \"acc\": 0.49,\n \"acc_stderr\": 0.05024183937956912,\n \
\ \"acc_norm\": 0.49,\n \"acc_norm_stderr\": 0.05024183937956912\n \
\ },\n \"harness|hendrycksTest-college_computer_science|5\": {\n \"acc\"\
: 0.56,\n \"acc_stderr\": 0.04988876515698589,\n \"acc_norm\": 0.56,\n\
\ \"acc_norm_stderr\": 0.04988876515698589\n },\n \"harness|hendrycksTest-college_mathematics|5\"\
: {\n \"acc\": 0.41,\n \"acc_stderr\": 0.04943110704237102,\n \
\ \"acc_norm\": 0.41,\n \"acc_norm_stderr\": 0.04943110704237102\n \
\ },\n \"harness|hendrycksTest-college_medicine|5\": {\n \"acc\": 0.6936416184971098,\n\
\ \"acc_stderr\": 0.03514942551267439,\n \"acc_norm\": 0.6936416184971098,\n\
\ \"acc_norm_stderr\": 0.03514942551267439\n },\n \"harness|hendrycksTest-college_physics|5\"\
: {\n \"acc\": 0.37254901960784315,\n \"acc_stderr\": 0.048108401480826346,\n\
\ \"acc_norm\": 0.37254901960784315,\n \"acc_norm_stderr\": 0.048108401480826346\n\
\ },\n \"harness|hendrycksTest-computer_security|5\": {\n \"acc\":\
\ 0.78,\n \"acc_stderr\": 0.04163331998932263,\n \"acc_norm\": 0.78,\n\
\ \"acc_norm_stderr\": 0.04163331998932263\n },\n \"harness|hendrycksTest-conceptual_physics|5\"\
: {\n \"acc\": 0.7106382978723405,\n \"acc_stderr\": 0.02964400657700962,\n\
\ \"acc_norm\": 0.7106382978723405,\n \"acc_norm_stderr\": 0.02964400657700962\n\
\ },\n \"harness|hendrycksTest-econometrics|5\": {\n \"acc\": 0.45614035087719296,\n\
\ \"acc_stderr\": 0.04685473041907789,\n \"acc_norm\": 0.45614035087719296,\n\
\ \"acc_norm_stderr\": 0.04685473041907789\n },\n \"harness|hendrycksTest-electrical_engineering|5\"\
: {\n \"acc\": 0.6206896551724138,\n \"acc_stderr\": 0.04043461861916746,\n\
\ \"acc_norm\": 0.6206896551724138,\n \"acc_norm_stderr\": 0.04043461861916746\n\
\ },\n \"harness|hendrycksTest-elementary_mathematics|5\": {\n \"acc\"\
: 0.47619047619047616,\n \"acc_stderr\": 0.02572209706438853,\n \"\
acc_norm\": 0.47619047619047616,\n \"acc_norm_stderr\": 0.02572209706438853\n\
\ },\n \"harness|hendrycksTest-formal_logic|5\": {\n \"acc\": 0.5079365079365079,\n\
\ \"acc_stderr\": 0.044715725362943486,\n \"acc_norm\": 0.5079365079365079,\n\
\ \"acc_norm_stderr\": 0.044715725362943486\n },\n \"harness|hendrycksTest-global_facts|5\"\
: {\n \"acc\": 0.47,\n \"acc_stderr\": 0.050161355804659205,\n \
\ \"acc_norm\": 0.47,\n \"acc_norm_stderr\": 0.050161355804659205\n \
\ },\n \"harness|hendrycksTest-high_school_biology|5\": {\n \"acc\"\
: 0.8096774193548387,\n \"acc_stderr\": 0.022331707611823078,\n \"\
acc_norm\": 0.8096774193548387,\n \"acc_norm_stderr\": 0.022331707611823078\n\
\ },\n \"harness|hendrycksTest-high_school_chemistry|5\": {\n \"acc\"\
: 0.5714285714285714,\n \"acc_stderr\": 0.034819048444388045,\n \"\
acc_norm\": 0.5714285714285714,\n \"acc_norm_stderr\": 0.034819048444388045\n\
\ },\n \"harness|hendrycksTest-high_school_computer_science|5\": {\n \
\ \"acc\": 0.78,\n \"acc_stderr\": 0.04163331998932262,\n \"acc_norm\"\
: 0.78,\n \"acc_norm_stderr\": 0.04163331998932262\n },\n \"harness|hendrycksTest-high_school_european_history|5\"\
: {\n \"acc\": 0.8545454545454545,\n \"acc_stderr\": 0.027530196355066584,\n\
\ \"acc_norm\": 0.8545454545454545,\n \"acc_norm_stderr\": 0.027530196355066584\n\
\ },\n \"harness|hendrycksTest-high_school_geography|5\": {\n \"acc\"\
: 0.898989898989899,\n \"acc_stderr\": 0.021469735576055343,\n \"\
acc_norm\": 0.898989898989899,\n \"acc_norm_stderr\": 0.021469735576055343\n\
\ },\n \"harness|hendrycksTest-high_school_government_and_politics|5\": {\n\
\ \"acc\": 0.9326424870466321,\n \"acc_stderr\": 0.0180883938390789,\n\
\ \"acc_norm\": 0.9326424870466321,\n \"acc_norm_stderr\": 0.0180883938390789\n\
\ },\n \"harness|hendrycksTest-high_school_macroeconomics|5\": {\n \
\ \"acc\": 0.7102564102564103,\n \"acc_stderr\": 0.023000628243687968,\n\
\ \"acc_norm\": 0.7102564102564103,\n \"acc_norm_stderr\": 0.023000628243687968\n\
\ },\n \"harness|hendrycksTest-high_school_mathematics|5\": {\n \"\
acc\": 0.337037037037037,\n \"acc_stderr\": 0.028820884666253252,\n \
\ \"acc_norm\": 0.337037037037037,\n \"acc_norm_stderr\": 0.028820884666253252\n\
\ },\n \"harness|hendrycksTest-high_school_microeconomics|5\": {\n \
\ \"acc\": 0.7815126050420168,\n \"acc_stderr\": 0.02684151432295893,\n \
\ \"acc_norm\": 0.7815126050420168,\n \"acc_norm_stderr\": 0.02684151432295893\n\
\ },\n \"harness|hendrycksTest-high_school_physics|5\": {\n \"acc\"\
: 0.4900662251655629,\n \"acc_stderr\": 0.04081677107248436,\n \"\
acc_norm\": 0.4900662251655629,\n \"acc_norm_stderr\": 0.04081677107248436\n\
\ },\n \"harness|hendrycksTest-high_school_psychology|5\": {\n \"acc\"\
: 0.9009174311926605,\n \"acc_stderr\": 0.01280978008187893,\n \"\
acc_norm\": 0.9009174311926605,\n \"acc_norm_stderr\": 0.01280978008187893\n\
\ },\n \"harness|hendrycksTest-high_school_statistics|5\": {\n \"acc\"\
: 0.5833333333333334,\n \"acc_stderr\": 0.033622774366080424,\n \"\
acc_norm\": 0.5833333333333334,\n \"acc_norm_stderr\": 0.033622774366080424\n\
\ },\n \"harness|hendrycksTest-high_school_us_history|5\": {\n \"acc\"\
: 0.9019607843137255,\n \"acc_stderr\": 0.0208711184555521,\n \"acc_norm\"\
: 0.9019607843137255,\n \"acc_norm_stderr\": 0.0208711184555521\n },\n\
\ \"harness|hendrycksTest-high_school_world_history|5\": {\n \"acc\":\
\ 0.8818565400843882,\n \"acc_stderr\": 0.02101105265987847,\n \"\
acc_norm\": 0.8818565400843882,\n \"acc_norm_stderr\": 0.02101105265987847\n\
\ },\n \"harness|hendrycksTest-human_aging|5\": {\n \"acc\": 0.7847533632286996,\n\
\ \"acc_stderr\": 0.027584066602208274,\n \"acc_norm\": 0.7847533632286996,\n\
\ \"acc_norm_stderr\": 0.027584066602208274\n },\n \"harness|hendrycksTest-human_sexuality|5\"\
: {\n \"acc\": 0.8473282442748091,\n \"acc_stderr\": 0.031545216720054725,\n\
\ \"acc_norm\": 0.8473282442748091,\n \"acc_norm_stderr\": 0.031545216720054725\n\
\ },\n \"harness|hendrycksTest-international_law|5\": {\n \"acc\":\
\ 0.8760330578512396,\n \"acc_stderr\": 0.030083098716035202,\n \"\
acc_norm\": 0.8760330578512396,\n \"acc_norm_stderr\": 0.030083098716035202\n\
\ },\n \"harness|hendrycksTest-jurisprudence|5\": {\n \"acc\": 0.8425925925925926,\n\
\ \"acc_stderr\": 0.035207039905179635,\n \"acc_norm\": 0.8425925925925926,\n\
\ \"acc_norm_stderr\": 0.035207039905179635\n },\n \"harness|hendrycksTest-logical_fallacies|5\"\
: {\n \"acc\": 0.8466257668711656,\n \"acc_stderr\": 0.0283116014414386,\n\
\ \"acc_norm\": 0.8466257668711656,\n \"acc_norm_stderr\": 0.0283116014414386\n\
\ },\n \"harness|hendrycksTest-machine_learning|5\": {\n \"acc\": 0.5714285714285714,\n\
\ \"acc_stderr\": 0.04697113923010213,\n \"acc_norm\": 0.5714285714285714,\n\
\ \"acc_norm_stderr\": 0.04697113923010213\n },\n \"harness|hendrycksTest-management|5\"\
: {\n \"acc\": 0.8252427184466019,\n \"acc_stderr\": 0.03760178006026621,\n\
\ \"acc_norm\": 0.8252427184466019,\n \"acc_norm_stderr\": 0.03760178006026621\n\
\ },\n \"harness|hendrycksTest-marketing|5\": {\n \"acc\": 0.9145299145299145,\n\
\ \"acc_stderr\": 0.01831589168562585,\n \"acc_norm\": 0.9145299145299145,\n\
\ \"acc_norm_stderr\": 0.01831589168562585\n },\n \"harness|hendrycksTest-medical_genetics|5\"\
: {\n \"acc\": 0.75,\n \"acc_stderr\": 0.04351941398892446,\n \
\ \"acc_norm\": 0.75,\n \"acc_norm_stderr\": 0.04351941398892446\n \
\ },\n \"harness|hendrycksTest-miscellaneous|5\": {\n \"acc\": 0.8697318007662835,\n\
\ \"acc_stderr\": 0.012036729568216054,\n \"acc_norm\": 0.8697318007662835,\n\
\ \"acc_norm_stderr\": 0.012036729568216054\n },\n \"harness|hendrycksTest-moral_disputes|5\"\
: {\n \"acc\": 0.7687861271676301,\n \"acc_stderr\": 0.022698657167855713,\n\
\ \"acc_norm\": 0.7687861271676301,\n \"acc_norm_stderr\": 0.022698657167855713\n\
\ },\n \"harness|hendrycksTest-moral_scenarios|5\": {\n \"acc\": 0.646927374301676,\n\
\ \"acc_stderr\": 0.01598420454526858,\n \"acc_norm\": 0.646927374301676,\n\
\ \"acc_norm_stderr\": 0.01598420454526858\n },\n \"harness|hendrycksTest-nutrition|5\"\
: {\n \"acc\": 0.7516339869281046,\n \"acc_stderr\": 0.024739981355113592,\n\
\ \"acc_norm\": 0.7516339869281046,\n \"acc_norm_stderr\": 0.024739981355113592\n\
\ },\n \"harness|hendrycksTest-philosophy|5\": {\n \"acc\": 0.7684887459807074,\n\
\ \"acc_stderr\": 0.023956532766639133,\n \"acc_norm\": 0.7684887459807074,\n\
\ \"acc_norm_stderr\": 0.023956532766639133\n },\n \"harness|hendrycksTest-prehistory|5\"\
: {\n \"acc\": 0.8271604938271605,\n \"acc_stderr\": 0.02103851777015737,\n\
\ \"acc_norm\": 0.8271604938271605,\n \"acc_norm_stderr\": 0.02103851777015737\n\
\ },\n \"harness|hendrycksTest-professional_accounting|5\": {\n \"\
acc\": 0.599290780141844,\n \"acc_stderr\": 0.029233465745573096,\n \
\ \"acc_norm\": 0.599290780141844,\n \"acc_norm_stderr\": 0.029233465745573096\n\
\ },\n \"harness|hendrycksTest-professional_law|5\": {\n \"acc\": 0.5814863102998696,\n\
\ \"acc_stderr\": 0.012599505608336482,\n \"acc_norm\": 0.5814863102998696,\n\
\ \"acc_norm_stderr\": 0.012599505608336482\n },\n \"harness|hendrycksTest-professional_medicine|5\"\
: {\n \"acc\": 0.7316176470588235,\n \"acc_stderr\": 0.026917481224377204,\n\
\ \"acc_norm\": 0.7316176470588235,\n \"acc_norm_stderr\": 0.026917481224377204\n\
\ },\n \"harness|hendrycksTest-professional_psychology|5\": {\n \"\
acc\": 0.7679738562091504,\n \"acc_stderr\": 0.017077373377856933,\n \
\ \"acc_norm\": 0.7679738562091504,\n \"acc_norm_stderr\": 0.017077373377856933\n\
\ },\n \"harness|hendrycksTest-public_relations|5\": {\n \"acc\": 0.7454545454545455,\n\
\ \"acc_stderr\": 0.041723430387053825,\n \"acc_norm\": 0.7454545454545455,\n\
\ \"acc_norm_stderr\": 0.041723430387053825\n },\n \"harness|hendrycksTest-security_studies|5\"\
: {\n \"acc\": 0.8081632653061225,\n \"acc_stderr\": 0.025206963154225395,\n\
\ \"acc_norm\": 0.8081632653061225,\n \"acc_norm_stderr\": 0.025206963154225395\n\
\ },\n \"harness|hendrycksTest-sociology|5\": {\n \"acc\": 0.8756218905472637,\n\
\ \"acc_stderr\": 0.023335401790166323,\n \"acc_norm\": 0.8756218905472637,\n\
\ \"acc_norm_stderr\": 0.023335401790166323\n },\n \"harness|hendrycksTest-us_foreign_policy|5\"\
: {\n \"acc\": 0.86,\n \"acc_stderr\": 0.03487350880197769,\n \
\ \"acc_norm\": 0.86,\n \"acc_norm_stderr\": 0.03487350880197769\n \
\ },\n \"harness|hendrycksTest-virology|5\": {\n \"acc\": 0.5301204819277109,\n\
\ \"acc_stderr\": 0.03885425420866767,\n \"acc_norm\": 0.5301204819277109,\n\
\ \"acc_norm_stderr\": 0.03885425420866767\n },\n \"harness|hendrycksTest-world_religions|5\"\
: {\n \"acc\": 0.8713450292397661,\n \"acc_stderr\": 0.02567934272327692,\n\
\ \"acc_norm\": 0.8713450292397661,\n \"acc_norm_stderr\": 0.02567934272327692\n\
\ },\n \"harness|truthfulqa:mc|0\": {\n \"mc1\": 0.4663402692778458,\n\
\ \"mc1_stderr\": 0.017463793867168106,\n \"mc2\": 0.6451679386365279,\n\
\ \"mc2_stderr\": 0.014753028795637621\n }\n}\n```"
repo_url: https://huggingface.co/adonlee/LLaMA_2_70B_LoRA
leaderboard_url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard
point_of_contact: [email protected]
configs:
- config_name: harness_arc_challenge_25
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|arc:challenge|25_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|arc:challenge|25_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hellaswag_10
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hellaswag|10_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hellaswag|10_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-anatomy|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-astronomy|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-business_ethics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-college_biology|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-college_medicine|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-college_physics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-computer_security|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-econometrics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-formal_logic|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-global_facts|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-human_aging|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-international_law|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-machine_learning|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-management|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-marketing|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-nutrition|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-philosophy|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-prehistory|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-professional_law|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-public_relations|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-security_studies|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-sociology|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-virology|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-world_religions|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-anatomy|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-astronomy|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-business_ethics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-college_biology|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-college_medicine|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-college_physics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-computer_security|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-econometrics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-formal_logic|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-global_facts|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-human_aging|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-international_law|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-machine_learning|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-management|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-marketing|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-nutrition|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-philosophy|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-prehistory|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-professional_law|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-public_relations|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-security_studies|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-sociology|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-virology|5_2023-09-22T21-35-51.410251.parquet'
- '**/details_harness|hendrycksTest-world_religions|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_abstract_algebra_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_anatomy_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-anatomy|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-anatomy|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_astronomy_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-astronomy|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-astronomy|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_business_ethics_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-business_ethics|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-business_ethics|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_clinical_knowledge_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_college_biology_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-college_biology|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_biology|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_college_chemistry_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_college_computer_science_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_college_mathematics_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_college_medicine_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-college_medicine|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_medicine|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_college_physics_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-college_physics|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_physics|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_computer_security_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-computer_security|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-computer_security|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_conceptual_physics_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_econometrics_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-econometrics|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-econometrics|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_electrical_engineering_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_elementary_mathematics_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_formal_logic_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-formal_logic|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-formal_logic|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_global_facts_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-global_facts|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-global_facts|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_high_school_biology_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_high_school_chemistry_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_high_school_computer_science_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_high_school_european_history_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_high_school_geography_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_high_school_government_and_politics_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_high_school_macroeconomics_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_high_school_mathematics_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_high_school_microeconomics_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_high_school_physics_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_high_school_psychology_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_high_school_statistics_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_high_school_us_history_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_high_school_world_history_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_human_aging_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-human_aging|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-human_aging|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_human_sexuality_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_international_law_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-international_law|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-international_law|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_jurisprudence_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_logical_fallacies_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_machine_learning_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-machine_learning|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-machine_learning|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_management_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-management|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-management|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_marketing_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-marketing|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-marketing|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_medical_genetics_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_miscellaneous_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_moral_disputes_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_moral_scenarios_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_nutrition_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-nutrition|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-nutrition|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_philosophy_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-philosophy|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-philosophy|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_prehistory_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-prehistory|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-prehistory|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_professional_accounting_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_professional_law_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-professional_law|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_law|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_professional_medicine_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_professional_psychology_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_public_relations_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-public_relations|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-public_relations|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_security_studies_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-security_studies|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-security_studies|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_sociology_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-sociology|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-sociology|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_us_foreign_policy_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_virology_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-virology|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-virology|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_hendrycksTest_world_religions_5
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|hendrycksTest-world_religions|5_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-world_religions|5_2023-09-22T21-35-51.410251.parquet'
- config_name: harness_truthfulqa_mc_0
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- '**/details_harness|truthfulqa:mc|0_2023-09-22T21-35-51.410251.parquet'
- split: latest
path:
- '**/details_harness|truthfulqa:mc|0_2023-09-22T21-35-51.410251.parquet'
- config_name: results
data_files:
- split: 2023_09_22T21_35_51.410251
path:
- results_2023-09-22T21-35-51.410251.parquet
- split: latest
path:
- results_2023-09-22T21-35-51.410251.parquet
---
# Dataset Card for Evaluation run of adonlee/LLaMA_2_70B_LoRA
## Dataset Description
- **Homepage:**
- **Repository:** https://huggingface.co/adonlee/LLaMA_2_70B_LoRA
- **Paper:**
- **Leaderboard:** https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard
- **Point of Contact:** [email protected]
### Dataset Summary
Dataset automatically created during the evaluation run of model [adonlee/LLaMA_2_70B_LoRA](https://huggingface.co/adonlee/LLaMA_2_70B_LoRA) on the [Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard).
The dataset is composed of 61 configuration, each one coresponding to one of the evaluated task.
The dataset has been created from 1 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_adonlee__LLaMA_2_70B_LoRA",
"harness_truthfulqa_mc_0",
split="train")
```
## Latest results
These are the [latest results from run 2023-09-22T21:35:51.410251](https://huggingface.co/datasets/open-llm-leaderboard/details_adonlee__LLaMA_2_70B_LoRA/blob/main/results_2023-09-22T21-35-51.410251.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.7077096775676626,
"acc_stderr": 0.030867670314758275,
"acc_norm": 0.7114995822621553,
"acc_norm_stderr": 0.030836833292351554,
"mc1": 0.4663402692778458,
"mc1_stderr": 0.017463793867168106,
"mc2": 0.6451679386365279,
"mc2_stderr": 0.014753028795637621
},
"harness|arc:challenge|25": {
"acc": 0.6902730375426621,
"acc_stderr": 0.013512058415238361,
"acc_norm": 0.726962457337884,
"acc_norm_stderr": 0.013019332762635743
},
"harness|hellaswag|10": {
"acc": 0.6886078470424218,
"acc_stderr": 0.004621163476949205,
"acc_norm": 0.8755228042222665,
"acc_norm_stderr": 0.003294504807555228
},
"harness|hendrycksTest-abstract_algebra|5": {
"acc": 0.35,
"acc_stderr": 0.0479372485441102,
"acc_norm": 0.35,
"acc_norm_stderr": 0.0479372485441102
},
"harness|hendrycksTest-anatomy|5": {
"acc": 0.6370370370370371,
"acc_stderr": 0.041539484047424,
"acc_norm": 0.6370370370370371,
"acc_norm_stderr": 0.041539484047424
},
"harness|hendrycksTest-astronomy|5": {
"acc": 0.8223684210526315,
"acc_stderr": 0.03110318238312338,
"acc_norm": 0.8223684210526315,
"acc_norm_stderr": 0.03110318238312338
},
"harness|hendrycksTest-business_ethics|5": {
"acc": 0.76,
"acc_stderr": 0.04292346959909283,
"acc_norm": 0.76,
"acc_norm_stderr": 0.04292346959909283
},
"harness|hendrycksTest-clinical_knowledge|5": {
"acc": 0.7358490566037735,
"acc_stderr": 0.02713429162874171,
"acc_norm": 0.7358490566037735,
"acc_norm_stderr": 0.02713429162874171
},
"harness|hendrycksTest-college_biology|5": {
"acc": 0.8263888888888888,
"acc_stderr": 0.03167473383795718,
"acc_norm": 0.8263888888888888,
"acc_norm_stderr": 0.03167473383795718
},
"harness|hendrycksTest-college_chemistry|5": {
"acc": 0.49,
"acc_stderr": 0.05024183937956912,
"acc_norm": 0.49,
"acc_norm_stderr": 0.05024183937956912
},
"harness|hendrycksTest-college_computer_science|5": {
"acc": 0.56,
"acc_stderr": 0.04988876515698589,
"acc_norm": 0.56,
"acc_norm_stderr": 0.04988876515698589
},
"harness|hendrycksTest-college_mathematics|5": {
"acc": 0.41,
"acc_stderr": 0.04943110704237102,
"acc_norm": 0.41,
"acc_norm_stderr": 0.04943110704237102
},
"harness|hendrycksTest-college_medicine|5": {
"acc": 0.6936416184971098,
"acc_stderr": 0.03514942551267439,
"acc_norm": 0.6936416184971098,
"acc_norm_stderr": 0.03514942551267439
},
"harness|hendrycksTest-college_physics|5": {
"acc": 0.37254901960784315,
"acc_stderr": 0.048108401480826346,
"acc_norm": 0.37254901960784315,
"acc_norm_stderr": 0.048108401480826346
},
"harness|hendrycksTest-computer_security|5": {
"acc": 0.78,
"acc_stderr": 0.04163331998932263,
"acc_norm": 0.78,
"acc_norm_stderr": 0.04163331998932263
},
"harness|hendrycksTest-conceptual_physics|5": {
"acc": 0.7106382978723405,
"acc_stderr": 0.02964400657700962,
"acc_norm": 0.7106382978723405,
"acc_norm_stderr": 0.02964400657700962
},
"harness|hendrycksTest-econometrics|5": {
"acc": 0.45614035087719296,
"acc_stderr": 0.04685473041907789,
"acc_norm": 0.45614035087719296,
"acc_norm_stderr": 0.04685473041907789
},
"harness|hendrycksTest-electrical_engineering|5": {
"acc": 0.6206896551724138,
"acc_stderr": 0.04043461861916746,
"acc_norm": 0.6206896551724138,
"acc_norm_stderr": 0.04043461861916746
},
"harness|hendrycksTest-elementary_mathematics|5": {
"acc": 0.47619047619047616,
"acc_stderr": 0.02572209706438853,
"acc_norm": 0.47619047619047616,
"acc_norm_stderr": 0.02572209706438853
},
"harness|hendrycksTest-formal_logic|5": {
"acc": 0.5079365079365079,
"acc_stderr": 0.044715725362943486,
"acc_norm": 0.5079365079365079,
"acc_norm_stderr": 0.044715725362943486
},
"harness|hendrycksTest-global_facts|5": {
"acc": 0.47,
"acc_stderr": 0.050161355804659205,
"acc_norm": 0.47,
"acc_norm_stderr": 0.050161355804659205
},
"harness|hendrycksTest-high_school_biology|5": {
"acc": 0.8096774193548387,
"acc_stderr": 0.022331707611823078,
"acc_norm": 0.8096774193548387,
"acc_norm_stderr": 0.022331707611823078
},
"harness|hendrycksTest-high_school_chemistry|5": {
"acc": 0.5714285714285714,
"acc_stderr": 0.034819048444388045,
"acc_norm": 0.5714285714285714,
"acc_norm_stderr": 0.034819048444388045
},
"harness|hendrycksTest-high_school_computer_science|5": {
"acc": 0.78,
"acc_stderr": 0.04163331998932262,
"acc_norm": 0.78,
"acc_norm_stderr": 0.04163331998932262
},
"harness|hendrycksTest-high_school_european_history|5": {
"acc": 0.8545454545454545,
"acc_stderr": 0.027530196355066584,
"acc_norm": 0.8545454545454545,
"acc_norm_stderr": 0.027530196355066584
},
"harness|hendrycksTest-high_school_geography|5": {
"acc": 0.898989898989899,
"acc_stderr": 0.021469735576055343,
"acc_norm": 0.898989898989899,
"acc_norm_stderr": 0.021469735576055343
},
"harness|hendrycksTest-high_school_government_and_politics|5": {
"acc": 0.9326424870466321,
"acc_stderr": 0.0180883938390789,
"acc_norm": 0.9326424870466321,
"acc_norm_stderr": 0.0180883938390789
},
"harness|hendrycksTest-high_school_macroeconomics|5": {
"acc": 0.7102564102564103,
"acc_stderr": 0.023000628243687968,
"acc_norm": 0.7102564102564103,
"acc_norm_stderr": 0.023000628243687968
},
"harness|hendrycksTest-high_school_mathematics|5": {
"acc": 0.337037037037037,
"acc_stderr": 0.028820884666253252,
"acc_norm": 0.337037037037037,
"acc_norm_stderr": 0.028820884666253252
},
"harness|hendrycksTest-high_school_microeconomics|5": {
"acc": 0.7815126050420168,
"acc_stderr": 0.02684151432295893,
"acc_norm": 0.7815126050420168,
"acc_norm_stderr": 0.02684151432295893
},
"harness|hendrycksTest-high_school_physics|5": {
"acc": 0.4900662251655629,
"acc_stderr": 0.04081677107248436,
"acc_norm": 0.4900662251655629,
"acc_norm_stderr": 0.04081677107248436
},
"harness|hendrycksTest-high_school_psychology|5": {
"acc": 0.9009174311926605,
"acc_stderr": 0.01280978008187893,
"acc_norm": 0.9009174311926605,
"acc_norm_stderr": 0.01280978008187893
},
"harness|hendrycksTest-high_school_statistics|5": {
"acc": 0.5833333333333334,
"acc_stderr": 0.033622774366080424,
"acc_norm": 0.5833333333333334,
"acc_norm_stderr": 0.033622774366080424
},
"harness|hendrycksTest-high_school_us_history|5": {
"acc": 0.9019607843137255,
"acc_stderr": 0.0208711184555521,
"acc_norm": 0.9019607843137255,
"acc_norm_stderr": 0.0208711184555521
},
"harness|hendrycksTest-high_school_world_history|5": {
"acc": 0.8818565400843882,
"acc_stderr": 0.02101105265987847,
"acc_norm": 0.8818565400843882,
"acc_norm_stderr": 0.02101105265987847
},
"harness|hendrycksTest-human_aging|5": {
"acc": 0.7847533632286996,
"acc_stderr": 0.027584066602208274,
"acc_norm": 0.7847533632286996,
"acc_norm_stderr": 0.027584066602208274
},
"harness|hendrycksTest-human_sexuality|5": {
"acc": 0.8473282442748091,
"acc_stderr": 0.031545216720054725,
"acc_norm": 0.8473282442748091,
"acc_norm_stderr": 0.031545216720054725
},
"harness|hendrycksTest-international_law|5": {
"acc": 0.8760330578512396,
"acc_stderr": 0.030083098716035202,
"acc_norm": 0.8760330578512396,
"acc_norm_stderr": 0.030083098716035202
},
"harness|hendrycksTest-jurisprudence|5": {
"acc": 0.8425925925925926,
"acc_stderr": 0.035207039905179635,
"acc_norm": 0.8425925925925926,
"acc_norm_stderr": 0.035207039905179635
},
"harness|hendrycksTest-logical_fallacies|5": {
"acc": 0.8466257668711656,
"acc_stderr": 0.0283116014414386,
"acc_norm": 0.8466257668711656,
"acc_norm_stderr": 0.0283116014414386
},
"harness|hendrycksTest-machine_learning|5": {
"acc": 0.5714285714285714,
"acc_stderr": 0.04697113923010213,
"acc_norm": 0.5714285714285714,
"acc_norm_stderr": 0.04697113923010213
},
"harness|hendrycksTest-management|5": {
"acc": 0.8252427184466019,
"acc_stderr": 0.03760178006026621,
"acc_norm": 0.8252427184466019,
"acc_norm_stderr": 0.03760178006026621
},
"harness|hendrycksTest-marketing|5": {
"acc": 0.9145299145299145,
"acc_stderr": 0.01831589168562585,
"acc_norm": 0.9145299145299145,
"acc_norm_stderr": 0.01831589168562585
},
"harness|hendrycksTest-medical_genetics|5": {
"acc": 0.75,
"acc_stderr": 0.04351941398892446,
"acc_norm": 0.75,
"acc_norm_stderr": 0.04351941398892446
},
"harness|hendrycksTest-miscellaneous|5": {
"acc": 0.8697318007662835,
"acc_stderr": 0.012036729568216054,
"acc_norm": 0.8697318007662835,
"acc_norm_stderr": 0.012036729568216054
},
"harness|hendrycksTest-moral_disputes|5": {
"acc": 0.7687861271676301,
"acc_stderr": 0.022698657167855713,
"acc_norm": 0.7687861271676301,
"acc_norm_stderr": 0.022698657167855713
},
"harness|hendrycksTest-moral_scenarios|5": {
"acc": 0.646927374301676,
"acc_stderr": 0.01598420454526858,
"acc_norm": 0.646927374301676,
"acc_norm_stderr": 0.01598420454526858
},
"harness|hendrycksTest-nutrition|5": {
"acc": 0.7516339869281046,
"acc_stderr": 0.024739981355113592,
"acc_norm": 0.7516339869281046,
"acc_norm_stderr": 0.024739981355113592
},
"harness|hendrycksTest-philosophy|5": {
"acc": 0.7684887459807074,
"acc_stderr": 0.023956532766639133,
"acc_norm": 0.7684887459807074,
"acc_norm_stderr": 0.023956532766639133
},
"harness|hendrycksTest-prehistory|5": {
"acc": 0.8271604938271605,
"acc_stderr": 0.02103851777015737,
"acc_norm": 0.8271604938271605,
"acc_norm_stderr": 0.02103851777015737
},
"harness|hendrycksTest-professional_accounting|5": {
"acc": 0.599290780141844,
"acc_stderr": 0.029233465745573096,
"acc_norm": 0.599290780141844,
"acc_norm_stderr": 0.029233465745573096
},
"harness|hendrycksTest-professional_law|5": {
"acc": 0.5814863102998696,
"acc_stderr": 0.012599505608336482,
"acc_norm": 0.5814863102998696,
"acc_norm_stderr": 0.012599505608336482
},
"harness|hendrycksTest-professional_medicine|5": {
"acc": 0.7316176470588235,
"acc_stderr": 0.026917481224377204,
"acc_norm": 0.7316176470588235,
"acc_norm_stderr": 0.026917481224377204
},
"harness|hendrycksTest-professional_psychology|5": {
"acc": 0.7679738562091504,
"acc_stderr": 0.017077373377856933,
"acc_norm": 0.7679738562091504,
"acc_norm_stderr": 0.017077373377856933
},
"harness|hendrycksTest-public_relations|5": {
"acc": 0.7454545454545455,
"acc_stderr": 0.041723430387053825,
"acc_norm": 0.7454545454545455,
"acc_norm_stderr": 0.041723430387053825
},
"harness|hendrycksTest-security_studies|5": {
"acc": 0.8081632653061225,
"acc_stderr": 0.025206963154225395,
"acc_norm": 0.8081632653061225,
"acc_norm_stderr": 0.025206963154225395
},
"harness|hendrycksTest-sociology|5": {
"acc": 0.8756218905472637,
"acc_stderr": 0.023335401790166323,
"acc_norm": 0.8756218905472637,
"acc_norm_stderr": 0.023335401790166323
},
"harness|hendrycksTest-us_foreign_policy|5": {
"acc": 0.86,
"acc_stderr": 0.03487350880197769,
"acc_norm": 0.86,
"acc_norm_stderr": 0.03487350880197769
},
"harness|hendrycksTest-virology|5": {
"acc": 0.5301204819277109,
"acc_stderr": 0.03885425420866767,
"acc_norm": 0.5301204819277109,
"acc_norm_stderr": 0.03885425420866767
},
"harness|hendrycksTest-world_religions|5": {
"acc": 0.8713450292397661,
"acc_stderr": 0.02567934272327692,
"acc_norm": 0.8713450292397661,
"acc_norm_stderr": 0.02567934272327692
},
"harness|truthfulqa:mc|0": {
"mc1": 0.4663402692778458,
"mc1_stderr": 0.017463793867168106,
"mc2": 0.6451679386365279,
"mc2_stderr": 0.014753028795637621
}
}
```
### 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] | [
-0.7196019887924194,
-0.9012998938560486,
0.29263707995414734,
0.1945703774690628,
-0.15726803243160248,
-0.04848680645227432,
0.06189209595322609,
-0.25354236364364624,
0.6325218081474304,
-0.04059085249900818,
-0.4541018605232239,
-0.6897742748260498,
-0.47449415922164917,
0.23694774508476257,
-0.06575973331928253,
0.8170835971832275,
-0.19879284501075745,
-0.1657320261001587,
0.11856716871261597,
-0.047391053289175034,
-0.24434271454811096,
-0.34655457735061646,
-0.5115781426429749,
-0.34171801805496216,
0.19177749752998352,
0.41221335530281067,
0.44367915391921997,
0.833477258682251,
0.6696528196334839,
0.2999702990055084,
-0.35763019323349,
-0.005879218690097332,
-0.13430988788604736,
-0.3159319758415222,
0.40672624111175537,
-0.36287543177604675,
-0.8784907460212708,
0.2950334846973419,
0.7252846956253052,
0.6513945460319519,
-0.08499179780483246,
0.3467872738838196,
0.009597469121217728,
0.5992947816848755,
-0.3670370876789093,
0.031068071722984314,
-0.28307950496673584,
0.20152568817138672,
-0.1591772884130478,
-0.2651009261608124,
-0.27552980184555054,
-0.27414122223854065,
-0.15192312002182007,
-0.8781114816665649,
0.2466774731874466,
0.2705255150794983,
1.5349019765853882,
-0.11873159557580948,
-0.30364149808883667,
0.09962031990289688,
-0.09471562504768372,
0.9900908470153809,
-0.868941068649292,
0.3186263144016266,
0.8008727431297302,
0.0837675929069519,
-0.18687918782234192,
-0.551787793636322,
-0.6470351219177246,
0.0894034132361412,
-0.3776998519897461,
0.3165154755115509,
-0.08539736270904541,
-0.20919692516326904,
0.3807947039604187,
0.6448752880096436,
-0.6495239734649658,
0.15928056836128235,
-0.6717426180839539,
-0.1393515169620514,
1.096662163734436,
0.3267227113246918,
0.05768279358744621,
-0.3531445860862732,
-0.6675162315368652,
-0.6569775938987732,
-0.386640727519989,
0.28490492701530457,
0.4784872829914093,
0.31722432374954224,
-0.4000958800315857,
0.7200424075126648,
-0.42075034976005554,
0.5640907883644104,
0.3989526927471161,
0.01044490560889244,
0.8905766010284424,
-0.625173807144165,
-0.5158771276473999,
-0.03576621785759926,
1.1096371412277222,
0.57375568151474,
0.03209654614329338,
0.2547193169593811,
0.046111639589071274,
-0.0516752228140831,
0.011537143029272556,
-0.8235498070716858,
-0.3065039813518524,
0.19029706716537476,
-0.41129040718078613,
-0.5407916307449341,
0.3378019630908966,
-0.8822121024131775,
0.11422933638095856,
-0.050841886550188065,
0.4079396724700928,
-0.4563755989074707,
-0.1343996375799179,
0.24631352722644806,
-0.3871549069881439,
0.7973398566246033,
-0.16234546899795532,
-0.7707529067993164,
0.4038362503051758,
0.5008124709129333,
0.7648606896400452,
-0.0985986590385437,
-0.4145670235157013,
-0.09208819270133972,
-0.08468553423881531,
-0.2778955101966858,
0.5599707961082458,
-0.25288036465644836,
-0.42094841599464417,
-0.2995012104511261,
0.2934419810771942,
-0.27059993147850037,
-0.33363354206085205,
0.707148551940918,
-0.24370311200618744,
0.18139854073524475,
-0.39808598160743713,
-0.585525631904602,
0.06971398741006851,
0.38057073950767517,
-0.47036707401275635,
1.3154841661453247,
0.23982267081737518,
-0.8282108902931213,
0.3922773599624634,
-0.61744225025177,
-0.188377246260643,
-0.07353993505239487,
-0.022474152967333794,
-0.7911484241485596,
-0.2797697186470032,
0.18638262152671814,
0.3797253966331482,
-0.14713460206985474,
-0.12128143757581711,
-0.3635494112968445,
-0.36414027214050293,
0.3726117014884949,
-0.18641556799411774,
1.2350341081619263,
-0.0318710021674633,
-0.7452576756477356,
-0.1465214490890503,
-1.2720235586166382,
0.3219623863697052,
0.2453434318304062,
-0.42666417360305786,
-0.1870960295200348,
-0.4840414822101593,
-0.016040751710534096,
0.15389275550842285,
0.31252187490463257,
-0.8175858855247498,
0.3206058144569397,
-0.340694397687912,
0.19106167554855347,
1.2583509683609009,
0.008224377408623695,
0.12969286739826202,
-0.5428788065910339,
0.5372591614723206,
0.1944449543952942,
0.1819206178188324,
0.38565757870674133,
-0.6184222102165222,
-0.8097481727600098,
-0.46843281388282776,
-0.04923560842871666,
0.6250035762786865,
-0.15611042082309723,
1.145184874534607,
0.10172294825315475,
-0.8836070895195007,
-0.47330066561698914,
-0.10893584787845612,
0.48413121700286865,
0.7650585770606995,
0.6084702014923096,
-0.05557440221309662,
-0.6399057507514954,
-1.1021225452423096,
-0.2528819143772125,
-0.20075227320194244,
0.175629660487175,
0.24159075319766998,
1.0420615673065186,
-0.28089502453804016,
0.6118407845497131,
-1.0909538269042969,
-0.20771130919456482,
0.15687662363052368,
-0.07243863493204117,
0.8158758282661438,
0.719203770160675,
0.5809021592140198,
-0.6916192173957825,
-0.5118841528892517,
0.18695835769176483,
-0.8738810420036316,
-0.06880621612071991,
0.16641351580619812,
-0.3188084363937378,
0.1349649280309677,
0.12372542172670364,
-0.7076067924499512,
0.5690595507621765,
0.2707200348377228,
-1.1085662841796875,
1.0346345901489258,
-0.32952719926834106,
0.5915831327438354,
-1.0217872858047485,
0.2186826765537262,
-0.07617034763097763,
0.030801424756646156,
-0.48873451352119446,
0.00832399632781744,
0.07571616023778915,
0.44813272356987,
-0.48552197217941284,
0.7910893559455872,
-0.649605393409729,
-0.04967449977993965,
0.43035170435905457,
0.12721264362335205,
-0.08078577369451523,
0.36917027831077576,
-0.2265135943889618,
0.7811625003814697,
0.7425147294998169,
-0.48581787943840027,
0.5666801929473877,
0.44941446185112,
-0.22872091829776764,
0.7077543139457703,
-0.5095094442367554,
-0.2626783549785614,
0.27875152230262756,
-0.01785719394683838,
-0.852013349533081,
-0.49726203083992004,
0.04324210062623024,
-0.5861437320709229,
-0.11191695928573608,
0.3771515190601349,
-0.23828700184822083,
-0.8367111682891846,
-0.951483964920044,
0.3723975419998169,
0.6859201192855835,
-0.4308187961578369,
-0.18308277428150177,
0.10301695764064789,
0.10796147584915161,
-0.8495659232139587,
-0.8312761187553406,
-0.49121394753456116,
-0.23219512403011322,
-0.6820678114891052,
0.30171260237693787,
-0.25938624143600464,
-0.30297228693962097,
-0.07462216913700104,
-0.21236340701580048,
-0.3379381000995636,
0.027682963758707047,
0.1401556134223938,
0.6677893996238708,
-0.4149821102619171,
-0.3219967186450958,
-0.266398549079895,
-0.183437317609787,
0.21621941030025482,
-0.07733560353517532,
0.37178748846054077,
-0.4537401795387268,
-0.4223316013813019,
-0.44529953598976135,
0.001429112278856337,
0.6991158127784729,
-0.05134398117661476,
0.7547683119773865,
0.4329218566417694,
-0.29064640402793884,
0.026101766154170036,
-0.32382577657699585,
-0.2631481885910034,
-0.5754629373550415,
0.29412171244621277,
-0.49656715989112854,
-1.0122793912887573,
0.7792659997940063,
0.5434725284576416,
0.04933857172727585,
1.1350177526474,
0.5680040121078491,
-0.2861156165599823,
1.047760009765625,
0.053352147340774536,
0.31959688663482666,
0.37271592020988464,
-0.7222065329551697,
0.08994296938180923,
-0.9632253646850586,
-0.34002360701560974,
-0.5656992197036743,
-0.5254166126251221,
-0.6857892870903015,
-0.0660046935081482,
0.27660617232322693,
0.16634494066238403,
-0.6867946982383728,
0.6143931150436401,
-0.8494781255722046,
0.5863273739814758,
0.5667287111282349,
0.2953034043312073,
0.18871977925300598,
-0.15941548347473145,
-0.3304486870765686,
-0.08192861825227737,
-0.4411522448062897,
-0.264447420835495,
1.2264530658721924,
0.28292691707611084,
0.735846221446991,
0.11438381671905518,
0.8527659773826599,
0.11515409499406815,
-0.10782232135534286,
-0.6047713160514832,
0.6589769124984741,
0.09895920008420944,
-0.7853699326515198,
-0.4174192249774933,
-0.5099067687988281,
-1.1107048988342285,
0.40656524896621704,
-0.10962239652872086,
-0.8656013011932373,
0.11895497888326645,
0.038772281259298325,
-0.21066716313362122,
0.5098081231117249,
-0.543630063533783,
0.8108605146408081,
-0.1440991461277008,
-0.4371512830257416,
0.08646131306886673,
-0.8167500495910645,
0.4758290648460388,
0.16869686543941498,
0.27334851026535034,
0.009376786649227142,
0.2389717400074005,
1.2187352180480957,
-0.8069165349006653,
0.44658830761909485,
0.10498160868883133,
-0.0036421814002096653,
0.3698783218860626,
-0.14360015094280243,
0.547156035900116,
0.09186304360628128,
-0.01993524096906185,
-0.10529068857431412,
0.2830250561237335,
-0.8411624431610107,
-0.040741272270679474,
0.9410883784294128,
-0.9862913489341736,
-0.6211001873016357,
-0.8933066725730896,
-0.5194429755210876,
0.09133201092481613,
0.5303523540496826,
0.3541853129863739,
0.5256141424179077,
0.01743316277861595,
0.4481407701969147,
0.8311196565628052,
-0.13850462436676025,
0.5996782183647156,
0.2567666471004486,
0.13842463493347168,
-0.6610274910926819,
0.8281459212303162,
0.06324577331542969,
0.3384305238723755,
0.2618448734283447,
0.38394588232040405,
-0.5489320158958435,
-0.16889260709285736,
-0.22482983767986298,
0.5205758213996887,
-0.6506550908088684,
-0.27657419443130493,
-0.3952501714229584,
-0.36254623532295227,
-0.7545636892318726,
-0.6223269701004028,
-0.3433874845504761,
-0.5515584945678711,
-0.5025057792663574,
-0.48097875714302063,
0.6398366093635559,
0.5398003458976746,
-0.3515688180923462,
0.030466744676232338,
-0.4862172603607178,
0.2741605341434479,
0.3493134677410126,
0.5277538895606995,
-0.3689991235733032,
-0.5919914245605469,
0.07684510946273804,
-0.11906034499406815,
-0.5922076106071472,
-0.9531103372573853,
0.3216439187526703,
-0.053398244082927704,
0.49054792523384094,
0.5728543400764465,
0.053103458136320114,
0.8637182116508484,
-0.19380775094032288,
1.0611834526062012,
0.35776540637016296,
-0.7808336019515991,
0.7772212624549866,
-0.3186147212982178,
0.15396207571029663,
0.6298754215240479,
0.16709840297698975,
-0.1801932156085968,
-0.6406389474868774,
-1.3140333890914917,
-0.847287654876709,
0.6837372779846191,
0.3812255859375,
-0.24265240132808685,
0.04916782304644585,
0.15057139098644257,
-0.30620259046554565,
-0.18419921398162842,
-0.7159011363983154,
-0.9076823592185974,
-0.13215559720993042,
-0.5084100365638733,
0.10506347566843033,
0.011960525996983051,
-0.4144425690174103,
-0.7933580875396729,
0.9303642511367798,
0.0007437304593622684,
0.5683435797691345,
0.45957550406455994,
0.08997106552124023,
0.055304136127233505,
0.48010188341140747,
0.9209144711494446,
0.750445544719696,
-0.4404783248901367,
0.4307246804237366,
0.4401612877845764,
-1.0778807401657104,
0.505287230014801,
0.3038240075111389,
-0.0718948096036911,
-0.04459354281425476,
0.4912978410720825,
0.41871851682662964,
0.03262421488761902,
-0.2264491468667984,
0.6298335790634155,
-0.004740002099424601,
-0.5518390536308289,
-0.40440788865089417,
0.08747261017560959,
-0.1429319679737091,
0.010764050297439098,
0.3972896933555603,
-0.15068364143371582,
-0.04805682972073555,
-0.509819746017456,
0.4432792663574219,
0.3753625750541687,
-0.47617319226264954,
-0.17450158298015594,
0.7682945132255554,
-0.1927262246608734,
-0.1497032791376114,
0.3062295913696289,
-0.14888431131839752,
-0.6157235503196716,
1.158312439918518,
0.6171129941940308,
0.6634724736213684,
-0.2613843083381653,
-0.05660716071724892,
0.9339890480041504,
0.35218846797943115,
-0.06323008239269257,
0.5342177152633667,
0.33428651094436646,
-0.2242967039346695,
0.18749651312828064,
-0.8975189924240112,
-0.020863519981503487,
0.1932966560125351,
-0.8359906673431396,
0.3378305435180664,
-0.4926232397556305,
-0.21690429747104645,
-0.0066980463452637196,
0.3919083774089813,
-0.4437182545661926,
0.5458561778068542,
-0.40841174125671387,
1.1871546506881714,
-1.0059128999710083,
0.694159746170044,
0.799575924873352,
-0.5244662165641785,
-1.0421565771102905,
-0.5466404557228088,
0.017398575320839882,
-0.8242798447608948,
0.6097623109817505,
-0.049917057156562805,
0.1588379442691803,
-0.06824549287557602,
-0.6994901895523071,
-0.9451704621315002,
1.4264545440673828,
-0.07006924599409103,
-0.4230135381221771,
0.246909499168396,
-0.073835089802742,
0.4382663071155548,
0.1568853110074997,
0.5957526564598083,
0.7733904719352722,
0.7864404320716858,
-0.0622333325445652,
-0.7563676834106445,
0.3467370867729187,
-0.5177265405654907,
-0.34228700399398804,
0.4674164354801178,
-0.9354003071784973,
1.2162343263626099,
-0.03341757878661156,
0.24546319246292114,
-0.16744665801525116,
0.6168403029441833,
0.8100324273109436,
0.28447943925857544,
0.38663482666015625,
0.9130558371543884,
0.8438023328781128,
-0.47971072793006897,
1.0052415132522583,
-0.20781011879444122,
0.856431245803833,
0.6640390753746033,
0.22451560199260712,
0.8050591945648193,
0.6755685806274414,
-0.5975053906440735,
0.5590402483940125,
0.7905614376068115,
-0.29057514667510986,
0.3883955478668213,
0.24230434000492096,
-0.13017858564853668,
-0.11907580494880676,
0.37896573543548584,
-0.905768096446991,
0.15616479516029358,
0.0736863762140274,
-0.3613983988761902,
0.13275596499443054,
-0.4646379053592682,
0.3048415780067444,
-0.07177815586328506,
-0.044014353305101395,
0.3881847858428955,
0.05166138708591461,
-0.4337005913257599,
0.9406371712684631,
-0.15915417671203613,
0.7431308627128601,
-0.5207429528236389,
-0.10724802315235138,
-0.36153608560562134,
0.6242815256118774,
-0.45548489689826965,
-1.0786069631576538,
0.13833989202976227,
0.0828452780842781,
-0.13449497520923615,
-0.14036932587623596,
0.6672594547271729,
-0.1821013242006302,
-0.7889998555183411,
0.14906182885169983,
0.022722404450178146,
0.10210837423801422,
0.5304887890815735,
-0.663852334022522,
-0.3195308446884155,
-0.04099242761731148,
-0.6088242530822754,
0.10699863731861115,
0.2799040973186493,
0.28245675563812256,
0.5528563857078552,
0.6593682169914246,
0.18744342029094696,
0.37734174728393555,
-0.5345125794410706,
0.8107797503471375,
-1.0503568649291992,
-0.7283499240875244,
-0.93996262550354,
0.4618980884552002,
-0.30728158354759216,
-0.8610793948173523,
0.9895559549331665,
1.048869013786316,
0.843172550201416,
0.0028542568907141685,
0.6542467474937439,
-0.40366917848587036,
0.2761741876602173,
-0.40871381759643555,
0.9156752824783325,
-0.8652403354644775,
-0.20486672222614288,
-0.2517801821231842,
-0.7349573373794556,
-0.36584383249282837,
0.8700383305549622,
-0.15539097785949707,
0.01647588610649109,
1.0499420166015625,
0.6438431739807129,
-0.11698773503303528,
0.03130974993109703,
-0.09200246632099152,
0.5810464024543762,
0.3589501976966858,
1.0196408033370972,
0.653942883014679,
-0.8246864676475525,
0.3808724880218506,
-0.49772095680236816,
-0.4163395166397095,
-0.40298837423324585,
-0.4660259485244751,
-0.8782288432121277,
-0.47741490602493286,
-0.25419870018959045,
-0.6413847208023071,
-0.15387755632400513,
0.9985633492469788,
0.43719547986984253,
-0.9480608105659485,
-0.40312060713768005,
-0.08741159737110138,
0.13820774853229523,
-0.5699859261512756,
-0.40900498628616333,
0.764525830745697,
-0.04739541560411453,
-0.5561864972114563,
0.20148427784442902,
-0.17917199432849884,
0.2531093955039978,
0.11332621425390244,
-0.3946671187877655,
-0.7284582257270813,
0.011770922690629959,
0.44928207993507385,
0.34920090436935425,
-0.7006909251213074,
-0.6938114762306213,
0.29115724563598633,
-0.5293253660202026,
0.41026028990745544,
-0.033594679087400436,
-0.5227526426315308,
0.025931885465979576,
0.6978769302368164,
0.4400414824485779,
0.6618962287902832,
0.034303903579711914,
0.055805619806051254,
-0.652143120765686,
0.2282564342021942,
-0.0283475574105978,
0.279083251953125,
-0.041928596794605255,
-0.3425716459751129,
0.816301703453064,
0.6659899353981018,
-0.5400960445404053,
-1.0898884534835815,
-0.41351667046546936,
-1.4284205436706543,
-0.03909503296017647,
1.152059555053711,
0.02394270896911621,
-0.49552494287490845,
0.21395903825759888,
-0.1793270707130432,
0.18340563774108887,
-0.3191612958908081,
0.785135805606842,
0.7602154612541199,
-0.38139763474464417,
0.15936608612537384,
-0.6782932877540588,
0.35793930292129517,
0.5035563707351685,
-1.183236002922058,
-0.09296158701181412,
0.21947018802165985,
0.30055785179138184,
0.38500678539276123,
0.6310728192329407,
-0.07430190593004227,
0.2566298842430115,
0.2254759520292282,
0.02089223451912403,
-0.01178089901804924,
0.07411714643239975,
-0.22133895754814148,
0.07085469365119934,
-0.24639321863651276,
-0.4636315107345581
]
|
DeepLearner101/ImageNetSubset_16130352366404471562604770850950 | DeepLearner101 | 2023-11-13T12:42:48Z | 262 | 0 | [
"region:us"
]
| null | 2023-11-12T18:58:29Z | ---
dataset_info:
features:
- name: image
dtype: image
- name: label
dtype: int64
splits:
- name: train
num_bytes: 65973972.0
num_examples: 1760
- name: validation
num_bytes: 20185132.0
num_examples: 550
- name: test
num_bytes: 15117832.0
num_examples: 352
download_size: 101216900
dataset_size: 101276936.0
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: validation
path: data/validation-*
- split: test
path: data/test-*
---
# Dataset Card for "ImageNetSubset_16130352366404471562604770850950"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) | [
-0.5885009765625,
0.03421410545706749,
0.0061853318475186825,
0.3131594955921173,
-0.5281750559806824,
-0.2316369116306305,
0.34375521540641785,
-0.11835725605487823,
0.8923977017402649,
0.5996108651161194,
-0.6561369895935059,
-0.7232759594917297,
-0.8345785140991211,
-0.3369976282119751,
-0.1961514949798584,
1.1177898645401,
0.18025925755500793,
-0.012557124719023705,
-0.1605740338563919,
-0.3559916913509369,
-0.21906332671642303,
-0.33275914192199707,
-0.8905357122421265,
-0.30699804425239563,
0.8584211468696594,
0.811384379863739,
0.47495436668395996,
0.7263084650039673,
0.9918414950370789,
0.2773407995700836,
0.16404299437999725,
-0.11486339569091797,
-0.5155766606330872,
-0.17057833075523376,
-0.03274216502904892,
-0.43317586183547974,
-0.8386954069137573,
0.04919598251581192,
0.6626828908920288,
0.6464617252349854,
-0.05765513330698013,
0.9968759417533875,
-0.14519420266151428,
1.0862222909927368,
-0.44363707304000854,
0.414423406124115,
-0.3184901177883148,
0.15152907371520996,
-0.7386134266853333,
-0.292631059885025,
0.1866387277841568,
-0.473812997341156,
-0.34074974060058594,
-1.146399736404419,
0.22014398872852325,
0.270944744348526,
1.0599877834320068,
0.08032826334238052,
0.03705089911818504,
-0.023195069283246994,
-0.15551815927028656,
0.2952902317047119,
-0.20147529244422913,
0.08025957643985748,
0.9586261510848999,
0.37642210721969604,
0.058013856410980225,
-0.7853596806526184,
-0.16691246628761292,
0.3552509844303131,
-0.034108586609363556,
0.03082355484366417,
-0.09075049310922623,
-0.35806459188461304,
0.6290026307106018,
0.622221827507019,
-0.48515310883522034,
-0.030127104371786118,
-0.9146953821182251,
-0.25876960158348083,
0.8870671391487122,
0.2645942270755768,
0.2857469618320465,
-0.21739783883094788,
-0.16489200294017792,
-0.2165152132511139,
-0.4045540392398834,
0.05007828399538994,
0.6223673820495605,
0.23397603631019592,
-1.1364185810089111,
0.6636404395103455,
-0.1516731083393097,
0.3918677270412445,
-0.026162976399064064,
0.5873228311538696,
0.7146568298339844,
0.030704975128173828,
-0.301746129989624,
-0.11103717982769012,
0.487448513507843,
0.6244004964828491,
0.17723573744297028,
0.2552970349788666,
-0.05737309902906418,
-0.0413966067135334,
0.00009533912088954821,
-1.1654951572418213,
-0.7624571919441223,
0.3546394109725952,
-0.9330061078071594,
-0.3808329999446869,
0.5335723757743835,
-0.9986333847045898,
-0.647025465965271,
-0.28866568207740784,
-0.046666570007801056,
-0.047582533210515976,
-0.6738871932029724,
-0.05037294700741768,
-0.7683478593826294,
0.48786765336990356,
0.2358625829219818,
-0.6377012133598328,
0.41159868240356445,
0.674552857875824,
0.7482202649116516,
0.43209823966026306,
-0.11321809142827988,
-0.40662893652915955,
0.16944830119609833,
-0.3711453974246979,
0.8743246793746948,
-0.4418207108974457,
-0.4181085228919983,
-0.19590876996517181,
0.5490556955337524,
0.10482130944728851,
-0.29995420575141907,
0.6992431282997131,
-0.5309994220733643,
-0.383640855550766,
-0.6443976163864136,
-0.46075439453125,
0.037156470119953156,
0.2966476380825043,
-1.219215989112854,
1.0795787572860718,
0.23732082545757294,
-0.9314018487930298,
0.44477567076683044,
-1.253191590309143,
-0.195795476436615,
0.9420258402824402,
-0.03786130249500275,
-0.5952295064926147,
0.21439127624034882,
-0.1687101125717163,
0.6491485834121704,
-0.06869711726903915,
0.27632036805152893,
-0.7464312314987183,
-0.3954600989818573,
0.14559818804264069,
-0.0151361133903265,
1.079297661781311,
0.3479149341583252,
0.32517367601394653,
-0.16636529564857483,
-0.8086288571357727,
0.08105531334877014,
0.7193683385848999,
0.0902310386300087,
-0.2775588035583496,
-0.6291939616203308,
0.39690807461738586,
-0.21329233050346375,
0.3502517342567444,
-0.6988875269889832,
0.40715861320495605,
0.3293154239654541,
0.06807158887386322,
0.9011457562446594,
0.04847850278019905,
0.19621503353118896,
-0.3749711215496063,
0.5469411015510559,
0.17767824232578278,
0.3884129524230957,
0.16898605227470398,
-0.579931914806366,
-0.6003314256668091,
-0.08351902663707733,
0.5347974896430969,
0.4429287016391754,
-0.6455791592597961,
0.4937652051448822,
-0.13595955073833466,
-0.9730280041694641,
-0.32167619466781616,
0.12889736890792847,
0.1822632998228073,
0.22013835608959198,
0.2610202431678772,
-0.6678231358528137,
-0.6839871406555176,
-0.980944812297821,
0.2640288472175598,
0.07226049900054932,
-0.05417828634381294,
0.5976372957229614,
0.9027425646781921,
-0.3090443015098572,
0.32425975799560547,
-0.926927924156189,
-0.25222885608673096,
0.23084621131420135,
-0.3078111708164215,
0.46887722611427307,
0.9007433652877808,
0.955876350402832,
-0.8570531606674194,
-0.3735339343547821,
-0.3571358323097229,
-0.6411579847335815,
0.23094837367534637,
0.26015210151672363,
-0.6461865305900574,
-0.21877047419548035,
0.14407403767108917,
-0.31341826915740967,
0.8528623580932617,
1.0116339921951294,
-0.8474467396736145,
0.207789808511734,
-0.10512783378362656,
0.49911364912986755,
-1.3579328060150146,
0.5259287357330322,
0.2726839482784271,
-0.12846621870994568,
-0.15909668803215027,
0.007493814919143915,
0.010516391135752201,
-0.46405452489852905,
-0.21016886830329895,
0.5128378868103027,
-0.6768653988838196,
-0.08503010123968124,
0.06937962770462036,
-0.23201999068260193,
-0.10348401218652725,
0.16372297704219818,
-0.007856933400034904,
0.2399303913116455,
1.2770888805389404,
-0.23518507182598114,
1.082328200340271,
0.5338115692138672,
-0.011948495171964169,
1.1217104196548462,
-0.8450058102607727,
0.17916668951511383,
-0.14457514882087708,
0.42954522371292114,
-0.773086428642273,
-0.7790921926498413,
0.506328284740448,
-0.3400939106941223,
0.3723061978816986,
-0.7452934980392456,
-0.42181387543678284,
-0.7009725570678711,
-0.36174508929252625,
0.9743587374687195,
0.36577630043029785,
-0.6144791841506958,
0.2875741422176361,
0.5819278359413147,
0.03885556757450104,
-0.2583921551704407,
-1.1130990982055664,
0.3456699550151825,
-0.1640368402004242,
-0.3148065209388733,
0.43534308671951294,
-0.16728992760181427,
0.12541420757770538,
-0.016339421272277832,
0.5956894755363464,
-0.13378851115703583,
-0.5567159652709961,
0.7123192548751831,
0.35961252450942993,
-0.16788916289806366,
0.1464208960533142,
-0.22268147766590118,
-0.7227004170417786,
0.06047201156616211,
-0.3003251552581787,
0.3896697163581848,
-0.15247580409049988,
-0.28193289041519165,
-0.5391443967819214,
0.5193256735801697,
0.21393278241157532,
-0.0359443798661232,
0.5693227052688599,
1.010040283203125,
-0.8291681408882141,
-0.09173689782619476,
-0.3139115869998932,
-0.10581431537866592,
-0.45374101400375366,
0.16382527351379395,
-0.40580224990844727,
-0.5897232890129089,
0.8151634335517883,
-0.0387546606361866,
-0.25686216354370117,
0.6952713131904602,
0.43647879362106323,
-0.15235638618469238,
0.42458224296569824,
0.3810257017612457,
-0.1505497694015503,
0.3469769358634949,
-0.6769968271255493,
-0.33005160093307495,
-0.8806673288345337,
-0.4396747052669525,
-0.4483169615268707,
-0.783568263053894,
-0.862199604511261,
-0.3177567422389984,
-0.10088996589183807,
-0.3606468439102173,
-0.24262388050556183,
0.6911889910697937,
-0.7897998094558716,
0.4952399730682373,
0.8500285148620605,
0.7058916091918945,
-0.44022899866104126,
0.03728964179754257,
0.3612307608127594,
0.12862847745418549,
-0.55897456407547,
-0.022622207179665565,
1.1728030443191528,
0.4225277304649353,
0.9502237439155579,
0.23843975365161896,
0.7574647665023804,
0.44837626814842224,
0.15653744339942932,
-0.2306729257106781,
0.5653339624404907,
-0.18967986106872559,
-0.8487361669540405,
-0.18058060109615326,
-0.28995558619499207,
-1.1444814205169678,
-0.602645754814148,
-0.23514647781848907,
-0.36452773213386536,
0.4397355914115906,
0.46007663011550903,
0.11553815752267838,
0.5266014337539673,
-0.7988463044166565,
0.8914569616317749,
-0.04368612542748451,
-0.2686360478401184,
-0.06328912079334259,
-0.8742519617080688,
-0.008689153008162975,
0.4060131013393402,
0.02103082835674286,
-0.242145374417305,
-0.15026530623435974,
1.0412919521331787,
-0.4106796383857727,
1.151624083518982,
-0.8018232583999634,
0.2944212555885315,
0.23722045123577118,
-0.2734149992465973,
0.21426621079444885,
0.40672382712364197,
-0.012348722666501999,
0.3040323257446289,
0.19785942137241364,
-1.0326416492462158,
-0.03220326825976372,
0.8878370523452759,
-0.7241377830505371,
0.32736456394195557,
-0.3297056555747986,
-0.45067739486694336,
0.09709225594997406,
0.1522269994020462,
0.5156042575836182,
0.9127510786056519,
-0.07396592199802399,
0.2945402264595032,
0.7818426489830017,
0.10438394546508789,
0.6337191462516785,
-0.005237409379333258,
-0.012997632846236229,
-0.7116145491600037,
1.1889241933822632,
0.3510858416557312,
-0.19630785286426544,
0.017279762774705887,
0.29703763127326965,
-0.10670106112957001,
-0.44017404317855835,
-0.6324268579483032,
0.22448357939720154,
-0.5906807780265808,
-0.7632262110710144,
-0.11452913284301758,
-0.3701361119747162,
-0.25178009271621704,
-0.22571027278900146,
-0.32066860795021057,
-0.44886264204978943,
-0.6312286257743835,
-0.4264002740383148,
1.1006076335906982,
0.5160821080207825,
-0.6782800555229187,
0.3658888339996338,
-0.7340267300605774,
0.5328768491744995,
0.10410153865814209,
1.3854100704193115,
-0.25486817955970764,
-0.6264421343803406,
-0.2692081034183502,
-0.19001233577728271,
0.0814468115568161,
-0.6641464233398438,
-0.03870581090450287,
0.27902379631996155,
0.541610062122345,
0.22342324256896973,
-0.036202322691679,
0.759342610836029,
0.0005117609980516136,
0.598154604434967,
0.24130575358867645,
-0.6603839993476868,
0.7677764892578125,
-0.4203450083732605,
0.48514094948768616,
0.8897978067398071,
0.5643868446350098,
-0.43027251958847046,
0.1521807163953781,
-1.2193996906280518,
-0.5607558488845825,
0.36839574575424194,
0.004294912330806255,
0.33686020970344543,
0.4199962615966797,
0.514684796333313,
-0.06077568605542183,
0.06451676785945892,
-0.7782400250434875,
-0.8442605137825012,
-0.1365136355161667,
-0.304047554731369,
0.3317655622959137,
-0.35009443759918213,
-0.4164940416812897,
-0.8191164135932922,
0.8545423746109009,
-0.18003585934638977,
0.5397692918777466,
-0.05166105180978775,
0.2794698178768158,
-0.22518622875213623,
-0.34060555696487427,
0.5548738837242126,
0.4040397107601166,
-0.24240560829639435,
0.016113245859742165,
-0.24273867905139923,
-0.7769436836242676,
-0.3567320704460144,
0.6567962169647217,
-0.05242784693837166,
-0.3142753541469574,
0.5785988569259644,
0.8088150024414062,
-0.49768203496932983,
0.07873789221048355,
0.43677735328674316,
-0.21526241302490234,
-0.46394604444503784,
-0.5078375339508057,
-0.06242343783378601,
0.19672515988349915,
0.18398109078407288,
0.2830311357975006,
0.34122204780578613,
0.37507882714271545,
-0.07006064057350159,
0.48373398184776306,
0.29305338859558105,
-0.8757616877555847,
-0.3629840314388275,
0.20246469974517822,
0.4104786813259125,
-0.4202674925327301,
1.006975769996643,
-0.31588831543922424,
-0.19287803769111633,
1.0866243839263916,
0.2970157563686371,
0.7230822443962097,
-0.23839297890663147,
0.30926448106765747,
0.765967071056366,
0.4110744595527649,
0.40556448698043823,
0.7950602769851685,
-0.08374474942684174,
-0.7767626047134399,
0.06052630394697189,
-0.47210708260536194,
-0.1352854073047638,
-0.09684108197689056,
-1.0787513256072998,
0.36826878786087036,
-0.6061955690383911,
-0.34790435433387756,
0.05910336226224899,
0.23095078766345978,
-1.0380504131317139,
0.4513424038887024,
0.38420000672340393,
1.3723514080047607,
-0.9070583581924438,
0.6725484132766724,
0.8832387924194336,
-0.18931689858436584,
-0.8776690363883972,
-0.5777291059494019,
0.0662260428071022,
-1.0922060012817383,
-0.03764735534787178,
0.26846200227737427,
0.45570164918899536,
-0.11424527317285538,
-1.3143953084945679,
-0.7105251550674438,
1.2389198541641235,
0.22250786423683167,
-0.7201024889945984,
0.8390108346939087,
-0.10865481942892075,
0.17370393872261047,
-0.30427202582359314,
0.21846015751361847,
0.16380265355110168,
0.8713340759277344,
0.5179492235183716,
-0.4871439039707184,
0.09314113855361938,
-0.9085189700126648,
-0.038691144436597824,
0.470866858959198,
-0.787666916847229,
0.1320614218711853,
-0.29276570677757263,
0.15970630943775177,
-0.04843277484178543,
0.5601803660392761,
0.14892961084842682,
0.4396494925022125,
0.5379172563552856,
1.0018364191055298,
0.675110936164856,
-0.537030041217804,
0.7825897336006165,
0.1208222359418869,
0.5315970778465271,
0.8245128393173218,
0.06363163888454437,
0.30273139476776123,
0.6293848156929016,
-0.09568314999341965,
0.5626102089881897,
0.8647138476371765,
-0.7825477719306946,
0.28042203187942505,
0.30266207456588745,
-0.04575563222169876,
-0.05859752744436264,
-0.2693957984447479,
-0.6383669972419739,
0.2913549840450287,
0.41363781690597534,
-0.5878834128379822,
0.09126683324575424,
-0.06190445274114609,
0.1689378321170807,
-0.18871110677719116,
-0.6480396389961243,
0.7533681988716125,
-0.0762033686041832,
-0.05763555318117142,
-0.181362122297287,
-0.14312896132469177,
0.3061644732952118,
-0.5846112370491028,
-0.3681756854057312,
-0.1491192877292633,
0.16811908781528473,
-0.6811049580574036,
-1.4109971523284912,
0.6435467004776001,
-0.3643432557582855,
-0.10541248321533203,
-0.09227216243743896,
0.8102596402168274,
-0.14408144354820251,
-1.143020749092102,
0.08855140209197998,
-0.12268372625112534,
0.18476709723472595,
0.23458988964557648,
-1.4692872762680054,
0.3859567642211914,
-0.16036853194236755,
-0.3409234583377838,
0.12491649389266968,
0.335521399974823,
0.2559841275215149,
0.5503400564193726,
0.5685468912124634,
0.1496240794658661,
-0.48201459646224976,
0.10611502081155777,
0.9701434969902039,
-0.6838034987449646,
-0.5154432654380798,
-0.652246356010437,
0.8983138203620911,
-0.6193948984146118,
-0.9090313911437988,
0.39694005250930786,
1.030979871749878,
0.6666480898857117,
-0.20947737991809845,
0.7046896815299988,
-0.7201970815658569,
0.24773521721363068,
-0.17615528404712677,
0.581904947757721,
-0.3387032151222229,
-0.4029444754123688,
-0.335102915763855,
-0.5769120454788208,
-0.640151858329773,
0.41283148527145386,
0.12651386857032776,
0.2733045518398285,
0.15764912962913513,
1.119964361190796,
-0.23705212771892548,
0.25713634490966797,
0.06259392201900482,
-0.1292422115802765,
0.08813373744487762,
0.3149077892303467,
0.3644040822982788,
-0.8894673585891724,
0.07766805589199066,
-0.47343236207962036,
-0.6836373209953308,
0.17167727649211884,
-1.3174993991851807,
-0.7256955504417419,
-0.8273234367370605,
-0.6095041036605835,
-0.6529329419136047,
-0.14011479914188385,
0.7708792686462402,
1.2575591802597046,
-0.998041033744812,
-0.38173046708106995,
0.04364173859357834,
-0.00745923537760973,
-0.06417640298604965,
-0.16575801372528076,
0.6104776263237,
0.5625463724136353,
-0.49137768149375916,
-0.6451138257980347,
0.14052636921405792,
0.2365909069776535,
-0.1274251937866211,
-0.1319800764322281,
-0.13264614343643188,
-0.16691893339157104,
0.09259425103664398,
0.47534340620040894,
0.05603563040494919,
-0.18240690231323242,
-0.44340944290161133,
-0.08825428783893585,
0.04354747384786606,
0.9335210919380188,
-0.1706579029560089,
0.12624284625053406,
0.46061840653419495,
0.4787997603416443,
0.7257682085037231,
0.11696751415729523,
0.21708324551582336,
-0.8876075744628906,
0.48466843366622925,
0.010235128924250603,
0.4420706629753113,
0.47377389669418335,
-0.5114473104476929,
0.9003124237060547,
0.5196841359138489,
-0.607783854007721,
-0.530265748500824,
-0.05653867870569229,
-1.5026309490203857,
0.33779287338256836,
0.6774529218673706,
-0.06653974205255508,
-0.3630591034889221,
0.15855532884597778,
-0.236215740442276,
-0.019789379090070724,
-0.6035124063491821,
0.07649420946836472,
0.31371793150901794,
0.17551614344120026,
-0.42477473616600037,
-0.10299955308437347,
0.4053357243537903,
-0.26625603437423706,
-1.179161787033081,
-0.15003927052021027,
0.3237929940223694,
0.024558717384934425,
0.22272329032421112,
0.5117411613464355,
-0.20519956946372986,
0.22146105766296387,
0.4503785967826843,
0.3311656713485718,
-0.25846362113952637,
-0.31556838750839233,
-0.062346719205379486,
-0.031122738495469093,
-0.17712703347206116,
-0.7062142491340637
]
|
alvp/autonlp-data-alberti-stanzas-finetuning | alvp | 2021-11-19T12:46:22Z | 261 | 0 | [
"task_categories:text-classification",
"region:us"
]
| [
"text-classification"
]
| 2022-03-02T23:29:22Z | ---
task_categories:
- text-classification
---
# AutoNLP Dataset for project: alberti-stanzas-finetuning
## Table of content
- [Dataset Description](#dataset-description)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
## Dataset Descritpion
This dataset has been automatically processed by AutoNLP for project alberti-stanzas-finetuning.
### Languages
The BCP-47 code for the dataset's language is unk.
## Dataset Structure
### Data Instances
A sample from this dataset looks as follows:
```json
[
{
"text": "No es la ciudad inmunda \nquien empuja las velas. Tampoco el coraz\u00f3n, \nprimitiva caba\u00f1a del deseo, \nse aventura por islas encendidas \nen donde el mar oculta sus ruinas, \nalgas de Baudelaire, espumas y silencios. \nEs la necesidad, la solitaria \nnecesidad de un hombre, \nquien nos lleva a cubierta, \nquien nos hace temblar, vivir en cuerpos \nque resisten la voz de las sirenas, \namarrados en proa, \ncon el tim\u00f3n gimiendo entre las manos.",
"target": 40
},
{
"text": "Ni mueve m\u00e1s ligera,\nni m\u00e1s igual divide por derecha\nel aire, y fiel carrera,\no la traciana flecha\no la bola tudesca un fuego hecha.",
"target": 11
}
]
```
### Dataset Fields
The dataset has the following fields (also called "features"):
```json
{
"target": "ClassLabel(num_classes=46, names=['0', '1', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '2', '20', '21', '22', '23', '24', '25', '26', '27', '28', '29', '3', '30', '31', '32', '33', '34', '35', '36', '37', '38', '39', '4', '40', '41', '42', '43', '44', '45', '5', '6', '7', '8', '9'], names_file=None, id=None)",
"text": "Value(dtype='string', id=None)"
}
```
### Dataset Splits
This dataset is split into a train and validation split. The split sizes are as follow:
| Split name | Num samples |
| ------------ | ------------------- |
| train | 4004 |
| valid | 1001 |
| [
-0.5066502690315247,
-0.15417274832725525,
0.09607981890439987,
0.32050222158432007,
-0.12557737529277802,
0.30349087715148926,
-0.1901090443134308,
-0.29212015867233276,
0.38590386509895325,
0.5258394479751587,
-0.49479907751083374,
-1.0352420806884766,
-0.5630147457122803,
0.263158917427063,
-0.4712963104248047,
0.9752609133720398,
-0.17537540197372437,
-0.35356852412223816,
0.37162938714027405,
-0.11710821092128754,
-0.35667097568511963,
-0.42160600423812866,
-0.5857957005500793,
-0.031138228252530098,
0.3257899284362793,
0.3431921601295471,
0.5987405776977539,
0.9977325797080994,
0.6300579309463501,
0.45359063148498535,
-0.11819596588611603,
-0.035620495676994324,
-0.008199765346944332,
-0.06253523379564285,
0.001537935808300972,
-0.390497088432312,
-0.3650883734226227,
-0.2237933874130249,
0.6537945866584778,
0.5691727995872498,
0.15088006854057312,
0.4024564027786255,
0.10822471976280212,
0.8201592564582825,
-0.5302010178565979,
0.25782153010368347,
-0.6583674550056458,
0.435810387134552,
-0.21396706998348236,
-0.20777225494384766,
0.14993885159492493,
-0.20240789651870728,
0.14287987351417542,
-0.6051335334777832,
0.5328933596611023,
0.28722724318504333,
1.3649871349334717,
0.23543593287467957,
-0.2343749850988388,
-0.3336953818798065,
-0.3152468800544739,
0.8127447366714478,
-0.9685050249099731,
0.10611054301261902,
0.7193741798400879,
0.346848726272583,
-0.12290792912244797,
-0.6081749796867371,
-0.7560454607009888,
0.17408062517642975,
-0.3669876754283905,
0.2881039083003998,
-0.1219744086265564,
-0.18608205020427704,
0.3624275326728821,
0.5310980677604675,
-0.9444273710250854,
0.06586001813411713,
-0.5347097516059875,
-0.36662575602531433,
0.8787717223167419,
0.3965033292770386,
0.14455266296863556,
-0.6360114812850952,
-0.2722615599632263,
-0.24993371963500977,
-0.25755003094673157,
0.29922255873680115,
0.5487777590751648,
0.3997964560985565,
-0.6720976233482361,
0.6020619869232178,
-0.645032525062561,
0.7075778841972351,
-0.027506381273269653,
-0.09938347339630127,
0.6413711905479431,
-0.425510972738266,
-0.5444077849388123,
0.052645254880189896,
1.50026273727417,
0.5242418646812439,
0.08508317172527313,
0.1277065873146057,
-0.04268185421824455,
-0.09887898713350296,
0.07172945886850357,
-0.7845105528831482,
-0.5814884901046753,
0.5805271863937378,
-0.6570977568626404,
-0.4113207459449768,
0.13074512779712677,
-1.1921120882034302,
0.01704905554652214,
-0.2291291356086731,
0.20541749894618988,
-0.362659752368927,
-0.26211798191070557,
0.14943814277648926,
-0.004861172288656235,
0.012762478552758694,
0.17268338799476624,
-1.016333818435669,
0.010032403282821178,
0.2049340307712555,
0.8853931427001953,
0.1625610888004303,
-0.4668542146682739,
0.3349693715572357,
0.055362097918987274,
-0.23849163949489594,
0.8180796504020691,
-0.2346539944410324,
-0.344306081533432,
0.03777211904525757,
0.3834781050682068,
-0.10655263066291809,
-0.46316060423851013,
0.6125810742378235,
-0.23718778789043427,
0.33952465653419495,
-0.3825376629829407,
-0.28926464915275574,
-0.2745567262172699,
0.3598577082157135,
-0.755715548992157,
1.3000909090042114,
0.4450511038303375,
-0.928482174873352,
0.5321844816207886,
-0.9068624973297119,
-0.42398539185523987,
0.07281317561864853,
-0.1465199887752533,
-0.7488605976104736,
-0.3623751103878021,
0.29026147723197937,
0.6131141781806946,
-0.2732607424259186,
-0.21295975148677826,
-0.3615643084049225,
-0.11642923206090927,
0.2727526128292084,
-0.45321252942085266,
1.0951101779937744,
0.5541012287139893,
-0.4419328272342682,
0.016255196183919907,
-1.191475510597229,
0.17738045752048492,
0.39667630195617676,
-0.4623541533946991,
-0.09460017830133438,
-0.4513917565345764,
0.20601804554462433,
0.33600836992263794,
0.3201318383216858,
-0.5023146867752075,
0.3199244439601898,
-0.5009050965309143,
0.22438393533229828,
0.4789227247238159,
0.011150157079100609,
0.4284213185310364,
-0.23252619802951813,
0.36460334062576294,
0.09628255665302277,
0.2861531972885132,
-0.031109146773815155,
-0.2637608051300049,
-0.7487855553627014,
-0.33657845854759216,
0.30734434723854065,
0.5960638523101807,
-0.4569004476070404,
1.2264578342437744,
-0.2426813244819641,
-0.5168909430503845,
-0.7491661906242371,
0.14267852902412415,
0.09144776314496994,
0.6712266206741333,
0.5321730375289917,
-0.23303675651550293,
-0.9433637857437134,
-0.8473871946334839,
0.1870485097169876,
-0.06212075427174568,
0.026972251012921333,
0.11845219135284424,
0.7877485156059265,
-0.07860375195741653,
1.0132912397384644,
-0.6148896813392639,
-0.4412199556827545,
-0.16979850828647614,
0.28141239285469055,
0.574023962020874,
0.5879702568054199,
0.8886632919311523,
-0.7786407470703125,
-0.9716249704360962,
-0.08922973275184631,
-0.9677348732948303,
-0.22271451354026794,
-0.19461189210414886,
-0.27956071496009827,
0.05774206668138504,
0.011172129772603512,
-0.5555533766746521,
0.7900696992874146,
0.4396526515483856,
-0.6787220239639282,
0.5422937273979187,
-0.15041883289813995,
0.4981842339038849,
-1.2158534526824951,
0.20376352965831757,
-0.04344993084669113,
-0.15002119541168213,
-0.45209765434265137,
-0.3337768614292145,
0.004571959376335144,
0.275577574968338,
-0.394758403301239,
0.19382378458976746,
-0.3657326400279999,
-0.031006906181573868,
-0.42965176701545715,
-0.13369613885879517,
0.29294896125793457,
0.43136486411094666,
0.03955612704157829,
0.5224398970603943,
0.8651256561279297,
-0.41669437289237976,
0.712641179561615,
0.37267938256263733,
-0.6691413521766663,
0.556102991104126,
-0.4629410207271576,
-0.21161656081676483,
0.01237632054835558,
0.256024569272995,
-0.9024782776832581,
-0.32639721035957336,
0.4369017779827118,
-0.5601716041564941,
0.18776583671569824,
-0.4900425374507904,
-0.801785945892334,
-0.7344028353691101,
-0.16561825573444366,
0.25559741258621216,
0.2315831184387207,
-0.3258587121963501,
0.34361645579338074,
0.20419567823410034,
0.15695247054100037,
-0.7131475210189819,
-0.9180485010147095,
0.12758731842041016,
-0.4058215320110321,
-0.4803723990917206,
0.2668077051639557,
-0.3038639724254608,
0.0823121964931488,
0.01161767914891243,
0.0757175013422966,
-0.3298738896846771,
0.12661302089691162,
0.28684502840042114,
0.3928346037864685,
-0.008349456824362278,
-0.4229987859725952,
0.04094426706433296,
-0.05793250724673271,
0.10676456987857819,
-0.21176451444625854,
0.9844520688056946,
-0.10264448076486588,
-0.1330142766237259,
-0.6562159657478333,
0.4031778573989868,
0.49795448780059814,
-0.15224193036556244,
0.8252082467079163,
0.8355194330215454,
-0.35451290011405945,
-0.11199309676885605,
-0.12558944523334503,
0.18552345037460327,
-0.5089317560195923,
0.21781693398952484,
-0.521889328956604,
-0.6607092618942261,
1.0088311433792114,
0.21114686131477356,
0.025887496769428253,
1.0727754831314087,
0.5683371424674988,
-0.5706744194030762,
0.9294913411140442,
0.16166090965270996,
-0.1922960877418518,
0.2372310906648636,
-1.0765790939331055,
-0.007824103347957134,
-0.8034456372261047,
-0.4775640666484833,
-0.6231422424316406,
-0.3842342495918274,
-0.5566884875297546,
-0.052379727363586426,
0.0618022195994854,
0.280013769865036,
-0.4417913854122162,
0.695622444152832,
-1.0866527557373047,
0.45028698444366455,
0.5594048500061035,
-0.1342589110136032,
-0.07197447866201401,
-0.13024738430976868,
-0.15991412103176117,
0.025152450427412987,
-0.6886467337608337,
-0.2268562763929367,
1.222212553024292,
0.3955317437648773,
0.46478980779647827,
0.1126147210597992,
0.7372612357139587,
0.3639298975467682,
0.014188871718943119,
-0.6251132488250732,
0.5596718788146973,
-0.04576051980257034,
-0.7770707011222839,
-0.3763704001903534,
-0.41684097051620483,
-1.2192094326019287,
0.1746172159910202,
-0.406086266040802,
-0.8291159868240356,
0.4765450060367584,
0.06085178628563881,
-0.4266955852508545,
0.4880133867263794,
-0.5761721134185791,
0.9180130362510681,
-0.20457100868225098,
-0.04737360030412674,
0.25558510422706604,
-0.8658444285392761,
0.1251887083053589,
-0.08920056372880936,
0.2164497673511505,
-0.5017353296279907,
0.297847181558609,
0.7858430743217468,
-0.7302218675613403,
0.7163031101226807,
-0.14423444867134094,
-0.009819268248975277,
0.4671957194805145,
-0.042732227593660355,
0.5320600867271423,
0.0884997695684433,
0.06398246437311172,
0.3987458348274231,
0.1417928785085678,
-0.29535454511642456,
-0.5327358245849609,
0.6871249079704285,
-0.8094887733459473,
0.0520285926759243,
-0.6661171913146973,
-0.4299660623073578,
0.3911610245704651,
0.43153148889541626,
0.7044788599014282,
0.23345883190631866,
0.4601486027240753,
0.34689632058143616,
0.5455595254898071,
-0.17694365978240967,
0.8218830823898315,
0.6882854700088501,
-0.03946403041481972,
-0.8648352026939392,
0.7662667632102966,
0.2893284559249878,
-0.11354497820138931,
0.4583204984664917,
0.1408846080303192,
-0.7129270434379578,
-0.8122146725654602,
-0.49192389845848083,
-0.002144238678738475,
-0.7103172540664673,
-0.713196337223053,
-0.6815913915634155,
-0.3400624394416809,
-0.8106247186660767,
-0.1782248169183731,
-0.47913697361946106,
-0.3663570284843445,
-0.4006001949310303,
-0.16975964605808258,
0.5528229475021362,
0.37594926357269287,
-0.3037826418876648,
0.47575056552886963,
-0.7301135063171387,
0.284515380859375,
-0.09575429558753967,
0.49871885776519775,
-0.26747092604637146,
-0.7442227005958557,
-0.6081224679946899,
-0.1314389705657959,
-0.12840472161769867,
-0.8196704387664795,
0.6848210096359253,
-0.12442755699157715,
0.28602516651153564,
0.3869328200817108,
0.09459487348794937,
0.7131022214889526,
-0.44199344515800476,
0.822396457195282,
0.27917659282684326,
-0.8749963641166687,
0.9248579144477844,
-0.411831259727478,
0.3433457911014557,
0.9722719192504883,
0.48585304617881775,
-0.5356903076171875,
-0.41626599431037903,
-0.7341404557228088,
-1.2351402044296265,
0.7536562085151672,
0.44672566652297974,
-0.2969139516353607,
0.16406022012233734,
0.1518288403749466,
-0.10642953962087631,
0.24712024629116058,
-0.9804975390434265,
-0.8895056843757629,
-0.6517711281776428,
-0.6224067211151123,
0.40932339429855347,
0.06940559297800064,
-0.3454930782318115,
-0.5432320833206177,
0.6575800180435181,
-0.053660281002521515,
0.3827429413795471,
0.4003923833370209,
0.15743279457092285,
-0.014775707386434078,
0.1607050597667694,
0.5108818411827087,
0.4162803590297699,
-0.5222381353378296,
0.07493869960308075,
0.09135015308856964,
-0.6227709650993347,
0.07100503146648407,
0.263149231672287,
-0.2501540184020996,
0.1312088668346405,
0.38942447304725647,
0.918075442314148,
-0.18197771906852722,
-0.2527911365032196,
0.44484615325927734,
-0.03062376193702221,
-0.5140057802200317,
-0.7635787129402161,
0.1096673309803009,
-0.5381504893302917,
0.2520792484283447,
0.6602964401245117,
0.05810869485139847,
0.357244610786438,
-0.16659002006053925,
0.2725880742073059,
0.15198750793933868,
0.04269403964281082,
-0.23565322160720825,
0.6936980485916138,
-0.25989165902137756,
-0.2676464319229126,
0.2907944321632385,
-0.3325480818748474,
-0.5448101162910461,
0.7968956828117371,
0.35538506507873535,
0.9465821385383606,
-0.10127535462379456,
0.15812021493911743,
0.72853022813797,
0.5168898105621338,
0.08157334476709366,
0.5302533507347107,
0.03871181234717369,
-0.721774697303772,
-0.3872889578342438,
-0.9004073739051819,
-0.053997643291950226,
0.6374706029891968,
-0.7023155093193054,
0.1957806944847107,
-0.6222223043441772,
-0.24421103298664093,
0.10224082320928574,
0.21461515128612518,
-0.9439122080802917,
0.8198941349983215,
0.11344767361879349,
0.8701911568641663,
-0.9891178011894226,
0.8320502042770386,
0.5323826670646667,
-0.5776842832565308,
-1.0318528413772583,
-0.22968891263008118,
-0.181715190410614,
-0.5517401099205017,
0.6982401609420776,
0.028943557292222977,
0.42281028628349304,
-0.09664526581764221,
-0.6449152231216431,
-1.2282310724258423,
1.265848994255066,
0.025595340877771378,
-0.6583560705184937,
0.2290937453508377,
0.690405011177063,
0.5502002239227295,
-0.25628140568733215,
0.5876144766807556,
0.6581597924232483,
0.6338569521903992,
-0.015417550690472126,
-0.9170100688934326,
0.1230122521519661,
-0.36771753430366516,
-0.24870990216732025,
0.13277237117290497,
-0.9882344007492065,
0.6915532350540161,
0.28104498982429504,
0.19159117341041565,
-0.22361698746681213,
0.905761182308197,
0.13847863674163818,
0.3015691936016083,
0.6046040058135986,
0.9203766584396362,
0.6163948178291321,
-0.3909965455532074,
0.6588289737701416,
-0.35627633333206177,
0.9479228258132935,
0.925820529460907,
0.00015154157881624997,
0.5937058925628662,
0.12921400368213654,
-0.5601865649223328,
0.715401291847229,
0.8109365105628967,
-0.6125483512878418,
0.7585065960884094,
0.02057248167693615,
-0.3470185399055481,
0.2178066521883011,
0.22950690984725952,
-0.2872372269630432,
0.7922843098640442,
0.283830463886261,
-0.6183176636695862,
-0.08963582664728165,
-0.058916594833135605,
0.19022953510284424,
-0.22526031732559204,
-0.23427936434745789,
0.5836811065673828,
-0.31551381945610046,
-0.2958306670188904,
0.7130566835403442,
-0.0364052839577198,
0.6996859908103943,
-0.6867731809616089,
0.06394889205694199,
-0.10622940957546234,
-0.1957666277885437,
-0.5628105998039246,
-1.1624953746795654,
0.5130006074905396,
0.09784088283777237,
-0.4671259820461273,
-0.0883687436580658,
0.6140082478523254,
-0.6202451586723328,
-0.6524195075035095,
0.18772149085998535,
-0.10573387891054153,
0.3186640739440918,
0.13824006915092468,
-1.2412320375442505,
0.1327204406261444,
0.33604034781455994,
-0.352681040763855,
0.2061387300491333,
0.5811772346496582,
0.4227290451526642,
0.49151095747947693,
0.7511811256408691,
0.3644162118434906,
0.23275673389434814,
0.01048929151147604,
0.6754075884819031,
-0.9071100950241089,
-0.5094092488288879,
-0.7739993333816528,
0.8701561689376831,
-0.4831828773021698,
-0.40922313928604126,
0.7491261959075928,
1.2111268043518066,
0.8979597091674805,
0.054628945887088776,
1.1146196126937866,
-0.45130640268325806,
0.6851792931556702,
-0.5235911011695862,
0.9544042348861694,
-0.477687269449234,
0.08737590909004211,
-0.26368629932403564,
-0.6386770606040955,
-0.35568469762802124,
0.8008126616477966,
-0.058719534426927567,
0.027522379532456398,
0.6370063424110413,
0.6702122092247009,
0.06865361332893372,
-0.1348794847726822,
0.136786550283432,
0.20468972623348236,
0.3094019591808319,
0.5073301196098328,
0.4899698495864868,
-0.8956645131111145,
0.5402542948722839,
-0.9539002180099487,
-0.1168588399887085,
-0.11123637855052948,
-0.8010438084602356,
-0.9168936610221863,
-0.6185680627822876,
-0.4837234616279602,
-0.5024416446685791,
-0.3877035081386566,
1.0432872772216797,
0.6268596053123474,
-1.2146707773208618,
-0.1777319610118866,
-0.24164630472660065,
-0.11026643216609955,
0.04800921306014061,
-0.3929433822631836,
0.9225805997848511,
-0.1051708534359932,
-0.947401762008667,
0.49249446392059326,
0.24059733748435974,
0.48565635085105896,
-0.1268436759710312,
0.08306509256362915,
-0.14293906092643738,
-0.2785308361053467,
0.35551831126213074,
0.43738728761672974,
-0.3870343267917633,
-0.12389667332172394,
-0.390205055475235,
-0.14975708723068237,
0.3735988140106201,
0.42591068148612976,
-0.5287249684333801,
0.3238183856010437,
0.6682665348052979,
0.2900121510028839,
0.40973061323165894,
-0.20510131120681763,
0.03603116795420647,
-0.8739574551582336,
0.28517594933509827,
0.17551453411579132,
0.5592639446258545,
0.19210374355316162,
-0.4838305413722992,
0.5688405632972717,
0.4981856942176819,
-0.7053394317626953,
-0.90659099817276,
-0.2582220733165741,
-1.1412147283554077,
-0.04968593269586563,
1.0018765926361084,
-0.09839289635419846,
-0.19450809061527252,
-0.3559536933898926,
-0.12440504133701324,
0.45502620935440063,
-0.514322817325592,
0.8608470559120178,
0.5983916521072388,
-0.21986941993236542,
-0.18453504145145416,
-0.6267539262771606,
0.6571440100669861,
0.24744488298892975,
-0.8827008605003357,
-0.11289501190185547,
0.17894987761974335,
0.32265645265579224,
0.26845791935920715,
0.5824678540229797,
-0.011862163431942463,
-0.04116491600871086,
-0.052602946758270264,
0.3612686097621918,
0.015653984621167183,
-0.3229181468486786,
-0.21747474372386932,
0.13379733264446259,
-0.4877856969833374,
-0.43875688314437866
]
|
damlab/HIV_PI | damlab | 2022-03-09T19:48:01Z | 261 | 0 | [
"license:mit",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
license: mit
---
# Dataset Description
## Dataset Summary
This dataset was derived from the Stanford HIV Genotype-Phenotype database and contains 1,733 HIV protease sequences. A
pproximately half of the sequences are resistant to at least one antiretroviral therapeutic (ART).
Supported Tasks and Leaderboards: None
Languages: English
## Dataset Structure
### Data Instances
Each column represents the protein amino acid sequence of the HIV protease protein. The ID field indicates the Genbank reference ID for future cross-referencing. There are 1,733 total protease sequences.
Data Fields: ID, sequence, fold, FPV, IDV, NFV, SQV
Data Splits: None
## Dataset Creation
Curation Rationale: This dataset was curated to train a model (HIV-BERT-PI) designed to predict whether an HIV protease sequence would result in resistance to certain antiretroviral (ART) drugs.
Initial Data Collection and Normalization: Dataset was downloaded and curated on 12/21/2021.
## Considerations for Using the Data
Social Impact of Dataset: Due to the tendency of HIV to mutate, drug resistance is a common issue when attempting to treat those infected with HIV.
Protease inhibitors are a class of drugs that HIV is known to develop resistance via mutations.
Thus, by providing a collection of protease sequences known to be resistant to one or more drugs, this dataset provides a significant collection of data that could be utilized to perform computational analysis of protease resistance mutations.
Discussion of Biases: Due to the sampling nature of this database, it is predominantly composed of subtype B sequences from North America and Europe with only minor contributions of Subtype C, A, and D.
Currently, there was no effort made to balance the performance across these classes.
As such, one should consider refinement with additional sequences to perform well on non-B sequences.
## Additional Information:
- Dataset Curators: Will Dampier
- Citation Information: TBA
| [
-0.06794097274541855,
-0.44572821259498596,
0.08505364507436752,
0.12889686226844788,
0.059281740337610245,
-0.04178765043616295,
0.34763479232788086,
-0.12518970668315887,
0.3304363787174225,
0.49940675497055054,
-0.7417967915534973,
-0.48467567563056946,
-0.707510232925415,
0.30889958143234253,
-0.3338080048561096,
1.1414729356765747,
-0.1661575734615326,
0.2900243103504181,
0.05787327513098717,
-0.372557669878006,
-0.5371701717376709,
-0.18255740404129028,
-0.15558607876300812,
-0.1536960005760193,
0.5088257193565369,
0.5256070494651794,
0.7271173596382141,
0.48198333382606506,
0.6047841310501099,
0.08808113634586334,
0.23229755461215973,
-0.16059334576129913,
-0.9111639261245728,
-0.08835344016551971,
-0.13204428553581238,
-0.3494603931903839,
-0.6828626990318298,
-0.06703038513660431,
0.41230806708335876,
0.4703831076622009,
0.10868915915489197,
0.4479418694972992,
-0.31642889976501465,
0.8499706983566284,
-0.6615470051765442,
-0.225542813539505,
-0.4231627583503723,
0.16098180413246155,
-0.878925621509552,
0.2472282350063324,
-0.3025221526622772,
-0.15836018323898315,
0.3362673223018646,
-0.6209776997566223,
0.5754498243331909,
0.22890816628932953,
0.6531737446784973,
0.05297405645251274,
-0.31807348132133484,
0.15486277639865875,
-0.2938058376312256,
0.3740414083003998,
-0.49303311109542847,
0.400151789188385,
0.45417535305023193,
0.2703188359737396,
-0.5818735957145691,
-0.5773165822029114,
-0.40984204411506653,
-0.2350379377603531,
0.021452313289046288,
-0.18265846371650696,
0.129024475812912,
-0.13560698926448822,
0.26529642939567566,
0.5878562331199646,
-1.0210392475128174,
-0.035768140107393265,
-0.6634282469749451,
-0.37069371342658997,
0.7728555202484131,
0.14483992755413055,
-0.004467852413654327,
0.11696293205022812,
-0.27128875255584717,
-0.07227657735347748,
-0.967829167842865,
0.27681854367256165,
0.33802881836891174,
0.0000034397196486679604,
-0.18875616788864136,
0.6697657108306885,
-0.046141497790813446,
0.5006164312362671,
-0.12672102451324463,
0.09560810029506683,
0.6135268807411194,
-0.39270469546318054,
-0.16107019782066345,
0.10603151470422745,
0.6904043555259705,
0.14761115610599518,
0.23518885672092438,
0.03432697430253029,
0.08879940211772919,
-0.36463284492492676,
0.29639431834220886,
-0.7822392582893372,
-0.9098451733589172,
0.38171666860580444,
-0.49214473366737366,
0.05956374108791351,
0.2249942272901535,
-0.563327968120575,
-0.22738975286483765,
-0.03952403366565704,
0.7278220057487488,
-0.4254758358001709,
0.015993403270840645,
0.018491197377443314,
-0.3802744448184967,
0.021933075040578842,
-0.14659857749938965,
-0.39821866154670715,
0.3169480860233307,
0.10864155739545822,
0.7382383942604065,
-0.5221911072731018,
-0.4033363461494446,
-0.31611520051956177,
0.3491077721118927,
-0.059524934738874435,
0.5504100322723389,
-0.5314748287200928,
-0.4982234537601471,
-0.1579105705022812,
0.38126838207244873,
-0.06516269594430923,
-0.5707526206970215,
0.4960590898990631,
-0.23509347438812256,
-0.12074821442365646,
-0.4695814251899719,
-0.6011541485786438,
-0.2445189356803894,
-0.1886436641216278,
-0.9882045984268188,
0.42489975690841675,
0.5435296893119812,
-0.7320977449417114,
0.32788845896720886,
-0.7259172797203064,
-0.4964377284049988,
0.13120195269584656,
0.2556411921977997,
-0.7539086937904358,
-0.09182513505220413,
0.24492007493972778,
0.064079649746418,
-0.27372878789901733,
0.15865984559059143,
-0.49571359157562256,
-0.3539547026157379,
0.2817593514919281,
0.08803319185972214,
0.7646796703338623,
0.05536800995469093,
-0.26563596725463867,
0.12128178775310516,
-1.115582823753357,
-0.3929581642150879,
0.2579874098300934,
-0.08511420339345932,
0.09995261579751968,
-0.03527053818106651,
-0.05261718109250069,
0.17750336229801178,
-0.1345788836479187,
-0.7388677000999451,
0.3960789740085602,
0.025524847209453583,
0.049960605800151825,
0.9289135932922363,
0.3668232262134552,
-0.01116859633475542,
-0.5047226548194885,
0.5916823148727417,
0.31263116002082825,
0.5836741328239441,
0.3536378741264343,
-0.7596631050109863,
-0.5304293632507324,
-0.3797543942928314,
0.41886577010154724,
0.8123027086257935,
-0.688496470451355,
0.09135449677705765,
-0.21434150636196136,
-0.3604178726673126,
-0.7173370122909546,
0.3101772964000702,
0.5758514404296875,
0.6085326671600342,
0.7411455512046814,
-0.5997775197029114,
-0.571861743927002,
-1.1953797340393066,
-0.08421413600444794,
-0.0660451278090477,
0.00877710897475481,
0.06990872323513031,
0.8198068737983704,
0.17182102799415588,
0.7190024256706238,
-0.6327825784683228,
-0.6338426470756531,
-0.27649733424186707,
-0.20929338037967682,
0.3262713849544525,
0.4295467436313629,
0.4500458836555481,
-0.7259624600410461,
-0.21405194699764252,
-0.7741969227790833,
-0.4502715766429901,
-0.22461754083633423,
0.040804218500852585,
-0.46336057782173157,
-0.22340847551822662,
0.0036034416407346725,
-0.027689190581440926,
0.5848985314369202,
0.29089418053627014,
-0.18958067893981934,
0.4186626374721527,
0.05602383613586426,
0.07699228823184967,
-0.493345707654953,
0.1759280115365982,
0.18811343610286713,
0.17776772379875183,
-0.8619770407676697,
-0.3755109906196594,
-0.32375022768974304,
0.17770934104919434,
-0.6175292134284973,
-0.09322787821292877,
0.01411594171077013,
-0.07286009192466736,
0.25117552280426025,
-0.5622914433479309,
0.1403016448020935,
0.35145777463912964,
-0.012486940249800682,
0.9013776183128357,
0.3647913336753845,
-0.3812647759914398,
0.2747236490249634,
0.6448455452919006,
-0.26678887009620667,
0.30884748697280884,
-0.8321467041969299,
0.06817242503166199,
-0.1151830404996872,
0.4358695447444916,
-0.8095917105674744,
-0.1687583178281784,
0.28891512751579285,
-0.2613348066806793,
0.13278153538703918,
-0.07288454473018646,
-0.0435161329805851,
-0.3341529965400696,
-0.5221817493438721,
0.5256017446517944,
0.15748289227485657,
0.01808900758624077,
-0.05588715150952339,
0.41095709800720215,
-0.0575532428920269,
-0.5349701642990112,
-0.5263475179672241,
-0.25353726744651794,
0.0625700131058693,
-0.6245453953742981,
0.3348231911659241,
-0.17794080078601837,
0.01930120773613453,
0.005793643184006214,
0.2535748779773712,
0.14619308710098267,
-0.014970235526561737,
0.40318384766578674,
0.322325199842453,
0.12766340374946594,
-0.008545903488993645,
-0.2049105167388916,
-0.020237812772393227,
-0.04963797703385353,
-0.24095794558525085,
0.3257519602775574,
0.16262634098529816,
-0.22204573452472687,
-0.27685752511024475,
0.48503223061561584,
0.299739271402359,
-0.29738670587539673,
0.9489176869392395,
0.5979808568954468,
-0.10748735070228577,
0.02707156538963318,
-0.05519546940922737,
-0.049164075404405594,
-0.3268555700778961,
0.4744303524494171,
-0.42577308416366577,
-0.5514827370643616,
0.5205645561218262,
0.33523955941200256,
0.25152388215065,
0.6172587871551514,
0.7254721522331238,
0.12690509855747223,
0.5069361925125122,
0.3792966604232788,
-0.1086648479104042,
0.044786058366298676,
-0.6334014534950256,
0.3952379524707794,
-0.9066663384437561,
-0.5237473845481873,
-0.3961029350757599,
-0.8023459315299988,
-0.40611058473587036,
-0.01910054311156273,
0.5072833299636841,
-0.22135935723781586,
-0.5686935782432556,
0.5199761986732483,
-0.22930856049060822,
0.09461258351802826,
0.5151388049125671,
0.35373204946517944,
0.023105230182409286,
-0.2923032343387604,
0.08984055370092392,
0.05431497469544411,
-0.6661123633384705,
-0.20730970799922943,
1.3441210985183716,
0.2551337778568268,
0.355739027261734,
0.4799033999443054,
0.26938101649284363,
0.8461339473724365,
0.3908027410507202,
-0.1280595362186432,
0.5007086992263794,
-0.38823631405830383,
-0.8050217032432556,
-0.22181876003742218,
-0.19930127263069153,
-0.8818891048431396,
-0.3703688085079193,
-0.38416537642478943,
-0.5630092620849609,
0.7736737728118896,
0.09725695848464966,
-0.2563878893852234,
0.07906932383775711,
-0.6816185116767883,
1.03641676902771,
0.0643787607550621,
-0.2425447553396225,
0.25831758975982666,
-1.1194010972976685,
0.5143184661865234,
-0.29815012216567993,
0.15672437846660614,
-0.15889765322208405,
0.4048204720020294,
0.9000567197799683,
-0.612546980381012,
0.42231857776641846,
-0.1253194659948349,
0.1028478592634201,
0.173945814371109,
0.13950036466121674,
0.18016529083251953,
0.036897167563438416,
-0.15104694664478302,
0.20954905450344086,
-0.22639641165733337,
-0.7323211431503296,
-0.06344656646251678,
0.4631394147872925,
-0.7693687677383423,
-0.4176442325115204,
-0.0996306985616684,
-0.5471908450126648,
-0.09324006736278534,
-0.163279190659523,
0.7242447137832642,
0.5150391459465027,
-0.00874131079763174,
-0.10882634669542313,
0.6038193106651306,
-0.2137671858072281,
0.14152374863624573,
0.38025081157684326,
0.0507364347577095,
-0.5776318907737732,
0.8211327791213989,
0.6315328478813171,
0.4318945109844208,
0.35478705167770386,
-0.17617586255073547,
-0.2610573470592499,
-0.9754409193992615,
-0.4668501019477844,
-0.14082495868206024,
-0.31887751817703247,
-0.22514031827449799,
-0.2353307157754898,
-0.1565510332584381,
-0.6448580622673035,
-0.02444314770400524,
-0.0207055676728487,
-0.5079108476638794,
-0.1837654709815979,
-0.3445124328136444,
0.7115160226821899,
0.5592346787452698,
0.22928489744663239,
0.2676038146018982,
-0.6231756806373596,
0.5078776478767395,
0.025130728259682655,
0.2547178566455841,
-0.35872769355773926,
-0.8524963855743408,
-0.23689387738704681,
0.09061983227729797,
-0.5876104831695557,
-1.130237102508545,
0.43279367685317993,
0.7009029388427734,
0.6183159947395325,
0.10146306455135345,
0.2946147322654724,
0.6531479358673096,
-0.40384697914123535,
1.091754674911499,
-0.3544139266014099,
-0.5290312767028809,
0.7689486742019653,
-0.22377263009548187,
-0.13384085893630981,
0.7144179344177246,
0.716274619102478,
0.1183953657746315,
-0.30652132630348206,
-0.9116732478141785,
-1.0211279392242432,
0.5677880048751831,
0.6690585017204285,
-0.5885304808616638,
0.0906141996383667,
0.378766804933548,
0.3613309860229492,
0.16482873260974884,
-0.3888302743434906,
-0.6570733785629272,
-0.3338848054409027,
-0.33007001876831055,
-0.24444825947284698,
-0.16357187926769257,
-0.29608821868896484,
-0.2886492609977722,
1.0592831373214722,
0.12958556413650513,
0.07630499452352524,
0.3979749083518982,
-0.4197813868522644,
0.03067324124276638,
-0.021633990108966827,
0.6580398082733154,
0.8877619504928589,
-0.719828188419342,
-0.0015960579039528966,
0.06370674073696136,
-0.961073100566864,
0.3297056555747986,
0.14082466065883636,
-0.4519551694393158,
-0.1948729157447815,
0.6060848236083984,
0.8415879607200623,
-0.5106722712516785,
-0.5503673553466797,
0.4233526587486267,
0.09851805120706558,
-0.11976202577352524,
-0.1281873881816864,
0.024231163784861565,
-0.3743850290775299,
0.17119111120700836,
0.448527067899704,
-0.02824200689792633,
0.4282119572162628,
-0.41124892234802246,
0.454094260931015,
-0.06894560903310776,
-0.27151069045066833,
-0.4271543323993683,
0.661050021648407,
0.05685196444392204,
-0.41677215695381165,
0.8082424402236938,
-0.12001508474349976,
-0.16054567694664001,
0.5714929699897766,
0.5519322156906128,
0.6536858677864075,
-0.160874143242836,
0.0997946709394455,
0.33081576228141785,
0.007388541474938393,
0.09020353108644485,
0.21773937344551086,
0.44442063570022583,
-0.4922610819339752,
-0.07589030265808105,
-0.6760512590408325,
-0.2837270498275757,
0.2793270945549011,
-0.5586982369422913,
0.18606005609035492,
-0.2749146819114685,
-0.2774432599544525,
0.12309003621339798,
0.016454346477985382,
-0.33830076456069946,
0.07970168441534042,
-0.20024773478507996,
0.9933288097381592,
-1.3709728717803955,
0.7847917675971985,
0.680587112903595,
-0.4102868437767029,
-0.21292346715927124,
-0.19781433045864105,
0.18407611548900604,
-0.5368601679801941,
0.5256227850914001,
0.04684370011091232,
0.41872549057006836,
-0.28341060876846313,
-0.45045387744903564,
-0.457850843667984,
1.0709604024887085,
0.3725355863571167,
-0.5073226690292358,
0.4895319640636444,
0.17957130074501038,
0.3101304769515991,
-0.46686866879463196,
-0.026455819606781006,
1.034439206123352,
0.3009301722049713,
0.022843053564429283,
-0.7667407989501953,
0.04810544475913048,
-0.5281175971031189,
0.15945488214492798,
0.29320859909057617,
-0.6935054659843445,
0.7258397936820984,
-0.23148754239082336,
0.47626104950904846,
0.06940492987632751,
0.68642657995224,
0.4497142732143402,
0.2186187207698822,
0.2515406310558319,
0.8437577486038208,
0.3444153964519501,
-0.20015665888786316,
0.6868492364883423,
0.060506176203489304,
-0.15097175538539886,
0.8049787878990173,
-0.2937612235546112,
0.5910714268684387,
0.3063015639781952,
-0.44386208057403564,
0.47574254870414734,
0.6760655641555786,
-0.2658374309539795,
0.7220543622970581,
0.48784852027893066,
-0.05063951388001442,
-0.06969040632247925,
-0.1575440615415573,
-0.39485859870910645,
0.14324559271335602,
0.26202329993247986,
-0.35621240735054016,
0.0864124745130539,
0.22325251996517181,
-0.0852341428399086,
-0.35006222128868103,
-0.36036112904548645,
0.6161488890647888,
-0.2151363044977188,
-0.33173587918281555,
0.5074265003204346,
-0.3915095031261444,
0.03881541267037392,
-0.5487917065620422,
-0.17142769694328308,
-0.21732552349567413,
0.3758007287979126,
-0.2052655816078186,
-1.0524370670318604,
0.2378602772951126,
-0.06487252563238144,
-0.3682711124420166,
0.09371393173933029,
0.24402983486652374,
-0.16271653771400452,
-0.6307668685913086,
-0.17455999553203583,
-0.021143099293112755,
0.3061237633228302,
0.2882617115974426,
-0.580902099609375,
-0.0467555895447731,
0.10172538459300995,
-0.22596856951713562,
0.5385661721229553,
0.1380673199892044,
-0.3655686378479004,
0.6623517870903015,
0.5772209167480469,
0.06882340461015701,
-0.01718899980187416,
0.14791105687618256,
0.7725353240966797,
-0.32069146633148193,
-0.004105294123291969,
-0.5734833478927612,
0.49257567524909973,
-0.10712163895368576,
-0.6575121879577637,
0.5378407835960388,
0.8349730968475342,
0.704298734664917,
-0.08152463287115097,
0.37743452191352844,
-0.017263589426875114,
0.25182855129241943,
-0.3274041414260864,
0.3107592761516571,
-0.10479560494422913,
0.23183473944664001,
-0.1491549164056778,
-0.5543206930160522,
-0.35646262764930725,
0.3673456609249115,
-0.04659629985690117,
-0.1629648357629776,
0.19996768236160278,
0.7871066331863403,
0.468506395816803,
0.2180882841348648,
-0.31895849108695984,
0.37657731771469116,
0.6005324721336365,
0.709296703338623,
-0.005654838867485523,
-0.673546314239502,
0.15685448050498962,
-0.23443081974983215,
-0.32847148180007935,
-0.1606346219778061,
-0.7842202186584473,
-0.41404539346694946,
-0.6763674020767212,
-0.45349594950675964,
-0.807065486907959,
0.5624871850013733,
0.8574193716049194,
0.5058820843696594,
-1.154747724533081,
-0.09983275830745697,
0.06124981865286827,
0.037633251398801804,
-0.31258732080459595,
-0.07836442440748215,
0.5531222820281982,
0.06542858481407166,
-0.14978983998298645,
0.21063697338104248,
0.20241403579711914,
0.25696560740470886,
-0.08006352186203003,
-0.1296122968196869,
-0.579552948474884,
-0.12463297694921494,
0.39054355025291443,
0.5027782917022705,
-0.15100857615470886,
-0.22382329404354095,
0.1859961897134781,
0.33102238178253174,
0.01483291294425726,
0.4415854215621948,
-0.8738579750061035,
0.08650297671556473,
0.6001265048980713,
0.027297737076878548,
0.2933371067047119,
0.048140816390514374,
0.6924669146537781,
-0.5451047420501709,
0.07777472585439682,
0.13513100147247314,
0.4681791067123413,
0.2527279555797577,
-0.1897972673177719,
0.5656808018684387,
0.653756856918335,
-0.6101065874099731,
-0.5740519762039185,
0.13272625207901,
-0.7627568244934082,
-0.09371024370193481,
1.0395268201828003,
-0.22639200091362,
-0.31079941987991333,
-0.6062702536582947,
-0.165877565741539,
0.05044999718666077,
-0.2922516465187073,
0.49273380637168884,
0.5344251990318298,
-0.4468294382095337,
-0.23917071521282196,
-0.2737089693546295,
0.6472519636154175,
0.08684571832418442,
-0.3735325038433075,
0.10411521047353745,
0.2790625989437103,
0.2281159907579422,
-0.08544173091650009,
0.6159296035766602,
-0.20188520848751068,
0.24465924501419067,
-0.32759925723075867,
-0.07548870146274567,
-0.2833918631076813,
-0.48516568541526794,
-0.042193081229925156,
0.3205163776874542,
-0.0951928123831749,
-0.3241872787475586
]
|
huggingartists/asdfgfa | huggingartists | 2022-10-25T09:24:00Z | 261 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/asdfgfa"
## 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.031015 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('https://images.genius.com/a45b76e855b1bbcd0e0e1e25988d7050.975x180x1.png')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/asdfgfa">
<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">asdfgfa</div>
<a href="https://genius.com/artists/asdfgfa">
<div style="text-align: center; font-size: 14px;">@asdfgfa</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/asdfgfa).
### 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/asdfgfa")
```
## 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_0.031015| -| -|
'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/asdfgfa")
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*
[](https://github.com/AlekseyKorshuk)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.631416380405426,
-0.5099817514419556,
0.04641566053032875,
0.3235234022140503,
-0.21363161504268646,
-0.07518737018108368,
-0.3403414189815521,
-0.4255170226097107,
0.8299928307533264,
0.36035171151161194,
-0.9044779539108276,
-0.8006463646888733,
-0.5738680362701416,
0.1597735583782196,
-0.13814085721969604,
1.329545497894287,
-0.24886493384838104,
-0.3284822702407837,
-0.46175098419189453,
-0.2709822356700897,
-0.23066554963588715,
-0.2843446433544159,
-0.2916860282421112,
-0.40708956122398376,
0.3531363606452942,
0.5269572734832764,
0.7437773942947388,
0.9151611328125,
0.48170483112335205,
0.35233643651008606,
-0.12527106702327728,
-0.061067551374435425,
-0.3630921244621277,
-0.15575532615184784,
0.17475244402885437,
-0.3059404194355011,
-0.6906800866127014,
0.2658303380012512,
0.5553086996078491,
0.4843780994415283,
-0.09739315509796143,
0.520571231842041,
0.04546213150024414,
0.8833779096603394,
-0.302073210477829,
0.5005061626434326,
-0.2055269479751587,
-0.1476130336523056,
-0.31524041295051575,
0.05096391588449478,
0.23457157611846924,
-0.6450624465942383,
-0.01977524533867836,
-0.8161409497261047,
0.11856723576784134,
-0.07211142778396606,
1.0084980726242065,
0.14590731263160706,
0.11476267129182816,
-0.28231382369995117,
-0.10495060682296753,
0.4783294200897217,
-0.5990954041481018,
-0.03472317382693291,
0.6340656876564026,
0.10308798402547836,
-0.008690721355378628,
-0.60438472032547,
-0.6900333762168884,
0.12392228841781616,
-0.1943373829126358,
0.18350180983543396,
-0.07882693409919739,
-0.3023282587528229,
0.598711371421814,
0.6622750163078308,
-0.5529673099517822,
-0.30366992950439453,
-0.5157231092453003,
-0.0871012732386589,
1.2184793949127197,
0.10242108255624771,
0.43471336364746094,
-0.5124359130859375,
-0.18424873054027557,
-0.4578544795513153,
-0.2689966857433319,
0.3368624150753021,
0.5692964196205139,
0.4813465178012848,
-0.9773865342140198,
0.6332579851150513,
-0.16183152794837952,
0.5172808170318604,
0.12375916540622711,
-0.06236736476421356,
0.8219011425971985,
-0.3805684745311737,
-0.15741656720638275,
-0.14987440407276154,
1.0447478294372559,
0.6757006049156189,
0.2243034541606903,
0.10253240168094635,
-0.08684056252241135,
0.06303730607032776,
-0.1830202341079712,
-0.8320962190628052,
-0.47441062331199646,
0.6268877387046814,
-0.600611686706543,
-0.5966598987579346,
0.10613178461790085,
-1.0850023031234741,
-0.25652995705604553,
-0.3486384451389313,
0.29450300335884094,
-0.3344385623931885,
-0.5544869899749756,
0.11360401660203934,
-0.27926892042160034,
0.16033190488815308,
0.04814609885215759,
-0.6450192928314209,
0.24104775488376617,
0.6031937003135681,
0.7366292476654053,
0.2028973400592804,
-0.3320430517196655,
-0.29003140330314636,
-0.19266755878925323,
-0.09919822961091995,
0.6939902901649475,
-0.3456767201423645,
-0.40646544098854065,
-0.1164725199341774,
0.35565876960754395,
-0.11494985222816467,
-0.3231501281261444,
0.9220665097236633,
0.07672453671693802,
0.2292301058769226,
-0.6747636795043945,
-0.45997291803359985,
-0.094567209482193,
0.2755277752876282,
-0.7692012786865234,
1.1209341287612915,
0.30714109539985657,
-1.011056661605835,
0.23638303577899933,
-0.8581917881965637,
-0.3620312213897705,
-0.023384973406791687,
0.020005594938993454,
-0.8051298260688782,
-0.19400520622730255,
0.2106175273656845,
0.7064662575721741,
-0.35402771830558777,
0.06897588074207306,
-0.614990770816803,
-0.12581582367420197,
0.33131495118141174,
0.267726331949234,
1.2066919803619385,
0.07297517359256744,
-0.1360638439655304,
0.13136981427669525,
-0.9976570010185242,
0.09635443240404129,
0.5253286957740784,
-0.19987663626670837,
-0.10283470898866653,
-0.30268940329551697,
0.5057579874992371,
0.24301472306251526,
0.07404442876577377,
-0.5433370471000671,
0.45154622197151184,
-0.17252817749977112,
0.42395511269569397,
0.7474318742752075,
-0.02478054352104664,
0.3013884723186493,
-0.6485872864723206,
0.45261019468307495,
0.03517044335603714,
0.28893929719924927,
-0.009984121657907963,
-0.5687757730484009,
-0.4687633216381073,
-0.2485836148262024,
0.3985523283481598,
0.44247573614120483,
-0.6933534145355225,
0.9721364378929138,
-0.3465938866138458,
-0.7781304121017456,
-0.5890432596206665,
0.15961386263370514,
0.17915838956832886,
0.5057334303855896,
0.3566280007362366,
-0.42124199867248535,
-0.5504041910171509,
-0.609937846660614,
0.10996150970458984,
-0.26467522978782654,
0.15112610161304474,
0.41185635328292847,
0.8477669954299927,
-0.24361750483512878,
0.8368568420410156,
-0.7288094162940979,
-0.2933163642883301,
-0.18960177898406982,
-0.2564542889595032,
0.35249894857406616,
0.8243356347084045,
0.7515210509300232,
-0.875798225402832,
-0.502362072467804,
-0.2853890061378479,
-0.72225022315979,
-0.12146952003240585,
-0.012240623123943806,
-0.25438201427459717,
0.011418547481298447,
0.08383739739656448,
-0.7788927555084229,
0.5490944385528564,
0.45493772625923157,
-0.73033207654953,
0.5897228121757507,
0.08603083342313766,
0.022226499393582344,
-1.2579361200332642,
0.4457268714904785,
0.24433499574661255,
0.038723211735486984,
-0.5916755795478821,
-0.1275203973054886,
-0.0981319397687912,
-0.05844603478908539,
0.030598914250731468,
0.621690034866333,
-0.3397022783756256,
0.22730618715286255,
0.08484716713428497,
0.0396774522960186,
0.1079828292131424,
0.4587263762950897,
-0.038841165602207184,
0.2355208694934845,
1.020857334136963,
-0.35771623253822327,
0.6293453574180603,
0.6872856020927429,
-0.1703120321035385,
0.8560877442359924,
-0.7680323123931885,
0.0636003389954567,
-0.26511460542678833,
0.40043631196022034,
-0.803026020526886,
-0.5682930946350098,
0.7941206693649292,
-0.6994323134422302,
0.48929232358932495,
-0.24130667746067047,
-0.6342052221298218,
-0.7940359115600586,
-0.6593021750450134,
0.16509002447128296,
0.4854763448238373,
-0.41304701566696167,
0.4575600028038025,
0.576575517654419,
0.02968265488743782,
-0.3487299978733063,
-0.758667528629303,
-0.20020301640033722,
-0.4091232419013977,
-0.8388848900794983,
0.3345995247364044,
-0.3976879417896271,
-0.052971307188272476,
0.17031517624855042,
0.13389664888381958,
0.0934961661696434,
0.04224088415503502,
0.3918098509311676,
0.24428735673427582,
0.036630116403102875,
-0.0037075337022542953,
-0.08879780024290085,
-0.22237929701805115,
0.16492581367492676,
-0.14157773554325104,
0.2086988091468811,
-0.2246561050415039,
-0.14213041961193085,
-0.5723004341125488,
0.22957538068294525,
0.4104883670806885,
-0.2457452267408371,
0.6149354577064514,
0.8510366678237915,
-0.3428591191768646,
-0.011080654338002205,
-0.4902893900871277,
-0.11317747086286545,
-0.4189753234386444,
0.0009270613081753254,
-0.23338374495506287,
-0.5527206063270569,
0.9697092771530151,
0.221418559551239,
0.0941561684012413,
0.6673086285591125,
0.46244898438453674,
-0.03553520888090134,
0.6005574464797974,
0.429337739944458,
-0.26734718680381775,
0.4673040211200714,
-0.6687785983085632,
-0.2959553599357605,
-0.8397856950759888,
-0.4079495966434479,
-0.5020997524261475,
-0.5316341519355774,
-0.8369132280349731,
-0.5065679550170898,
0.13496533036231995,
0.1439894139766693,
-0.19311323761940002,
0.37051311135292053,
-0.9382976293563843,
0.3021772801876068,
0.36111387610435486,
0.19552572071552277,
-0.10268078744411469,
0.1133863553404808,
0.07989384979009628,
0.15667712688446045,
-0.542888343334198,
-0.21568678319454193,
1.2142332792282104,
0.5652498006820679,
0.5474829077720642,
-0.11035412549972534,
0.827494740486145,
0.012615789659321308,
0.2719017565250397,
-0.5345844030380249,
0.46283629536628723,
-0.05525825917720795,
-0.5200379490852356,
-0.1751643419265747,
-0.5068846940994263,
-0.83976811170578,
-0.13530860841274261,
-0.4082014262676239,
-0.6671279072761536,
0.5187118053436279,
0.11367302387952805,
-0.2552036941051483,
0.37143248319625854,
-0.5999907851219177,
0.8888658285140991,
-0.029173992574214935,
-0.4288128614425659,
0.3235912024974823,
-0.9918530583381653,
0.21546930074691772,
0.17389510571956635,
0.25194671750068665,
-0.3834214210510254,
0.1021587997674942,
1.0412845611572266,
-0.7930706143379211,
0.8792744278907776,
-0.48110178112983704,
0.1526954025030136,
0.5644348859786987,
-0.34575560688972473,
0.4233095049858093,
0.10902545601129532,
-0.2668064832687378,
0.31028440594673157,
0.08927914500236511,
-0.4456098675727844,
-0.47992104291915894,
0.6726090312004089,
-0.7227053642272949,
0.054672908037900925,
-0.35577186942100525,
-0.49351194500923157,
0.011194952763617039,
0.18418660759925842,
0.21432563662528992,
0.3847307860851288,
0.025467514991760254,
0.15315011143684387,
0.4531266987323761,
-0.13921499252319336,
0.2538227438926697,
0.0427376851439476,
-0.17886170744895935,
-0.7828478813171387,
0.9540866613388062,
0.19353534281253815,
-0.026673821732401848,
-0.07959547638893127,
0.44268476963043213,
-0.38568612933158875,
-0.1426604688167572,
-0.6674390435218811,
0.5040311813354492,
-0.45337340235710144,
-0.3879828155040741,
-0.5439764261245728,
-0.14440757036209106,
-0.6493620276451111,
-0.16574421525001526,
-0.20739343762397766,
-0.5281854867935181,
-0.3466775715351105,
-0.22936879098415375,
1.063485026359558,
0.5076413154602051,
-0.7208877205848694,
0.14777463674545288,
-0.4913654923439026,
0.29486793279647827,
-0.04088415950536728,
0.6736525297164917,
-0.05624988675117493,
-0.3003177046775818,
-0.19594843685626984,
0.062244713306427,
-0.2145528793334961,
-0.6634596586227417,
0.23636290431022644,
0.0017740547191351652,
0.3671098053455353,
0.1691654622554779,
0.10192422568798065,
0.7184785008430481,
-0.03495834022760391,
0.6602975726127625,
0.25053533911705017,
-0.768684983253479,
0.6447518467903137,
-0.5088318586349487,
0.13662941753864288,
0.7803491950035095,
0.38895872235298157,
-0.5437379479408264,
-0.007470242213457823,
-0.9480080604553223,
-0.8684224486351013,
0.8236947059631348,
0.4145241975784302,
0.015487032011151314,
0.267052561044693,
0.6351384520530701,
-0.14758220314979553,
0.31710219383239746,
-0.6676728129386902,
-0.8582190275192261,
-0.42934882640838623,
-0.38186317682266235,
-0.08808582276105881,
-0.0867052674293518,
-0.31228581070899963,
-0.6918355226516724,
0.7869722843170166,
-0.24905064702033997,
0.30058956146240234,
0.38321179151535034,
0.42903831601142883,
-0.3254702687263489,
-0.1082836389541626,
0.24079817533493042,
0.3266504108905792,
-0.2577628195285797,
-0.35337790846824646,
-0.1800626814365387,
-0.6102048754692078,
-0.1315733790397644,
0.6065311431884766,
-0.35847002267837524,
-0.13508068025112152,
0.33288052678108215,
0.8786359429359436,
-0.02143038995563984,
-0.26052457094192505,
0.5902118682861328,
-0.10564917325973511,
-0.38840264081954956,
-0.41609102487564087,
-0.027487020939588547,
0.17100287973880768,
0.2014675736427307,
0.030807774513959885,
0.09307394176721573,
-0.053208477795124054,
-0.4099093973636627,
0.44294849038124084,
0.2480338215827942,
-0.3512398600578308,
-0.5385966897010803,
0.5868630409240723,
0.07475114613771439,
-0.07597318291664124,
0.5053040981292725,
-0.17532631754875183,
-0.6134170889854431,
0.7787870168685913,
0.12013193964958191,
0.839736819267273,
-0.15304826200008392,
0.3459396958351135,
0.7406285405158997,
0.18554337322711945,
-0.09349943697452545,
0.5847827196121216,
-0.2311553955078125,
-0.6275006532669067,
-0.025116389617323875,
-0.6623980402946472,
-0.0884425938129425,
0.08030225336551666,
-0.9096652269363403,
0.4243966042995453,
-0.5036865472793579,
-0.18818379938602448,
0.005286437459290028,
0.4836726188659668,
-0.76129150390625,
0.24451538920402527,
-0.006858376786112785,
1.0805416107177734,
-1.1388816833496094,
0.44346049427986145,
0.7709248065948486,
-0.7064245939254761,
-1.1778590679168701,
-0.0762726292014122,
0.23033128678798676,
-0.5687717199325562,
0.17335179448127747,
0.2113962471485138,
0.5749829411506653,
-0.13889668881893158,
-0.8967157602310181,
-0.677859902381897,
1.2211401462554932,
0.06504151970148087,
-0.13192719221115112,
0.2830657958984375,
0.1228167712688446,
0.6547161340713501,
-0.3765857517719269,
0.28818097710609436,
0.6688234806060791,
0.7253769636154175,
0.38893669843673706,
-0.7385513186454773,
0.314407616853714,
-0.6825093626976013,
-0.23379723727703094,
0.03098035790026188,
-1.0206496715545654,
0.6354612708091736,
-0.20428112149238586,
-0.024135613813996315,
0.03871259465813637,
0.6852274537086487,
0.49334418773651123,
0.46525490283966064,
0.48411935567855835,
0.8137111067771912,
0.8766921162605286,
-0.3198215961456299,
1.19792640209198,
-0.19511233270168304,
0.6026746034622192,
0.8357552289962769,
0.021176839247345924,
0.5536780953407288,
0.21707572042942047,
-0.3608352541923523,
0.5196367502212524,
0.7075875401496887,
-0.44806239008903503,
0.20234733819961548,
0.4029012620449066,
0.03368350490927696,
-0.04872528463602066,
-0.24836887419223785,
-0.6066036224365234,
0.33635738492012024,
0.2834896147251129,
-0.3306758403778076,
0.04026670753955841,
-0.049730222672224045,
0.3778698742389679,
-0.010569687932729721,
-0.25408264994621277,
0.659662127494812,
0.07564875483512878,
-0.33582043647766113,
0.5098734498023987,
-0.24896538257598877,
0.6777917146682739,
-0.5602039098739624,
0.1332312971353531,
-0.10747527331113815,
0.08904632180929184,
-0.667393147945404,
-1.0849168300628662,
0.41127949953079224,
-0.06634531915187836,
-0.32794371247291565,
-0.3000062108039856,
0.706730842590332,
-0.5238901376724243,
-0.8404545187950134,
0.2557046115398407,
0.1907932162284851,
0.31850582361221313,
0.12745825946331024,
-1.3252317905426025,
0.5509918928146362,
0.15788201987743378,
-0.48220446705818176,
0.1597348153591156,
0.5365002751350403,
0.18647411465644836,
0.5230465531349182,
0.7090466022491455,
0.24042493104934692,
-0.2783185541629791,
0.06710024178028107,
1.1458405256271362,
-0.5538221597671509,
-0.5075245499610901,
-0.6198646426200867,
0.9039965867996216,
-0.3416289687156677,
-0.3660549819469452,
0.6626312136650085,
0.773987889289856,
0.8703694939613342,
0.008036758750677109,
0.8179177641868591,
-0.6471216678619385,
0.6730582118034363,
-0.24704672396183014,
0.9922260642051697,
-0.7693433165550232,
-0.12691180408000946,
-0.7351510524749756,
-0.5662764310836792,
-0.4282442331314087,
0.6990939974784851,
-0.19577622413635254,
0.24714860320091248,
0.25760000944137573,
0.9112789630889893,
0.011012248694896698,
0.18043003976345062,
-0.2634581923484802,
0.32013824582099915,
0.2930404245853424,
0.478922963142395,
0.354065477848053,
-0.9010576605796814,
0.2917081415653229,
-0.7744070291519165,
-0.31447017192840576,
0.0710039883852005,
-0.8785567879676819,
-0.8942883014678955,
-0.9905888438224792,
-0.7434507012367249,
-0.7519098520278931,
-0.3361285626888275,
1.1053292751312256,
0.7091125845909119,
-0.8091391324996948,
-0.26669949293136597,
0.14582763612270355,
0.25670650601387024,
-0.07339158654212952,
-0.323017954826355,
0.6985185742378235,
0.4073100984096527,
-0.6079288125038147,
-0.15497039258480072,
-0.03961798921227455,
0.22641824185848236,
-0.02789498120546341,
-0.07591031491756439,
-0.13455615937709808,
-0.30199021100997925,
0.3196556568145752,
0.4858601987361908,
-0.3370828926563263,
-0.08643707633018494,
-0.3426762521266937,
0.12777459621429443,
0.15918277204036713,
0.5018090605735779,
-0.5006012916564941,
0.2667590081691742,
0.6467573642730713,
0.31510022282600403,
0.39459019899368286,
0.23195183277130127,
0.08911129832267761,
-0.5199233293533325,
0.060609959065914154,
-0.05039612576365471,
0.32613077759742737,
0.48723629117012024,
-0.5009113550186157,
0.810552716255188,
0.5842795968055725,
-0.5562737584114075,
-0.8792939782142639,
-0.21187089383602142,
-1.286539912223816,
0.1501905620098114,
1.095879316329956,
-0.05983716994524002,
-0.5866079330444336,
0.10147138684988022,
-0.1548539251089096,
0.13182690739631653,
-0.5619548559188843,
0.46699488162994385,
0.5539047122001648,
-0.11505450308322906,
0.1367819607257843,
-0.3497522175312042,
0.7046902179718018,
-0.05665493756532669,
-0.9848382472991943,
0.2357265055179596,
0.437625914812088,
0.505558967590332,
0.3684873580932617,
0.8170549869537354,
-0.2623397409915924,
0.046157002449035645,
0.006939331069588661,
0.3077546954154968,
-0.24124091863632202,
0.014648054726421833,
-0.43123310804367065,
-0.08072371780872345,
-0.44408610463142395,
-0.14873626828193665
]
|
huggingartists/ed-sheeran | huggingartists | 2022-10-25T09:28:28Z | 261 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/ed-sheeran"
## 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:** 3.432643 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('https://images.genius.com/b501daeff73d1b17610f47a5668f690a.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/ed-sheeran">
<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">Ed Sheeran</div>
<a href="https://genius.com/artists/ed-sheeran">
<div style="text-align: center; font-size: 14px;">@ed-sheeran</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/ed-sheeran).
### 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/ed-sheeran")
```
## 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|
|------:|---------:|---:|
|923| -| -|
'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/ed-sheeran")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6669628024101257,
-0.49844875931739807,
0.058750756084918976,
0.16184136271476746,
-0.19940915703773499,
0.004293844103813171,
-0.348824679851532,
-0.4428545832633972,
0.8938454985618591,
0.3414726257324219,
-0.9361005425453186,
-0.8576920628547668,
-0.5155854225158691,
0.15861080586910248,
-0.11784522235393524,
1.296980381011963,
-0.12708812952041626,
-0.40414953231811523,
-0.3275087773799896,
-0.2537436783313751,
-0.25918635725975037,
-0.2915458083152771,
-0.27628639340400696,
-0.2767172157764435,
0.46915173530578613,
0.46967244148254395,
0.653609037399292,
0.9254844188690186,
0.5267776846885681,
0.35406580567359924,
-0.11929386109113693,
0.05964755266904831,
-0.3795888125896454,
-0.11492972075939178,
0.13536912202835083,
-0.23576213419437408,
-0.6867436170578003,
0.2534354031085968,
0.5540348887443542,
0.38776302337646484,
-0.05914171785116196,
0.4432687759399414,
0.057805709540843964,
0.8217902183532715,
-0.26210662722587585,
0.3803054988384247,
-0.30839186906814575,
-0.20109255611896515,
-0.23607270419597626,
0.02122153900563717,
0.2719925045967102,
-0.6327627897262573,
-0.05878337100148201,
-0.7640930414199829,
0.04298650473356247,
-0.0026160269044339657,
0.9933540225028992,
0.10247218608856201,
0.03678005933761597,
-0.19542358815670013,
-0.2018907219171524,
0.546964704990387,
-0.6209291815757751,
0.006328887771815062,
0.5884539484977722,
0.1341843158006668,
0.07867766916751862,
-0.5809942483901978,
-0.6577343344688416,
0.0565171018242836,
-0.13679279386997223,
0.2820250391960144,
-0.09007810801267624,
-0.24216434359550476,
0.5468091368675232,
0.5931038856506348,
-0.5298708081245422,
-0.17340609431266785,
-0.549418568611145,
-0.06219780072569847,
1.2225061655044556,
0.1274338960647583,
0.4402042031288147,
-0.49533432722091675,
-0.2431844174861908,
-0.3960128426551819,
-0.2688440680503845,
0.30577993392944336,
0.6077859997749329,
0.4254961609840393,
-0.9900690913200378,
0.6416854858398438,
-0.13949789106845856,
0.5609586238861084,
0.14651332795619965,
-0.033547502011060715,
0.8148829340934753,
-0.39220717549324036,
-0.1147826761007309,
-0.17417795956134796,
1.0245823860168457,
0.735292911529541,
0.12968875467777252,
0.14072385430335999,
-0.08457969129085541,
0.08570268005132675,
-0.2012544870376587,
-0.8208252787590027,
-0.46231064200401306,
0.7364197373390198,
-0.5457464456558228,
-0.5451375246047974,
0.16615237295627594,
-1.0127142667770386,
-0.26475486159324646,
-0.343523770570755,
0.24003653228282928,
-0.3440975546836853,
-0.5157716274261475,
0.15091659128665924,
-0.27583837509155273,
0.09974355250597,
-0.005720038432627916,
-0.5699533820152283,
0.14029625058174133,
0.5720625519752502,
0.6967962980270386,
0.23237602412700653,
-0.33572155237197876,
-0.2766472399234772,
-0.2093464434146881,
-0.10297337174415588,
0.685226321220398,
-0.28042495250701904,
-0.29133498668670654,
-0.11322768032550812,
0.3336219787597656,
-0.12242016941308975,
-0.28459662199020386,
0.955428957939148,
0.03861122950911522,
0.22541017830371857,
-0.5735792517662048,
-0.49464359879493713,
0.00419219397008419,
0.3161821663379669,
-0.7992004752159119,
1.0278552770614624,
0.2550910413265228,
-0.958998441696167,
0.18099276721477509,
-0.841543436050415,
-0.2728882133960724,
0.07706717401742935,
0.024684052914381027,
-0.7393803000450134,
-0.2254142314195633,
0.2031799554824829,
0.7571246027946472,
-0.23983705043792725,
-0.004665389657020569,
-0.5922262668609619,
-0.09688819944858551,
0.3818747401237488,
0.21135227382183075,
1.122070550918579,
0.101079061627388,
-0.12339305132627487,
0.05741462484002113,
-1.030358076095581,
0.20103779435157776,
0.39918053150177,
-0.24085134267807007,
-0.10768724977970123,
-0.19732345640659332,
0.45270299911499023,
0.3280698359012604,
0.06919693946838379,
-0.6084659099578857,
0.3831560015678406,
-0.23294952511787415,
0.47089704871177673,
0.7513255476951599,
0.015060730278491974,
0.2568744421005249,
-0.6860267519950867,
0.37400156259536743,
-0.024850938469171524,
0.316408634185791,
-0.04253486543893814,
-0.497609406709671,
-0.39201101660728455,
-0.2569062113761902,
0.2829815447330475,
0.47597089409828186,
-0.6885016560554504,
1.0149810314178467,
-0.39984753727912903,
-0.7937232255935669,
-0.5885921716690063,
0.1659020483493805,
0.20633836090564728,
0.45173248648643494,
0.3541105091571808,
-0.35307592153549194,
-0.6097927689552307,
-0.6619542837142944,
0.03910306468605995,
-0.24825355410575867,
0.07661612331867218,
0.5145451426506042,
0.8080273270606995,
-0.2719857096672058,
0.7676591873168945,
-0.6558451652526855,
-0.2696148455142975,
-0.2322843074798584,
-0.327236145734787,
0.4051302969455719,
0.7904566526412964,
0.7298813462257385,
-0.9341132640838623,
-0.47733548283576965,
-0.16596737504005432,
-0.6246069669723511,
-0.15793684124946594,
-0.0727715939283371,
-0.2514844238758087,
-0.02746453694999218,
0.1264096200466156,
-0.6348603367805481,
0.4948793053627014,
0.5386725664138794,
-0.7101755738258362,
0.5459789633750916,
0.06691519916057587,
0.11367540061473846,
-1.26051926612854,
0.36261075735092163,
0.26974305510520935,
0.04552662372589111,
-0.5899373888969421,
-0.27059268951416016,
-0.02870052494108677,
0.03540860116481781,
-0.11725503951311111,
0.5432112216949463,
-0.3324948251247406,
0.31959226727485657,
0.12318746745586395,
0.1221161037683487,
0.15194840729236603,
0.49419456720352173,
-0.19493132829666138,
0.2671591341495514,
0.965080738067627,
-0.4452385902404785,
0.7531092762947083,
0.5958656668663025,
-0.2146836519241333,
0.9336611032485962,
-0.8000849485397339,
0.043121710419654846,
-0.28243887424468994,
0.33066707849502563,
-0.8265410661697388,
-0.5680341124534607,
0.7504900693893433,
-0.692825436592102,
0.4300634264945984,
-0.2516586482524872,
-0.49825519323349,
-0.859663724899292,
-0.6878892779350281,
0.12166258692741394,
0.48702341318130493,
-0.4515545964241028,
0.4196690320968628,
0.5837726593017578,
0.0826391875743866,
-0.3604106307029724,
-0.7622901797294617,
-0.10441546887159348,
-0.41921526193618774,
-0.8145272135734558,
0.4873145520687103,
-0.4353785812854767,
-0.13746920228004456,
0.15507817268371582,
0.08774931728839874,
0.09432139247655869,
-0.020526424050331116,
0.39712321758270264,
0.31656965613365173,
0.12662164866924286,
0.03366091474890709,
-0.13380074501037598,
-0.18126246333122253,
0.13879260420799255,
-0.286271333694458,
0.19071780145168304,
-0.27531877160072327,
-0.14848893880844116,
-0.6946114897727966,
0.25228387117385864,
0.5064373016357422,
-0.19486373662948608,
0.629806399345398,
0.7128786444664001,
-0.2597125768661499,
-0.0832306295633316,
-0.4929310381412506,
-0.14062073826789856,
-0.4107021391391754,
0.10287780314683914,
-0.232516810297966,
-0.5394101738929749,
0.9481275677680969,
0.24557600915431976,
0.1574733406305313,
0.691922128200531,
0.4620814621448517,
-0.13177336752414703,
0.6540606021881104,
0.33087703585624695,
-0.22807849943637848,
0.5464966297149658,
-0.7052177786827087,
-0.2281625121831894,
-0.8722110986709595,
-0.4521045684814453,
-0.5100968480110168,
-0.6006396412849426,
-0.8629353046417236,
-0.4015437960624695,
0.18500204384326935,
0.07026442885398865,
-0.21735680103302002,
0.48327338695526123,
-0.9364559054374695,
0.3769747018814087,
0.35291239619255066,
0.31107544898986816,
-0.17023177444934845,
0.0507744662463665,
0.11713068932294846,
0.16394808888435364,
-0.5494167804718018,
-0.2218511998653412,
1.1802380084991455,
0.42850446701049805,
0.5693808794021606,
-0.08756382018327713,
0.7369952201843262,
0.08609094470739365,
0.1747274249792099,
-0.5080487728118896,
0.4667417109012604,
0.010085413232445717,
-0.49411875009536743,
-0.1516329050064087,
-0.5154842138290405,
-0.8542362451553345,
-0.136325404047966,
-0.40065431594848633,
-0.6759505271911621,
0.500211238861084,
0.07996248453855515,
-0.25475528836250305,
0.4636669158935547,
-0.6242676377296448,
0.8121828436851501,
-0.10144630819559097,
-0.4368225336074829,
0.34383252263069153,
-1.0342482328414917,
0.13049554824829102,
0.208167165517807,
0.30247896909713745,
-0.3991502821445465,
0.022202733904123306,
1.0499569177627563,
-0.7679440975189209,
0.8906862139701843,
-0.31812795996665955,
0.08729703724384308,
0.5588510036468506,
-0.3728291392326355,
0.5092755556106567,
0.08412879705429077,
-0.25031083822250366,
0.28596654534339905,
0.0012753695482388139,
-0.44630956649780273,
-0.466564804315567,
0.7743165493011475,
-0.7159197330474854,
0.051722388714551926,
-0.25500279664993286,
-0.4469902515411377,
0.06505844742059708,
0.09177018702030182,
0.32740214467048645,
0.421808123588562,
0.011049587279558182,
0.16507989168167114,
0.4890204966068268,
-0.1052275151014328,
0.3410584628582001,
-0.031634751707315445,
-0.04123939946293831,
-0.8426875472068787,
0.8614577651023865,
0.2265111804008484,
0.0805465430021286,
-0.02168647013604641,
0.40937066078186035,
-0.4118514358997345,
-0.15792621672153473,
-0.5756362676620483,
0.43744564056396484,
-0.43070149421691895,
-0.3865889608860016,
-0.5582095384597778,
-0.16656450927257538,
-0.6108183860778809,
-0.20781713724136353,
-0.22430075705051422,
-0.5173899531364441,
-0.3180758059024811,
-0.2974041998386383,
1.0682317018508911,
0.46092715859413147,
-0.7059779167175293,
0.0826248824596405,
-0.4974114000797272,
0.30633920431137085,
-0.004131566267460585,
0.670698344707489,
-0.17664191126823425,
-0.36548423767089844,
-0.22373242676258087,
0.11371777206659317,
-0.1675863415002823,
-0.7091725468635559,
0.2695032060146332,
0.0680379793047905,
0.3746011257171631,
0.16931219398975372,
0.16457223892211914,
0.6363874077796936,
-0.020953841507434845,
0.6756024360656738,
0.28936487436294556,
-0.7348147630691528,
0.6983664631843567,
-0.5378140807151794,
0.05388256162405014,
0.7021003365516663,
0.3022712171077728,
-0.6295762658119202,
-0.098758265376091,
-0.9553362131118774,
-0.8759399652481079,
0.7407765984535217,
0.4372383952140808,
0.1050008237361908,
0.23176437616348267,
0.4854974150657654,
-0.15163609385490417,
0.26290637254714966,
-0.671345055103302,
-0.9244674444198608,
-0.3770827054977417,
-0.33893758058547974,
-0.05703497305512428,
-0.09443430602550507,
-0.2953723669052124,
-0.7006577253341675,
0.7795605063438416,
-0.1480211466550827,
0.2726542353630066,
0.42134058475494385,
0.4453001916408539,
-0.1806698888540268,
0.05665794759988785,
0.2821638286113739,
0.37005671858787537,
-0.2565065920352936,
-0.2607070803642273,
-0.170687735080719,
-0.6574687957763672,
-0.14602899551391602,
0.5266368985176086,
-0.31527191400527954,
-0.08299820870161057,
0.2647244930267334,
0.8548639416694641,
-0.021640636026859283,
-0.2555088698863983,
0.5867502689361572,
-0.038887228816747665,
-0.461631178855896,
-0.3732318878173828,
0.008501728065311909,
0.09908463060855865,
0.2198822796344757,
0.09555434435606003,
0.08063850551843643,
-0.15054908394813538,
-0.34582459926605225,
0.447090208530426,
0.19916602969169617,
-0.37461382150650024,
-0.524348258972168,
0.6710648536682129,
0.1315634697675705,
-0.14034849405288696,
0.4035018980503082,
-0.18002435564994812,
-0.6600053310394287,
0.8621633648872375,
0.09547197073698044,
0.8508492112159729,
-0.13440072536468506,
0.3031918406486511,
0.7296096086502075,
0.21846984326839447,
0.028772087767720222,
0.5912790894508362,
-0.1855921447277069,
-0.6062897443771362,
-0.06493309885263443,
-0.5277010202407837,
-0.061337556689977646,
0.10818299651145935,
-0.7909460067749023,
0.41706520318984985,
-0.42909955978393555,
-0.18439604341983795,
0.027538368478417397,
0.43882471323013306,
-0.7701939940452576,
0.2072274088859558,
-0.03942456096410751,
0.9645339250564575,
-1.0606025457382202,
0.4086958169937134,
0.7203394174575806,
-0.6074902415275574,
-1.2135968208312988,
-0.16660328209400177,
0.22288203239440918,
-0.5176934003829956,
0.1462164968252182,
0.1953863501548767,
0.5552932024002075,
-0.013508587144315243,
-0.939306914806366,
-0.6470770239830017,
1.2023178339004517,
-0.016475575044751167,
-0.25547340512275696,
0.39132726192474365,
0.04390094429254532,
0.5786429643630981,
-0.3743431568145752,
0.3290753960609436,
0.6333509087562561,
0.7031433582305908,
0.33793506026268005,
-0.6829727292060852,
0.24991287291049957,
-0.6648300886154175,
-0.2348099797964096,
0.08336349576711655,
-0.9253262281417847,
0.6776572465896606,
-0.2116650938987732,
-0.09786516427993774,
-0.033626336604356766,
0.5670236945152283,
0.38966670632362366,
0.5011604428291321,
0.43549829721450806,
0.7689367532730103,
0.8620827198028564,
-0.3042435050010681,
1.2196502685546875,
-0.29199233651161194,
0.6377293467521667,
0.7870253324508667,
0.00832486804574728,
0.46761080622673035,
0.23253318667411804,
-0.345293790102005,
0.5244622826576233,
0.6425187587738037,
-0.4471074938774109,
0.2487333118915558,
0.4051496088504791,
-0.08387581259012222,
-0.03223806247115135,
-0.26319655776023865,
-0.6229979395866394,
0.23948270082473755,
0.20527750253677368,
-0.3325822949409485,
0.0436796210706234,
0.015006016939878464,
0.3314759433269501,
0.0017427124548703432,
-0.3608069121837616,
0.6240707039833069,
-0.0030472087673842907,
-0.3067197799682617,
0.5587770938873291,
-0.23560921847820282,
0.7438027858734131,
-0.5090891122817993,
0.1510634571313858,
-0.10315123200416565,
0.06667526811361313,
-0.6689617037773132,
-1.064782738685608,
0.3469494879245758,
-0.05324050784111023,
-0.2768803834915161,
-0.3368397653102875,
0.7405229210853577,
-0.4964990019798279,
-0.7628447413444519,
0.21425963938236237,
0.21944445371627808,
0.3419276475906372,
0.12126704305410385,
-1.212541103363037,
0.5022095441818237,
0.16889478266239166,
-0.5206964612007141,
0.051094282418489456,
0.5413819551467896,
0.2541736662387848,
0.5384091734886169,
0.7736098766326904,
0.2563275992870331,
-0.18197928369045258,
0.08752506226301193,
1.1263139247894287,
-0.5950063467025757,
-0.49510863423347473,
-0.7414856553077698,
0.9061092138290405,
-0.386995404958725,
-0.4217865467071533,
0.7027441263198853,
0.773987352848053,
0.9066756963729858,
0.037155281752347946,
0.8088745474815369,
-0.6649565696716309,
0.6827988028526306,
-0.20645874738693237,
0.9538502097129822,
-0.7015253305435181,
0.02267150953412056,
-0.6892160177230835,
-0.530249834060669,
-0.41026246547698975,
0.561446487903595,
-0.18371526896953583,
0.24049945175647736,
0.29103583097457886,
0.9046939611434937,
0.04395736753940582,
0.10581385344266891,
-0.1373959481716156,
0.30741873383522034,
0.269319087266922,
0.5890053510665894,
0.42718470096588135,
-0.9142540097236633,
0.38359084725379944,
-0.733038604259491,
-0.299329549074173,
0.049458097666502,
-0.8316321969032288,
-0.8834618330001831,
-0.9539533853530884,
-0.7362924218177795,
-0.7615815997123718,
-0.3219138979911804,
1.0952632427215576,
0.706055760383606,
-0.6980159878730774,
-0.12907375395298004,
0.08168608695268631,
0.3614683151245117,
-0.10383934527635574,
-0.3149571120738983,
0.6813808679580688,
0.4724635183811188,
-0.6925970911979675,
-0.09221423417329788,
0.014414088800549507,
0.2660280466079712,
0.08231853693723679,
-0.07004134356975555,
-0.11784365773200989,
-0.25723376870155334,
0.3217686116695404,
0.5213668346405029,
-0.33134961128234863,
-0.12919819355010986,
-0.22686989605426788,
0.005740204825997353,
0.21161814033985138,
0.44838452339172363,
-0.5687071681022644,
0.14340092241764069,
0.6508321762084961,
0.32461291551589966,
0.31901928782463074,
0.24846623837947845,
-0.042997945100069046,
-0.5053670406341553,
-0.03895247355103493,
0.049649711698293686,
0.26926738023757935,
0.40159037709236145,
-0.5205275416374207,
0.7533117532730103,
0.5632279515266418,
-0.5768907070159912,
-0.8504139184951782,
-0.14218933880329132,
-1.2897953987121582,
0.14023728668689728,
1.0939042568206787,
0.0353412963449955,
-0.5545039772987366,
0.03248395025730133,
-0.20988409221172333,
0.06827625632286072,
-0.5341798067092896,
0.4359934628009796,
0.4814746379852295,
-0.029451293870806694,
0.13670341670513153,
-0.35588446259498596,
0.6165603995323181,
-0.09687652438879013,
-1.0019776821136475,
0.19372305274009705,
0.4696619510650635,
0.43836888670921326,
0.2841690182685852,
0.7257521748542786,
-0.20628848671913147,
0.010450280271470547,
-0.028908535838127136,
0.293205201625824,
-0.2990436255931854,
-0.0018938183784484863,
-0.36781561374664307,
-0.13139484822750092,
-0.6187171339988708,
-0.31668442487716675
]
|
huggingartists/madonna | huggingartists | 2022-10-25T09:37:23Z | 261 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/madonna"
## 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.986277 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('https://images.genius.com/5cad1fbda7135f40c49ea35ad60ba4f5.215x215x1.png')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/madonna">
<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">Madonna</div>
<a href="https://genius.com/artists/madonna">
<div style="text-align: center; font-size: 14px;">@madonna</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/madonna).
### 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/madonna")
```
## 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|
|------:|---------:|---:|
|1260| -| -|
'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/madonna")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.5986465215682983,
-0.5640407204627991,
0.033118680119514465,
0.29549095034599304,
-0.24320033192634583,
-0.02783610299229622,
-0.2798923850059509,
-0.4487229883670807,
0.7906337976455688,
0.33771902322769165,
-0.9256247282028198,
-0.8348259925842285,
-0.5776160955429077,
0.1523900181055069,
-0.15010784566402435,
1.2582696676254272,
-0.16392037272453308,
-0.28770363330841064,
-0.331106036901474,
-0.20843717455863953,
-0.3166251480579376,
-0.3051204979419708,
-0.3002433776855469,
-0.2699441909790039,
0.3658975064754486,
0.5265704989433289,
0.6807512640953064,
0.9066941142082214,
0.5613723993301392,
0.3416452705860138,
-0.08654651790857315,
0.053058020770549774,
-0.45339861512184143,
-0.09045222401618958,
0.18421122431755066,
-0.29228031635284424,
-0.6898956298828125,
0.25345921516418457,
0.5715583562850952,
0.3838101029396057,
-0.06204190477728844,
0.48039501905441284,
0.07024677097797394,
0.8781708478927612,
-0.25447967648506165,
0.46715131402015686,
-0.29865697026252747,
-0.13102316856384277,
-0.2627545893192291,
0.015643086284399033,
0.17596332728862762,
-0.6059756278991699,
-0.020127907395362854,
-0.743682861328125,
0.06217099726200104,
0.035908184945583344,
1.0386396646499634,
0.09832608699798584,
0.10994178801774979,
-0.21464002132415771,
-0.2017059624195099,
0.5928049087524414,
-0.5360718369483948,
0.014690357260406017,
0.548001766204834,
0.13569633662700653,
0.008180364966392517,
-0.6144599318504333,
-0.5943217277526855,
0.05610072240233421,
-0.10562152415513992,
0.22903786599636078,
-0.23331406712532043,
-0.4168691337108612,
0.4871492087841034,
0.5570722222328186,
-0.47134703397750854,
-0.21645033359527588,
-0.5758951306343079,
-0.09175759553909302,
1.0948501825332642,
0.13179132342338562,
0.4131343960762024,
-0.4658202528953552,
-0.26959332823753357,
-0.35581082105636597,
-0.38876792788505554,
0.33724740147590637,
0.5390055775642395,
0.42323896288871765,
-1.0045384168624878,
0.6425572037696838,
-0.1332777738571167,
0.5802810788154602,
0.11996392160654068,
-0.051495082676410675,
0.7750712037086487,
-0.3586709201335907,
-0.11924686282873154,
-0.14153346419334412,
1.0885857343673706,
0.6663168668746948,
0.21728704869747162,
0.11910492926836014,
-0.02127206139266491,
-0.004560935776680708,
-0.13124552369117737,
-0.8640894889831543,
-0.3520369529724121,
0.6607983112335205,
-0.6128608584403992,
-0.6021808981895447,
0.15335705876350403,
-0.9668453931808472,
-0.1768624186515808,
-0.3027167022228241,
0.2627767324447632,
-0.3785187602043152,
-0.4568348228931427,
0.16058167815208435,
-0.24213363230228424,
0.08220157772302628,
0.07401822507381439,
-0.5553953647613525,
0.14566588401794434,
0.6234788298606873,
0.7797529697418213,
0.17977744340896606,
-0.29140058159828186,
-0.30694061517715454,
-0.15211613476276398,
-0.131077840924263,
0.6950004696846008,
-0.29249048233032227,
-0.3900908827781677,
-0.14349795877933502,
0.3449864983558655,
-0.057072874158620834,
-0.2961498200893402,
0.9145817160606384,
0.05373835563659668,
0.2256597876548767,
-0.5388257503509521,
-0.45518165826797485,
-0.02917434833943844,
0.25337785482406616,
-0.7803226113319397,
1.0381935834884644,
0.29117488861083984,
-0.9771706461906433,
0.18730707466602325,
-0.802033007144928,
-0.31463730335235596,
-0.027849046513438225,
0.07587737590074539,
-0.8234602212905884,
-0.16481271386146545,
0.19912388920783997,
0.739708423614502,
-0.38924938440322876,
0.025870613753795624,
-0.6024235486984253,
-0.14909791946411133,
0.4505392014980316,
0.17713983356952667,
1.2029976844787598,
0.13809186220169067,
-0.14367423951625824,
0.07129492610692978,
-0.9523172974586487,
0.08441567420959473,
0.41122180223464966,
-0.1930510401725769,
-0.061670806258916855,
-0.19832594692707062,
0.4256066381931305,
0.29191696643829346,
0.08591647446155548,
-0.5622856020927429,
0.41245192289352417,
-0.12914609909057617,
0.4622965455055237,
0.7582259178161621,
0.000578309700358659,
0.2681983709335327,
-0.6491417288780212,
0.40367966890335083,
0.1254553347826004,
0.41937583684921265,
-0.015082104131579399,
-0.615049421787262,
-0.5306732058525085,
-0.281067430973053,
0.304786741733551,
0.462492436170578,
-0.6468489766120911,
0.9567574262619019,
-0.3852151036262512,
-0.8239758610725403,
-0.7096317410469055,
0.16739919781684875,
0.22010980546474457,
0.5886817574501038,
0.40017515420913696,
-0.4241199791431427,
-0.5965873003005981,
-0.7472516298294067,
0.07825654745101929,
-0.24047960340976715,
0.1506892889738083,
0.4716188609600067,
0.8386224508285522,
-0.20906437933444977,
0.8055393099784851,
-0.6871565580368042,
-0.357268750667572,
-0.2244911938905716,
-0.28533676266670227,
0.4032556712627411,
0.8582090735435486,
0.6679251194000244,
-0.8995455503463745,
-0.4881872832775116,
-0.2784866392612457,
-0.6838674545288086,
-0.06920260936021805,
0.015275437384843826,
-0.3017538785934448,
0.00907965935766697,
0.09484322369098663,
-0.6345688104629517,
0.5225090384483337,
0.5032181739807129,
-0.6390586495399475,
0.5173406600952148,
0.0697140246629715,
0.11290603131055832,
-1.2779651880264282,
0.35719770193099976,
0.2559449374675751,
0.04076701030135155,
-0.629427969455719,
-0.26147887110710144,
-0.034856222569942474,
-0.021076641976833344,
-0.17294394969940186,
0.5422623753547668,
-0.3451768457889557,
0.3238750100135803,
0.16098888218402863,
-0.0165045578032732,
0.10506325215101242,
0.46576857566833496,
-0.036260828375816345,
0.32836389541625977,
1.048966646194458,
-0.3892509937286377,
0.60683274269104,
0.5980339646339417,
-0.273015558719635,
0.9033941626548767,
-0.8264477252960205,
0.07043822854757309,
-0.2749439477920532,
0.3695739209651947,
-0.8404613733291626,
-0.47543078660964966,
0.8030025362968445,
-0.7182234525680542,
0.41555750370025635,
-0.30843880772590637,
-0.5535815954208374,
-0.7695632576942444,
-0.6466196775436401,
0.13883063197135925,
0.5927118062973022,
-0.34926682710647583,
0.3689592182636261,
0.6569958925247192,
0.09008026868104935,
-0.36773231625556946,
-0.7765332460403442,
-0.0976012796163559,
-0.4095413386821747,
-0.8157575130462646,
0.39861685037612915,
-0.35510915517807007,
-0.08417105674743652,
0.12171077728271484,
0.17271459102630615,
0.035496778786182404,
-0.0018623522482812405,
0.4158586263656616,
0.3638359010219574,
0.05029410496354103,
-0.011648917570710182,
-0.126540407538414,
-0.23515120148658752,
0.07369816303253174,
-0.2492479681968689,
0.2559190094470978,
-0.2797004282474518,
-0.13965921103954315,
-0.6959441900253296,
0.26115483045578003,
0.47598910331726074,
-0.2736073136329651,
0.7006934285163879,
0.8063350915908813,
-0.22772027552127838,
0.023346763104200363,
-0.543355405330658,
-0.1089494526386261,
-0.40106940269470215,
0.039097774773836136,
-0.2334355264902115,
-0.6353534460067749,
0.8913711309432983,
0.268647700548172,
0.05187496170401573,
0.668553352355957,
0.5211204886436462,
-0.07918289303779602,
0.7167142033576965,
0.3754933476448059,
-0.3069342076778412,
0.49196356534957886,
-0.7154369354248047,
-0.24360771477222443,
-0.8804931044578552,
-0.4723530113697052,
-0.5788112878799438,
-0.5077197551727295,
-0.8606317043304443,
-0.5344910621643066,
0.2501448690891266,
0.08694958686828613,
-0.22017470002174377,
0.423240602016449,
-0.9183398485183716,
0.22460772097110748,
0.35573333501815796,
0.2858836352825165,
-0.07547652721405029,
0.14574864506721497,
0.1484539806842804,
0.1249561756849289,
-0.588346004486084,
-0.24883686006069183,
1.1420594453811646,
0.5078232288360596,
0.5743631720542908,
-0.07779437303543091,
0.7646286487579346,
0.023969560861587524,
0.28497153520584106,
-0.49821484088897705,
0.46338847279548645,
-0.021852992475032806,
-0.5363717675209045,
-0.10385167598724365,
-0.5095212459564209,
-0.8966631889343262,
-0.14050132036209106,
-0.41631948947906494,
-0.6830859780311584,
0.5465596318244934,
0.12277838587760925,
-0.18759165704250336,
0.38381263613700867,
-0.5842891931533813,
0.8416538834571838,
-0.059130966663360596,
-0.48221853375434875,
0.29060229659080505,
-0.9793614745140076,
0.18299224972724915,
0.18992146849632263,
0.305079847574234,
-0.4275014102458954,
-0.02028479054570198,
1.0046755075454712,
-0.7900534272193909,
0.9045909643173218,
-0.328173965215683,
0.14004002511501312,
0.5741606950759888,
-0.2769385278224945,
0.4470609128475189,
0.06243859604001045,
-0.26394516229629517,
0.3940015137195587,
-0.06561317294836044,
-0.4348174035549164,
-0.414282888174057,
0.7546427845954895,
-0.6972224116325378,
0.009041832759976387,
-0.2966930568218231,
-0.48753994703292847,
0.05656449869275093,
0.1476324051618576,
0.28364455699920654,
0.40833747386932373,
0.006897160317748785,
0.20654074847698212,
0.46591314673423767,
-0.13884826004505157,
0.23394352197647095,
0.09748230129480362,
-0.050106339156627655,
-0.7677996158599854,
0.9399824142456055,
0.1723269820213318,
0.033563628792762756,
0.02245382033288479,
0.42194315791130066,
-0.39526697993278503,
-0.15694721043109894,
-0.6002565622329712,
0.43607306480407715,
-0.38173508644104004,
-0.3730066120624542,
-0.5337074995040894,
-0.10702657699584961,
-0.6319223046302795,
-0.10911402851343155,
-0.2431928962469101,
-0.5462278127670288,
-0.39674896001815796,
-0.17474952340126038,
1.0615246295928955,
0.4822355806827545,
-0.6571894288063049,
0.05631528049707413,
-0.536406397819519,
0.28510013222694397,
-0.09532065689563751,
0.6264402270317078,
-0.07091400772333145,
-0.34547120332717896,
-0.1962766945362091,
0.09154651314020157,
-0.1846705973148346,
-0.7232099175453186,
0.29464107751846313,
0.002171293133869767,
0.3239642381668091,
0.14433501660823822,
0.04536624997854233,
0.7141402363777161,
-0.13743534684181213,
0.6497678756713867,
0.31122589111328125,
-0.7690392732620239,
0.7050089836120605,
-0.5141215324401855,
0.09663162380456924,
0.7277540564537048,
0.41248348355293274,
-0.5989897847175598,
-0.15300172567367554,
-0.9499268531799316,
-0.8402813673019409,
0.7625243663787842,
0.4578946530818939,
0.06827427446842194,
0.19240938127040863,
0.5012783408164978,
-0.17663781344890594,
0.3289877772331238,
-0.6584510803222656,
-0.8826157450675964,
-0.39596331119537354,
-0.34064987301826477,
-0.08024684339761734,
-0.09510134905576706,
-0.23050230741500854,
-0.710175633430481,
0.7961505651473999,
-0.07126013189554214,
0.31158822774887085,
0.41566896438598633,
0.3910023272037506,
-0.23035572469234467,
-0.016738208010792732,
0.3014615476131439,
0.39176806807518005,
-0.25883373618125916,
-0.284807026386261,
-0.20514093339443207,
-0.5994646549224854,
-0.08154887706041336,
0.47450894117355347,
-0.3824555277824402,
-0.097208172082901,
0.29024651646614075,
0.8837889432907104,
0.037120986729860306,
-0.26667946577072144,
0.5732584595680237,
-0.06605090200901031,
-0.33039775490760803,
-0.37473586201667786,
0.019885683432221413,
0.13775324821472168,
0.1652051955461502,
0.09747668355703354,
0.07439064979553223,
-0.09010861068964005,
-0.4071923494338989,
0.400015652179718,
0.2707197666168213,
-0.48647332191467285,
-0.44522300362586975,
0.6484853029251099,
0.06350268423557281,
-0.18584127724170685,
0.48469433188438416,
-0.06719586253166199,
-0.6154810786247253,
0.7733091711997986,
0.1261189579963684,
0.8186805844306946,
-0.16640499234199524,
0.32239794731140137,
0.7159934639930725,
0.2051197588443756,
-0.029634129256010056,
0.5382254123687744,
-0.18558073043823242,
-0.5981374382972717,
-0.025853680446743965,
-0.5964469909667969,
-0.06073075532913208,
0.08978976309299469,
-0.8251727223396301,
0.40893518924713135,
-0.4241292476654053,
-0.21498271822929382,
0.02161843329668045,
0.3532550632953644,
-0.7631638646125793,
0.1622444987297058,
-0.1343299001455307,
1.041191816329956,
-1.03693425655365,
0.4798319339752197,
0.6426051259040833,
-0.7131562232971191,
-1.1929352283477783,
-0.2013048529624939,
0.2025514394044876,
-0.6349180936813354,
0.29149991273880005,
0.1769014447927475,
0.5032907724380493,
-0.043000832200050354,
-0.9095147848129272,
-0.6748851537704468,
1.1500812768936157,
-0.00756349042057991,
-0.22052767872810364,
0.38078826665878296,
0.13127371668815613,
0.627092182636261,
-0.4545413553714752,
0.29165154695510864,
0.6022970676422119,
0.701888918876648,
0.33492445945739746,
-0.6885395050048828,
0.2590569257736206,
-0.6395325660705566,
-0.20699970424175262,
0.025000574067234993,
-0.9716038107872009,
0.7007319927215576,
-0.18105831742286682,
0.002128998748958111,
0.056803345680236816,
0.6429364681243896,
0.4362652897834778,
0.3354998826980591,
0.46385782957077026,
0.7586528658866882,
0.7728468179702759,
-0.3371383547782898,
1.272824764251709,
-0.29092684388160706,
0.6079522967338562,
0.7452301383018494,
0.05686293914914131,
0.5483476519584656,
0.27536508440971375,
-0.3460184335708618,
0.5666306018829346,
0.6527204513549805,
-0.4825018048286438,
0.2179756909608841,
0.36596885323524475,
-0.03431959077715874,
-0.07141242921352386,
-0.30785229802131653,
-0.6044238805770874,
0.2811208963394165,
0.2096497267484665,
-0.378243625164032,
0.039732616394758224,
-0.03529680147767067,
0.40673452615737915,
-0.09764403849840164,
-0.27403539419174194,
0.6113826036453247,
0.03352288901805878,
-0.4161783456802368,
0.5659036636352539,
-0.21842129528522491,
0.6640625,
-0.5637191534042358,
0.09341681748628616,
-0.09904170036315918,
0.12647171318531036,
-0.5893709659576416,
-1.0696207284927368,
0.29876959323883057,
0.021763747557997704,
-0.2856208384037018,
-0.3488461673259735,
0.7021413445472717,
-0.5137110948562622,
-0.8887866735458374,
0.15071046352386475,
0.20025619864463806,
0.3637505769729614,
0.17419621348381042,
-1.3035171031951904,
0.6015691161155701,
0.18456435203552246,
-0.43699270486831665,
0.09705769270658493,
0.4862099587917328,
0.179597407579422,
0.5693039894104004,
0.759904146194458,
0.290142297744751,
-0.2410944402217865,
0.11859071999788284,
1.081092357635498,
-0.5092601776123047,
-0.44976872205734253,
-0.7447734475135803,
0.9328925609588623,
-0.3670732080936432,
-0.3945062756538391,
0.7357438206672668,
0.8111547827720642,
0.8190250396728516,
-0.030386295169591904,
0.7509192824363708,
-0.6029261946678162,
0.7134523391723633,
-0.2334887981414795,
0.940238893032074,
-0.748153805732727,
-0.019042309373617172,
-0.7351242899894714,
-0.5193154215812683,
-0.40373870730400085,
0.6822708249092102,
-0.1759742647409439,
0.20255997776985168,
0.236924946308136,
0.9674379229545593,
-0.004294759128242731,
0.07732804119586945,
-0.24815970659255981,
0.34874793887138367,
0.3175934851169586,
0.567009449005127,
0.4606812000274658,
-0.8760854005813599,
0.3518681824207306,
-0.7552878856658936,
-0.32183200120925903,
0.004889714065939188,
-0.9025700688362122,
-0.8742963671684265,
-0.9936888217926025,
-0.6720587015151978,
-0.7611634135246277,
-0.29374346137046814,
1.0274759531021118,
0.7363269329071045,
-0.713671088218689,
-0.3129558265209198,
0.11899137496948242,
0.3341931998729706,
-0.05513651669025421,
-0.32117611169815063,
0.6930049657821655,
0.38529324531555176,
-0.6753736138343811,
-0.10667126625776291,
0.06319141387939453,
0.27048370242118835,
-0.02048715390264988,
-0.08013419806957245,
-0.12086265534162521,
-0.2943572700023651,
0.3064306080341339,
0.426115483045578,
-0.3087712228298187,
-0.0916699767112732,
-0.23903003334999084,
0.06336385756731033,
0.21749041974544525,
0.5281757116317749,
-0.5181476473808289,
0.1885414719581604,
0.643750011920929,
0.21878249943256378,
0.4283500611782074,
0.20277667045593262,
0.049212828278541565,
-0.4535090923309326,
0.10108193010091782,
-0.00489288754761219,
0.3294745981693268,
0.4304397702217102,
-0.48211222887039185,
0.7419399619102478,
0.5472601056098938,
-0.4861335754394531,
-0.8696304559707642,
-0.13280144333839417,
-1.2965494394302368,
0.08469293266534805,
1.0309169292449951,
-0.010832411237061024,
-0.6130596995353699,
0.06139820069074631,
-0.18283052742481232,
0.09992857277393341,
-0.5568473935127258,
0.46935558319091797,
0.5100382566452026,
-0.10987921059131622,
0.15432465076446533,
-0.34857428073883057,
0.6313962340354919,
-0.05405315011739731,
-0.9660645723342896,
0.12384440004825592,
0.47336965799331665,
0.5071858167648315,
0.31884709000587463,
0.7915970683097839,
-0.3177244961261749,
0.07172856479883194,
-0.12830205261707306,
0.2418557107448578,
-0.328117698431015,
-0.02664353884756565,
-0.35497230291366577,
-0.08560651540756226,
-0.5230038166046143,
-0.20662662386894226
]
|
huggingartists/melanie-martinez | huggingartists | 2022-10-25T09:38:15Z | 261 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/melanie-martinez"
## 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.46438 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('https://images.genius.com/917de5970c2afbbf03a7705f18eb6951.811x811x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/melanie-martinez">
<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">Melanie Martinez</div>
<a href="https://genius.com/artists/melanie-martinez">
<div style="text-align: center; font-size: 14px;">@melanie-martinez</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/melanie-martinez).
### 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/melanie-martinez")
```
## 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|
|------:|---------:|---:|
|329| -| -|
'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/melanie-martinez")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6071688532829285,
-0.533368706703186,
0.11810677498579025,
0.3342112600803375,
-0.23972654342651367,
-0.006861297879368067,
-0.27640628814697266,
-0.4507577121257782,
0.8551614880561829,
0.35473623871803284,
-0.9345220923423767,
-0.8835423588752747,
-0.5912442207336426,
0.143599733710289,
-0.12330524623394012,
1.285567283630371,
-0.21170827746391296,
-0.3414548337459564,
-0.3248562514781952,
-0.21625067293643951,
-0.2797390818595886,
-0.3208959400653839,
-0.3539358079433441,
-0.3371429145336151,
0.37725478410720825,
0.4624722898006439,
0.7090948224067688,
0.8748064041137695,
0.514682412147522,
0.34565603733062744,
-0.10743079334497452,
-0.006408488843590021,
-0.3634333908557892,
-0.11499498784542084,
0.17252421379089355,
-0.3232308626174927,
-0.6925360560417175,
0.24607667326927185,
0.5433101058006287,
0.4157097637653351,
-0.09962224215269089,
0.4996158480644226,
0.055952124297618866,
0.8330147862434387,
-0.2632472813129425,
0.5190560221672058,
-0.2614283561706543,
-0.1280430257320404,
-0.2785731852054596,
0.04427318647503853,
0.19247595965862274,
-0.6193947792053223,
-0.03680185228586197,
-0.7018893361091614,
0.07505319267511368,
-0.019154289737343788,
0.9906244874000549,
0.10304170846939087,
0.09741906821727753,
-0.17485640943050385,
-0.17155301570892334,
0.50197434425354,
-0.6010188460350037,
-0.08346784859895706,
0.5976670384407043,
0.1536528766155243,
0.0049561066552996635,
-0.6379984617233276,
-0.6094995141029358,
0.08848925679922104,
-0.15410219132900238,
0.25786492228507996,
-0.20626325905323029,
-0.3058528006076813,
0.5584240555763245,
0.5215530395507812,
-0.5019344687461853,
-0.26135188341140747,
-0.520023763179779,
-0.11541412770748138,
1.1690211296081543,
0.18157561123371124,
0.4359916150569916,
-0.4457913637161255,
-0.17051148414611816,
-0.34642234444618225,
-0.2638676166534424,
0.3583453595638275,
0.5491102933883667,
0.45759451389312744,
-1.034270167350769,
0.6430679559707642,
-0.15711888670921326,
0.553411066532135,
0.12848824262619019,
-0.03714081645011902,
0.7993959784507751,
-0.38658055663108826,
-0.1389550268650055,
-0.15659554302692413,
1.0832887887954712,
0.6530565023422241,
0.1869521290063858,
0.08641452342271805,
-0.05202728509902954,
0.07479027658700943,
-0.15438516438007355,
-0.8476679921150208,
-0.4016987681388855,
0.6525804400444031,
-0.6126657128334045,
-0.6026419401168823,
0.16859544813632965,
-0.9661025404930115,
-0.21620261669158936,
-0.3231927752494812,
0.2562473714351654,
-0.33445483446121216,
-0.4878881573677063,
0.1592017114162445,
-0.26721304655075073,
0.08410480618476868,
0.05822499096393585,
-0.6215040683746338,
0.18770499527454376,
0.5713152289390564,
0.7790845036506653,
0.2316453456878662,
-0.29402098059654236,
-0.24871517717838287,
-0.23869962990283966,
-0.1269463151693344,
0.633781373500824,
-0.2833394706249237,
-0.35191255807876587,
-0.16390036046504974,
0.3858361542224884,
-0.09445996582508087,
-0.30245593190193176,
0.9167101383209229,
0.09108560532331467,
0.18113146722316742,
-0.594547688961029,
-0.37887948751449585,
0.023246899247169495,
0.24657931923866272,
-0.7648469805717468,
1.0973155498504639,
0.3466458022594452,
-1.0106929540634155,
0.18053069710731506,
-0.8039699792861938,
-0.2975957989692688,
-0.0024105117190629244,
0.085397869348526,
-0.7937533855438232,
-0.17704422771930695,
0.20061643421649933,
0.7370889186859131,
-0.3212319612503052,
0.046930354088544846,
-0.6221600770950317,
-0.14995835721492767,
0.4012722969055176,
0.19814203679561615,
1.2053500413894653,
0.08610140532255173,
-0.1462235301733017,
0.09491169452667236,
-0.965405285358429,
0.11062323302030563,
0.45301398634910583,
-0.18425726890563965,
-0.07477525621652603,
-0.24363304674625397,
0.41681644320487976,
0.333564817905426,
0.09757956862449646,
-0.5990219712257385,
0.41139018535614014,
-0.18001408874988556,
0.4660889506340027,
0.7241129279136658,
0.005836850497871637,
0.31483033299446106,
-0.6530892848968506,
0.4512690603733063,
0.06418927758932114,
0.3925327956676483,
-0.047823529690504074,
-0.5755080580711365,
-0.4554647207260132,
-0.2942443788051605,
0.32635697722435,
0.450285941362381,
-0.6576187610626221,
1.0063236951828003,
-0.31153157353401184,
-0.8238857388496399,
-0.6752980351448059,
0.1222776398062706,
0.17900332808494568,
0.5102413892745972,
0.3835570812225342,
-0.4649154245853424,
-0.6069321036338806,
-0.6464889049530029,
0.10969635099172592,
-0.22991281747817993,
0.15448078513145447,
0.44502535462379456,
0.8285439014434814,
-0.28771379590034485,
0.8586331605911255,
-0.6794546842575073,
-0.2260301262140274,
-0.22631242871284485,
-0.2937505841255188,
0.4105813801288605,
0.7819421291351318,
0.7272592186927795,
-0.8342646956443787,
-0.5287796258926392,
-0.269540011882782,
-0.7263824343681335,
-0.13327310979366302,
-0.03585552051663399,
-0.285599946975708,
0.0013181691756471992,
0.11939698457717896,
-0.7291112542152405,
0.5849497318267822,
0.5100619792938232,
-0.71302330493927,
0.554653525352478,
0.08556058257818222,
0.002869011601433158,
-1.2607804536819458,
0.3770163059234619,
0.26002219319343567,
-0.005078235175460577,
-0.5916029214859009,
-0.24662631750106812,
-0.07124987244606018,
-0.025418831035494804,
-0.10229779779911041,
0.6191916465759277,
-0.3283712565898895,
0.2825503945350647,
0.10165420919656754,
0.02847212553024292,
0.11229768395423889,
0.46724504232406616,
-0.07080887258052826,
0.2647238075733185,
1.0316897630691528,
-0.3622139096260071,
0.6692327260971069,
0.6068530082702637,
-0.21752621233463287,
0.8223753571510315,
-0.8063061833381653,
0.032189007848501205,
-0.3203522264957428,
0.4331255555152893,
-0.8479636907577515,
-0.5206407308578491,
0.8683353066444397,
-0.678982138633728,
0.38469362258911133,
-0.26690933108329773,
-0.5423462390899658,
-0.8230041265487671,
-0.6478080153465271,
0.14161308109760284,
0.5023215413093567,
-0.4039101302623749,
0.3897039294242859,
0.592174768447876,
0.022324558347463608,
-0.399173766374588,
-0.7907984256744385,
-0.11564693599939346,
-0.38582614064216614,
-0.812972903251648,
0.4385165274143219,
-0.3404785990715027,
-0.09058714658021927,
0.1470734179019928,
0.08260615170001984,
0.09585428237915039,
0.00985332764685154,
0.4208979904651642,
0.3332149088382721,
0.10159698873758316,
-0.007061972748488188,
-0.04980149865150452,
-0.22769853472709656,
0.14250271022319794,
-0.20296727120876312,
0.28170403838157654,
-0.2585081458091736,
-0.13726824522018433,
-0.6719101667404175,
0.23333843052387238,
0.47575879096984863,
-0.24918340146541595,
0.7543227076530457,
0.8331794738769531,
-0.24288290739059448,
-0.01317959651350975,
-0.46955662965774536,
-0.14125706255435944,
-0.4022709131240845,
0.03548268973827362,
-0.2334047108888626,
-0.6114821434020996,
0.9674688577651978,
0.2206844687461853,
0.06425592303276062,
0.6544458866119385,
0.48853567242622375,
-0.06508645415306091,
0.7020562887191772,
0.3874940872192383,
-0.3138422966003418,
0.5285949110984802,
-0.6767299771308899,
-0.21396733820438385,
-0.8523862361907959,
-0.46602535247802734,
-0.5291950702667236,
-0.49513179063796997,
-0.8535442352294922,
-0.4698789119720459,
0.1702156662940979,
0.11911553144454956,
-0.23621335625648499,
0.4788723289966583,
-0.9162395596504211,
0.2481546401977539,
0.34548673033714294,
0.32918378710746765,
-0.11583580076694489,
0.07713204622268677,
0.08278725296258926,
0.14111697673797607,
-0.5912780165672302,
-0.2644791007041931,
1.1597015857696533,
0.5407494306564331,
0.5545490980148315,
-0.09425142407417297,
0.812786877155304,
0.06375749409198761,
0.23916655778884888,
-0.5297327637672424,
0.4852086305618286,
0.05732755362987518,
-0.5125417709350586,
-0.15690730512142181,
-0.5244714617729187,
-0.9138539433479309,
-0.11959956586360931,
-0.44843176007270813,
-0.7222607731819153,
0.5175471901893616,
0.09732861071825027,
-0.23154644668102264,
0.33073127269744873,
-0.6069154739379883,
0.888370931148529,
-0.06191438063979149,
-0.45302829146385193,
0.3034769594669342,
-1.0387324094772339,
0.18180236220359802,
0.17358721792697906,
0.2536866366863251,
-0.43372565507888794,
0.021546728909015656,
0.9809226393699646,
-0.8016577959060669,
0.9483547806739807,
-0.36755773425102234,
0.13680098950862885,
0.5931422710418701,
-0.3618825674057007,
0.48103731870651245,
0.10942043364048004,
-0.27545201778411865,
0.3434253931045532,
0.02676556259393692,
-0.45449402928352356,
-0.4434834122657776,
0.6704373359680176,
-0.6946805715560913,
0.08054418861865997,
-0.3418232798576355,
-0.4490812122821808,
0.06232495233416557,
0.1531188040971756,
0.27133581042289734,
0.36197349429130554,
-0.011178522370755672,
0.09462344646453857,
0.40903526544570923,
-0.13943330943584442,
0.3091686964035034,
0.022744351997971535,
-0.11196047067642212,
-0.7517975568771362,
0.8890593647956848,
0.152908593416214,
0.023691043257713318,
-0.05175694450736046,
0.3740055561065674,
-0.38103970885276794,
-0.1233978122472763,
-0.5740156769752502,
0.4896274507045746,
-0.3994019627571106,
-0.3688293397426605,
-0.5235974788665771,
-0.1694570630788803,
-0.6439442038536072,
-0.12518014013767242,
-0.22575561702251434,
-0.5223678350448608,
-0.35521596670150757,
-0.23158396780490875,
0.9916490316390991,
0.41741883754730225,
-0.6564269065856934,
0.14146745204925537,
-0.5412907004356384,
0.27142980694770813,
-0.09038460999727249,
0.6362476944923401,
-0.07580933719873428,
-0.31215235590934753,
-0.22502417862415314,
0.09254955500364304,
-0.19555158913135529,
-0.7140630483627319,
0.32265040278434753,
-0.07147873193025589,
0.3647473156452179,
0.13041600584983826,
0.08597427606582642,
0.653617262840271,
-0.044203437864780426,
0.6251846551895142,
0.30077996850013733,
-0.8000033497810364,
0.6635928750038147,
-0.538285493850708,
0.15315040946006775,
0.7413736581802368,
0.3762423098087311,
-0.6066766977310181,
-0.09895385801792145,
-0.9674513339996338,
-0.8609293103218079,
0.8160860538482666,
0.441024512052536,
0.07694370299577713,
0.22136443853378296,
0.5714357495307922,
-0.20168638229370117,
0.3423926830291748,
-0.6979448795318604,
-0.8725862503051758,
-0.37706467509269714,
-0.3853832185268402,
-0.04697714000940323,
-0.08489920198917389,
-0.2463214248418808,
-0.6925899982452393,
0.7777991890907288,
-0.14867821335792542,
0.3704212009906769,
0.37728720903396606,
0.4558256268501282,
-0.22966471314430237,
-0.02396809123456478,
0.24257497489452362,
0.3408607840538025,
-0.24876704812049866,
-0.31708335876464844,
-0.17155981063842773,
-0.5906979441642761,
-0.09192933142185211,
0.5203481316566467,
-0.3869263827800751,
-0.06917893886566162,
0.2938092350959778,
0.9285698533058167,
-0.024677669629454613,
-0.2514277398586273,
0.5850962996482849,
-0.08817178010940552,
-0.40265998244285583,
-0.3827069401741028,
0.021638961508870125,
0.15652301907539368,
0.23700107634067535,
0.031242266297340393,
0.14205262064933777,
-0.10589805245399475,
-0.4442778527736664,
0.3865644037723541,
0.2602250874042511,
-0.40342578291893005,
-0.4915923476219177,
0.5862600207328796,
0.06089724972844124,
-0.13752533495426178,
0.4590623676776886,
-0.1397661417722702,
-0.5936888456344604,
0.8024072647094727,
0.15077027678489685,
0.8097505569458008,
-0.1630319505929947,
0.37398210167884827,
0.7568228840827942,
0.18119782209396362,
-0.12497448176145554,
0.5348120927810669,
-0.21828915178775787,
-0.646342933177948,
-0.05177559331059456,
-0.5936775803565979,
-0.09660986065864563,
0.06503133475780487,
-0.8244987726211548,
0.4294300973415375,
-0.47792690992355347,
-0.293395072221756,
0.024044107645750046,
0.3593873083591461,
-0.7071947455406189,
0.2024257630109787,
-0.05262221768498421,
1.0206745862960815,
-1.102348804473877,
0.4615253210067749,
0.6558014750480652,
-0.675625741481781,
-1.1630691289901733,
-0.13961444795131683,
0.19653178751468658,
-0.5547119975090027,
0.15364529192447662,
0.19327186048030853,
0.5041310787200928,
-0.06667406857013702,
-0.9198783040046692,
-0.6654666662216187,
1.1824462413787842,
0.07084339112043381,
-0.23794957995414734,
0.3290053606033325,
0.11353109776973724,
0.6599844694137573,
-0.40256592631340027,
0.3567776679992676,
0.6607311367988586,
0.6938620805740356,
0.31770288944244385,
-0.7042006850242615,
0.28509294986724854,
-0.6391772627830505,
-0.22374993562698364,
0.056386783719062805,
-1.0164673328399658,
0.6363829374313354,
-0.18182221055030823,
-0.03375698998570442,
0.035291820764541626,
0.6057336330413818,
0.4260806441307068,
0.45221570134162903,
0.4055136442184448,
0.7454897165298462,
0.8396791815757751,
-0.3353846073150635,
1.2016723155975342,
-0.26651400327682495,
0.6186494827270508,
0.7930738925933838,
0.05307359620928764,
0.49334290623664856,
0.22564628720283508,
-0.36147651076316833,
0.5465629696846008,
0.6688202619552612,
-0.46066731214523315,
0.22853989899158478,
0.4014200270175934,
-0.10118044167757034,
-0.04694472625851631,
-0.26058390736579895,
-0.5657919645309448,
0.2877291738986969,
0.21176151931285858,
-0.4073965549468994,
0.03835206851363182,
-0.031215257942676544,
0.39785316586494446,
-0.05135945975780487,
-0.2849961519241333,
0.6080585718154907,
0.08370208740234375,
-0.39937326312065125,
0.4963409900665283,
-0.15232890844345093,
0.6743444800376892,
-0.5580472946166992,
0.15510913729667664,
-0.09119918942451477,
0.10389237105846405,
-0.6467077136039734,
-1.0571088790893555,
0.3910216689109802,
-0.02176140807569027,
-0.2873075306415558,
-0.32656770944595337,
0.7285696268081665,
-0.4926490783691406,
-0.8125438690185547,
0.2423335164785385,
0.20695841312408447,
0.3048174977302551,
0.10798183083534241,
-1.3074281215667725,
0.5681288242340088,
0.1803017556667328,
-0.42499077320098877,
0.12816376984119415,
0.4806297719478607,
0.16923891007900238,
0.5346974730491638,
0.7127249240875244,
0.2510978877544403,
-0.24101309478282928,
0.11722169071435928,
1.0993258953094482,
-0.5408475399017334,
-0.44174620509147644,
-0.7845394611358643,
0.9259462356567383,
-0.36504927277565,
-0.36954623460769653,
0.7079048156738281,
0.7523971199989319,
0.8271796107292175,
-0.00033001339761540294,
0.8354905843734741,
-0.6262785196304321,
0.6626800894737244,
-0.1941693127155304,
0.9170839786529541,
-0.6641352772712708,
-0.04996389523148537,
-0.7674252986907959,
-0.558749794960022,
-0.4307813346385956,
0.6766890287399292,
-0.19634391367435455,
0.2187071591615677,
0.24933363497257233,
0.9441484212875366,
0.033584751188755035,
0.11637002974748611,
-0.2554621696472168,
0.29333940148353577,
0.2724035382270813,
0.5362439155578613,
0.4233826696872711,
-0.8954523801803589,
0.32317718863487244,
-0.7397018074989319,
-0.3295450210571289,
0.05452604591846466,
-0.8418468236923218,
-0.9316853284835815,
-0.9240716695785522,
-0.6758820414543152,
-0.8106124401092529,
-0.3089715838432312,
1.1088519096374512,
0.7038559913635254,
-0.6961186528205872,
-0.23693989217281342,
0.040694259107112885,
0.2570646107196808,
-0.07861444354057312,
-0.3059118688106537,
0.6395972967147827,
0.3901512324810028,
-0.6310547590255737,
-0.12687765061855316,
0.011799152009189129,
0.2718806266784668,
0.06391679495573044,
-0.09387954324483871,
-0.06726924329996109,
-0.2569722533226013,
0.34704530239105225,
0.4876653254032135,
-0.30188965797424316,
-0.04516129940748215,
-0.24032947421073914,
-0.0017713704146444798,
0.1791074424982071,
0.46093180775642395,
-0.5107554197311401,
0.1948082447052002,
0.6463200449943542,
0.2645919620990753,
0.5070137977600098,
0.2588835656642914,
0.013135701417922974,
-0.46280530095100403,
0.08939531445503235,
-0.01862334832549095,
0.32642966508865356,
0.4085193872451782,
-0.472356379032135,
0.7769702672958374,
0.5833758115768433,
-0.49558186531066895,
-0.8085927367210388,
-0.16161002218723297,
-1.3297556638717651,
0.11248388886451721,
1.0427078008651733,
-0.019947517663240433,
-0.5621521472930908,
0.06598392874002457,
-0.2569199204444885,
0.13250955939292908,
-0.5724959969520569,
0.49603158235549927,
0.5256323218345642,
-0.10547264665365219,
0.11107395589351654,
-0.33394676446914673,
0.630852460861206,
-0.05265970528125763,
-0.9835955500602722,
0.1541692167520523,
0.43144360184669495,
0.4680362343788147,
0.2872108817100525,
0.852724015712738,
-0.2704515755176544,
0.04466769099235535,
-0.0388592965900898,
0.28974494338035583,
-0.26714199781417847,
-0.003955517895519733,
-0.38710924983024597,
-0.12931911647319794,
-0.5064742565155029,
-0.20543862879276276
]
|
huggingartists/michael-jackson | huggingartists | 2022-10-25T09:38:33Z | 261 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/f3b36efb63495f1fefe130d8c68cf0d8.800x800x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6991984248161316,
-0.5425882935523987,
0.0655110627412796,
0.2640489637851715,
-0.24910864233970642,
0.04502096399664879,
-0.3246789872646332,
-0.4174690246582031,
0.8459214568138123,
0.33498501777648926,
-0.8831456899642944,
-0.8159539699554443,
-0.620346188545227,
0.16192041337490082,
-0.10601987689733505,
1.227394938468933,
-0.21767625212669373,
-0.36170709133148193,
-0.27023234963417053,
-0.2186153382062912,
-0.23790352046489716,
-0.3694053590297699,
-0.32141807675361633,
-0.3057236969470978,
0.42618027329444885,
0.5160300731658936,
0.7729907035827637,
0.9119089245796204,
0.5880707502365112,
0.3458557724952698,
-0.13883014023303986,
0.04965813830494881,
-0.3983787000179291,
-0.1071024015545845,
0.1077408641576767,
-0.2140800952911377,
-0.6621631383895874,
0.2495349943637848,
0.5514534711837769,
0.44456589221954346,
0.004111668560653925,
0.48144349455833435,
0.07104916125535965,
0.8880518078804016,
-0.306252658367157,
0.4736391603946686,
-0.24507194757461548,
-0.11904870718717575,
-0.25514405965805054,
0.023794123902916908,
0.20920436084270477,
-0.5439965724945068,
-0.004945832304656506,
-0.7387443780899048,
0.027220096439123154,
0.027343835681676865,
1.0293476581573486,
-0.025620989501476288,
0.0637793317437172,
-0.2191224992275238,
-0.1744101196527481,
0.5195971131324768,
-0.5761711001396179,
-0.017170455306768417,
0.5519212484359741,
0.1685762107372284,
-0.012028543278574944,
-0.5800036787986755,
-0.6511372923851013,
0.03046770766377449,
-0.15846848487854004,
0.2710126042366028,
-0.14860087633132935,
-0.2924405336380005,
0.5026900172233582,
0.5673478841781616,
-0.4862862229347229,
-0.2802886366844177,
-0.5175600647926331,
-0.08741597086191177,
1.1653773784637451,
0.11594971269369125,
0.4125920832157135,
-0.49078240990638733,
-0.1905900537967682,
-0.37344348430633545,
-0.21242459118366241,
0.3381255269050598,
0.5380193591117859,
0.5213530659675598,
-1.0414516925811768,
0.6711699366569519,
-0.1851595640182495,
0.5451699495315552,
0.16523002088069916,
-0.08838697522878647,
0.8003945350646973,
-0.3684772253036499,
-0.11792313307523727,
-0.12076855450868607,
1.0813689231872559,
0.6872376799583435,
0.24808496236801147,
0.10207460075616837,
-0.057876262813806534,
-0.008009983226656914,
-0.1473684161901474,
-0.8410276174545288,
-0.3892715573310852,
0.6299147605895996,
-0.6244797706604004,
-0.5815668106079102,
0.22168324887752533,
-0.9653019905090332,
-0.28728023171424866,
-0.3408994972705841,
0.2660788893699646,
-0.38379815220832825,
-0.5707762241363525,
0.10573327541351318,
-0.2785329818725586,
0.04836149886250496,
0.010413199663162231,
-0.5778417587280273,
0.15816332399845123,
0.5753930807113647,
0.7767851948738098,
0.17783959209918976,
-0.3185082972049713,
-0.22861544787883759,
-0.12985765933990479,
-0.14720027148723602,
0.6188326478004456,
-0.3119388818740845,
-0.35162830352783203,
-0.14499445259571075,
0.34442636370658875,
-0.010752052068710327,
-0.3025144934654236,
0.8397408723831177,
0.06451302021741867,
0.17393675446510315,
-0.6331887245178223,
-0.4344640374183655,
-0.000012819939911423717,
0.3272143006324768,
-0.7758325934410095,
0.9994732141494751,
0.37348073720932007,
-0.9993141889572144,
0.2193111777305603,
-0.8674284219741821,
-0.3203873336315155,
-0.030944548547267914,
0.05618954822421074,
-0.8287935853004456,
-0.2008216381072998,
0.20803919434547424,
0.7414709329605103,
-0.29981768131256104,
0.04676887020468712,
-0.6646324992179871,
-0.15705598890781403,
0.39732450246810913,
0.21802754700183868,
1.174196481704712,
0.1677887886762619,
-0.18246428668498993,
0.0296735018491745,
-0.965967059135437,
0.06576220691204071,
0.4503253102302551,
-0.21485206484794617,
-0.045618921518325806,
-0.2702319324016571,
0.4040650427341461,
0.3228316307067871,
0.054151784628629684,
-0.5576339364051819,
0.4210829436779022,
-0.16307996213436127,
0.353618860244751,
0.7138490676879883,
0.0664345771074295,
0.3395928144454956,
-0.6431903839111328,
0.39988499879837036,
0.18408432602882385,
0.3841123878955841,
-0.0012392266653478146,
-0.5418849587440491,
-0.4872685968875885,
-0.27901706099510193,
0.2931632697582245,
0.467085599899292,
-0.6961162090301514,
1.00514554977417,
-0.34613749384880066,
-0.8116024136543274,
-0.6032161116600037,
0.1820773333311081,
0.18417367339134216,
0.5330458283424377,
0.4038664698600769,
-0.44650503993034363,
-0.6629189252853394,
-0.734323263168335,
0.012641815468668938,
-0.2823689579963684,
0.14109596610069275,
0.4384820759296417,
0.7874907851219177,
-0.2415056824684143,
0.8532754778862,
-0.5950833559036255,
-0.2737591862678528,
-0.2835960388183594,
-0.32129859924316406,
0.3800049424171448,
0.8250252604484558,
0.6879933476448059,
-0.8388922214508057,
-0.45937296748161316,
-0.25643080472946167,
-0.7470148801803589,
-0.09798186272382736,
-0.09481653571128845,
-0.33420923352241516,
-0.0066174790263175964,
0.16180439293384552,
-0.6605260372161865,
0.5282065272331238,
0.46986979246139526,
-0.6929881572723389,
0.490520715713501,
0.15133674442768097,
0.09871014952659607,
-1.313974142074585,
0.36086252331733704,
0.2277485877275467,
0.04244372993707657,
-0.6109783053398132,
-0.2708558738231659,
-0.07153668999671936,
0.0142405079677701,
-0.12392446398735046,
0.5638005137443542,
-0.3830920159816742,
0.28711608052253723,
0.10796916484832764,
0.09941922128200531,
0.09687195718288422,
0.4581601917743683,
-0.10364210605621338,
0.22423231601715088,
1.0303525924682617,
-0.39904752373695374,
0.6562865376472473,
0.5452911257743835,
-0.18131648004055023,
0.8624378442764282,
-0.7033792734146118,
0.022595716640353203,
-0.30761224031448364,
0.3645727038383484,
-0.8105099201202393,
-0.49669936299324036,
0.8844377994537354,
-0.7097547650337219,
0.4428549110889435,
-0.27576401829719543,
-0.5695280432701111,
-0.8129413723945618,
-0.6401655673980713,
0.08879736065864563,
0.5107600092887878,
-0.3830162286758423,
0.4592573046684265,
0.589982271194458,
0.12241468578577042,
-0.377216637134552,
-0.8174656629562378,
-0.06769894808530807,
-0.38024958968162537,
-0.7593796849250793,
0.3612695634365082,
-0.32385751605033875,
-0.11471783369779587,
0.14155517518520355,
0.09887674450874329,
0.14523422718048096,
0.021960044279694557,
0.4265763461589813,
0.32750383019447327,
0.07171693444252014,
0.006354952231049538,
-0.08444738388061523,
-0.2073669582605362,
0.1272422969341278,
-0.1991429477930069,
0.2394658327102661,
-0.2833486795425415,
-0.12634314596652985,
-0.6482089161872864,
0.2561514377593994,
0.46865174174308777,
-0.17438118159770966,
0.7566814422607422,
0.8368885517120361,
-0.2321910858154297,
0.045525722205638885,
-0.46502628922462463,
-0.14813332259655,
-0.41627824306488037,
0.05275101587176323,
-0.27584701776504517,
-0.6202211976051331,
0.9027467966079712,
0.21288719773292542,
0.10786014795303345,
0.6672067046165466,
0.5322902798652649,
-0.06542804092168808,
0.7174989581108093,
0.3175068497657776,
-0.31375375390052795,
0.5426459312438965,
-0.6689343452453613,
-0.1715449094772339,
-0.818054735660553,
-0.426777720451355,
-0.44077014923095703,
-0.5682139992713928,
-0.8837143778800964,
-0.43388715386390686,
0.16934435069561005,
0.20049753785133362,
-0.30376577377319336,
0.4052867591381073,
-0.9420934319496155,
0.2643328607082367,
0.3763805031776428,
0.27001121640205383,
-0.10888713598251343,
0.1252683699131012,
0.07954178750514984,
0.20586630702018738,
-0.5395854711532593,
-0.2931064963340759,
1.1531420946121216,
0.48012956976890564,
0.5049183964729309,
-0.04857153818011284,
0.8226042985916138,
0.05879822000861168,
0.2995026409626007,
-0.4787440299987793,
0.5036182999610901,
0.08481868356466293,
-0.5825026035308838,
-0.14348341524600983,
-0.5073121786117554,
-0.9127164483070374,
-0.11762132495641708,
-0.45498088002204895,
-0.6940081715583801,
0.4808385670185089,
0.1423950493335724,
-0.1789034754037857,
0.427011102437973,
-0.6526668071746826,
0.8319064974784851,
-0.04710913822054863,
-0.4049716293811798,
0.3427533507347107,
-1.0556175708770752,
0.19914504885673523,
0.20285391807556152,
0.2957487404346466,
-0.42068108916282654,
-0.021328268572688103,
0.9843007922172546,
-0.7633281946182251,
0.8894386291503906,
-0.40273210406303406,
0.19136972725391388,
0.592776894569397,
-0.2958957552909851,
0.4262976348400116,
0.1442701369524002,
-0.23814979195594788,
0.32727330923080444,
0.012949667870998383,
-0.5032982230186462,
-0.4565073847770691,
0.6793954968452454,
-0.7698946595191956,
0.01492003258317709,
-0.3531752824783325,
-0.4426429271697998,
-0.01009433064609766,
0.14862284064292908,
0.2683853805065155,
0.3160479664802551,
0.05558508634567261,
0.12001596391201019,
0.3712201714515686,
-0.1409682333469391,
0.3149568438529968,
0.045207429677248,
-0.13905005156993866,
-0.8142579793930054,
0.8844318389892578,
0.15690504014492035,
0.05405230075120926,
-0.039429713040590286,
0.4165595471858978,
-0.3143845200538635,
-0.14272546768188477,
-0.6061698794364929,
0.44584137201309204,
-0.4209354817867279,
-0.4119258522987366,
-0.5311765670776367,
-0.19240383803844452,
-0.6654999852180481,
-0.1994846761226654,
-0.2634599208831787,
-0.49319520592689514,
-0.35913944244384766,
-0.24852947890758514,
1.0596888065338135,
0.41996967792510986,
-0.7237504124641418,
0.11569469422101974,
-0.5189353823661804,
0.3641347289085388,
-0.12639765441417694,
0.672281801700592,
-0.08519795536994934,
-0.3301219940185547,
-0.23136861622333527,
0.09605308622121811,
-0.21080394089221954,
-0.7167558073997498,
0.23130926489830017,
-0.02408990077674389,
0.35764652490615845,
0.1787494570016861,
0.13435471057891846,
0.7195395231246948,
-0.029664576053619385,
0.6777141094207764,
0.3218717575073242,
-0.8053872585296631,
0.6710526347160339,
-0.4600014090538025,
0.18885543942451477,
0.7924028038978577,
0.3558725118637085,
-0.6672292351722717,
-0.19640834629535675,
-0.9328680634498596,
-0.8515655398368835,
0.7988325357437134,
0.47659504413604736,
0.06342713534832001,
0.1889602392911911,
0.5406988263130188,
-0.18881863355636597,
0.2966696321964264,
-0.6508763432502747,
-0.9395008087158203,
-0.41822779178619385,
-0.38264837861061096,
-0.06923025846481323,
-0.07887494564056396,
-0.2419043928384781,
-0.7076621651649475,
0.8130310773849487,
-0.10149732977151871,
0.3306658864021301,
0.45010340213775635,
0.39248961210250854,
-0.23133571445941925,
-0.015072224661707878,
0.2592298686504364,
0.37058234214782715,
-0.25682467222213745,
-0.2601584196090698,
-0.17527206242084503,
-0.6582412719726562,
-0.0817011296749115,
0.5145899057388306,
-0.3361918032169342,
-0.059206247329711914,
0.3284401595592499,
0.8577728867530823,
-0.08010489493608475,
-0.25453981757164,
0.5745940804481506,
-0.09014526009559631,
-0.4066685736179352,
-0.39134320616722107,
-0.018821600824594498,
0.17389801144599915,
0.24863043427467346,
0.07593018561601639,
0.09070830047130585,
-0.10304567962884903,
-0.43514561653137207,
0.39986225962638855,
0.23292317986488342,
-0.4026878774166107,
-0.4253411591053009,
0.5426710247993469,
0.04263140633702278,
-0.15418313443660736,
0.45982488989830017,
-0.19179709255695343,
-0.6189951300621033,
0.7301810383796692,
0.09035808593034744,
0.7998425364494324,
-0.12806198000907898,
0.29376766085624695,
0.7195239663124084,
0.2404680997133255,
-0.00007626797741977498,
0.5845984220504761,
-0.1951655149459839,
-0.6295621991157532,
-0.011291896924376488,
-0.5599473714828491,
-0.09287987649440765,
0.10569945722818375,
-0.800841748714447,
0.4070478677749634,
-0.5062642693519592,
-0.25402405858039856,
-0.002864753594622016,
0.39293569326400757,
-0.7467249035835266,
0.19602766633033752,
0.01639002375304699,
1.0084872245788574,
-1.0239465236663818,
0.4534817636013031,
0.6584264636039734,
-0.6665053963661194,
-1.233519196510315,
-0.16428710520267487,
0.22717167437076569,
-0.5510596036911011,
0.1895895004272461,
0.21618078649044037,
0.5144283771514893,
-0.10262952744960785,
-0.912929117679596,
-0.710755467414856,
1.1590533256530762,
0.0552501305937767,
-0.25475794076919556,
0.3870922923088074,
0.17857107520103455,
0.6092022061347961,
-0.4045194983482361,
0.3064534068107605,
0.6712417006492615,
0.7211602330207825,
0.2974565625190735,
-0.688508927822113,
0.2879044711589813,
-0.641118586063385,
-0.2101692408323288,
0.053770292550325394,
-0.9431100487709045,
0.6064144372940063,
-0.18236006796360016,
-0.012054109014570713,
-0.026640718802809715,
0.6582592129707336,
0.49736618995666504,
0.4440663754940033,
0.4995252192020416,
0.7037471532821655,
0.7702944874763489,
-0.2988916039466858,
1.198175072669983,
-0.30645808577537537,
0.6308236122131348,
0.7515767216682434,
0.08209691196680069,
0.46742677688598633,
0.3090609014034271,
-0.3189549744129181,
0.5266130566596985,
0.6768047213554382,
-0.4664022624492645,
0.21868419647216797,
0.4376820921897888,
-0.05683823302388191,
-0.03837793692946434,
-0.22050592303276062,
-0.5952053666114807,
0.2676175832748413,
0.18026113510131836,
-0.44438013434410095,
0.09272819012403488,
-0.01112399436533451,
0.4457976520061493,
-0.08397841453552246,
-0.333758145570755,
0.6103342771530151,
0.04713589698076248,
-0.3791378438472748,
0.529768168926239,
-0.21063366532325745,
0.6659929752349854,
-0.5356026887893677,
0.1799084097146988,
-0.1054876446723938,
0.13156813383102417,
-0.606028139591217,
-1.0635583400726318,
0.3490433990955353,
-0.053746722638607025,
-0.23620052635669708,
-0.3034619987010956,
0.690911054611206,
-0.48351019620895386,
-0.8635510802268982,
0.21467338502407074,
0.23549531400203705,
0.3365474045276642,
0.1269610971212387,
-1.320052981376648,
0.5749945044517517,
0.1303255558013916,
-0.5576475262641907,
0.1272745132446289,
0.5176658034324646,
0.2286052405834198,
0.5093026161193848,
0.7255485653877258,
0.26483070850372314,
-0.2503669559955597,
0.13932417333126068,
1.101538062095642,
-0.5869501233100891,
-0.43337419629096985,
-0.8106849789619446,
0.8956537842750549,
-0.4213277995586395,
-0.3901689350605011,
0.7090978622436523,
0.8100130558013916,
0.8786266446113586,
0.03015821799635887,
0.8128628134727478,
-0.6318015456199646,
0.7126562595367432,
-0.18634185194969177,
0.9379200339317322,
-0.7175365090370178,
-0.0545441098511219,
-0.7852235436439514,
-0.5216063857078552,
-0.4469365179538727,
0.6326217651367188,
-0.1574116200208664,
0.28267115354537964,
0.258508563041687,
0.9331215023994446,
0.03046054020524025,
0.10402140766382217,
-0.21036402881145477,
0.2786354124546051,
0.3254093527793884,
0.5174457430839539,
0.42623502016067505,
-0.8774588108062744,
0.40843430161476135,
-0.8056718111038208,
-0.29140159487724304,
0.018805449828505516,
-0.8429997563362122,
-0.9574572443962097,
-0.949690043926239,
-0.6607753038406372,
-0.8377599716186523,
-0.2814021706581116,
1.1329224109649658,
0.713497519493103,
-0.734483003616333,
-0.24305149912834167,
0.09305507689714432,
0.2706644535064697,
-0.09144940972328186,
-0.3252308666706085,
0.6591314077377319,
0.3905380368232727,
-0.5871071815490723,
-0.16418762505054474,
0.06901542097330093,
0.29684457182884216,
0.027006199583411217,
-0.10067399591207504,
-0.1271534264087677,
-0.2591390907764435,
0.35902807116508484,
0.4477245807647705,
-0.3417425751686096,
-0.12159139662981033,
-0.275870680809021,
0.004920484498143196,
0.202043816447258,
0.5340906977653503,
-0.53748619556427,
0.18899987637996674,
0.5989820957183838,
0.28616225719451904,
0.4114556610584259,
0.23894329369068146,
0.017117101699113846,
-0.46732592582702637,
0.034614358097314835,
0.0035657244734466076,
0.3286954164505005,
0.43965205550193787,
-0.4728153347969055,
0.7391090393066406,
0.58464515209198,
-0.49480706453323364,
-0.8367348313331604,
-0.13407950103282928,
-1.3642884492874146,
0.06875831633806229,
1.0682283639907837,
0.014324299991130829,
-0.5318213105201721,
0.017444107681512833,
-0.22332531213760376,
0.19276461005210876,
-0.6064754128456116,
0.49323001503944397,
0.5384925007820129,
-0.11632484197616577,
0.07741796970367432,
-0.30690670013427734,
0.6116844415664673,
-0.0712205022573471,
-0.9538154602050781,
0.18565669655799866,
0.3922640383243561,
0.4275631606578827,
0.3306741416454315,
0.7414245009422302,
-0.2521487772464752,
0.04578786343336105,
-0.041852302849292755,
0.28411829471588135,
-0.3121846914291382,
0.05455213412642479,
-0.3350483477115631,
-0.0843205451965332,
-0.4896514117717743,
-0.21463468670845032
]
|
huggingartists/rex-orange-county | huggingartists | 2022-10-25T09:42:49Z | 261 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/348ad82a8d34eaff777b6743ca0f2d70.400x400x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.657341480255127,
-0.49432438611984253,
0.1371263861656189,
0.28328219056129456,
-0.23443368077278137,
-0.01031555887311697,
-0.28702354431152344,
-0.4813748002052307,
0.8943130373954773,
0.36996668577194214,
-0.8517445921897888,
-0.8481715321540833,
-0.5369071364402771,
0.1832878440618515,
-0.040245864540338516,
1.1953543424606323,
-0.18860650062561035,
-0.41643044352531433,
-0.28750506043434143,
-0.2644590735435486,
-0.25897473096847534,
-0.2851962745189667,
-0.32921358942985535,
-0.35418379306793213,
0.3771069049835205,
0.557793378829956,
0.7431343793869019,
0.9930818676948547,
0.45814862847328186,
0.3674868941307068,
-0.11768496036529541,
-0.035705260932445526,
-0.34117391705513,
-0.1630668044090271,
0.15070576965808868,
-0.30134057998657227,
-0.6469355225563049,
0.2383653223514557,
0.514409601688385,
0.43319204449653625,
-0.1012289747595787,
0.4408813416957855,
0.008704685606062412,
0.7939331531524658,
-0.28953585028648376,
0.5044341683387756,
-0.319714218378067,
-0.15877647697925568,
-0.27103519439697266,
0.0441649928689003,
0.21259891986846924,
-0.6696946620941162,
0.030152231454849243,
-0.7557956576347351,
0.07754401117563248,
0.03734979033470154,
1.0548542737960815,
0.044715411961078644,
0.05846817418932915,
-0.20942582190036774,
-0.12890002131462097,
0.5306529998779297,
-0.5376486778259277,
-0.09147479385137558,
0.6209018230438232,
0.13730797171592712,
0.011906873434782028,
-0.6045213341712952,
-0.6567751169204712,
0.05877332389354706,
-0.13296084105968475,
0.2761335074901581,
-0.20789864659309387,
-0.25779059529304504,
0.46503180265426636,
0.5484333634376526,
-0.4839131534099579,
-0.2597361207008362,
-0.4933771789073944,
-0.1450507491827011,
1.1767973899841309,
0.15024252235889435,
0.3775840699672699,
-0.496369332075119,
-0.29528746008872986,
-0.4373859763145447,
-0.2137984335422516,
0.33512142300605774,
0.5766951441764832,
0.4719673693180084,
-0.9404826760292053,
0.6361891031265259,
-0.17726348340511322,
0.4867253601551056,
0.14788223803043365,
0.00609150854870677,
0.793576717376709,
-0.4377843737602234,
-0.129741832613945,
-0.04606971517205238,
1.0624419450759888,
0.6850419044494629,
0.2516738176345825,
0.09319254010915756,
-0.0763663500547409,
0.04879821091890335,
-0.19070199131965637,
-0.8036190867424011,
-0.34254205226898193,
0.649764358997345,
-0.5779567956924438,
-0.5511481165885925,
0.13876870274543762,
-0.9861288666725159,
-0.21757866442203522,
-0.36474525928497314,
0.21109221875667572,
-0.38941672444343567,
-0.5703749060630798,
0.13785797357559204,
-0.3134591281414032,
0.09339206665754318,
0.043412644416093826,
-0.5593332052230835,
0.180254727602005,
0.5998730063438416,
0.754662811756134,
0.20270083844661713,
-0.3235289454460144,
-0.2441197782754898,
-0.19688914716243744,
-0.1401442438364029,
0.7126704454421997,
-0.3210565447807312,
-0.3280419707298279,
-0.1432783305644989,
0.3582201302051544,
-0.14369583129882812,
-0.34436750411987305,
0.8474367260932922,
0.031466588377952576,
0.11263873428106308,
-0.5538620948791504,
-0.3901192247867584,
0.023354750126600266,
0.2635048031806946,
-0.8000089526176453,
1.0925209522247314,
0.3737284243106842,
-0.956696629524231,
0.17845705151557922,
-0.7500049471855164,
-0.3209836781024933,
-0.018206655979156494,
0.15040676295757294,
-0.7850009202957153,
-0.16577447950839996,
0.14958210289478302,
0.6886684894561768,
-0.31508922576904297,
0.04209229722619057,
-0.64505934715271,
-0.08453628420829773,
0.3352879583835602,
0.26514315605163574,
1.209609031677246,
0.17112798988819122,
-0.11023446917533875,
0.0372249037027359,
-0.9727016091346741,
0.14617982506752014,
0.40619489550590515,
-0.2010401040315628,
-0.15312588214874268,
-0.29294338822364807,
0.40693286061286926,
0.2533833086490631,
0.10466521233320236,
-0.6251189112663269,
0.39027640223503113,
-0.17482724785804749,
0.4101552665233612,
0.7330588698387146,
-0.0360574871301651,
0.354694664478302,
-0.6487735509872437,
0.46678826212882996,
0.10943638533353806,
0.3327988386154175,
0.001469756243750453,
-0.5427822470664978,
-0.4329935610294342,
-0.2566286623477936,
0.29523590207099915,
0.5087906718254089,
-0.7308603525161743,
0.9944746494293213,
-0.3455773890018463,
-0.8280248641967773,
-0.5662194490432739,
0.07419659197330475,
0.20813202857971191,
0.5590932369232178,
0.3800521194934845,
-0.43761110305786133,
-0.6216357946395874,
-0.6166812181472778,
0.1015399917960167,
-0.2740609347820282,
0.20723716914653778,
0.46426835656166077,
0.809868574142456,
-0.24997283518314362,
0.9243798851966858,
-0.6701081991195679,
-0.3346428871154785,
-0.26158440113067627,
-0.3136661648750305,
0.38972923159599304,
0.7343348264694214,
0.6982933282852173,
-0.8205310106277466,
-0.5166815519332886,
-0.19785606861114502,
-0.6349910497665405,
-0.12662850320339203,
0.020880285650491714,
-0.23358342051506042,
0.011106600984930992,
0.12459374219179153,
-0.6930725574493408,
0.5688436627388,
0.4926469624042511,
-0.7002108693122864,
0.5493766069412231,
0.07184218615293503,
0.013273104093968868,
-1.2852168083190918,
0.34625276923179626,
0.2365608662366867,
0.04482612386345863,
-0.5675233006477356,
-0.263286828994751,
-0.10485432296991348,
-0.032409608364105225,
-0.0982082411646843,
0.5564384460449219,
-0.3534905016422272,
0.27414536476135254,
0.1685807704925537,
0.0673447996377945,
0.06802262365818024,
0.411399245262146,
-0.04614591225981712,
0.29296573996543884,
0.967697262763977,
-0.35569074749946594,
0.6928631067276001,
0.5518786907196045,
-0.1996336579322815,
0.8521397709846497,
-0.7695327401161194,
0.011712462641298771,
-0.2812751233577728,
0.376313179731369,
-0.8268502354621887,
-0.543121337890625,
0.7451008558273315,
-0.6490852236747742,
0.3306139409542084,
-0.2605670392513275,
-0.5345783829689026,
-0.7647356390953064,
-0.6656913161277771,
0.14881688356399536,
0.4563349187374115,
-0.357151061296463,
0.4282991886138916,
0.622986376285553,
0.08335995674133301,
-0.38919204473495483,
-0.8268340826034546,
-0.11177350580692291,
-0.4208744764328003,
-0.8368097543716431,
0.41632014513015747,
-0.2774880528450012,
-0.09667807817459106,
0.2059187889099121,
0.16568394005298615,
-0.0317363478243351,
-0.0037431505043059587,
0.3330460488796234,
0.23147542774677277,
0.010058250278234482,
0.025312500074505806,
-0.12723000347614288,
-0.2370765656232834,
0.10734198242425919,
-0.1712026298046112,
0.25081372261047363,
-0.2922499179840088,
-0.06138256564736366,
-0.6552534699440002,
0.2146993726491928,
0.45176124572753906,
-0.26593896746635437,
0.6634706258773804,
0.7385664582252502,
-0.22634723782539368,
-0.0031470449175685644,
-0.4752962589263916,
-0.12792783975601196,
-0.404653936624527,
0.03201551362872124,
-0.21016934514045715,
-0.6145628690719604,
0.9823219776153564,
0.16997377574443817,
0.009806212037801743,
0.6364564895629883,
0.41182297468185425,
-0.036122728139162064,
0.6442093253135681,
0.34182414412498474,
-0.24412618577480316,
0.5556272268295288,
-0.6659237742424011,
-0.2633035182952881,
-0.8484741449356079,
-0.39944884181022644,
-0.5453987717628479,
-0.47349199652671814,
-0.8725131154060364,
-0.4520386755466461,
0.20208962261676788,
0.09783531725406647,
-0.1976815015077591,
0.5173819661140442,
-0.9504847526550293,
0.3021819293498993,
0.33709996938705444,
0.2787257730960846,
-0.10098540782928467,
0.1127626821398735,
0.0661320686340332,
0.17180883884429932,
-0.5949549078941345,
-0.24932365119457245,
1.1604002714157104,
0.4837041199207306,
0.5299585461616516,
-0.09306544065475464,
0.8779481053352356,
0.007684832438826561,
0.21409888565540314,
-0.530397355556488,
0.4712255895137787,
-0.02934967540204525,
-0.4637206196784973,
-0.1914365142583847,
-0.5257885456085205,
-1.0060548782348633,
-0.11420560628175735,
-0.3717147707939148,
-0.7144712209701538,
0.5770815014839172,
0.14479491114616394,
-0.2540339231491089,
0.3599165380001068,
-0.6667437553405762,
0.8454041481018066,
-0.036456357687711716,
-0.4456670880317688,
0.28206512331962585,
-1.0147268772125244,
0.1682673841714859,
0.196904718875885,
0.25743529200553894,
-0.4507669508457184,
0.02728758007287979,
0.912790060043335,
-0.8400216698646545,
0.8955481052398682,
-0.37159299850463867,
0.1796085387468338,
0.6570724844932556,
-0.3454081118106842,
0.4601886570453644,
0.10416926443576813,
-0.36854788661003113,
0.32647308707237244,
0.07369282841682434,
-0.3758088946342468,
-0.3716856837272644,
0.6604977250099182,
-0.7355766892433167,
0.06933020055294037,
-0.40435102581977844,
-0.4547387361526489,
0.0998806580901146,
0.20003384351730347,
0.23548902571201324,
0.3829856514930725,
0.0426209531724453,
0.15656843781471252,
0.4714474678039551,
-0.10391728579998016,
0.3094876706600189,
0.011056003160774708,
-0.06915684044361115,
-0.8298258781433105,
0.9293302893638611,
0.21406733989715576,
0.05725008249282837,
-0.03416464850306511,
0.48152074217796326,
-0.40390753746032715,
-0.06632975488901138,
-0.5397047400474548,
0.4492915868759155,
-0.37081378698349,
-0.40888547897338867,
-0.4696178734302521,
-0.09380482882261276,
-0.6851981282234192,
-0.13247954845428467,
-0.2720547914505005,
-0.4955955445766449,
-0.3783525228500366,
-0.17616043984889984,
1.0452736616134644,
0.4787873327732086,
-0.7022436261177063,
0.1426745355129242,
-0.4533259868621826,
0.2855992019176483,
-0.04719620570540428,
0.6530138850212097,
-0.10477414727210999,
-0.20743083953857422,
-0.15274277329444885,
0.11260978132486343,
-0.20708288252353668,
-0.6938912868499756,
0.28924474120140076,
-0.010450282134115696,
0.33243528008461,
0.09755195677280426,
0.19191370904445648,
0.7553511261940002,
-0.05524786189198494,
0.611324667930603,
0.2679005265235901,
-0.8015149831771851,
0.676220178604126,
-0.4722280204296112,
0.1639387607574463,
0.758937656879425,
0.31918013095855713,
-0.5481164455413818,
-0.11923164129257202,
-0.9511317610740662,
-0.8441798686981201,
0.8436611890792847,
0.39353325963020325,
0.05424153059720993,
0.16439571976661682,
0.5632272362709045,
-0.28646641969680786,
0.26605895161628723,
-0.6368078589439392,
-0.8128274083137512,
-0.4324864149093628,
-0.3997173011302948,
0.004584524314850569,
-0.08448339253664017,
-0.23311938345432281,
-0.6675153970718384,
0.6999238133430481,
-0.17221863567829132,
0.3376966714859009,
0.5092072486877441,
0.44634515047073364,
-0.24126537144184113,
0.005367680918425322,
0.31326693296432495,
0.392439067363739,
-0.23113341629505157,
-0.2318510115146637,
-0.14937584102153778,
-0.6409711241722107,
-0.12766507267951965,
0.5204620361328125,
-0.2960176467895508,
-0.07765863090753555,
0.32675793766975403,
0.8484867215156555,
-0.028247956186532974,
-0.21675150096416473,
0.6025084853172302,
-0.11348659545183182,
-0.4076913297176361,
-0.4571731388568878,
0.020199323073029518,
0.0980776697397232,
0.21077610552310944,
0.06288264691829681,
0.09424512088298798,
-0.1323508620262146,
-0.426983505487442,
0.3988650143146515,
0.2611571252346039,
-0.4285706579685211,
-0.4614727199077606,
0.5685919523239136,
0.05392109230160713,
-0.11303278803825378,
0.479705274105072,
-0.18511414527893066,
-0.6185781359672546,
0.8838980197906494,
0.1393212527036667,
0.8258564472198486,
-0.18043971061706543,
0.32318776845932007,
0.7317250967025757,
0.24090802669525146,
-0.05474633350968361,
0.533027172088623,
-0.20752428472042084,
-0.6495990753173828,
-0.013576171360909939,
-0.5718684196472168,
-0.08852415531873703,
0.025858711451292038,
-0.8442823886871338,
0.43973788619041443,
-0.4675856828689575,
-0.2822642922401428,
-0.015869630500674248,
0.3760603964328766,
-0.7021024227142334,
0.1897163838148117,
-0.06670680642127991,
1.0576300621032715,
-1.042462944984436,
0.48735275864601135,
0.7068357467651367,
-0.6154654622077942,
-1.2177343368530273,
-0.13804809749126434,
0.1480092853307724,
-0.6089348196983337,
0.19882769882678986,
0.20441056787967682,
0.4587132930755615,
-0.04808630049228668,
-0.9070602059364319,
-0.7363840341567993,
1.2030202150344849,
0.08608046919107437,
-0.20415261387825012,
0.3877227306365967,
0.19022001326084137,
0.6475123167037964,
-0.4065050482749939,
0.3527944087982178,
0.6722988486289978,
0.7179268598556519,
0.3354478180408478,
-0.7799270749092102,
0.26383528113365173,
-0.5350010991096497,
-0.14526167511940002,
0.024469854310154915,
-1.0211316347122192,
0.6481684446334839,
-0.18725210428237915,
-0.057418860495090485,
0.04035387560725212,
0.5999596118927002,
0.44932758808135986,
0.5058647990226746,
0.5143290162086487,
0.7913486957550049,
0.808503270149231,
-0.367801308631897,
1.2174676656723022,
-0.23695653676986694,
0.6567133665084839,
0.7551348805427551,
-0.010280570015311241,
0.47881191968917847,
0.23987892270088196,
-0.3157151937484741,
0.5329324007034302,
0.6226446628570557,
-0.42465105652809143,
0.23378130793571472,
0.3810451328754425,
-0.064137302339077,
-0.07860703766345978,
-0.323219358921051,
-0.5436180830001831,
0.35204046964645386,
0.2207123339176178,
-0.3433418273925781,
-0.01403364259749651,
-0.032431792467832565,
0.4455024003982544,
0.0014139320701360703,
-0.2999132573604584,
0.647674024105072,
0.013417783193290234,
-0.43612056970596313,
0.5117201805114746,
-0.22842524945735931,
0.6094760894775391,
-0.5698286890983582,
0.0991232693195343,
-0.0807294175028801,
0.1761961281299591,
-0.6208957433700562,
-1.156015396118164,
0.4138706922531128,
-0.11282666027545929,
-0.26815131306648254,
-0.3580416738986969,
0.6755885481834412,
-0.49141964316368103,
-0.75367671251297,
0.2451823353767395,
0.10802796483039856,
0.3221420347690582,
0.16514411568641663,
-1.2542263269424438,
0.599800705909729,
0.1641206592321396,
-0.43914690613746643,
0.06322585791349411,
0.5699241757392883,
0.10834009200334549,
0.5244964361190796,
0.7136856913566589,
0.2871320843696594,
-0.2177969068288803,
0.04402241110801697,
1.0862730741500854,
-0.5397080779075623,
-0.4464094638824463,
-0.691604733467102,
0.8575587272644043,
-0.38864725828170776,
-0.4857037365436554,
0.6388259530067444,
0.7744346261024475,
0.8633196353912354,
0.051191460341215134,
0.7684051394462585,
-0.677026629447937,
0.7005842328071594,
-0.18851646780967712,
0.9256618618965149,
-0.6743773221969604,
-0.07097111642360687,
-0.699326753616333,
-0.532139003276825,
-0.433108925819397,
0.6299681067466736,
-0.2098526507616043,
0.20207110047340393,
0.29140061140060425,
0.9460150003433228,
0.029924925416707993,
0.1222047284245491,
-0.2422637939453125,
0.316281259059906,
0.2551894187927246,
0.5596611499786377,
0.42459842562675476,
-0.8812475204467773,
0.41700223088264465,
-0.8141188025474548,
-0.3319791555404663,
0.0348319448530674,
-0.892155647277832,
-0.859697163105011,
-0.9207502007484436,
-0.6731975674629211,
-0.7754198908805847,
-0.31332069635391235,
1.0531349182128906,
0.7171226739883423,
-0.7127658128738403,
-0.30071404576301575,
0.0400637611746788,
0.3332275450229645,
-0.06290724873542786,
-0.33741310238838196,
0.6732639670372009,
0.38493576645851135,
-0.5979952812194824,
-0.17053957283496857,
-0.011230645701289177,
0.2099439948797226,
0.11606850475072861,
-0.051443468779325485,
-0.09517832845449448,
-0.3103545308113098,
0.34206563234329224,
0.5226650238037109,
-0.36492007970809937,
-0.14223456382751465,
-0.23494228720664978,
0.017722340300679207,
0.1854674518108368,
0.459748238325119,
-0.5696837306022644,
0.26754099130630493,
0.6339128613471985,
0.2308788299560547,
0.38997378945350647,
0.2586069107055664,
0.0015433748485520482,
-0.4818916618824005,
0.09920438379049301,
0.012229472398757935,
0.31015869975090027,
0.3606075942516327,
-0.4794616997241974,
0.7838124632835388,
0.5821923017501831,
-0.558910608291626,
-0.7956082224845886,
-0.17280340194702148,
-1.3378711938858032,
0.16003075242042542,
1.0689477920532227,
-0.020908165723085403,
-0.6090387105941772,
0.004807737190276384,
-0.21852484345436096,
0.1364355832338333,
-0.6066613793373108,
0.4338974058628082,
0.46843233704566956,
-0.16409319639205933,
0.09625038504600525,
-0.28261077404022217,
0.5937492251396179,
-0.0469169057905674,
-0.9575719237327576,
0.18053245544433594,
0.4128294885158539,
0.4536568224430084,
0.3688783347606659,
0.7449350953102112,
-0.24472565948963165,
0.08786919713020325,
-0.06875518709421158,
0.309740275144577,
-0.24844902753829956,
0.08168420195579529,
-0.3831908106803894,
-0.09844469279050827,
-0.5374250411987305,
-0.20547091960906982
]
|
huggingartists/selena-gomez | huggingartists | 2022-10-25T09:43:28Z | 261 | 1 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/622e6858ce207990b4eb25cd9cdf8f8c.1000x1000x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.5819088816642761,
-0.5254605412483215,
0.088847316801548,
0.37453606724739075,
-0.2345532774925232,
0.05175979435443878,
-0.31838321685791016,
-0.47081491351127625,
0.9197383522987366,
0.345053493976593,
-0.934374213218689,
-0.8536442518234253,
-0.5527494549751282,
0.1505141258239746,
-0.17411762475967407,
1.2719143629074097,
-0.1890706717967987,
-0.30910784006118774,
-0.3395858705043793,
-0.16854919493198395,
-0.2428717166185379,
-0.3197202682495117,
-0.28180229663848877,
-0.29119834303855896,
0.3913433849811554,
0.5118248462677002,
0.7393820881843567,
0.8320662975311279,
0.5735907554626465,
0.35433751344680786,
-0.14547286927700043,
-0.015174560248851776,
-0.37898892164230347,
-0.058164238929748535,
0.1155405268073082,
-0.28961166739463806,
-0.7048172950744629,
0.20676855742931366,
0.5959690809249878,
0.40055474638938904,
-0.06115744635462761,
0.4883959889411926,
0.0181209035217762,
0.8572481274604797,
-0.21967154741287231,
0.4695068895816803,
-0.29185613989830017,
-0.16444791853427887,
-0.2709682285785675,
0.08965687453746796,
0.17033778131008148,
-0.6393872499465942,
0.005598494317382574,
-0.6954455375671387,
0.1105959340929985,
0.01336128730326891,
1.052420973777771,
0.08170107752084732,
0.09752578288316727,
-0.23800446093082428,
-0.21517422795295715,
0.5246501564979553,
-0.5377746224403381,
0.0326351672410965,
0.5199419260025024,
0.1484176218509674,
-0.003252457594498992,
-0.5950557589530945,
-0.6195526719093323,
0.05745355039834976,
-0.12118421494960785,
0.2528999149799347,
-0.17384327948093414,
-0.34573060274124146,
0.5062148571014404,
0.5165464282035828,
-0.5128223896026611,
-0.24161994457244873,
-0.5644164681434631,
-0.10430213063955307,
1.1615649461746216,
0.12699560821056366,
0.44622331857681274,
-0.5349418520927429,
-0.2628509998321533,
-0.3949757516384125,
-0.2951349914073944,
0.3548847436904907,
0.5610367059707642,
0.4665791094303131,
-0.9828365445137024,
0.6332701444625854,
-0.13940826058387756,
0.5364172458648682,
0.12555034458637238,
-0.04385329782962799,
0.8127179741859436,
-0.40257909893989563,
-0.08951880037784576,
-0.1487688571214676,
1.0519851446151733,
0.6529200673103333,
0.18837131559848785,
0.041947223246097565,
-0.040483664721250534,
0.10032311081886292,
-0.13224375247955322,
-0.8044897317886353,
-0.3973802328109741,
0.6669123768806458,
-0.5609195232391357,
-0.5634899139404297,
0.15388643741607666,
-1.0192577838897705,
-0.20413526892662048,
-0.30776873230934143,
0.20331096649169922,
-0.3804624378681183,
-0.4980787932872772,
0.1516461968421936,
-0.28675854206085205,
0.06698723137378693,
0.05456874147057533,
-0.6004565358161926,
0.15981322526931763,
0.5303291082382202,
0.7319819331169128,
0.1709192842245102,
-0.32618317008018494,
-0.18349306285381317,
-0.17809300124645233,
-0.10791781544685364,
0.6804080605506897,
-0.25083300471305847,
-0.3151482045650482,
-0.2055593878030777,
0.38510188460350037,
-0.13508322834968567,
-0.2424488216638565,
0.9573870897293091,
0.033165495842695236,
0.17190498113632202,
-0.5751932263374329,
-0.41832414269447327,
0.019765183329582214,
0.20978465676307678,
-0.7939721941947937,
1.063461422920227,
0.3739021122455597,
-0.9391035437583923,
0.1512073129415512,
-0.8038469552993774,
-0.3119301199913025,
0.014343705028295517,
0.10723871737718582,
-0.7663779258728027,
-0.1868186593055725,
0.17707563936710358,
0.7145750522613525,
-0.34000563621520996,
0.046892642974853516,
-0.6232484579086304,
-0.09593436866998672,
0.38719284534454346,
0.27350425720214844,
1.1855669021606445,
0.11453792452812195,
-0.10507948696613312,
0.07205332815647125,
-0.9521780014038086,
0.15501099824905396,
0.4946133494377136,
-0.1311134248971939,
-0.09195557236671448,
-0.24949468672275543,
0.42128607630729675,
0.345047265291214,
0.10475894063711166,
-0.6069487929344177,
0.3381965458393097,
-0.1927298605442047,
0.47477173805236816,
0.7007956504821777,
-0.01917452923953533,
0.36446064710617065,
-0.6159331202507019,
0.43523597717285156,
0.046413421630859375,
0.37200286984443665,
-0.044030118733644485,
-0.5364091396331787,
-0.4439571499824524,
-0.28545108437538147,
0.3728395998477936,
0.47683972120285034,
-0.6380560398101807,
1.0089530944824219,
-0.3735490143299103,
-0.8829976916313171,
-0.6410225629806519,
0.17299595475196838,
0.22314894199371338,
0.560949444770813,
0.39318493008613586,
-0.39350852370262146,
-0.6573492884635925,
-0.6741257905960083,
0.10319635272026062,
-0.24958430230617523,
0.14890965819358826,
0.44314679503440857,
0.8560726642608643,
-0.26307108998298645,
0.8510225415229797,
-0.6694617867469788,
-0.2604570686817169,
-0.2721865475177765,
-0.37461763620376587,
0.39467886090278625,
0.8175678253173828,
0.7406632304191589,
-0.8630098700523376,
-0.4886211156845093,
-0.30751556158065796,
-0.727325975894928,
-0.09477933496236801,
-0.042215507477521896,
-0.30231568217277527,
0.014488874934613705,
0.09934575110673904,
-0.714444637298584,
0.521202027797699,
0.5089636445045471,
-0.719420850276947,
0.5109240412712097,
0.08780952543020248,
0.01865115389227867,
-1.213327169418335,
0.3237346112728119,
0.2504577934741974,
0.03634330630302429,
-0.625109851360321,
-0.18624474108219147,
0.009338215924799442,
0.004481361713260412,
-0.16901414096355438,
0.602389395236969,
-0.3195587992668152,
0.2551448345184326,
0.1416902095079422,
0.08029434829950333,
0.15874873101711273,
0.4557887613773346,
-0.04704185575246811,
0.2563343346118927,
1.0003694295883179,
-0.3802124261856079,
0.6720147132873535,
0.6333348751068115,
-0.20024926960468292,
0.8411165475845337,
-0.8456002473831177,
0.010369769297540188,
-0.311806857585907,
0.44470879435539246,
-0.8618011474609375,
-0.5713809728622437,
0.7890850901603699,
-0.6809871196746826,
0.3287324607372284,
-0.23162852227687836,
-0.5685409307479858,
-0.885271430015564,
-0.6506192088127136,
0.08091206848621368,
0.5289613008499146,
-0.4268234968185425,
0.40885376930236816,
0.6409329771995544,
0.050400182604789734,
-0.3041549623012543,
-0.7786228060722351,
-0.16068609058856964,
-0.3979829251766205,
-0.9080807566642761,
0.5010454058647156,
-0.3308030664920807,
-0.08572331070899963,
0.13523197174072266,
0.051081620156764984,
0.09635314345359802,
-0.0012478616554290056,
0.4207119047641754,
0.39212971925735474,
0.11174214631319046,
0.03839549422264099,
-0.039419449865818024,
-0.1910136640071869,
0.11685100197792053,
-0.159467414021492,
0.3160702884197235,
-0.32775187492370605,
-0.127872034907341,
-0.6391811370849609,
0.22080135345458984,
0.46191415190696716,
-0.21953719854354858,
0.7080785632133484,
0.7595752477645874,
-0.22372037172317505,
-0.020338566973805428,
-0.4807855188846588,
-0.12000079452991486,
-0.40745946764945984,
0.012328136712312698,
-0.2452002465724945,
-0.5872641205787659,
0.9850728511810303,
0.21720781922340393,
0.03989260643720627,
0.6671343445777893,
0.4775914251804352,
-0.1259826272726059,
0.6693499684333801,
0.350031316280365,
-0.23376311361789703,
0.5308857560157776,
-0.6723613142967224,
-0.21635675430297852,
-0.8644835352897644,
-0.4738740026950836,
-0.5603261590003967,
-0.48749372363090515,
-0.8161608576774597,
-0.452148973941803,
0.18405736982822418,
0.17289187014102936,
-0.256515771150589,
0.5655194520950317,
-0.9316297769546509,
0.3424806594848633,
0.3505078852176666,
0.35071808099746704,
-0.12127706408500671,
0.055413294583559036,
0.12521734833717346,
0.15287736058235168,
-0.5798900723457336,
-0.2669447958469391,
1.150457739830017,
0.5418875813484192,
0.5518803596496582,
-0.06435585767030716,
0.8202918171882629,
0.036051053553819656,
0.17363335192203522,
-0.4597010016441345,
0.49108102917671204,
0.03954916074872017,
-0.5187858939170837,
-0.18375268578529358,
-0.47830119729042053,
-0.882340669631958,
-0.11040595173835754,
-0.4132770597934723,
-0.7136425971984863,
0.5079397559165955,
0.10199607163667679,
-0.23372574150562286,
0.29366686940193176,
-0.7099785804748535,
0.8630852699279785,
-0.10722319036722183,
-0.45416656136512756,
0.3333323299884796,
-1.0360618829727173,
0.18456608057022095,
0.17503386735916138,
0.2608067989349365,
-0.42882394790649414,
0.034091077744960785,
1.010657548904419,
-0.7420720458030701,
0.9119148850440979,
-0.35682591795921326,
0.12687958776950836,
0.572892427444458,
-0.3506351411342621,
0.5128944516181946,
0.13073424994945526,
-0.28481289744377136,
0.3526568114757538,
0.016179407015442848,
-0.4594705104827881,
-0.447831392288208,
0.7282935380935669,
-0.6929745674133301,
0.05815114825963974,
-0.32291537523269653,
-0.45078548789024353,
0.01868029497563839,
0.167771577835083,
0.2638668417930603,
0.2651636004447937,
-0.003663045121356845,
0.11480076611042023,
0.4571866989135742,
-0.1304580122232437,
0.3071090877056122,
0.04314233735203743,
-0.129428431391716,
-0.7537445425987244,
0.8932704329490662,
0.1668788194656372,
0.05310716852545738,
-0.08215668797492981,
0.3712628185749054,
-0.4281439483165741,
-0.10658688843250275,
-0.5996254086494446,
0.4881032705307007,
-0.41353070735931396,
-0.3996349573135376,
-0.5344291925430298,
-0.1813313513994217,
-0.6699978113174438,
-0.17283053696155548,
-0.2499294877052307,
-0.5836934447288513,
-0.3324810862541199,
-0.24707530438899994,
1.030110239982605,
0.36750656366348267,
-0.609504759311676,
0.1705138087272644,
-0.538517415523529,
0.3116281032562256,
-0.12523961067199707,
0.6540356278419495,
-0.08439962565898895,
-0.3093344569206238,
-0.1622903048992157,
0.10356772691011429,
-0.19011560082435608,
-0.7429701685905457,
0.30763065814971924,
-0.026206113398075104,
0.36230942606925964,
0.08432372659444809,
0.10392793267965317,
0.6887327432632446,
-0.08409842103719711,
0.6359021067619324,
0.3151995539665222,
-0.8330675959587097,
0.731446385383606,
-0.5051722526550293,
0.1096246987581253,
0.733332097530365,
0.3723297119140625,
-0.5931641459465027,
-0.16044394671916962,
-1.0062098503112793,
-0.89019376039505,
0.8239263296127319,
0.4589281976222992,
0.06761077791452408,
0.19934514164924622,
0.4892614483833313,
-0.22054557502269745,
0.30835431814193726,
-0.6814967393875122,
-0.8233445882797241,
-0.4081481099128723,
-0.33712926506996155,
-0.018949786201119423,
-0.056683097034692764,
-0.22833183407783508,
-0.713649570941925,
0.761672854423523,
-0.10832100361585617,
0.3398953974246979,
0.4006580114364624,
0.37066954374313354,
-0.24337081611156464,
-0.015164287760853767,
0.28436943888664246,
0.3297088146209717,
-0.2669309675693512,
-0.31805989146232605,
-0.17515088617801666,
-0.584322988986969,
-0.1169532984495163,
0.5062421560287476,
-0.3881581425666809,
-0.03676317632198334,
0.28062430024147034,
0.9093834757804871,
0.04278460144996643,
-0.30897215008735657,
0.5694790482521057,
-0.03751533105969429,
-0.36932048201560974,
-0.42196428775787354,
0.05278211086988449,
0.1656675934791565,
0.24506300687789917,
0.049757689237594604,
0.11174533516168594,
-0.13849787414073944,
-0.3891335427761078,
0.3925436735153198,
0.23656107485294342,
-0.3557801842689514,
-0.49957746267318726,
0.6019608378410339,
0.059495169669389725,
-0.14212550222873688,
0.43278858065605164,
-0.12358856946229935,
-0.6372230052947998,
0.8338388800621033,
0.1867053508758545,
0.7707961201667786,
-0.17920172214508057,
0.3852284550666809,
0.7277666330337524,
0.17552585899829865,
-0.10418669134378433,
0.5741841793060303,
-0.18639695644378662,
-0.6178869605064392,
0.010807781480252743,
-0.6128556132316589,
-0.10670800507068634,
0.00991516001522541,
-0.7905961871147156,
0.4421371519565582,
-0.4495547115802765,
-0.24182476103305817,
0.09906189143657684,
0.332487553358078,
-0.7403742074966431,
0.16615043580532074,
-0.09477386623620987,
1.006565809249878,
-1.0801011323928833,
0.5010651350021362,
0.6351741552352905,
-0.7066419124603271,
-1.1659140586853027,
-0.18197642266750336,
0.1738744080066681,
-0.5634542107582092,
0.2453148365020752,
0.14260734617710114,
0.5129883289337158,
-0.08744339644908905,
-0.8929964900016785,
-0.757267951965332,
1.1868449449539185,
0.04494362697005272,
-0.25713402032852173,
0.2765634059906006,
0.15375417470932007,
0.7072616219520569,
-0.41844287514686584,
0.33770403265953064,
0.6527201533317566,
0.6961488723754883,
0.35975182056427,
-0.7088004350662231,
0.26484665274620056,
-0.6195909976959229,
-0.1721770465373993,
0.06088068336248398,
-1.0134652853012085,
0.6874564290046692,
-0.1943412572145462,
-0.04227638617157936,
0.002450560685247183,
0.6433928608894348,
0.4419742226600647,
0.43050679564476013,
0.44980138540267944,
0.7160739302635193,
0.8765660524368286,
-0.3350823223590851,
1.1775511503219604,
-0.31300419569015503,
0.624488890171051,
0.833907425403595,
-0.024854818359017372,
0.5043520331382751,
0.2668229639530182,
-0.3409929573535919,
0.5433910489082336,
0.6433627009391785,
-0.4883793294429779,
0.23986732959747314,
0.3875560760498047,
-0.036024417728185654,
-0.045890968292951584,
-0.2381456196308136,
-0.5854384303092957,
0.2728884220123291,
0.22629335522651672,
-0.4417995810508728,
-0.015442287549376488,
0.013591108843684196,
0.3736531138420105,
-0.02561967819929123,
-0.27222517132759094,
0.5768773555755615,
0.004024154040962458,
-0.41068270802497864,
0.5220164060592651,
-0.2036101222038269,
0.6567957401275635,
-0.528961181640625,
0.20084941387176514,
-0.08278870582580566,
0.10528701543807983,
-0.6471972465515137,
-1.1065324544906616,
0.41800564527511597,
0.004342308267951012,
-0.3044394850730896,
-0.38662466406822205,
0.7470661997795105,
-0.47984930872917175,
-0.8255105018615723,
0.2360321581363678,
0.22337134182453156,
0.30514052510261536,
0.15081261098384857,
-1.262406349182129,
0.5814993977546692,
0.16903738677501678,
-0.41579243540763855,
0.11785713583230972,
0.46992436051368713,
0.1248219832777977,
0.535437285900116,
0.7355647683143616,
0.23215952515602112,
-0.20528870820999146,
0.08441662788391113,
1.1198067665100098,
-0.555510401725769,
-0.4392176866531372,
-0.7381747364997864,
0.8839542865753174,
-0.3876907527446747,
-0.3815925717353821,
0.757354736328125,
0.7693532109260559,
0.8494403958320618,
-0.0366910919547081,
0.7444499135017395,
-0.6492040157318115,
0.7558974623680115,
-0.1758047193288803,
0.9103586673736572,
-0.6269218921661377,
-0.00765911815688014,
-0.8060325980186462,
-0.5220791697502136,
-0.42093196511268616,
0.644960880279541,
-0.195730060338974,
0.14474675059318542,
0.26164767146110535,
0.931016206741333,
0.05107256397604942,
0.18000328540802002,
-0.31347954273223877,
0.24132081866264343,
0.2756405472755432,
0.5522205233573914,
0.4219534993171692,
-0.9001539349555969,
0.33413320779800415,
-0.7849475145339966,
-0.30690672993659973,
0.06435012817382812,
-0.8229477405548096,
-0.9127727150917053,
-0.9538546800613403,
-0.6491824984550476,
-0.8300712704658508,
-0.2975723147392273,
1.1220405101776123,
0.6633573174476624,
-0.725278377532959,
-0.22709468007087708,
0.03955558314919472,
0.36548200249671936,
-0.05191462114453316,
-0.3065410256385803,
0.6790044903755188,
0.3442140817642212,
-0.6696088314056396,
-0.10313425213098526,
-0.037725020200014114,
0.27494779229164124,
0.05133931711316109,
-0.07933467626571655,
-0.08797858655452728,
-0.2676578462123871,
0.3606030344963074,
0.4789649546146393,
-0.3203567564487457,
-0.06257699429988861,
-0.15577156841754913,
0.006935365032404661,
0.19165411591529846,
0.42199790477752686,
-0.5436055064201355,
0.13530892133712769,
0.6727750897407532,
0.2521631121635437,
0.44646257162094116,
0.22303354740142822,
-0.04389264062047005,
-0.47378748655319214,
0.07110801339149475,
0.027631253004074097,
0.30801793932914734,
0.3676813244819641,
-0.48152273893356323,
0.8093568086624146,
0.5401172637939453,
-0.49698376655578613,
-0.898994505405426,
-0.16237501800060272,
-1.3513717651367188,
0.10223555564880371,
1.0698469877243042,
-0.003379707457497716,
-0.6122958064079285,
0.09149841964244843,
-0.1931431144475937,
0.10076280683279037,
-0.615822970867157,
0.471349835395813,
0.5374324321746826,
-0.1380506008863449,
0.15335407853126526,
-0.2818497121334076,
0.6178421378135681,
-0.04201703518629074,
-0.9793354868888855,
0.15527640283107758,
0.4386911988258362,
0.4330775737762451,
0.3656105101108551,
0.7610750198364258,
-0.2838653326034546,
0.07380297034978867,
-0.07584807276725769,
0.2928182780742645,
-0.23338350653648376,
-0.07685719430446625,
-0.33882421255111694,
-0.10105724632740021,
-0.5842620134353638,
-0.1828598529100418
]
|
huggingartists/sia | huggingartists | 2022-10-25T09:44:37Z | 261 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/aba931aaf48b7728f3f4869b13eb9741.1000x1000x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6049638986587524,
-0.4998585879802704,
0.11350617557764053,
0.301546186208725,
-0.241756871342659,
-0.005251412279903889,
-0.2604921758174896,
-0.445102334022522,
0.8853487968444824,
0.3436257243156433,
-0.8901130557060242,
-0.815804123878479,
-0.5862849354743958,
0.1182694137096405,
-0.06816555559635162,
1.2826402187347412,
-0.18014943599700928,
-0.340145081281662,
-0.30969297885894775,
-0.2847517728805542,
-0.31452348828315735,
-0.28685346245765686,
-0.32209667563438416,
-0.3153412640094757,
0.3525904715061188,
0.5010199546813965,
0.6925660371780396,
0.8638076186180115,
0.4934670925140381,
0.356283038854599,
-0.13521762192249298,
0.010465032421052456,
-0.3818817138671875,
-0.12389621138572693,
0.1714410036802292,
-0.2990575432777405,
-0.721605122089386,
0.25765666365623474,
0.589536190032959,
0.41039642691612244,
-0.03219872713088989,
0.5182666778564453,
0.07077545672655106,
0.854792594909668,
-0.3115845024585724,
0.5056673288345337,
-0.2693842947483063,
-0.15930254757404327,
-0.2960059344768524,
0.0354548804461956,
0.17002081871032715,
-0.6136470437049866,
0.010517779737710953,
-0.7406386733055115,
0.00034837384009733796,
-0.01755559630692005,
1.0078701972961426,
0.11098883301019669,
0.08103255182504654,
-0.19776417315006256,
-0.17798970639705658,
0.5128657817840576,
-0.6035203337669373,
-0.020573293790221214,
0.5600368976593018,
0.1153390109539032,
0.0028423750773072243,
-0.6072907447814941,
-0.5970044732093811,
0.09658815711736679,
-0.15409424901008606,
0.27404850721359253,
-0.14962433278560638,
-0.3309011459350586,
0.5346550345420837,
0.5294405221939087,
-0.49994000792503357,
-0.25893011689186096,
-0.5696954727172852,
-0.12500780820846558,
1.1832807064056396,
0.1392655223608017,
0.43858081102371216,
-0.4594908356666565,
-0.2353804111480713,
-0.3773192763328552,
-0.300510436296463,
0.35908523201942444,
0.5513942241668701,
0.4199729561805725,
-1.0172921419143677,
0.6260976195335388,
-0.1554080843925476,
0.4970461130142212,
0.15429046750068665,
-0.0713038221001625,
0.8211926221847534,
-0.38531604409217834,
-0.12700583040714264,
-0.10075406730175018,
1.05897855758667,
0.6632937788963318,
0.15980619192123413,
0.10444954037666321,
-0.048473745584487915,
0.046589117497205734,
-0.1767967939376831,
-0.8572195768356323,
-0.3739165961742401,
0.6277453899383545,
-0.5894891023635864,
-0.5882776975631714,
0.13986778259277344,
-0.9961947202682495,
-0.23381522297859192,
-0.3041885793209076,
0.2751433551311493,
-0.3592148721218109,
-0.530633807182312,
0.13069196045398712,
-0.25467804074287415,
0.14345517754554749,
0.02975829690694809,
-0.590478777885437,
0.20083940029144287,
0.5559773445129395,
0.771574079990387,
0.20105725526809692,
-0.32463303208351135,
-0.2940595746040344,
-0.18689730763435364,
-0.13025695085525513,
0.6787644028663635,
-0.30147263407707214,
-0.341034859418869,
-0.21645116806030273,
0.3695988655090332,
-0.1269758641719818,
-0.2749917507171631,
0.8560636043548584,
0.054144810885190964,
0.20074118673801422,
-0.5654849410057068,
-0.43006449937820435,
-0.016349196434020996,
0.2451668381690979,
-0.7804246544837952,
1.0612677335739136,
0.30372354388237,
-0.9877474308013916,
0.19101686775684357,
-0.8188039660453796,
-0.29898181557655334,
0.023947590962052345,
0.06380082666873932,
-0.7937458157539368,
-0.18701933324337006,
0.1842866837978363,
0.7269970774650574,
-0.3278830945491791,
0.028634387999773026,
-0.6064815521240234,
-0.16013085842132568,
0.3634314239025116,
0.22899074852466583,
1.1877999305725098,
0.12784253060817719,
-0.18795828521251678,
0.10868621617555618,
-0.9376290440559387,
0.12386201322078705,
0.4518664479255676,
-0.1350405216217041,
-0.11686255782842636,
-0.24236272275447845,
0.3673233389854431,
0.2791641354560852,
0.10547817498445511,
-0.5828210115432739,
0.3895830810070038,
-0.21380698680877686,
0.45898711681365967,
0.7694154381752014,
0.017975972965359688,
0.3503310978412628,
-0.6203224062919617,
0.4284731447696686,
0.06463409960269928,
0.35018599033355713,
-0.012535723857581615,
-0.5839716196060181,
-0.43633243441581726,
-0.2721291780471802,
0.3173518180847168,
0.4732695519924164,
-0.6331501603126526,
0.9885795712471008,
-0.30934378504753113,
-0.8616253733634949,
-0.6477322578430176,
0.1324693262577057,
0.20124977827072144,
0.5082545876502991,
0.3593882620334625,
-0.430746465921402,
-0.5639393925666809,
-0.6409478187561035,
0.11606763303279877,
-0.26588407158851624,
0.20276287198066711,
0.42194226384162903,
0.8175427913665771,
-0.26699191331863403,
0.8244280219078064,
-0.6776552796363831,
-0.27318382263183594,
-0.23316673934459686,
-0.3173699975013733,
0.34440985321998596,
0.7916174530982971,
0.7049155831336975,
-0.8745415806770325,
-0.49711284041404724,
-0.26889246702194214,
-0.721805989742279,
-0.11777123808860779,
-0.05680197849869728,
-0.2762093245983124,
0.027746468782424927,
0.1451776623725891,
-0.6830244660377502,
0.5757888555526733,
0.5170102119445801,
-0.7104922533035278,
0.5566615462303162,
0.10001266747713089,
0.029506972059607506,
-1.30789315700531,
0.3798988163471222,
0.24442583322525024,
0.03187815099954605,
-0.5805378556251526,
-0.20331604778766632,
-0.05884323641657829,
-0.061215780675411224,
-0.12308976799249649,
0.6251129508018494,
-0.3366433084011078,
0.2535192370414734,
0.1144302636384964,
0.052187662571668625,
0.09197751432657242,
0.46716514229774475,
-0.08276686072349548,
0.3407418131828308,
1.0065494775772095,
-0.3826398253440857,
0.6323947906494141,
0.5924712419509888,
-0.18841320276260376,
0.8364179134368896,
-0.8281344175338745,
0.021917469799518585,
-0.28511375188827515,
0.40320923924446106,
-0.8154743909835815,
-0.524880051612854,
0.818973183631897,
-0.6849130392074585,
0.36920976638793945,
-0.23547928035259247,
-0.5081069469451904,
-0.7768043279647827,
-0.691264808177948,
0.16007041931152344,
0.5226358771324158,
-0.370034396648407,
0.4254678189754486,
0.644575834274292,
0.0585194006562233,
-0.37897586822509766,
-0.7488193511962891,
-0.1534658968448639,
-0.4157252311706543,
-0.8218697905540466,
0.4271247684955597,
-0.3919568955898285,
-0.10917732119560242,
0.15897688269615173,
0.09884730726480484,
0.106577068567276,
0.04897313192486763,
0.42783141136169434,
0.3312162160873413,
0.0589493066072464,
-0.009576736018061638,
-0.08569822460412979,
-0.2675900459289551,
0.0968017429113388,
-0.17138947546482086,
0.2648908197879791,
-0.3487844467163086,
-0.14165595173835754,
-0.6897697448730469,
0.1997072696685791,
0.500659167766571,
-0.2619774639606476,
0.6931309700012207,
0.8015966415405273,
-0.2653863728046417,
0.010685191489756107,
-0.49320659041404724,
-0.13922393321990967,
-0.4150283634662628,
0.02087903581559658,
-0.253743976354599,
-0.6081644892692566,
0.9656519889831543,
0.18805047869682312,
0.07569114118814468,
0.6865077018737793,
0.47792893648147583,
-0.05152197554707527,
0.7061815857887268,
0.41232848167419434,
-0.28600141406059265,
0.5081173181533813,
-0.6764077544212341,
-0.21010805666446686,
-0.8829453587532043,
-0.44466474652290344,
-0.4919402599334717,
-0.4913412928581238,
-0.871074378490448,
-0.4344119131565094,
0.22308649122714996,
0.13703013956546783,
-0.21217958629131317,
0.46305862069129944,
-0.9370623230934143,
0.305085688829422,
0.34285101294517517,
0.2647850513458252,
-0.1313742995262146,
0.054269835352897644,
0.11517398059368134,
0.15199944376945496,
-0.5569910407066345,
-0.27262288331985474,
1.1393475532531738,
0.5306824445724487,
0.55653977394104,
-0.10560964792966843,
0.843694806098938,
0.03127578645944595,
0.18415801227092743,
-0.5283075571060181,
0.5104706287384033,
0.006422137375921011,
-0.4594328701496124,
-0.16487719118595123,
-0.4862084686756134,
-0.8971004486083984,
-0.13754741847515106,
-0.40411150455474854,
-0.7352795004844666,
0.5239733457565308,
0.07772313058376312,
-0.2544384300708771,
0.389580637216568,
-0.6480618119239807,
0.8733315467834473,
-0.057156845927238464,
-0.4308525323867798,
0.2860194742679596,
-1.021104097366333,
0.19400562345981598,
0.16832518577575684,
0.2498493790626526,
-0.4478950798511505,
0.030120640993118286,
1.0153038501739502,
-0.8032272458076477,
0.9275786280632019,
-0.3761548697948456,
0.14702363312244415,
0.5911421179771423,
-0.3180367946624756,
0.4680291712284088,
0.11199725419282913,
-0.2901325225830078,
0.30675041675567627,
0.07916371524333954,
-0.46059662103652954,
-0.43263083696365356,
0.6878559589385986,
-0.7479944229125977,
0.04726215451955795,
-0.3714008033275604,
-0.4571878910064697,
0.05164163559675217,
0.16504718363285065,
0.2571249008178711,
0.37866637110710144,
0.031214557588100433,
0.14489100873470306,
0.46611320972442627,
-0.13661570847034454,
0.2495422065258026,
0.04289160296320915,
-0.06136499345302582,
-0.7557844519615173,
0.9475816488265991,
0.1904343217611313,
0.04637777432799339,
-0.08606714755296707,
0.42711931467056274,
-0.34355756640434265,
-0.11604278534650803,
-0.6246662139892578,
0.4818393290042877,
-0.39203307032585144,
-0.37168872356414795,
-0.5087894797325134,
-0.2003811150789261,
-0.6863468289375305,
-0.16384346783161163,
-0.24884924292564392,
-0.49931126832962036,
-0.33449816703796387,
-0.1989341676235199,
1.0216302871704102,
0.4870321750640869,
-0.6697310209274292,
0.12166156619787216,
-0.5456418395042419,
0.2720218300819397,
-0.07617610692977905,
0.6220381855964661,
-0.10000337660312653,
-0.309465616941452,
-0.1984453797340393,
0.08186200261116028,
-0.17029228806495667,
-0.7152644395828247,
0.27091577649116516,
-0.04509909451007843,
0.38305431604385376,
0.10825338959693909,
0.11901984363794327,
0.6924291849136353,
-0.05896443501114845,
0.6749581098556519,
0.27232253551483154,
-0.7939438819885254,
0.705750048160553,
-0.47067296504974365,
0.16557878255844116,
0.7396788597106934,
0.3886415660381317,
-0.5867947340011597,
-0.1282225102186203,
-0.9854651689529419,
-0.8722410798072815,
0.8106760382652283,
0.38874050974845886,
0.06549584865570068,
0.22850096225738525,
0.548586905002594,
-0.19080166518688202,
0.26148393750190735,
-0.6636799573898315,
-0.8404344320297241,
-0.376272052526474,
-0.36144793033599854,
-0.007058574818074703,
-0.10974327474832535,
-0.24265910685062408,
-0.6487523317337036,
0.8312129974365234,
-0.17792156338691711,
0.3279587924480438,
0.3924981355667114,
0.4045403301715851,
-0.21527568995952606,
-0.006749804597347975,
0.2784934341907501,
0.379958838224411,
-0.23861436545848846,
-0.3059467375278473,
-0.11583216488361359,
-0.6111745238304138,
-0.10207246989011765,
0.5048196315765381,
-0.4017902910709381,
-0.12918640673160553,
0.28318536281585693,
0.9137193560600281,
-0.012313703075051308,
-0.2679888606071472,
0.6056740283966064,
-0.08143610507249832,
-0.3810063898563385,
-0.38944143056869507,
0.02108589932322502,
0.14444003999233246,
0.2519663870334625,
0.048766765743494034,
0.10747276991605759,
-0.09080442786216736,
-0.4169937074184418,
0.39767128229141235,
0.24124005436897278,
-0.3872588872909546,
-0.5004381537437439,
0.5945178866386414,
0.07049813121557236,
-0.12508465349674225,
0.44038891792297363,
-0.18008361756801605,
-0.610460102558136,
0.8109031915664673,
0.1364227682352066,
0.8359458446502686,
-0.1453513503074646,
0.3650917410850525,
0.7386389374732971,
0.2032548040151596,
-0.04430357366800308,
0.5312111377716064,
-0.19943466782569885,
-0.621425986289978,
-0.05662485212087631,
-0.5772557258605957,
-0.11777810007333755,
0.08071357011795044,
-0.8217945098876953,
0.4416965842247009,
-0.5005632638931274,
-0.22052493691444397,
0.03510129079222679,
0.40019842982292175,
-0.7014795541763306,
0.1786324679851532,
-0.022986019030213356,
1.0261590480804443,
-1.0667692422866821,
0.45960733294487,
0.697838544845581,
-0.6884291768074036,
-1.214566946029663,
-0.10893916338682175,
0.21230371296405792,
-0.5859437584877014,
0.20397354662418365,
0.20173299312591553,
0.45747435092926025,
-0.08831138163805008,
-0.9072532653808594,
-0.6983769536018372,
1.227318286895752,
0.0475369393825531,
-0.19334518909454346,
0.3179406225681305,
0.10220424830913544,
0.6168136596679688,
-0.37301579117774963,
0.31407275795936584,
0.6561681032180786,
0.6703769564628601,
0.31965112686157227,
-0.7249764800071716,
0.3045062720775604,
-0.6491649150848389,
-0.23062676191329956,
0.04950481653213501,
-1.0498778820037842,
0.607664942741394,
-0.18731103837490082,
-0.04125383496284485,
0.03266587108373642,
0.6398216485977173,
0.4608614444732666,
0.44619324803352356,
0.4744149148464203,
0.7417183518409729,
0.8629314303398132,
-0.2991276979446411,
1.1754875183105469,
-0.2873065769672394,
0.5822920203208923,
0.8009024858474731,
-0.0052000307478010654,
0.508772611618042,
0.22885340452194214,
-0.312589168548584,
0.5490975975990295,
0.6534176468849182,
-0.430913507938385,
0.22431838512420654,
0.34481436014175415,
-0.07460284978151321,
-0.05584295094013214,
-0.2907834053039551,
-0.5989277362823486,
0.3177817165851593,
0.24574531614780426,
-0.3272055685520172,
0.03161148354411125,
-0.0031464488711208105,
0.37964633107185364,
-0.03398485481739044,
-0.28139233589172363,
0.6753360033035278,
0.04081705957651138,
-0.363250195980072,
0.4891625642776489,
-0.20249740779399872,
0.6966229677200317,
-0.5859928131103516,
0.14816837012767792,
-0.08731801807880402,
0.10039868950843811,
-0.6223986148834229,
-1.097058653831482,
0.40924882888793945,
-0.06517805904150009,
-0.24858121573925018,
-0.3304440677165985,
0.7791019678115845,
-0.4535203278064728,
-0.7771634459495544,
0.23262076079845428,
0.19839689135551453,
0.36192095279693604,
0.17043334245681763,
-1.289409875869751,
0.5795097351074219,
0.16386136412620544,
-0.4573381841182709,
0.1350889950990677,
0.5077104568481445,
0.1262034922838211,
0.5245517492294312,
0.700861930847168,
0.2634454667568207,
-0.24441444873809814,
0.054016247391700745,
1.1068923473358154,
-0.5350103378295898,
-0.47630995512008667,
-0.7194640636444092,
0.8939295411109924,
-0.3715250492095947,
-0.41058462858200073,
0.6743901371955872,
0.7496869564056396,
0.8495919704437256,
0.033996257930994034,
0.7835283875465393,
-0.6434844732284546,
0.6553773283958435,
-0.21892490983009338,
0.939466655254364,
-0.7083513736724854,
-0.05332105979323387,
-0.7124955654144287,
-0.5402916073799133,
-0.39909520745277405,
0.6425779461860657,
-0.21884526312351227,
0.16821470856666565,
0.25997722148895264,
0.9521002173423767,
0.026417693123221397,
0.13609907031059265,
-0.23688942193984985,
0.30129900574684143,
0.28059694170951843,
0.5422880053520203,
0.38852399587631226,
-0.9180986881256104,
0.33953726291656494,
-0.7642260789871216,
-0.3241705000400543,
0.0585048608481884,
-0.8323056101799011,
-0.8809771537780762,
-0.9746512174606323,
-0.6848281621932983,
-0.7992314696311951,
-0.29093751311302185,
1.1049201488494873,
0.7324895262718201,
-0.7228147983551025,
-0.23740412294864655,
0.10780180990695953,
0.290044903755188,
-0.05079374089837074,
-0.3220106065273285,
0.6689280867576599,
0.3487052917480469,
-0.6297619342803955,
-0.10543392598628998,
0.030251894146203995,
0.2589447796344757,
0.026918241754174232,
-0.10979058593511581,
-0.11643384397029877,
-0.25824156403541565,
0.35696130990982056,
0.5091118216514587,
-0.3182920515537262,
-0.09765500575304031,
-0.24137143790721893,
0.01663999818265438,
0.1434773951768875,
0.4635017216205597,
-0.5657719969749451,
0.1852451115846634,
0.6723591685295105,
0.3114473223686218,
0.4401700794696808,
0.17653796076774597,
0.01591324247419834,
-0.4596773684024811,
0.1025489866733551,
-0.01599995046854019,
0.32789427042007446,
0.3794201910495758,
-0.4966076612472534,
0.8152576088905334,
0.5747689008712769,
-0.5273923277854919,
-0.8463913798332214,
-0.17457866668701172,
-1.319673776626587,
0.10845105350017548,
1.0498074293136597,
-0.023323893547058105,
-0.6088600158691406,
0.10736636072397232,
-0.23907838761806488,
0.1160077229142189,
-0.5595411658287048,
0.4471282362937927,
0.49906182289123535,
-0.09094579517841339,
0.14305169880390167,
-0.3200888931751251,
0.6277908682823181,
-0.008825448341667652,
-1.0068259239196777,
0.1632736623287201,
0.4321817457675934,
0.4706667959690094,
0.33658039569854736,
0.8534258604049683,
-0.28697919845581055,
0.0921812355518341,
-0.07331575453281403,
0.24932920932769775,
-0.24230608344078064,
-0.018140213564038277,
-0.36843663454055786,
-0.13492773473262787,
-0.5001295208930969,
-0.2075594812631607
]
|
huggingartists/the-notorious-big | huggingartists | 2022-10-25T09:47:38Z | 261 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/664976b54a605d6ac0df2415a8ccac16.564x564x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6597886085510254,
-0.5687649250030518,
0.09694641083478928,
0.2769959568977356,
-0.2555336058139801,
0.010923773050308228,
-0.336078405380249,
-0.4847797453403473,
0.9027671217918396,
0.31891486048698425,
-0.8598465919494629,
-0.8143934607505798,
-0.6077024340629578,
0.1307738721370697,
-0.11126957833766937,
1.2727960348129272,
-0.17920997738838196,
-0.415492981672287,
-0.22914369404315948,
-0.23814187943935394,
-0.30966493487358093,
-0.3493180572986603,
-0.30924901366233826,
-0.27307096123695374,
0.4143126606941223,
0.4579325020313263,
0.7447134852409363,
0.9224268198013306,
0.5119143128395081,
0.35064780712127686,
-0.1335725635290146,
-0.0122020673006773,
-0.45218080282211304,
-0.13836447894573212,
0.15255185961723328,
-0.24684162437915802,
-0.655695915222168,
0.25946033000946045,
0.6226365566253662,
0.4110553562641144,
-0.08894544094800949,
0.4792148172855377,
0.015500880777835846,
0.8338334560394287,
-0.30585888028144836,
0.48516467213630676,
-0.27846142649650574,
-0.16670119762420654,
-0.2948777973651886,
0.07198578864336014,
0.16308024525642395,
-0.6154388785362244,
-0.04248273745179176,
-0.7281595468521118,
0.04259259253740311,
0.030657349154353142,
1.0521069765090942,
0.05494047701358795,
0.09633460640907288,
-0.1956840604543686,
-0.21993909776210785,
0.5019885301589966,
-0.5566901564598083,
0.0122901052236557,
0.5715664029121399,
0.13707086443901062,
0.0044081187807023525,
-0.6305431723594666,
-0.6095017194747925,
0.05185544118285179,
-0.15446653962135315,
0.258438378572464,
-0.22426548600196838,
-0.30125364661216736,
0.5829371809959412,
0.5943149924278259,
-0.516406238079071,
-0.16119663417339325,
-0.5604662299156189,
-0.16169197857379913,
1.1798275709152222,
0.13440433144569397,
0.3733673095703125,
-0.4195713996887207,
-0.2075360119342804,
-0.3646746575832367,
-0.28892168402671814,
0.3152957260608673,
0.5907257199287415,
0.4170645475387573,
-1.0328971147537231,
0.6231943368911743,
-0.11352313309907913,
0.5647371411323547,
0.1668596863746643,
-0.04936988651752472,
0.8115649223327637,
-0.3817214369773865,
-0.12241708487272263,
-0.08785559237003326,
1.090126395225525,
0.6604062914848328,
0.1901964694261551,
0.07034415006637573,
-0.0184810608625412,
0.03622166067361832,
-0.14980153739452362,
-0.8816130757331848,
-0.3855941891670227,
0.643946647644043,
-0.5651471614837646,
-0.5790448784828186,
0.14741724729537964,
-0.9970174431800842,
-0.2517296373844147,
-0.31783074140548706,
0.2919501066207886,
-0.37209615111351013,
-0.5414947867393494,
0.1995851844549179,
-0.30388081073760986,
0.13296623528003693,
0.03190790116786957,
-0.5488415956497192,
0.14252442121505737,
0.6088047623634338,
0.7862378358840942,
0.22588811814785004,
-0.2557542622089386,
-0.3408139944076538,
-0.1264239400625229,
-0.15277732908725739,
0.6166241765022278,
-0.31027477979660034,
-0.3265136480331421,
-0.12536269426345825,
0.3721493184566498,
-0.055196817964315414,
-0.27207306027412415,
0.8994992971420288,
0.03020448423922062,
0.12211901694536209,
-0.5514803528785706,
-0.44131332635879517,
0.005765918642282486,
0.30436596274375916,
-0.7881402373313904,
1.006538987159729,
0.2618961036205292,
-1.0260756015777588,
0.16816379129886627,
-0.766634464263916,
-0.2771660387516022,
0.04283604770898819,
0.09768741577863693,
-0.8118096590042114,
-0.19041860103607178,
0.14317412674427032,
0.7382147908210754,
-0.2857310175895691,
0.023977909237146378,
-0.6612374782562256,
-0.1594570130109787,
0.3781152069568634,
0.2293202131986618,
1.1919032335281372,
0.08898849040269852,
-0.1602022498846054,
0.09443558007478714,
-0.9147611260414124,
0.07424352318048477,
0.4411478340625763,
-0.1339467614889145,
-0.14383050799369812,
-0.2830701172351837,
0.36477571725845337,
0.2752964496612549,
0.0932629331946373,
-0.5995030999183655,
0.49817347526550293,
-0.15964777767658234,
0.48098787665367126,
0.7943611145019531,
0.028262678533792496,
0.2452135533094406,
-0.6383435130119324,
0.39458853006362915,
0.04114477336406708,
0.3942753076553345,
0.015706559643149376,
-0.5332756042480469,
-0.4269077777862549,
-0.3334982693195343,
0.34551969170570374,
0.42695191502571106,
-0.6384152173995972,
1.0440800189971924,
-0.36869949102401733,
-0.8671044111251831,
-0.5718132853507996,
0.13189910352230072,
0.1972971111536026,
0.4511883854866028,
0.3521765172481537,
-0.4260595142841339,
-0.583050549030304,
-0.643511176109314,
0.10677842795848846,
-0.2519737780094147,
0.1835480034351349,
0.4084446430206299,
0.8036337494850159,
-0.27419397234916687,
0.76045161485672,
-0.6942030787467957,
-0.30609214305877686,
-0.23013675212860107,
-0.3302341401576996,
0.4027024507522583,
0.7598744630813599,
0.6896160244941711,
-0.875390887260437,
-0.47726041078567505,
-0.25568097829818726,
-0.6557011008262634,
-0.07942750304937363,
-0.027974383905529976,
-0.31452658772468567,
0.04787728562951088,
0.20484265685081482,
-0.7136886119842529,
0.5335487127304077,
0.5320457220077515,
-0.697074830532074,
0.6162465214729309,
0.0702308639883995,
-0.03639350086450577,
-1.2273173332214355,
0.3859897553920746,
0.2547522783279419,
0.04892147704958916,
-0.5593937039375305,
-0.1785089522600174,
-0.06462392956018448,
0.01788000389933586,
-0.04189857095479965,
0.5877497792243958,
-0.3246828615665436,
0.3134342432022095,
0.19681483507156372,
0.06888969987630844,
0.06577183306217194,
0.4143141210079193,
-0.08576621860265732,
0.25330066680908203,
1.0262346267700195,
-0.3677409887313843,
0.7214304804801941,
0.5711431503295898,
-0.19213631749153137,
0.7919216752052307,
-0.7996799349784851,
0.035817667841911316,
-0.2711676359176636,
0.4442908465862274,
-0.8689213395118713,
-0.5569736957550049,
0.8017573952674866,
-0.6597808003425598,
0.45580655336380005,
-0.30969560146331787,
-0.5950506329536438,
-0.8896401524543762,
-0.7045309543609619,
0.14311537146568298,
0.5444322228431702,
-0.3930555582046509,
0.3879544734954834,
0.6164491772651672,
0.0929788202047348,
-0.38107889890670776,
-0.7569783926010132,
-0.12186186760663986,
-0.4107261598110199,
-0.7950438261032104,
0.3660360872745514,
-0.3763308525085449,
-0.09419011324644089,
0.10593291372060776,
0.0883190706372261,
0.11395774781703949,
-0.021029308438301086,
0.3980744183063507,
0.33915290236473083,
0.10734228789806366,
0.023581787943840027,
-0.11506776511669159,
-0.23466487228870392,
0.13476699590682983,
-0.23992708325386047,
0.2759080231189728,
-0.2920853793621063,
-0.0722653940320015,
-0.6504649519920349,
0.17571322619915009,
0.47932618856430054,
-0.26174864172935486,
0.6863506436347961,
0.8357133865356445,
-0.20556490123271942,
0.026224667206406593,
-0.5390773415565491,
-0.13068494200706482,
-0.4220990240573883,
0.012597530148923397,
-0.2048022449016571,
-0.6592573523521423,
0.9112263917922974,
0.2237691730260849,
0.07180579751729965,
0.6209836602210999,
0.5090271830558777,
-0.002868926152586937,
0.6874166131019592,
0.37743082642555237,
-0.3106720447540283,
0.4940672814846039,
-0.6949577331542969,
-0.17046082019805908,
-0.8089190721511841,
-0.4062342643737793,
-0.5191385746002197,
-0.5130964517593384,
-0.9103934168815613,
-0.4523671567440033,
0.2253611832857132,
0.11985839903354645,
-0.2624303102493286,
0.42797333002090454,
-0.9315965175628662,
0.25129571557044983,
0.3310520052909851,
0.25186532735824585,
-0.08502162247896194,
0.08711641281843185,
0.09704233705997467,
0.15477395057678223,
-0.5267117023468018,
-0.20562103390693665,
1.1740615367889404,
0.5228331685066223,
0.581630527973175,
-0.05792487785220146,
0.8004979491233826,
0.008858414366841316,
0.2507191598415375,
-0.5694846510887146,
0.4758700728416443,
0.03119431622326374,
-0.5349665880203247,
-0.16724395751953125,
-0.5417890548706055,
-0.9384656548500061,
-0.16565148532390594,
-0.4113799035549164,
-0.7388009428977966,
0.4630168676376343,
0.11105651408433914,
-0.2206336110830307,
0.4226885735988617,
-0.6169774532318115,
0.8579742908477783,
0.00382249359972775,
-0.47304514050483704,
0.2866235673427582,
-1.049130916595459,
0.22836090624332428,
0.13953980803489685,
0.3145987093448639,
-0.3706529438495636,
0.007422460708767176,
0.9916329383850098,
-0.8034769892692566,
0.9226983785629272,
-0.3723295032978058,
0.08476387709379196,
0.5638693571090698,
-0.2777561843395233,
0.4932713210582733,
0.13278287649154663,
-0.2786637246608734,
0.37667590379714966,
0.037070758640766144,
-0.4426547884941101,
-0.4086998701095581,
0.6984041929244995,
-0.7318101525306702,
0.011595363728702068,
-0.3352186679840088,
-0.46145036816596985,
0.05407498776912689,
0.17795495688915253,
0.2708446979522705,
0.41249892115592957,
0.03767800331115723,
0.15503491461277008,
0.4804425537586212,
-0.11827927827835083,
0.2931080162525177,
0.04182950407266617,
-0.10577712953090668,
-0.7494648694992065,
0.9053743481636047,
0.18704745173454285,
0.04859298840165138,
-0.05864888057112694,
0.46040862798690796,
-0.3857428729534149,
-0.14746233820915222,
-0.5855177640914917,
0.539463222026825,
-0.3189786970615387,
-0.39858320355415344,
-0.5319466590881348,
-0.1679420918226242,
-0.6685395240783691,
-0.1748858392238617,
-0.226719468832016,
-0.47959500551223755,
-0.20807220041751862,
-0.22396908700466156,
1.0547029972076416,
0.44346681237220764,
-0.7511074542999268,
0.10154734551906586,
-0.5355611443519592,
0.31849610805511475,
-0.05973408371210098,
0.6894702911376953,
-0.09817393869161606,
-0.32958468794822693,
-0.19674904644489288,
0.07349827885627747,
-0.20406807959079742,
-0.663337230682373,
0.2502361536026001,
-0.07641559839248657,
0.32624226808547974,
0.1783638298511505,
0.17723342776298523,
0.6700815558433533,
-0.0620620921254158,
0.6340246796607971,
0.29928189516067505,
-0.7691022753715515,
0.6388981938362122,
-0.52342289686203,
0.10534488409757614,
0.7005875110626221,
0.43128958344459534,
-0.5949379801750183,
-0.18118375539779663,
-0.98023521900177,
-0.8566669821739197,
0.7739958167076111,
0.39801570773124695,
0.08220559358596802,
0.2281932681798935,
0.5466983318328857,
-0.17994903028011322,
0.27052000164985657,
-0.6774848103523254,
-0.8868246078491211,
-0.358398973941803,
-0.2958084046840668,
-0.0775378942489624,
-0.10531583428382874,
-0.29173192381858826,
-0.7012455463409424,
0.7702966332435608,
-0.11113769561052322,
0.28627946972846985,
0.3954848647117615,
0.47094619274139404,
-0.21733690798282623,
-0.0173795223236084,
0.2222164124250412,
0.3956524431705475,
-0.27036187052726746,
-0.2947145104408264,
-0.21921126544475555,
-0.6934326887130737,
-0.1254630833864212,
0.5379924178123474,
-0.3426947295665741,
-0.07426749914884567,
0.294607549905777,
0.8605354428291321,
-0.06251735985279083,
-0.26263394951820374,
0.6446828842163086,
-0.08574610948562622,
-0.4301382601261139,
-0.4262745976448059,
-0.012891524471342564,
0.10860389471054077,
0.1915253847837448,
0.05677579343318939,
0.026806769892573357,
-0.10121873766183853,
-0.42590802907943726,
0.3860979676246643,
0.2588650584220886,
-0.39253172278404236,
-0.4727340042591095,
0.5631662011146545,
0.047676533460617065,
-0.07828109711408615,
0.45126229524612427,
-0.20012371242046356,
-0.5940038561820984,
0.7647794485092163,
0.11976783722639084,
0.7852047681808472,
-0.17186759412288666,
0.3201025426387787,
0.7786369323730469,
0.2352304607629776,
-0.05199528485536575,
0.4798038601875305,
-0.19787850975990295,
-0.5890980362892151,
-0.153066948056221,
-0.5684745907783508,
-0.06324820220470428,
0.1369001567363739,
-0.8362118601799011,
0.45427513122558594,
-0.5129898190498352,
-0.20172058045864105,
0.0699792355298996,
0.3893888294696808,
-0.6753931045532227,
0.12771905958652496,
-0.031263403594493866,
1.047059416770935,
-1.0460669994354248,
0.45967501401901245,
0.6966720819473267,
-0.6417298913002014,
-1.231461763381958,
-0.10720652341842651,
0.19385021924972534,
-0.581160843372345,
0.1834939420223236,
0.23692360520362854,
0.5383177995681763,
-0.06435656547546387,
-0.9620431065559387,
-0.6631322503089905,
1.1000502109527588,
0.042107757180929184,
-0.26005497574806213,
0.3117274045944214,
0.06346334517002106,
0.629407525062561,
-0.2890482246875763,
0.2797431945800781,
0.6599684953689575,
0.7582606673240662,
0.35738426446914673,
-0.7657203674316406,
0.3252086639404297,
-0.563194990158081,
-0.2687458097934723,
0.14789800345897675,
-1.0343204736709595,
0.5772145390510559,
-0.18709678947925568,
-0.006008059252053499,
0.025071866810321808,
0.5682289004325867,
0.4400162398815155,
0.4024921655654907,
0.4610649049282074,
0.781123161315918,
0.7966334819793701,
-0.3209230601787567,
1.2367357015609741,
-0.2323533296585083,
0.630115270614624,
0.7646145820617676,
0.07138092070817947,
0.4602420926094055,
0.24074500799179077,
-0.32133135199546814,
0.5452418923377991,
0.6054729223251343,
-0.4770183563232422,
0.1921798586845398,
0.44090500473976135,
-0.038324348628520966,
-0.11914567649364471,
-0.24018456041812897,
-0.6219325661659241,
0.3306262195110321,
0.2833554148674011,
-0.30569204688072205,
0.0047914618626236916,
-0.04623006284236908,
0.42299404740333557,
-0.05055781453847885,
-0.34792977571487427,
0.63953697681427,
0.024224724620580673,
-0.3315027952194214,
0.5720770955085754,
-0.20729808509349823,
0.7040167450904846,
-0.5968549251556396,
0.14857348799705505,
-0.0711095929145813,
0.12609970569610596,
-0.6008510589599609,
-1.07407546043396,
0.3808765411376953,
-0.10849083960056305,
-0.2331175059080124,
-0.29429909586906433,
0.7014895677566528,
-0.4488842189311981,
-0.7776982188224792,
0.23389175534248352,
0.1477736234664917,
0.3515300750732422,
0.11270289868116379,
-1.2346923351287842,
0.6400244235992432,
0.14014177024364471,
-0.4427744746208191,
0.1101437360048294,
0.5592430830001831,
0.13907618820667267,
0.5117462873458862,
0.7415862083435059,
0.27483177185058594,
-0.23584960401058197,
0.05339616537094116,
1.1188883781433105,
-0.5683189630508423,
-0.48806440830230713,
-0.7418952584266663,
0.833149790763855,
-0.4055122435092926,
-0.38548168540000916,
0.6779686212539673,
0.7926304936408997,
0.8671457171440125,
0.058413613587617874,
0.7858808040618896,
-0.6696982383728027,
0.6832982897758484,
-0.19552293419837952,
0.9154157638549805,
-0.6869809031486511,
-0.09075238555669785,
-0.7563894987106323,
-0.53025883436203,
-0.45329955220222473,
0.6219165325164795,
-0.22491605579853058,
0.16977274417877197,
0.25424519181251526,
0.9022617340087891,
0.015170752070844173,
0.10807964205741882,
-0.2238934338092804,
0.421194463968277,
0.3093601167201996,
0.5422540903091431,
0.4106987714767456,
-0.865408718585968,
0.4096930921077728,
-0.7410968542098999,
-0.36073994636535645,
0.004590216092765331,
-0.8621880412101746,
-0.9029562473297119,
-0.9169163703918457,
-0.7035767436027527,
-0.8503837585449219,
-0.3005646765232086,
1.0328110456466675,
0.7074657678604126,
-0.6397379636764526,
-0.21780356764793396,
0.11112327128648758,
0.29335662722587585,
-0.07295441627502441,
-0.3248143792152405,
0.6857848167419434,
0.38217711448669434,
-0.5979447364807129,
-0.19884847104549408,
0.028905795887112617,
0.22437821328639984,
0.04999486356973648,
-0.037712085992097855,
-0.08134477585554123,
-0.3031398057937622,
0.35787639021873474,
0.5116487741470337,
-0.29978126287460327,
-0.14519178867340088,
-0.2979443669319153,
0.01687641814351082,
0.1179841160774231,
0.4863263666629791,
-0.4961089491844177,
0.18296819925308228,
0.585899293422699,
0.2766445279121399,
0.4822452664375305,
0.18079958856105804,
-0.013602028600871563,
-0.4656994044780731,
0.12692101299762726,
-0.042677950114011765,
0.30251428484916687,
0.35906755924224854,
-0.4771963655948639,
0.789056658744812,
0.584317147731781,
-0.529780924320221,
-0.8672033548355103,
-0.1367918848991394,
-1.3798201084136963,
0.0945286750793457,
1.1182081699371338,
-0.002596879843622446,
-0.5644837617874146,
0.009704572148621082,
-0.23741278052330017,
0.10161075741052628,
-0.5761851072311401,
0.49539971351623535,
0.49680882692337036,
-0.0833623856306076,
0.210069477558136,
-0.34845486283302307,
0.6075688004493713,
-0.09520449489355087,
-0.8981039524078369,
0.2462911456823349,
0.5044688582420349,
0.46314719319343567,
0.3683352768421173,
0.7702335715293884,
-0.3109053373336792,
0.03262569010257721,
-0.07784269750118256,
0.2653251588344574,
-0.2925594449043274,
0.05108527094125748,
-0.34941422939300537,
-0.11358815431594849,
-0.5073134303092957,
-0.17948521673679352
]
|
huggingartists/till-lindemann | huggingartists | 2022-10-25T09:48:17Z | 261 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/48d6ca7ca17a9dfc9ad3034e71533a89.1000x1000x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6157761216163635,
-0.4638281464576721,
0.15177777409553528,
0.2843312621116638,
-0.22276532649993896,
-0.004347783979028463,
-0.2917000353336334,
-0.4340709149837494,
0.8571542501449585,
0.3493552505970001,
-0.9652748703956604,
-0.8923642635345459,
-0.5733660459518433,
0.1290169209241867,
-0.10744351893663406,
1.2349275350570679,
-0.20274147391319275,
-0.33071091771125793,
-0.29245322942733765,
-0.22119644284248352,
-0.28072163462638855,
-0.3679085075855255,
-0.3443252444267273,
-0.38295355439186096,
0.36940401792526245,
0.5309873223304749,
0.641750156879425,
0.8672311305999756,
0.46365293860435486,
0.36155518889427185,
-0.10640942305326462,
-0.03748781234025955,
-0.3754342198371887,
-0.11740147322416306,
0.18844160437583923,
-0.290211021900177,
-0.7447441816329956,
0.21726226806640625,
0.5877482295036316,
0.3751477897167206,
-0.05608592927455902,
0.4654134511947632,
0.049479588866233826,
0.8372913002967834,
-0.2313818633556366,
0.4379446506500244,
-0.21823057532310486,
-0.14017963409423828,
-0.35562393069267273,
0.045553069561719894,
0.2238587886095047,
-0.63741534948349,
-0.0070542530156672,
-0.748157799243927,
0.0025471325498074293,
-0.00810390803962946,
1.0328044891357422,
0.04778590425848961,
0.1247808113694191,
-0.16865578293800354,
-0.12424339354038239,
0.5903053879737854,
-0.6339007616043091,
0.015632791444659233,
0.5597619414329529,
0.13341596722602844,
0.05280125141143799,
-0.6344727873802185,
-0.6310169696807861,
0.052525609731674194,
-0.16412611305713654,
0.2645750045776367,
-0.13541175425052643,
-0.295416921377182,
0.5421115756034851,
0.4891389012336731,
-0.4697714149951935,
-0.2398497313261032,
-0.4778766930103302,
-0.1410137265920639,
1.200224757194519,
0.18705371022224426,
0.3891209363937378,
-0.535828709602356,
-0.23327121138572693,
-0.4234981834888458,
-0.24315330386161804,
0.33734390139579773,
0.5163983106613159,
0.4370213449001312,
-1.0024592876434326,
0.6338560581207275,
-0.14814727008342743,
0.5274337530136108,
0.12864360213279724,
-0.08365350216627121,
0.7752400636672974,
-0.4303661286830902,
-0.11643253266811371,
-0.13296663761138916,
1.0069772005081177,
0.6627948880195618,
0.2527399957180023,
0.12560158967971802,
-0.11906762421131134,
0.07218984514474869,
-0.17528176307678223,
-0.8363394141197205,
-0.39100223779678345,
0.6394928097724915,
-0.585299551486969,
-0.6470637917518616,
0.14063437283039093,
-1.0101982355117798,
-0.19649207592010498,
-0.3418421745300293,
0.22426755726337433,
-0.3563489019870758,
-0.5410022139549255,
0.1287849396467209,
-0.2767215967178345,
0.16031460464000702,
0.04328906908631325,
-0.5334346294403076,
0.19452591240406036,
0.5837050080299377,
0.7375037670135498,
0.20485283434391022,
-0.3260217308998108,
-0.21772679686546326,
-0.21212947368621826,
-0.16084617376327515,
0.7248398661613464,
-0.3540063798427582,
-0.3464981019496918,
-0.12587128579616547,
0.3237728476524353,
-0.10186077654361725,
-0.2705250680446625,
0.9238633513450623,
0.025256287306547165,
0.2187262922525406,
-0.5877577662467957,
-0.48513662815093994,
0.0019317844416946173,
0.366627037525177,
-0.7208520174026489,
1.062294363975525,
0.3060073256492615,
-1.0050580501556396,
0.18171022832393646,
-0.838392436504364,
-0.3169761896133423,
-0.012285606935620308,
0.04737400636076927,
-0.7784724235534668,
-0.1754116266965866,
0.16680370271205902,
0.7259252071380615,
-0.327231764793396,
0.06243268400430679,
-0.6303341388702393,
-0.050313156098127365,
0.36915159225463867,
0.232623890042305,
1.2045538425445557,
0.07340272516012192,
-0.10146460682153702,
0.11813078075647354,
-0.9889566898345947,
0.18147684633731842,
0.419897198677063,
-0.16392815113067627,
-0.0774935856461525,
-0.2708311378955841,
0.43270859122276306,
0.3245168924331665,
0.05502331629395485,
-0.5908486247062683,
0.40550950169563293,
-0.19144120812416077,
0.43784892559051514,
0.7885780334472656,
0.002699207281693816,
0.31689468026161194,
-0.6967330574989319,
0.4526272714138031,
0.03132051229476929,
0.36829259991645813,
0.05593203753232956,
-0.4715562164783478,
-0.5057342648506165,
-0.2534608244895935,
0.36688733100891113,
0.47368091344833374,
-0.6756252646446228,
0.9560622572898865,
-0.37009093165397644,
-0.8221433162689209,
-0.5951741337776184,
0.1227661520242691,
0.20807719230651855,
0.5305725336074829,
0.331423282623291,
-0.41485974192619324,
-0.6564927101135254,
-0.5956276655197144,
0.13813312351703644,
-0.22024226188659668,
0.12820708751678467,
0.4640694558620453,
0.7978224754333496,
-0.30967018008232117,
0.8298370242118835,
-0.661357581615448,
-0.3037409484386444,
-0.23205062747001648,
-0.3812877833843231,
0.3921034634113312,
0.7929991483688354,
0.6951678991317749,
-0.8354766964912415,
-0.485458105802536,
-0.2843623161315918,
-0.7283223867416382,
-0.12658734619617462,
-0.01310988049954176,
-0.27753904461860657,
0.05194937810301781,
0.16717499494552612,
-0.7103439569473267,
0.5357626080513,
0.5449478626251221,
-0.680489182472229,
0.6431522965431213,
0.09960808604955673,
0.0034776092506945133,
-1.3056257963180542,
0.3734501600265503,
0.2234557718038559,
-0.005103197880089283,
-0.6174095273017883,
-0.27317574620246887,
-0.08529922366142273,
-0.05650124326348305,
-0.12944474816322327,
0.6325253844261169,
-0.2997628152370453,
0.27879101037979126,
0.14653752744197845,
0.08382383733987808,
0.14574582874774933,
0.431120365858078,
-0.08174654841423035,
0.2841894030570984,
1.0493193864822388,
-0.4179099202156067,
0.6761077046394348,
0.6014487743377686,
-0.19391073286533356,
0.8471670150756836,
-0.82369065284729,
-0.008835128508508205,
-0.2418627291917801,
0.40986937284469604,
-0.8354434967041016,
-0.5709850192070007,
0.8136357665061951,
-0.6589621305465698,
0.45507198572158813,
-0.17517338693141937,
-0.5590415596961975,
-0.7653908133506775,
-0.7120897173881531,
0.1593417376279831,
0.49418702721595764,
-0.3769684433937073,
0.47030267119407654,
0.5981637835502625,
0.09007642418146133,
-0.3351312577724457,
-0.7925922870635986,
-0.13158027827739716,
-0.4226836860179901,
-0.8860452175140381,
0.4389931261539459,
-0.33652904629707336,
-0.1307305544614792,
0.12395960092544556,
0.032208383083343506,
0.08539456874132156,
-0.0029087355360388756,
0.38139334321022034,
0.32222747802734375,
0.06491890549659729,
0.08794859051704407,
-0.10862385481595993,
-0.30464255809783936,
0.10903813689947128,
-0.274807333946228,
0.2738645672798157,
-0.3115179240703583,
-0.08455059677362442,
-0.6384198665618896,
0.1972857564687729,
0.4120561480522156,
-0.19924955070018768,
0.6534998416900635,
0.756522536277771,
-0.20478911697864532,
-0.017347427085042,
-0.4994563162326813,
-0.2115839272737503,
-0.41301947832107544,
-0.014290079474449158,
-0.3041934072971344,
-0.633765459060669,
0.9579851031303406,
0.12918837368488312,
0.084837906062603,
0.6868804693222046,
0.4191153347492218,
-0.1589404046535492,
0.6039489507675171,
0.42249104380607605,
-0.2811744809150696,
0.5181196928024292,
-0.6771692633628845,
-0.27024370431900024,
-0.8234454393386841,
-0.41817110776901245,
-0.511316180229187,
-0.49488726258277893,
-0.867172122001648,
-0.4146042466163635,
0.1898316591978073,
0.13961562514305115,
-0.2338538020849228,
0.47741544246673584,
-0.9147679209709167,
0.2865198254585266,
0.2996167838573456,
0.28557881712913513,
-0.09887568652629852,
0.05934951454401016,
0.05442596599459648,
0.14682385325431824,
-0.6312288045883179,
-0.2764891982078552,
1.1900662183761597,
0.4735777974128723,
0.5966430902481079,
-0.12697961926460266,
0.8561169505119324,
0.06754003465175629,
0.22249257564544678,
-0.4867406487464905,
0.5149762630462646,
0.0167144313454628,
-0.5362316370010376,
-0.16778115928173065,
-0.47551634907722473,
-0.8572497963905334,
-0.14407645165920258,
-0.41547125577926636,
-0.7152544856071472,
0.5187751650810242,
0.1087004691362381,
-0.21518026292324066,
0.3704657256603241,
-0.6018142104148865,
0.8620928525924683,
-0.09076428413391113,
-0.3814719617366791,
0.29235780239105225,
-1.0420753955841064,
0.18319126963615417,
0.1391027271747589,
0.2587558925151825,
-0.41596636176109314,
0.020519714802503586,
0.9884364604949951,
-0.7578486204147339,
0.9369645714759827,
-0.333529531955719,
0.09370562434196472,
0.5349595546722412,
-0.3109573423862457,
0.4539611339569092,
0.1306094229221344,
-0.3169711232185364,
0.39359450340270996,
0.02559575065970421,
-0.45703232288360596,
-0.4032328426837921,
0.6570995450019836,
-0.7072824239730835,
0.014117777347564697,
-0.33495453000068665,
-0.4265342056751251,
0.10314471274614334,
0.1838322877883911,
0.3026575744152069,
0.41877907514572144,
0.014945944771170616,
0.07591833919286728,
0.44731831550598145,
-0.11153893917798996,
0.28271016478538513,
0.022982515394687653,
-0.12668882310390472,
-0.7329444885253906,
0.8996419310569763,
0.16275839507579803,
0.0736723393201828,
-0.02946457266807556,
0.41718655824661255,
-0.3796858489513397,
-0.07080963999032974,
-0.5562414526939392,
0.46126124262809753,
-0.44630563259124756,
-0.4021606147289276,
-0.5036619901657104,
-0.18421892821788788,
-0.6347626447677612,
-0.16963158547878265,
-0.2966897785663605,
-0.5512942671775818,
-0.3508569002151489,
-0.22501344978809357,
1.0072600841522217,
0.3922501802444458,
-0.7102306485176086,
0.12664182484149933,
-0.5088328123092651,
0.26159223914146423,
-0.0625498816370964,
0.668429970741272,
-0.10794789344072342,
-0.3402709662914276,
-0.1378462314605713,
0.05412739887833595,
-0.17983976006507874,
-0.6553332209587097,
0.24101310968399048,
-0.012636354193091393,
0.34290367364883423,
0.12541477382183075,
0.13532640039920807,
0.6595061421394348,
-0.06541338562965393,
0.6011083722114563,
0.25683456659317017,
-0.8196842074394226,
0.6453973054885864,
-0.44932013750076294,
0.14172157645225525,
0.7366137504577637,
0.37062907218933105,
-0.6066334843635559,
-0.09435807168483734,
-1.005428671836853,
-0.8040255904197693,
0.8385294675827026,
0.422768771648407,
0.06595496833324432,
0.3084111213684082,
0.486933171749115,
-0.18283429741859436,
0.2853105068206787,
-0.6503037214279175,
-0.8515907526016235,
-0.42110463976860046,
-0.3046519458293915,
-0.0667722225189209,
-0.16208936274051666,
-0.30648258328437805,
-0.7044736742973328,
0.7953820824623108,
-0.08992595225572586,
0.33060553669929504,
0.4247451424598694,
0.41885825991630554,
-0.18987107276916504,
0.041400812566280365,
0.3068638741970062,
0.4313802719116211,
-0.23781760036945343,
-0.3062504231929779,
-0.11818893253803253,
-0.5336946845054626,
-0.08161409944295883,
0.5238128900527954,
-0.34944024682044983,
-0.04357502609491348,
0.3482743203639984,
0.8953917026519775,
-0.026797251775860786,
-0.24607008695602417,
0.5637199878692627,
-0.053994763642549515,
-0.4573398530483246,
-0.4355557858943939,
-0.009711005724966526,
0.15160542726516724,
0.2950112223625183,
0.019997229799628258,
0.11300800740718842,
-0.1545286774635315,
-0.3554530441761017,
0.4578871428966522,
0.21076340973377228,
-0.3937022089958191,
-0.49115434288978577,
0.5375173687934875,
0.06422632187604904,
-0.16409383714199066,
0.45500022172927856,
-0.13603533804416656,
-0.6900274753570557,
0.7831125855445862,
0.08716792613267899,
0.8521844148635864,
-0.10599707812070847,
0.3384722173213959,
0.678450882434845,
0.19698086380958557,
-0.050957776606082916,
0.5454087853431702,
-0.24146686494350433,
-0.7039085626602173,
-0.09087871760129929,
-0.5665448307991028,
-0.07878878712654114,
0.03639494627714157,
-0.759680986404419,
0.4009268879890442,
-0.4551647901535034,
-0.27590662240982056,
0.07349219918251038,
0.3895249664783478,
-0.7365332245826721,
0.16328182816505432,
-0.03762148693203926,
1.0466822385787964,
-1.0594433546066284,
0.5398715734481812,
0.6886371374130249,
-0.6343333125114441,
-1.2212767601013184,
-0.08310478180646896,
0.20281867682933807,
-0.588141143321991,
0.24673667550086975,
0.19857178628444672,
0.4953914284706116,
-0.013944033533334732,
-0.9424172639846802,
-0.6619390845298767,
1.154891014099121,
0.04333147779107094,
-0.21828430891036987,
0.33410409092903137,
0.09799627959728241,
0.6171976923942566,
-0.3710971474647522,
0.323216050863266,
0.6992795467376709,
0.7570205926895142,
0.28339794278144836,
-0.6895586848258972,
0.2883228361606598,
-0.5896722078323364,
-0.16043280065059662,
0.048195648938417435,
-0.9938949346542358,
0.6649194955825806,
-0.15021789073944092,
-0.07438881695270538,
-0.03594832494854927,
0.578843891620636,
0.4913656711578369,
0.41920095682144165,
0.4471408724784851,
0.7523619532585144,
0.8047685623168945,
-0.31298828125,
1.2450275421142578,
-0.2546307444572449,
0.6398628354072571,
0.7510591745376587,
0.02527983859181404,
0.4238288998603821,
0.25561636686325073,
-0.33748969435691833,
0.5602301955223083,
0.6387502551078796,
-0.4474509060382843,
0.23021866381168365,
0.40536993741989136,
-0.045438725501298904,
-0.11629686504602432,
-0.2924431264400482,
-0.594030499458313,
0.2761605978012085,
0.21703067421913147,
-0.27771198749542236,
-0.0396505631506443,
0.0077518378384411335,
0.3402084410190582,
-0.014617427252233028,
-0.24336695671081543,
0.6554145812988281,
0.10993631929159164,
-0.3103521168231964,
0.5888134241104126,
-0.2163279801607132,
0.7120723128318787,
-0.6127123832702637,
0.16133488714694977,
-0.12861236929893494,
0.12595531344413757,
-0.6201305985450745,
-1.111371397972107,
0.3637722432613373,
-0.029601989313960075,
-0.28485167026519775,
-0.3717464208602905,
0.8203338980674744,
-0.45485687255859375,
-0.8042585253715515,
0.285915732383728,
0.19914883375167847,
0.3413347899913788,
0.1404041200876236,
-1.2931360006332397,
0.5848386883735657,
0.19106949865818024,
-0.5128937363624573,
0.07394739985466003,
0.529324471950531,
0.16419997811317444,
0.5857245922088623,
0.6876049637794495,
0.24970243871212006,
-0.230216383934021,
0.08459322154521942,
1.1628341674804688,
-0.5533381700515747,
-0.4112391471862793,
-0.7775644659996033,
0.9156716465950012,
-0.38554662466049194,
-0.3777284622192383,
0.7078964710235596,
0.6953874230384827,
0.9223347306251526,
0.02061772532761097,
0.780941903591156,
-0.6852424144744873,
0.675276517868042,
-0.20546692609786987,
0.890648365020752,
-0.7566888332366943,
-0.0490296445786953,
-0.730285108089447,
-0.5673244595527649,
-0.40437814593315125,
0.6096477508544922,
-0.21044069528579712,
0.1800229549407959,
0.2679688632488251,
0.9241736531257629,
0.02178938314318657,
0.11771020293235779,
-0.2101149559020996,
0.2728680968284607,
0.29670488834381104,
0.5249670743942261,
0.39781954884529114,
-0.8972553610801697,
0.3750883638858795,
-0.761183500289917,
-0.26598578691482544,
0.04773438721895218,
-0.8665143847465515,
-0.9014530777931213,
-0.8802953362464905,
-0.6138010025024414,
-0.795010507106781,
-0.2917173504829407,
1.0677205324172974,
0.7323440909385681,
-0.7736324071884155,
-0.28298935294151306,
0.050517648458480835,
0.2938595712184906,
-0.04358145222067833,
-0.31507259607315063,
0.6957110166549683,
0.31713077425956726,
-0.5740218162536621,
-0.14577628672122955,
-0.014259341172873974,
0.23636990785598755,
0.08345964550971985,
-0.14192475378513336,
-0.13230331242084503,
-0.32609453797340393,
0.33840104937553406,
0.4839456379413605,
-0.3195327818393707,
-0.08293342590332031,
-0.2554935812950134,
-0.0030722608789801598,
0.2095571607351303,
0.44981473684310913,
-0.4750022292137146,
0.2155657559633255,
0.6505116820335388,
0.34267449378967285,
0.4667677581310272,
0.2655625343322754,
0.04388289526104927,
-0.5605263113975525,
0.13676917552947998,
0.04251115024089813,
0.23665615916252136,
0.3646645247936249,
-0.399763822555542,
0.8061923980712891,
0.5623429417610168,
-0.5221461057662964,
-0.8105778694152832,
-0.13818484544754028,
-1.2643077373504639,
0.08402101695537567,
1.0416605472564697,
0.012130718678236008,
-0.5147244930267334,
0.11565452069044113,
-0.18556849658489227,
0.15815815329551697,
-0.6109524965286255,
0.4580092132091522,
0.5589303374290466,
-0.06345457583665848,
0.10778806358575821,
-0.34985023736953735,
0.6586591005325317,
0.009019644930958748,
-1.006804347038269,
0.14423860609531403,
0.4057198166847229,
0.439175009727478,
0.3037055432796478,
0.8217520117759705,
-0.24112991988658905,
0.008848950266838074,
-0.049539048224687576,
0.30673566460609436,
-0.24088981747627258,
-0.023137880489230156,
-0.35242220759391785,
-0.1636323183774948,
-0.5157825946807861,
-0.20986586809158325
]
|
huggingartists/twenty-one-pilots | huggingartists | 2022-10-25T09:48:59Z | 261 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/5ab9e38cf86aa170734fea1731610abc.1000x1000x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6517935991287231,
-0.4924490749835968,
0.10954619199037552,
0.3570025861263275,
-0.2180665284395218,
0.06301689147949219,
-0.298063725233078,
-0.39612606167793274,
0.8353504538536072,
0.38400813937187195,
-0.9886044263839722,
-0.8281598687171936,
-0.5155633091926575,
0.10962328314781189,
-0.10299291461706161,
1.2360044717788696,
-0.17380352318286896,
-0.36606255173683167,
-0.3535492420196533,
-0.2206425815820694,
-0.3031398057937622,
-0.3894195854663849,
-0.3397001028060913,
-0.2765277028083801,
0.4022734463214874,
0.511957049369812,
0.6943552494049072,
0.9057047963142395,
0.5869235396385193,
0.3284953534603119,
-0.12747715413570404,
-0.015305429697036743,
-0.3639616072177887,
-0.18860186636447906,
0.2588142454624176,
-0.2584633231163025,
-0.6863840222358704,
0.19868816435337067,
0.5527642965316772,
0.4508971571922302,
-0.07394209504127502,
0.42357954382896423,
-0.0010550259612500668,
0.8942224383354187,
-0.2785572111606598,
0.4073792099952698,
-0.20480899512767792,
-0.17592792212963104,
-0.3171011805534363,
0.04250942915678024,
0.16150493919849396,
-0.5443580150604248,
-0.04144618660211563,
-0.8504140973091125,
0.017568156123161316,
-0.002397012896835804,
1.01558256149292,
0.06885051727294922,
0.029058534651994705,
-0.19540667533874512,
-0.14678262174129486,
0.5265927910804749,
-0.6374652981758118,
0.00013236721861176193,
0.5768428444862366,
0.16362568736076355,
0.019486069679260254,
-0.6167583465576172,
-0.5971206426620483,
0.08801721036434174,
-0.12604869902133942,
0.2937488853931427,
-0.1777282953262329,
-0.2842373549938202,
0.43476325273513794,
0.4955882728099823,
-0.5677808523178101,
-0.17808276414871216,
-0.5659806132316589,
-0.11334046721458435,
1.1993987560272217,
0.17015838623046875,
0.3590170443058014,
-0.46106910705566406,
-0.21719598770141602,
-0.40815216302871704,
-0.2621069848537445,
0.35046231746673584,
0.5771487355232239,
0.48348793387413025,
-1.0896271467208862,
0.6072007417678833,
-0.23662453889846802,
0.5777692794799805,
0.15166281163692474,
0.035364482551813126,
0.8000699877738953,
-0.4221113324165344,
-0.13429316878318787,
-0.18108686804771423,
1.0824214220046997,
0.6675177216529846,
0.2186494916677475,
0.09997080266475677,
-0.017237892374396324,
0.018834570422768593,
-0.08560004085302353,
-0.796834409236908,
-0.384341835975647,
0.6685577630996704,
-0.5874327421188354,
-0.6498257517814636,
0.18945352733135223,
-0.9405760169029236,
-0.16276967525482178,
-0.3048969507217407,
0.2477014660835266,
-0.3898312747478485,
-0.5029539465904236,
0.17416009306907654,
-0.3366409242153168,
0.09329285472631454,
0.04365789145231247,
-0.5781247019767761,
0.15310244262218475,
0.6103746891021729,
0.723418653011322,
0.19793134927749634,
-0.34428492188453674,
-0.22964808344841003,
-0.23389266431331635,
-0.1746450513601303,
0.6626551747322083,
-0.2889367341995239,
-0.4052303731441498,
-0.15856830775737762,
0.31520888209342957,
-0.06574105471372604,
-0.2547345757484436,
0.8650714755058289,
0.0291748009622097,
0.20123159885406494,
-0.6135087609291077,
-0.4451628625392914,
-0.012398489750921726,
0.2890167236328125,
-0.7195015549659729,
1.0454567670822144,
0.2976466715335846,
-0.9348890781402588,
0.20312124490737915,
-0.8134554624557495,
-0.3154093325138092,
0.025755176320672035,
0.024255122989416122,
-0.8519413471221924,
-0.18204864859580994,
0.20680971443653107,
0.7088411450386047,
-0.27756163477897644,
0.05525979772210121,
-0.6214250922203064,
-0.1225590780377388,
0.3390878438949585,
0.24212205410003662,
1.2332277297973633,
0.14529572427272797,
-0.07401756942272186,
0.12031497806310654,
-0.9438470602035522,
0.15096963942050934,
0.4501093924045563,
-0.22334706783294678,
-0.06815719604492188,
-0.2579081654548645,
0.46156519651412964,
0.26009494066238403,
0.06719404458999634,
-0.5931280255317688,
0.43619874119758606,
-0.15303756296634674,
0.43540436029434204,
0.6844704747200012,
0.10797887295484543,
0.3032386004924774,
-0.661298930644989,
0.44671037793159485,
0.099701888859272,
0.4353223145008087,
-0.013339151628315449,
-0.5275924801826477,
-0.5026885271072388,
-0.2488369196653366,
0.2257760614156723,
0.40355193614959717,
-0.6734368205070496,
1.005883812904358,
-0.3344598412513733,
-0.9075878858566284,
-0.5367135405540466,
0.13591499626636505,
0.1797354817390442,
0.4154391884803772,
0.3448711335659027,
-0.3872012197971344,
-0.647010326385498,
-0.6355928182601929,
0.053911566734313965,
-0.3216884732246399,
0.22422879934310913,
0.37195613980293274,
0.7818107008934021,
-0.23380273580551147,
0.8147973418235779,
-0.6754807233810425,
-0.2601679265499115,
-0.24617251753807068,
-0.3346952199935913,
0.321299284696579,
0.850409209728241,
0.7325605154037476,
-0.8683458566665649,
-0.47420868277549744,
-0.24362292885780334,
-0.7295899987220764,
-0.0026552313938736916,
-0.12121398001909256,
-0.28524887561798096,
-0.02936696447432041,
0.22389191389083862,
-0.6635079979896545,
0.5086533427238464,
0.4785347282886505,
-0.7398185133934021,
0.5265799164772034,
0.08333120495080948,
-0.0065125999972224236,
-1.2330784797668457,
0.3927777409553528,
0.22667881846427917,
0.042962074279785156,
-0.5963254570960999,
-0.2036171853542328,
-0.048715315759181976,
-0.061106517910957336,
-0.11843734234571457,
0.5936887264251709,
-0.29718634486198425,
0.352418452501297,
0.14083263278007507,
0.02037813514471054,
0.13615275919437408,
0.45460495352745056,
-0.08933989703655243,
0.24843977391719818,
0.9836232662200928,
-0.3719308376312256,
0.6045659184455872,
0.6142139434814453,
-0.15488293766975403,
0.8356589674949646,
-0.7610875368118286,
0.04065167158842087,
-0.31116554141044617,
0.41228601336479187,
-0.8496036529541016,
-0.5433022975921631,
0.7520601153373718,
-0.7321849465370178,
0.3482474982738495,
-0.1741488128900528,
-0.47310683131217957,
-0.8046443462371826,
-0.6358159184455872,
0.14828836917877197,
0.47526815533638,
-0.3481893241405487,
0.4006703794002533,
0.570685863494873,
0.07904817163944244,
-0.32687658071517944,
-0.8093465566635132,
-0.12116582691669464,
-0.4098185896873474,
-0.7431633472442627,
0.4154279828071594,
-0.33574026823043823,
-0.06778371334075928,
0.1366792470216751,
0.10196204483509064,
0.0855044350028038,
0.056784700602293015,
0.46191585063934326,
0.3318326771259308,
0.07707659900188446,
0.026317989453673363,
-0.0842948630452156,
-0.1957615613937378,
0.11005118489265442,
-0.25013500452041626,
0.22970929741859436,
-0.28364574909210205,
-0.10275401175022125,
-0.6335495114326477,
0.22404178977012634,
0.49752211570739746,
-0.29232776165008545,
0.6854203343391418,
0.780738353729248,
-0.24182884395122528,
0.00890792440623045,
-0.4953082799911499,
-0.12308017164468765,
-0.4122082591056824,
0.07006841152906418,
-0.24988168478012085,
-0.6150156855583191,
0.9178740382194519,
0.2471723109483719,
0.07492466270923615,
0.7350060939788818,
0.44773930311203003,
-0.1137622594833374,
0.6194945573806763,
0.4095086455345154,
-0.31409725546836853,
0.5516452789306641,
-0.7267107367515564,
-0.2886027991771698,
-0.820143461227417,
-0.5097599029541016,
-0.5418007373809814,
-0.44383689761161804,
-0.8413921594619751,
-0.43373462557792664,
0.2315470278263092,
0.14094537496566772,
-0.30217984318733215,
0.487169086933136,
-0.9459909200668335,
0.27674341201782227,
0.32643646001815796,
0.26982003450393677,
-0.11595451831817627,
0.059921544045209885,
0.048725757747888565,
0.1832674890756607,
-0.6328038573265076,
-0.21850571036338806,
1.2007648944854736,
0.4897752106189728,
0.5213780999183655,
-0.1160338819026947,
0.8604418635368347,
0.05786731839179993,
0.21000614762306213,
-0.4816559851169586,
0.48351022601127625,
-0.03262519836425781,
-0.5780870914459229,
-0.14937806129455566,
-0.5129268765449524,
-0.8835880756378174,
-0.2056172639131546,
-0.42435458302497864,
-0.6576810479164124,
0.5384324193000793,
0.06037729233503342,
-0.2946944832801819,
0.30236369371414185,
-0.5787988901138306,
0.8869871497154236,
-0.1302340030670166,
-0.37441346049308777,
0.2667634189128876,
-1.0392177104949951,
0.14983335137367249,
0.13791878521442413,
0.2820753753185272,
-0.39846891164779663,
0.042093660682439804,
1.060947060585022,
-0.8138527274131775,
0.933073878288269,
-0.39477160573005676,
0.17150594294071198,
0.5978143811225891,
-0.3411998748779297,
0.4190927743911743,
0.06779088824987411,
-0.29768314957618713,
0.3693338632583618,
0.07479175180196762,
-0.4745614528656006,
-0.4039451479911804,
0.6612539887428284,
-0.7853394746780396,
0.11529400944709778,
-0.3219083845615387,
-0.41831615567207336,
0.07410979270935059,
0.20941956341266632,
0.3060484528541565,
0.37881287932395935,
-0.02020183578133583,
0.16329975426197052,
0.26804888248443604,
-0.17069804668426514,
0.301821768283844,
0.07140062004327774,
-0.15576903522014618,
-0.839013934135437,
0.927238404750824,
0.17098307609558105,
0.09074925631284714,
0.011066267266869545,
0.3854881823062897,
-0.3672078251838684,
-0.12521304190158844,
-0.5885008573532104,
0.41688668727874756,
-0.4558192193508148,
-0.37425756454467773,
-0.5032156109809875,
-0.16698148846626282,
-0.6236306428909302,
-0.2225244790315628,
-0.28265321254730225,
-0.5664132833480835,
-0.3174060881137848,
-0.1921633630990982,
1.029239296913147,
0.4740232825279236,
-0.620429515838623,
0.21035617589950562,
-0.5007302761077881,
0.2598870098590851,
-0.1343562752008438,
0.5853276252746582,
-0.10185645520687103,
-0.2863856852054596,
-0.25795167684555054,
0.06891477108001709,
-0.27100875973701477,
-0.6049877405166626,
0.22530151903629303,
-0.04061783850193024,
0.3945831060409546,
0.1276918202638626,
0.13845328986644745,
0.7066712379455566,
-0.005157933104783297,
0.6873092651367188,
0.3031102120876312,
-0.8346043825149536,
0.6662725210189819,
-0.5237794518470764,
0.169735848903656,
0.7939478754997253,
0.35929635167121887,
-0.6095102429389954,
-0.16745084524154663,
-0.9797277450561523,
-0.8055188059806824,
0.7708948850631714,
0.46382057666778564,
0.0357893668115139,
0.22804062068462372,
0.5708310604095459,
-0.23340637981891632,
0.2945590317249298,
-0.602874755859375,
-0.8493384718894958,
-0.4316331148147583,
-0.39790698885917664,
-0.12417590618133545,
0.018832121044397354,
-0.20677191019058228,
-0.652617335319519,
0.7661799788475037,
-0.14822475612163544,
0.36704736948013306,
0.4428810179233551,
0.5195930004119873,
-0.2524626553058624,
-0.050384338945150375,
0.30838942527770996,
0.36417320370674133,
-0.2624107897281647,
-0.28982073068618774,
-0.19007275998592377,
-0.5710429549217224,
-0.06529083102941513,
0.47459524869918823,
-0.3238725960254669,
-0.09300520271062851,
0.398634135723114,
0.924129068851471,
-0.0388861782848835,
-0.2583104372024536,
0.5860047340393066,
-0.05500065162777901,
-0.40931326150894165,
-0.3842602074146271,
-0.011788341216742992,
0.17459547519683838,
0.19997185468673706,
0.08569534868001938,
0.17603851854801178,
-0.14530643820762634,
-0.39261722564697266,
0.3894294202327728,
0.2894574701786041,
-0.36358463764190674,
-0.4528321623802185,
0.6649013161659241,
0.1300472915172577,
-0.15425503253936768,
0.44709327816963196,
-0.14857308566570282,
-0.6559152603149414,
0.8467073440551758,
0.058267347514629364,
0.8062441349029541,
-0.0696764588356018,
0.307478666305542,
0.709367036819458,
0.24187906086444855,
-0.03382797911763191,
0.5553293824195862,
-0.2190193235874176,
-0.6179596185684204,
-0.07369569689035416,
-0.4906872510910034,
-0.14608265459537506,
0.05519971624016762,
-0.8784804940223694,
0.4599076509475708,
-0.4992099106311798,
-0.2694353759288788,
0.08070831000804901,
0.3903142809867859,
-0.7791693210601807,
0.2209872603416443,
-0.020803963765501976,
1.0673836469650269,
-1.037710428237915,
0.45581674575805664,
0.7055105566978455,
-0.6791452169418335,
-1.209949016571045,
-0.0986076071858406,
0.2362242490053177,
-0.5705974698066711,
0.22687670588493347,
0.18770645558834076,
0.5546784400939941,
-0.02286362461745739,
-0.8677166700363159,
-0.6262971758842468,
1.1438976526260376,
0.0037116415333002806,
-0.2881965637207031,
0.29610586166381836,
0.14511212706565857,
0.5965524911880493,
-0.37128835916519165,
0.2920907139778137,
0.5811324119567871,
0.6948838233947754,
0.24497531354427338,
-0.7295392155647278,
0.2994461953639984,
-0.5924665331840515,
-0.23652131855487823,
0.02943434938788414,
-1.065371036529541,
0.5911592245101929,
-0.22300906479358673,
0.03153694048523903,
0.020263860002160072,
0.5672430992126465,
0.45249444246292114,
0.44375431537628174,
0.45614704489707947,
0.7064735889434814,
0.7829853892326355,
-0.2939217984676361,
1.2327632904052734,
-0.24924899637699127,
0.6593623757362366,
0.7270767688751221,
0.04112499952316284,
0.5426429510116577,
0.31612780690193176,
-0.3743945062160492,
0.5344536304473877,
0.6428303718566895,
-0.41991809010505676,
0.2563747465610504,
0.3447204828262329,
-0.020456820726394653,
-0.1201419085264206,
-0.18556806445121765,
-0.5549908876419067,
0.3455830514431,
0.16825659573078156,
-0.29642418026924133,
0.04323989525437355,
0.02438126504421234,
0.356399267911911,
-0.046682264655828476,
-0.21748676896095276,
0.6964594721794128,
0.05584937334060669,
-0.42782366275787354,
0.5786901712417603,
-0.15324851870536804,
0.6527761816978455,
-0.6128501296043396,
0.19513370096683502,
-0.08878101408481598,
0.14917129278182983,
-0.6223793625831604,
-1.071420669555664,
0.39143887162208557,
-0.05599820986390114,
-0.25024303793907166,
-0.3107776343822479,
0.6535932421684265,
-0.4499678909778595,
-0.8628126382827759,
0.23870019614696503,
0.2017372101545334,
0.277823805809021,
0.09778639674186707,
-1.2182261943817139,
0.6708044409751892,
0.2180393487215042,
-0.4630153179168701,
0.07016818225383759,
0.48575839400291443,
0.18724192678928375,
0.5415995121002197,
0.7326991558074951,
0.2602234482765198,
-0.2223886251449585,
0.0445745624601841,
1.1379318237304688,
-0.5710885524749756,
-0.5233398675918579,
-0.7546446919441223,
0.9517490863800049,
-0.3567567765712738,
-0.46106788516044617,
0.7184484004974365,
0.8258693814277649,
0.8759673237800598,
-0.02772226370871067,
0.8506044745445251,
-0.6301783919334412,
0.6362794041633606,
-0.21620820462703705,
0.9226251244544983,
-0.7256243824958801,
-0.012171206064522266,
-0.7065402269363403,
-0.4545077085494995,
-0.46258506178855896,
0.6377114057540894,
-0.18739157915115356,
0.20609049499034882,
0.2314465343952179,
0.9148867130279541,
0.05628185346722603,
0.12856069207191467,
-0.24107035994529724,
0.20505766570568085,
0.37389877438545227,
0.5565672516822815,
0.4107336103916168,
-0.9594789743423462,
0.37239813804626465,
-0.7891431450843811,
-0.23250693082809448,
-0.00797302182763815,
-0.8251039385795593,
-0.8962410092353821,
-0.9447899460792542,
-0.7373116612434387,
-0.7535280585289001,
-0.2804121971130371,
1.0725042819976807,
0.8244673609733582,
-0.6658419966697693,
-0.2508980929851532,
-0.03846590220928192,
0.21419258415699005,
-0.1108289584517479,
-0.3215223252773285,
0.6286419630050659,
0.38138332962989807,
-0.5087345838546753,
-0.06393303722143173,
0.0033083532471209764,
0.26003560423851013,
0.037766940891742706,
-0.17827528715133667,
-0.08684787899255753,
-0.28367286920547485,
0.2863730192184448,
0.4687182903289795,
-0.3292531371116638,
-0.06532132625579834,
-0.2042223960161209,
0.037284672260284424,
0.13345181941986084,
0.5199655294418335,
-0.5293137431144714,
0.22853973507881165,
0.5914627313613892,
0.31740662455558777,
0.49291548132896423,
0.22679001092910767,
-0.01329831499606371,
-0.5547875761985779,
0.1103803962469101,
-0.021765952929854393,
0.24323274195194244,
0.3909870684146881,
-0.4765426814556122,
0.7484430074691772,
0.5618738532066345,
-0.5402427911758423,
-0.8525856137275696,
-0.21153630316257477,
-1.3947852849960327,
0.10338637232780457,
1.010682225227356,
-0.0042840298265218735,
-0.447620153427124,
0.11128070205450058,
-0.21889595687389374,
0.13259677588939667,
-0.5407166481018066,
0.37024936079978943,
0.516403317451477,
-0.10218718647956848,
0.15250639617443085,
-0.320671021938324,
0.5796022415161133,
-0.0011186024639755487,
-1.0458422899246216,
0.1881607472896576,
0.3680281341075897,
0.478208065032959,
0.32470881938934326,
0.793727457523346,
-0.23712009191513062,
0.04786502942442894,
0.003182220971211791,
0.28481727838516235,
-0.3205999433994293,
-0.005690917372703552,
-0.3747115433216095,
-0.1456373631954193,
-0.44545337557792664,
-0.26918739080429077
]
|
cfilt/iwn_wordlists | cfilt | 2022-11-23T12:06:02Z | 261 | 2 | [
"task_categories:token-classification",
"annotations_creators:Shivam Mhaskar, Diptesh Kanojia",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:100K<n<1M",
"source_datasets:original",
"language:as",
"language:bn",
"language:mni",
"language:gu",
"language:hi",
"language:kn",
"language:ks",
"language:kok",
"language:ml",
"language:mr",
"language:or",
"language:ne",
"language:pa",
"language:sa",
"language:ta",
"language:te",
"language:ur",
"license:cc-by-nc-sa-4.0",
"abbreviation-detection",
"region:us"
]
| [
"token-classification"
]
| 2022-03-18T11:56:41Z | ---
annotations_creators:
- Shivam Mhaskar, Diptesh Kanojia
language_creators:
- found
language:
- as
- bn
- mni
- gu
- hi
- kn
- ks
- kok
- ml
- mr
- or
- ne
- pa
- sa
- ta
- te
- ur
license: cc-by-nc-sa-4.0
multilinguality:
- monolingual
size_categories:
- 100K<n<1M
source_datasets:
- original
task_categories:
- token-classification
task_ids: []
paperswithcode_id: plod-filtered
pretty_name: 'PLOD: An Abbreviation Detection Dataset'
tags:
- abbreviation-detection
---
<p align="center"><img src="https://huggingface.co/datasets/cfilt/HiNER-collapsed/raw/main/cfilt-dark-vec.png" alt="Computation for Indian Language Technology Logo" width="150" height="150"/></p>
# IWN Wordlists
[](https://creativecommons.org/licenses/by-nc-sa/4.0/) [](https://twitter.com/cfiltnlp) [](https://twitter.com/PeopleCentredAI)
We provide the unique word list form the [IndoWordnet (IWN)](https://www.cfilt.iitb.ac.in/indowordnet/) knowledge base.
## Usage
```python
from datasets import load_dataset
language = "hindi" // supported languages: assamese, bengali, bodo, gujarati, hindi, kannada, kashmiri, konkani, malayalam, manipuri, marathi, meitei, nepali, oriya, punjabi, sanskrit, tamil, telugu, urdu.
words = load_dataset("cfilt/iwn_wordlists", language)
word_list = words["train"]["word"]
```
## Citation
```latex
@inproceedings{bhattacharyya2010indowordnet,
title={IndoWordNet},
author={Bhattacharyya, Pushpak},
booktitle={Proceedings of the Seventh International Conference on Language Resources and Evaluation (LREC'10)},
year={2010}
}
``` | [
-0.31552886962890625,
-0.29076042771339417,
-0.1095932349562645,
0.5829113125801086,
-0.34325891733169556,
0.25120458006858826,
-0.43660444021224976,
-0.5050699710845947,
0.5453765988349915,
0.21480987966060638,
-0.7234103083610535,
-0.42607787251472473,
-0.732410192489624,
0.1716444194316864,
-0.311522901058197,
0.7360527515411377,
-0.09404811263084412,
-0.4289553761482239,
-0.022239860147237778,
-0.6463189125061035,
-0.2579786479473114,
-0.3609545826911926,
-0.26778221130371094,
-0.5858535766601562,
0.2560426890850067,
0.39318370819091797,
0.6222320199012756,
0.42045697569847107,
0.3970395624637604,
0.415702760219574,
0.08356215804815292,
0.209483802318573,
-0.26883623003959656,
0.02609914541244507,
-0.2954304814338684,
0.09687681496143341,
-0.1566203236579895,
0.08070001006126404,
0.7759878039360046,
0.6611340641975403,
0.0060485247522592545,
0.21802808344364166,
0.4103940427303314,
0.679414689540863,
-0.5324850678443909,
0.3578198552131653,
-0.6847373843193054,
-0.20967742800712585,
-0.5578603148460388,
-0.12025170028209686,
0.015351801179349422,
-0.5450286269187927,
-0.035401541739702225,
-0.6379916071891785,
-0.23075039684772491,
0.25191807746887207,
1.3763469457626343,
0.019467366859316826,
0.0932074785232544,
-0.2280886322259903,
-0.3806619942188263,
1.0434720516204834,
-0.8635674118995667,
0.580702006816864,
0.5244646072387695,
0.0325026735663414,
-0.0955108031630516,
-0.6599902510643005,
-1.0034223794937134,
0.07955022156238556,
-0.2749224305152893,
0.22640711069107056,
-0.1938384771347046,
-0.2166762501001358,
0.1218339130282402,
0.33319684863090515,
-0.8250007629394531,
-0.01997322402894497,
-0.5924370884895325,
-0.33885636925697327,
0.8267003297805786,
0.00019466012599878013,
0.5577187538146973,
-0.26751992106437683,
-0.4372295141220093,
-0.2338019162416458,
-0.3338682949542999,
-0.06102893501520157,
0.33239996433258057,
0.606093168258667,
-0.6339116096496582,
0.7455100417137146,
-0.5255191922187805,
0.9438325762748718,
-0.1797097772359848,
-0.38472428917884827,
0.6925244331359863,
-0.616805911064148,
-0.04957257956266403,
0.13821960985660553,
1.1727921962738037,
0.3332185745239258,
0.26171985268592834,
-0.24371905624866486,
0.09551533311605453,
0.17420820891857147,
-0.32796648144721985,
-0.7516334056854248,
-0.02261785976588726,
0.21597793698310852,
-0.4811724126338959,
-0.048445701599121094,
-0.12291008234024048,
-0.8648414611816406,
-0.4245404601097107,
-0.2547711133956909,
0.41904041171073914,
-0.887176513671875,
-0.6481305956840515,
0.0891122817993164,
-0.42245572805404663,
0.4694744646549225,
-0.28996673226356506,
-0.7828457355499268,
0.08964342623949051,
0.47198548913002014,
0.8505256175994873,
0.010794579982757568,
-0.6046406626701355,
-0.1762395054101944,
0.03504391014575958,
0.13203483819961548,
0.7406231760978699,
-0.5371725559234619,
-0.4381427764892578,
0.04966556653380394,
-0.12517598271369934,
-0.4732121527194977,
-0.3095256984233856,
0.8203494548797607,
-0.314665824174881,
0.38532358407974243,
-0.2983574867248535,
-0.5392729640007019,
-0.2186921387910843,
0.5484084486961365,
-0.16532446444034576,
1.1486504077911377,
0.23299212753772736,
-1.4482531547546387,
0.2825603485107422,
-0.6708682775497437,
-0.24642428755760193,
0.5004726052284241,
-0.3732762932777405,
-0.09000331908464432,
-0.40215417742729187,
0.14319506287574768,
0.5803083777427673,
-0.24905945360660553,
-0.16822580993175507,
-0.3810960650444031,
-0.3680116534233093,
-0.03428655490279198,
-0.004417586140334606,
1.146582007408142,
0.47465091943740845,
-0.39683762192726135,
-0.03378315642476082,
-1.084066390991211,
0.5114842653274536,
0.19274228811264038,
-0.5355691909790039,
-0.6978951692581177,
-0.07177406549453735,
0.26452234387397766,
0.43271777033805847,
0.3756225109100342,
-0.8793684840202332,
0.15361791849136353,
-0.746030330657959,
0.35350149869918823,
0.6932162642478943,
-0.22445040941238403,
0.18869182467460632,
-0.31277433037757874,
0.5692044496536255,
-0.15846465528011322,
-0.09300891309976578,
0.3886743187904358,
-0.46989959478378296,
-0.6982016563415527,
-0.45094990730285645,
0.3875235319137573,
0.8318398594856262,
-1.0248075723648071,
0.597088634967804,
-0.8937466740608215,
-0.7862055897712708,
-0.6985071897506714,
0.08655230700969696,
0.31561729311943054,
0.5032711029052734,
0.2923450767993927,
0.04803437367081642,
-0.6546145081520081,
-0.8171694278717041,
-0.6732728481292725,
-0.28638848662376404,
0.3499416410923004,
0.16857998073101044,
0.37939080595970154,
-0.5563302040100098,
0.9832253456115723,
-0.6487899422645569,
-0.44096672534942627,
-0.2634792923927307,
0.06515414267778397,
0.3886350691318512,
0.5385494828224182,
0.3601672351360321,
-0.8179370164871216,
-0.6843188405036926,
-0.0735878273844719,
-0.6263912320137024,
-0.2388497292995453,
0.039775408804416656,
-0.36859130859375,
0.2433878630399704,
0.5380210876464844,
-0.3052505552768707,
0.5558001399040222,
0.6190890073776245,
-0.6910552978515625,
0.5539720058441162,
-0.03583865240216255,
0.04539864510297775,
-1.5029438734054565,
0.2793506979942322,
-0.0375070795416832,
0.15240514278411865,
-0.25275829434394836,
0.3143932819366455,
-0.03673321381211281,
0.14884762465953827,
-0.13866662979125977,
1.0876717567443848,
-0.4942225217819214,
0.44320106506347656,
0.008804937824606895,
0.47205737233161926,
-0.30783510208129883,
0.365500807762146,
-0.10468000918626785,
0.7806380987167358,
0.4711817800998688,
-0.6031069159507751,
0.21300643682479858,
0.5302656888961792,
-0.6395502090454102,
0.4064039885997772,
-0.45109549164772034,
-0.355480432510376,
0.07724683731794357,
-0.2754490375518799,
-1.0829416513442993,
-0.04985739290714264,
0.32620513439178467,
-0.5256924033164978,
0.22481033205986023,
0.26441675424575806,
-0.5694417953491211,
-0.4379430413246155,
-0.61625075340271,
0.29533305764198303,
0.34708985686302185,
-0.480287104845047,
0.3200320899486542,
0.38236889243125916,
-0.061051324009895325,
-0.8801633715629578,
-1.1491235494613647,
0.017576172947883606,
-0.11243902891874313,
-0.6578972339630127,
0.44452378153800964,
-0.5145453810691833,
-0.3440452814102173,
0.21627521514892578,
0.03140336275100708,
-0.01061220746487379,
-0.15123389661312103,
0.34453198313713074,
0.25302550196647644,
0.06324555724859238,
0.014777027070522308,
-0.25201067328453064,
-0.015118272043764591,
-0.19153143465518951,
-0.3545288145542145,
0.8750627040863037,
-0.26035377383232117,
-0.1488247662782669,
-0.24989092350006104,
0.29741808772087097,
0.4004901051521301,
-0.3734539747238159,
0.9939360618591309,
1.064479947090149,
-0.5214956998825073,
0.14799931645393372,
-0.6634485721588135,
0.14331261813640594,
-0.5081449151039124,
0.15099310874938965,
-0.33794212341308594,
-0.8369759321212769,
0.5362558960914612,
-0.12715990841388702,
-0.02954057790338993,
0.8329961895942688,
0.46633002161979675,
0.21170984208583832,
0.6210005879402161,
0.7186527848243713,
-0.28162363171577454,
0.4168435335159302,
-0.626015841960907,
0.7447083592414856,
-1.124210000038147,
-0.42183202505111694,
-0.641573965549469,
-0.15793874859809875,
-1.1254849433898926,
-0.15932472050189972,
0.1908872127532959,
0.06278174370527267,
-0.23175357282161713,
0.3602364659309387,
-1.0600658655166626,
-0.04006245359778404,
0.507856547832489,
-0.03590600565075874,
0.03125786408782005,
0.3788721263408661,
-0.7823998332023621,
-0.1823113113641739,
-0.5318329930305481,
-0.2259647697210312,
0.652112603187561,
-0.08355164527893066,
0.6689599752426147,
0.2607940435409546,
0.9909571409225464,
0.22911135852336884,
0.06467039883136749,
-0.6509273648262024,
0.766758382320404,
-0.15263588726520538,
-0.647606372833252,
-0.24299640953540802,
-0.30510807037353516,
-1.0347611904144287,
0.08388970792293549,
-0.34666740894317627,
-0.9920209050178528,
0.3502711057662964,
-0.28957197070121765,
-0.1492966264486313,
0.36673682928085327,
-0.5337695479393005,
0.508477509021759,
0.04882156848907471,
-0.3624434471130371,
-0.18828384578227997,
-0.38770630955696106,
0.2563621401786804,
0.2986096143722534,
0.5877684950828552,
-0.23494070768356323,
-0.14862163364887238,
1.0756975412368774,
-0.8641200661659241,
0.6205333471298218,
0.0024203844368457794,
0.28017768263816833,
0.21474340558052063,
-0.25343722105026245,
0.3096807599067688,
-0.19754482805728912,
-0.4862881600856781,
0.21808819472789764,
0.07986818999052048,
-0.5557381510734558,
-0.015358719043433666,
1.1280088424682617,
-0.8389399647712708,
-0.19358263909816742,
-1.0160502195358276,
-0.3452889621257782,
-0.232459157705307,
0.6971149444580078,
0.6480535864830017,
0.4745750427246094,
0.08957783132791519,
0.16797606647014618,
0.3589624762535095,
-0.15851536393165588,
0.7681571245193481,
0.3059030771255493,
-0.22767899930477142,
-0.7033904790878296,
1.0720182657241821,
0.5438138246536255,
-0.17739786207675934,
0.3971293866634369,
0.37553757429122925,
-0.48128050565719604,
-0.4635869562625885,
-0.20920608937740326,
0.5474597811698914,
-0.7008478045463562,
-0.2569025456905365,
-0.8809077143669128,
-0.7060015797615051,
-0.6316761374473572,
-0.23755252361297607,
0.24902960658073425,
-0.5259392261505127,
-0.0531289204955101,
-0.003925544675439596,
0.8964614272117615,
0.4989664852619171,
-0.18437491357326508,
0.28939342498779297,
-0.4193512797355652,
0.15134041011333466,
0.34350648522377014,
0.6040692329406738,
0.047790296375751495,
-0.5051107406616211,
-0.18001043796539307,
-0.06562995910644531,
-0.11620628833770752,
-0.5105552673339844,
0.6718963980674744,
0.392522394657135,
0.6038432717323303,
0.058750737458467484,
0.16498370468616486,
0.9123980402946472,
-0.1921585202217102,
1.0000429153442383,
0.42165395617485046,
-0.7306807637214661,
0.3861940801143646,
-0.2848339080810547,
0.7605222463607788,
0.6629153490066528,
0.3834739923477173,
-0.8718786239624023,
-0.3356699049472809,
-0.7232230305671692,
-1.2550002336502075,
0.6643145680427551,
0.17472414672374725,
0.11658827215433121,
-0.03660452738404274,
0.1740512102842331,
0.0387946180999279,
0.02317703701555729,
-0.6923866271972656,
-0.5999752879142761,
-0.272113561630249,
-0.635466992855072,
0.11828859150409698,
-0.4293474555015564,
0.012743194587528706,
-0.6446930170059204,
1.1908066272735596,
-0.08778077363967896,
0.2047203928232193,
0.37691187858581543,
-0.047635287046432495,
0.22002096474170685,
0.45910418033599854,
0.6562972068786621,
0.6224161982536316,
-0.1307416707277298,
-0.06725791096687317,
0.016766486689448357,
-0.9648404121398926,
-0.19862575829029083,
0.4446680247783661,
-0.15619346499443054,
-0.043837204575538635,
0.5628176927566528,
0.7380703091621399,
0.06378162652254105,
-0.5171688199043274,
0.3966926038265228,
-0.25975480675697327,
-0.3035661578178406,
-0.620832622051239,
-0.07471415400505066,
0.3637894093990326,
0.08421500772237778,
0.41522565484046936,
0.1799633502960205,
0.02833707258105278,
-0.35370421409606934,
-0.040946148335933685,
0.4340825378894806,
-0.41364815831184387,
-0.018230509012937546,
0.6174365878105164,
-0.1997433751821518,
-0.22599174082279205,
0.7164754867553711,
-0.4205155670642853,
-0.7528653740882874,
0.0663086548447609,
0.5172048211097717,
0.857771635055542,
0.050308048725128174,
0.02976035140454769,
0.7919063568115234,
0.40299469232559204,
0.15013131499290466,
1.0060101747512817,
-0.04991091415286064,
-0.7604771852493286,
-0.11908289790153503,
-1.1670383214950562,
0.17813464999198914,
0.34534215927124023,
-0.41189661622047424,
0.28828534483909607,
-0.6399827599525452,
-0.09916436672210693,
0.04888250678777695,
0.45068711042404175,
-0.8539661765098572,
0.3241525888442993,
0.025614188984036446,
1.0420403480529785,
-0.6108977198600769,
0.8732573390007019,
0.8224388957023621,
-0.6388623118400574,
-1.2627599239349365,
0.08288025110960007,
-0.2318619340658188,
-0.9486972689628601,
0.6466566920280457,
-0.008854486048221588,
-0.1373603194952011,
0.058116838335990906,
-0.5123699903488159,
-1.131281852722168,
1.1943073272705078,
-0.08271226286888123,
-0.34506750106811523,
0.3622310161590576,
0.12467481940984726,
0.3501232862472534,
-0.13855426013469696,
0.30647721886634827,
0.34316515922546387,
0.8290959596633911,
0.03371863812208176,
-0.9813535213470459,
0.14062587916851044,
-0.6853954792022705,
0.11981848627328873,
0.16059905290603638,
-1.0185697078704834,
0.7022137641906738,
0.11372624337673187,
-0.21908892691135406,
0.011167014949023724,
0.781974196434021,
0.4867788851261139,
0.21568183600902557,
0.5334301590919495,
0.8705723285675049,
0.738932192325592,
-0.20288914442062378,
1.0212297439575195,
-0.4131554961204529,
0.1939009130001068,
0.8734228610992432,
0.019087806344032288,
0.9174787998199463,
0.47467565536499023,
-0.3056761622428894,
0.6825574040412903,
0.4881837069988251,
0.30704009532928467,
0.5958333015441895,
0.17648941278457642,
-0.125961035490036,
-0.13603909313678741,
-0.34070688486099243,
-0.4720395505428314,
0.6696130633354187,
0.46668848395347595,
-0.06892098486423492,
-0.23681527376174927,
-0.039946235716342926,
0.434998482465744,
0.3780514597892761,
-0.2165699452161789,
0.6193151473999023,
0.13712243735790253,
-0.5220533609390259,
1.1427993774414062,
-0.07969067245721817,
1.3626794815063477,
-0.8788872361183167,
0.11732961982488632,
-0.08079036325216293,
0.3384844958782196,
-0.5082936882972717,
-0.8548074960708618,
0.3221287727355957,
-0.14268334209918976,
-0.2441689521074295,
-0.1129680946469307,
0.8542720675468445,
-0.6838890314102173,
-0.8951213955879211,
0.5327928066253662,
0.2518843114376068,
0.2410997897386551,
0.2788083255290985,
-1.004571557044983,
0.2978215515613556,
0.14764581620693207,
-0.10372070968151093,
0.2957717180252075,
0.21197207272052765,
-0.18548345565795898,
0.6964345574378967,
0.45086541771888733,
0.4854607582092285,
0.3264416456222534,
-0.1914588063955307,
0.7578492164611816,
-0.6088672280311584,
-0.5437538027763367,
-0.8538608551025391,
0.42617347836494446,
-0.5322235822677612,
-0.44399628043174744,
0.9293192625045776,
0.6487340927124023,
0.8603745698928833,
0.05294680595397949,
1.105786681175232,
-0.5074107646942139,
0.7463440299034119,
-0.20076535642147064,
1.3169664144515991,
-0.9694439768791199,
-0.060699306428432465,
-0.2801307737827301,
-0.6568441390991211,
-0.18051400780677795,
0.5262532830238342,
-0.15250970423221588,
-0.0550992488861084,
0.7272796630859375,
0.7157556414604187,
-0.08648990094661713,
-0.18232162296772003,
0.0604236014187336,
0.41927197575569153,
0.10792539268732071,
0.1502513885498047,
0.35288941860198975,
-0.8337745666503906,
0.45758873224258423,
-0.5855104923248291,
-0.2598232924938202,
-0.20104844868183136,
-1.0336213111877441,
-0.5389249920845032,
-1.1379154920578003,
-0.5080208778381348,
-0.702964723110199,
-0.28248801827430725,
1.2041367292404175,
0.5050762891769409,
-0.9903802275657654,
-0.3622950315475464,
0.3220261335372925,
0.3366750478744507,
-0.29295915365219116,
-0.2734917104244232,
0.7899372577667236,
0.1023913249373436,
-0.5063735246658325,
0.2693440020084381,
0.20708362758159637,
-0.22675205767154694,
0.06668462604284286,
-0.08280957490205765,
-0.937475323677063,
0.21047869324684143,
0.6097822785377502,
0.6322485208511353,
-0.6352872252464294,
-0.21237024664878845,
-0.26408326625823975,
-0.25315985083580017,
-0.2426026612520218,
0.18527916073799133,
-0.8030006289482117,
0.48065534234046936,
0.934983491897583,
0.41774696111679077,
0.18244227766990662,
-0.4066462814807892,
0.03615427389740944,
-0.6465635299682617,
0.5223831534385681,
0.04910508543252945,
0.4962346851825714,
0.5780209898948669,
-0.42138195037841797,
0.780035674571991,
0.4115789234638214,
-0.5174410343170166,
-0.9586930871009827,
-0.20482000708580017,
-1.047561764717102,
-0.0014110930496826768,
1.286685824394226,
0.1734982281923294,
-0.4049670398235321,
-0.0006599517073482275,
-0.07563043385744095,
0.2891983985900879,
-0.2627428472042084,
0.5836582183837891,
0.7955062389373779,
0.00620844354853034,
0.3745571970939636,
-0.3110796809196472,
0.5763676166534424,
0.19818387925624847,
-0.39661484956741333,
-0.057625602930784225,
-0.0027704823296517134,
0.5455874800682068,
0.4135794937610626,
1.0725455284118652,
-0.14711904525756836,
-0.2651307284832001,
-0.1236005574464798,
0.4183243215084076,
0.04248729720711708,
0.41969263553619385,
-0.1561533361673355,
-0.035991113632917404,
0.029251953586935997,
-0.32660961151123047
]
|
launch/gov_report | launch | 2022-11-09T01:58:24Z | 261 | 3 | [
"task_categories:summarization",
"annotations_creators:no-annotation",
"language_creators:expert-generated",
"multilinguality:monolingual",
"size_categories:10K<n<100K",
"source_datasets:original",
"language:en",
"license:cc-by-4.0",
"region:us"
]
| [
"summarization"
]
| 2022-05-22T16:10:07Z | ---
annotations_creators:
- no-annotation
language_creators:
- expert-generated
language:
- en
license:
- cc-by-4.0
multilinguality:
- monolingual
size_categories:
- 10K<n<100K
source_datasets:
- original
task_categories:
- summarization
task_ids: []
pretty_name: GovReport
---
# Dataset Card for GovReport
## Table of Contents
- [Table of Contents](#table-of-contents)
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Versions](#versions)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [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)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** [https://gov-report-data.github.io](https://gov-report-data.github.io)
- **Repository:** [https://github.com/luyang-huang96/LongDocSum](https://github.com/luyang-huang96/LongDocSum)
- **Paper:** [https://aclanthology.org/2021.naacl-main.112/](https://aclanthology.org/2021.naacl-main.112/)
- **Leaderboard:** [Needs More Information]
- **Point of Contact:** [Needs More Information]
### Dataset Summary
Government report dataset consists of reports and associated summaries written by government research agencies including Congressional Research Service and U.S. Government Accountability Office.
Compared with other long document summarization datasets, government report dataset has longer summaries and documents and requires reading in more context to cover salient words to be summarized.
### Versions
- `1.0.1` (default): remove extra whitespace.
- `1.0.0`: the dataset used in the original paper.
To use different versions, set the `revision` argument of the `load_dataset` function.
### Supported Tasks and Leaderboards
[More Information Needed]
### Languages
English
## Dataset Structure
Three configs are available:
- **plain_text** (default): the text-to-text summarization setting used as in the original paper.
- **plain_text_with_recommendations**: the text-to-text summarization setting, with "What GAO recommends" included in the summary.
- **structure**: data with the section structure.
To use different configs, set the `name` argument of the `load_dataset` function.
### Data Instances
#### plain_text & plain_text_with_recommendations
An example looks as follows.
```
{
"id": "GAO_123456",
"document": "This is a test document.",
"summary": "This is a test summary"
}
```
#### structure
An example looks as follows.
```
{
"id": "GAO_123456",
"document_sections": {
"title": ["test docment section 1 title", "test docment section 1.1 title"],
"paragraphs": ["test document\nsection 1 paragraphs", "test document\nsection 1.1 paragraphs"],
"depth": [1, 2]
},
"summary_sections": {
"title": ["test summary section 1 title", "test summary section 2 title"],
"paragraphs": ["test summary\nsection 1 paragraphs", "test summary\nsection 2 paragraphs"]
}
}
```
### Data Fields
#### plain_text & plain_text_with_recommendations
- `id`: a `string` feature.
- `document`: a `string` feature.
- `summary`: a `string` feature.
#### structure
- `id`: a `string` feature.
- `document_sections`: a dictionary feature containing lists of (each element corresponds to a section):
- `title`: a `string` feature.
- `paragraphs`: a of `string` feature, with `\n` separating different paragraphs.
- `depth`: a `int32` feature.
- `summary_sections`: a dictionary feature containing lists of (each element corresponds to a section):
- `title`: a `string` feature.
- `paragraphs`: a `string` feature, with `\n` separating different paragraphs.
### Data Splits
- train: 17519
- valid: 974
- test: 973
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
Editors of the Congressional Research Service and U.S. Government Accountability Office.
### Personal and Sensitive Information
None.
## 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
CC BY 4.0
### Citation Information
```
@inproceedings{huang-etal-2021-efficient,
title = "Efficient Attentions for Long Document Summarization",
author = "Huang, Luyang and
Cao, Shuyang and
Parulian, Nikolaus and
Ji, Heng and
Wang, Lu",
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.112",
doi = "10.18653/v1/2021.naacl-main.112",
pages = "1419--1436",
abstract = "The quadratic computational and memory complexities of large Transformers have limited their scalability for long document summarization. In this paper, we propose Hepos, a novel efficient encoder-decoder attention with head-wise positional strides to effectively pinpoint salient information from the source. We further conduct a systematic study of existing efficient self-attentions. Combined with Hepos, we are able to process ten times more tokens than existing models that use full attentions. For evaluation, we present a new dataset, GovReport, with significantly longer documents and summaries. Results show that our models produce significantly higher ROUGE scores than competitive comparisons, including new state-of-the-art results on PubMed. Human evaluation also shows that our models generate more informative summaries with fewer unfaithful errors.",
}
```
| [
-0.4118887186050415,
-0.6053345799446106,
0.3106763958930969,
0.3182660937309265,
-0.2581835091114044,
0.012322170659899712,
-0.40015363693237305,
-0.2498190551996231,
0.4585040509700775,
0.514940619468689,
-0.4314328730106354,
-0.8557479977607727,
-0.6195158362388611,
0.33279949426651,
-0.3335583209991455,
1.3216544389724731,
0.18272028863430023,
-0.5206047296524048,
-0.2751648426055908,
0.0022806241177022457,
-0.05046870559453964,
-0.38633981347084045,
-0.2696892023086548,
-0.2847002148628235,
0.5299440622329712,
0.5146782398223877,
0.494182825088501,
0.9369826912879944,
0.8688317537307739,
0.2641073167324066,
-0.1809820532798767,
0.23697488009929657,
-0.5347906947135925,
-0.26878443360328674,
-0.08477668464183807,
-0.20577561855316162,
-0.9158066511154175,
0.048806481063365936,
0.6588643193244934,
0.5610642433166504,
-0.14712394773960114,
0.3208867609500885,
0.20234058797359467,
0.920020341873169,
-0.484156996011734,
0.5943259596824646,
-0.14410609006881714,
-0.2569918632507324,
-0.40161800384521484,
-0.13551019132137299,
-0.2065303772687912,
-0.3018704354763031,
0.16580846905708313,
-0.7176629900932312,
0.26820871233940125,
0.026420628651976585,
0.925929605960846,
0.1252666562795639,
-0.3209855556488037,
-0.24605001509189606,
-0.28539353609085083,
0.6651886105537415,
-0.9354069828987122,
0.13598725199699402,
0.6704246401786804,
0.16637463867664337,
-0.15811534225940704,
-1.000902771949768,
-0.4153772294521332,
-0.018490564078092575,
-0.40427929162979126,
0.4804096519947052,
-0.08042939752340317,
-0.08318383246660233,
0.3938283920288086,
0.5585451722145081,
-0.6604712009429932,
-0.3399045765399933,
-0.6981459856033325,
-0.06733310222625732,
0.8652316927909851,
0.2824600338935852,
-0.04129500314593315,
-0.6387277841567993,
-0.19085368514060974,
-0.19541701674461365,
-0.22564418613910675,
0.046222783625125885,
0.3216209411621094,
0.45269379019737244,
-0.6277092099189758,
0.42450422048568726,
-0.32661402225494385,
0.608678936958313,
0.15459953248500824,
-0.39917540550231934,
0.6166852712631226,
-0.6913666129112244,
-0.22379320859909058,
-0.05366092175245285,
1.029617428779602,
0.6172284483909607,
0.09812004119157791,
0.015984125435352325,
0.005444733425974846,
-0.3107164204120636,
0.24502934515476227,
-0.8283634781837463,
-0.23976130783557892,
0.47007468342781067,
-0.6972660422325134,
-0.25468116998672485,
0.37159061431884766,
-1.0563136339187622,
-0.1767987459897995,
-0.19445905089378357,
-0.08854907006025314,
-0.3992440402507782,
-0.07104194164276123,
0.06674278527498245,
-0.38651809096336365,
0.2466781735420227,
0.0720910057425499,
-0.9682610034942627,
0.4353299140930176,
0.6202224493026733,
0.8409820795059204,
-0.2842879593372345,
-0.5357140898704529,
-0.3538769483566284,
0.2920014560222626,
-0.14543859660625458,
0.9516710638999939,
-0.27625542879104614,
-0.5063926577568054,
-0.12326102703809738,
0.3069109320640564,
0.11490961909294128,
-0.26093873381614685,
0.7386175990104675,
0.03160087764263153,
0.376859575510025,
-0.5022621154785156,
-0.3741608262062073,
-0.09499756991863251,
0.35388264060020447,
-0.6609136462211609,
1.0566132068634033,
0.36930063366889954,
-1.0280466079711914,
0.29399406909942627,
-0.7812224626541138,
-0.6392126679420471,
-0.18391771614551544,
-0.025678126141428947,
-0.5024582147598267,
-0.29540741443634033,
0.39768093824386597,
0.5628800392150879,
-0.5211388468742371,
0.2731717526912689,
-0.03416191413998604,
-0.26632174849510193,
-0.1004011482000351,
-0.042686548084020615,
0.8259031772613525,
0.16327844560146332,
-0.1924809068441391,
0.3277392089366913,
-0.9792290925979614,
-0.18595407903194427,
0.15249747037887573,
-0.5031353235244751,
-0.22069291770458221,
0.019869141280651093,
0.09953770041465759,
-0.08794566988945007,
0.37957289814949036,
-0.2815818786621094,
0.13867884874343872,
-0.4167447090148926,
0.47167402505874634,
0.493895560503006,
0.10150261968374252,
0.5310042500495911,
-0.47899770736694336,
0.3496883511543274,
-0.08069206029176712,
0.3150215148925781,
-0.32920345664024353,
-0.34009411931037903,
-0.5118001103401184,
-0.396456241607666,
0.32084786891937256,
0.61659836769104,
-0.27677303552627563,
1.0989634990692139,
-0.6207866072654724,
-0.5654398202896118,
-0.21911922097206116,
-0.0956588089466095,
0.297084778547287,
0.6761503219604492,
0.5141146183013916,
-0.16193722188472748,
-0.5030813813209534,
-0.9473114013671875,
0.09778732061386108,
-0.006367736961692572,
0.0019777491688728333,
0.1912757009267807,
0.8353174328804016,
-0.09927280992269516,
0.9202786087989807,
-0.8652768135070801,
-0.48354849219322205,
-0.49610939621925354,
0.0609622448682785,
0.44991931319236755,
0.3099218010902405,
0.5850754380226135,
-0.605272114276886,
-0.4372267723083496,
-0.22565023601055145,
-0.7659149765968323,
-0.07512486726045609,
-0.13088557124137878,
-0.06531856954097748,
-0.01401450578123331,
0.41094645857810974,
-0.434649258852005,
0.38772884011268616,
0.3304491639137268,
-0.4627836346626282,
0.4250468909740448,
-0.39627566933631897,
0.20670917630195618,
-1.3084840774536133,
0.39632079005241394,
0.013662525452673435,
0.0013678326504305005,
-0.4601072669029236,
-0.03542216867208481,
0.2616730034351349,
0.057828571647405624,
-0.1872057169675827,
0.5732942223548889,
-0.7112632989883423,
0.1283375769853592,
-0.06621905416250229,
0.2860623002052307,
0.18774481117725372,
0.5772325396537781,
-0.24229900538921356,
0.6830695271492004,
0.4822426438331604,
-0.5637999176979065,
0.3398902118206024,
0.5072999000549316,
-0.29555100202560425,
0.5575652718544006,
-0.7093489766120911,
-0.12080593407154083,
-0.3121626079082489,
0.4919256865978241,
-0.8096654415130615,
-0.4888193905353546,
0.3375469446182251,
-0.44355884194374084,
0.36126473546028137,
0.06484084576368332,
-0.39959293603897095,
-0.5017113089561462,
-0.7516418695449829,
0.03659597411751747,
0.27807334065437317,
-0.1488325297832489,
0.5092461705207825,
0.49191585183143616,
-0.1879885494709015,
-0.6412839293479919,
-0.9841174483299255,
0.17757609486579895,
-0.11293578892946243,
-0.562970757484436,
0.6029515266418457,
-0.19916272163391113,
-0.15505541861057281,
0.07099306583404541,
0.06803511083126068,
0.11585666239261627,
-0.024425938725471497,
0.2283211350440979,
0.12178467959165573,
0.07521237432956696,
-0.0239328071475029,
-0.046651676297187805,
-0.1720823347568512,
0.01467711292207241,
0.160321906208992,
0.4060797393321991,
-0.10093443095684052,
0.009433518163859844,
-0.21992354094982147,
0.6731127500534058,
0.48094815015792847,
-0.5257232189178467,
0.5189549326896667,
0.564121663570404,
-0.15655623376369476,
0.031243521720170975,
-0.33899033069610596,
0.029144778847694397,
-0.4111769199371338,
0.503142774105072,
-0.17171399295330048,
-0.35386061668395996,
0.7686964869499207,
0.29444852471351624,
0.2828402817249298,
0.7837510108947754,
0.3191986083984375,
0.0633290559053421,
0.4365984797477722,
0.508690595626831,
-0.45190712809562683,
0.44784384965896606,
-0.6772094964981079,
-0.05940158665180206,
-0.979591965675354,
-0.2798028588294983,
-0.6879859566688538,
-0.14205147325992584,
-0.576988160610199,
-0.32533252239227295,
0.16019834578037262,
-0.09408710896968842,
-0.09903739392757416,
0.24703991413116455,
-0.7194112539291382,
0.41554147005081177,
0.5716978311538696,
0.0769278034567833,
0.1081114187836647,
-0.04059275984764099,
0.29450204968452454,
0.16067734360694885,
-0.486683189868927,
-0.33507242798805237,
1.1464346647262573,
0.3016476631164551,
0.7491079568862915,
0.02919238805770874,
0.8754000663757324,
0.27987125515937805,
-0.044680509716272354,
-0.6952527165412903,
0.6212371587753296,
-0.4478991627693176,
-0.36611124873161316,
-0.539276123046875,
-0.35154226422309875,
-1.0163494348526,
-0.0387006439268589,
-0.2163277119398117,
-0.520693302154541,
0.3095915615558624,
-0.1060541495680809,
-0.3871856927871704,
0.07253985106945038,
-0.5613628029823303,
0.6783769726753235,
-0.10697553306818008,
-0.18861019611358643,
-0.13927747309207916,
-0.8176378607749939,
0.11862295866012573,
0.24224427342414856,
0.2655494511127472,
-0.006286585237830877,
-0.07867805659770966,
1.0258868932724,
-0.4411495327949524,
0.6887879371643066,
-0.046639520674943924,
0.016574623063206673,
0.2951870858669281,
-0.5441778302192688,
0.6178685426712036,
0.01909741200506687,
-0.17706991732120514,
0.29372748732566833,
-0.1837749034166336,
-0.33118754625320435,
-0.4904319643974304,
0.6345385313034058,
-0.6060761213302612,
-0.46951010823249817,
-0.6602352857589722,
-0.5945122838020325,
0.17025110125541687,
0.5219535231590271,
0.3366127610206604,
0.5798853039741516,
-0.1926404982805252,
0.3445754945278168,
0.4704088866710663,
-0.13659711182117462,
0.4310937523841858,
0.3037370443344116,
-0.03580290451645851,
-0.8541147708892822,
0.7921236753463745,
0.496685653924942,
0.018152067437767982,
0.44585171341896057,
0.2667774558067322,
-0.19677536189556122,
-0.5504001975059509,
-0.18463833630084991,
0.42320188879966736,
-0.5584742426872253,
-0.13495706021785736,
-0.7242786884307861,
-0.36951449513435364,
-0.7765451073646545,
-0.137191504240036,
-0.01002400554716587,
-0.3945532739162445,
-0.39900606870651245,
-0.2966269254684448,
0.46802303194999695,
0.5413752198219299,
-0.23716947436332703,
0.2713984549045563,
-0.6099320650100708,
0.6699454188346863,
0.23349875211715698,
0.39445960521698,
-0.05518599599599838,
-0.48890721797943115,
-0.4249546229839325,
-0.06483582407236099,
-0.20779021084308624,
-0.807327926158905,
0.37544557452201843,
0.19235707819461823,
0.6623502373695374,
0.29004812240600586,
0.24893736839294434,
0.7150479555130005,
-0.28883254528045654,
1.0289102792739868,
-0.012147773057222366,
-0.5857711434364319,
0.5767052173614502,
-0.6269822120666504,
0.6599958539009094,
0.7855483293533325,
0.1506786346435547,
-0.4446020722389221,
-0.40430206060409546,
-0.6074666380882263,
-1.134770393371582,
0.8336700201034546,
0.16644896566867828,
-0.03496992215514183,
-0.31878942251205444,
0.26393771171569824,
-0.08735249936580658,
0.11768154799938202,
-0.3932258188724518,
-0.6760837435722351,
-0.39628171920776367,
-0.3489384353160858,
-0.12613306939601898,
-0.4515538215637207,
-0.2689761519432068,
-0.27522698044776917,
0.7238209247589111,
-0.10615693032741547,
0.39169055223464966,
0.5216517448425293,
-0.01994704268872738,
0.15926721692085266,
0.4149032235145569,
0.7339577078819275,
0.7975968718528748,
-0.5930533409118652,
0.029583634808659554,
0.07043895870447159,
-0.7853816747665405,
-0.2672967314720154,
0.34712353348731995,
-0.22616592049598694,
-0.0332794226706028,
0.6472450494766235,
0.6203986406326294,
0.16956959664821625,
-0.28299424052238464,
0.5620646476745605,
-0.08042442053556442,
-0.44227033853530884,
-0.3370516002178192,
-0.11872434616088867,
0.1035580039024353,
0.06817013770341873,
0.537028431892395,
-0.18538440763950348,
0.30611538887023926,
-0.6950714588165283,
0.1429438292980194,
0.11308447271585464,
-0.14164486527442932,
-0.10293371975421906,
0.47228777408599854,
0.32484275102615356,
-0.27786773443222046,
0.481486439704895,
-0.1763271689414978,
-0.2711127996444702,
0.7060696482658386,
0.43464547395706177,
0.898419976234436,
0.048958148807287216,
0.21975833177566528,
0.6658666729927063,
0.4082981050014496,
-0.24812234938144684,
0.4181511700153351,
-0.18582294881343842,
-0.3135310411453247,
-0.12893146276474,
-0.4314360022544861,
-0.1336316019296646,
0.14631439745426178,
-0.7220245599746704,
0.190871000289917,
-0.45979905128479004,
-0.28862980008125305,
0.06516002863645554,
0.2560823857784271,
-0.3806917667388916,
0.1647658795118332,
-0.11829042434692383,
1.1308799982070923,
-0.5655466318130493,
0.4898097515106201,
0.3950006663799286,
-0.6070271730422974,
-0.656244158744812,
0.08902890235185623,
-0.08675247430801392,
-0.32379668951034546,
0.23645393550395966,
0.1306726038455963,
0.22561246156692505,
-0.2780986428260803,
-0.4483952224254608,
-0.9252721667289734,
1.3227325677871704,
0.19494079053401947,
-0.5127987861633301,
-0.2723938226699829,
0.06380045413970947,
0.47766605019569397,
-0.235450878739357,
0.2872476279735565,
0.7353333830833435,
0.9069753885269165,
-0.22387312352657318,
-0.8390531539916992,
0.18573759496212006,
-0.40820348262786865,
-0.3507595658302307,
0.23272296786308289,
-1.053804874420166,
0.942005455493927,
-0.21731825172901154,
-0.17310670018196106,
-0.1630779504776001,
0.7586157321929932,
0.09651818871498108,
0.3650018572807312,
0.1669321060180664,
0.575994610786438,
0.8627365231513977,
-0.1800529658794403,
1.140891671180725,
-0.3625268340110779,
0.34686964750289917,
1.3503252267837524,
0.007688053417950869,
0.6012738943099976,
0.3214449882507324,
-0.2942569851875305,
0.4602496325969696,
0.41832244396209717,
-0.4102723002433777,
0.648504912853241,
-0.011125636287033558,
0.2962550222873688,
0.13789215683937073,
0.042736802250146866,
-0.5849204659461975,
0.41048648953437805,
0.25317931175231934,
-0.5069793462753296,
-0.2754681408405304,
-0.25998929142951965,
0.1925974041223526,
0.04721284657716751,
-0.24406307935714722,
0.8920792937278748,
0.05983704328536987,
-0.5681528449058533,
0.4638151526451111,
-0.047925740480422974,
0.7560545206069946,
-0.8336166143417358,
0.019076844677329063,
-0.32280245423316956,
0.01964883878827095,
-0.5912451148033142,
-1.0472146272659302,
0.3543125092983246,
0.0004418252210598439,
-0.6041659116744995,
-0.06219205632805824,
0.46967536211013794,
-0.396027147769928,
-0.6395155191421509,
0.21600385010242462,
0.2204122394323349,
0.11384624242782593,
0.13624131679534912,
-0.674469530582428,
-0.12392587214708328,
0.03661361336708069,
-0.513495922088623,
0.29803189635276794,
0.4363464415073395,
-0.048046570271253586,
0.49799466133117676,
0.6058741211891174,
0.3505810797214508,
-0.27213162183761597,
0.22662895917892456,
0.8290204405784607,
-0.9587417244911194,
-0.8572366237640381,
-0.7038062810897827,
0.6048829555511475,
-0.5541667938232422,
-0.4977737367153168,
0.7084506154060364,
0.8687635660171509,
0.4800088405609131,
-0.0032573300413787365,
0.9368796348571777,
-0.3670898973941803,
0.6106157302856445,
-0.3846305012702942,
0.9237805604934692,
-0.4520704746246338,
0.053581032902002335,
-0.3173087537288666,
-0.7158502340316772,
-0.38491231203079224,
0.4901091754436493,
-0.2416784167289734,
-0.06740102916955948,
0.742066502571106,
0.7583114504814148,
-0.03395344316959381,
-0.2826347351074219,
0.067456915974617,
0.3274220824241638,
0.4316967725753784,
0.31510433554649353,
0.1608031839132309,
-0.5410047769546509,
0.6775872707366943,
-0.3977256119251251,
-0.22357586026191711,
-0.1692167967557907,
-0.8888121843338013,
-0.9740751385688782,
-0.765028715133667,
-0.24500174820423126,
-0.2796144485473633,
0.1434049904346466,
0.8140599727630615,
0.5186827778816223,
-0.6812540292739868,
-0.2717047333717346,
0.20664145052433014,
0.14192737638950348,
-0.23786288499832153,
-0.29102861881256104,
0.8727870583534241,
-0.011267921887338161,
-0.5383132696151733,
0.22936095297336578,
0.2766539454460144,
-0.11055640876293182,
-0.022652430459856987,
-0.0602579303085804,
-0.30044496059417725,
0.010590684600174427,
0.6015517115592957,
0.34550318121910095,
-0.5452290177345276,
-0.12256540358066559,
-0.01750372350215912,
-0.2354297637939453,
0.19622613489627838,
0.5072507262229919,
-0.5466979146003723,
0.17356599867343903,
0.7989757061004639,
0.20644117891788483,
0.49454960227012634,
0.17534130811691284,
0.3096645474433899,
-0.5548111796379089,
0.11333345621824265,
-0.12898185849189758,
0.4047008156776428,
0.3451448976993561,
-0.5482909083366394,
0.7518291473388672,
-0.07165216654539108,
-0.6539421081542969,
-0.6577666997909546,
-0.21500526368618011,
-1.4022148847579956,
-0.19297800958156586,
1.175121545791626,
-0.10257798433303833,
-0.535027027130127,
-0.017246605828404427,
-0.36751705408096313,
0.31372249126434326,
-0.9228006601333618,
0.7705417275428772,
0.6203792691230774,
-0.024847151711583138,
-0.008885321207344532,
-0.25597259402275085,
0.47158896923065186,
-0.24590325355529785,
-1.168017864227295,
0.4234943389892578,
0.4836929440498352,
0.284804105758667,
0.3464122414588928,
0.8458725214004517,
-0.1977054923772812,
0.2569288909435272,
-0.030147355049848557,
0.05932007357478142,
-0.4252792000770569,
-0.29454293847084045,
-0.24477502703666687,
0.17301516234874725,
-0.4051644206047058,
-0.033089540898799896
]
|
open-llm-leaderboard/details_OptimalScale__robin-7b-v2-delta | open-llm-leaderboard | 2023-08-27T12:24:39Z | 261 | 0 | [
"region:us"
]
| null | 2023-08-17T23:51:57Z | ---
pretty_name: Evaluation run of OptimalScale/robin-7b-v2-delta
dataset_summary: "Dataset automatically created during the evaluation run of model\
\ [OptimalScale/robin-7b-v2-delta](https://huggingface.co/OptimalScale/robin-7b-v2-delta)\
\ on the [Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard).\n\
\nThe dataset is composed of 61 configuration, each one coresponding to one of the\
\ evaluated task.\n\nThe dataset has been created from 1 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_OptimalScale__robin-7b-v2-delta\"\
,\n\t\"harness_truthfulqa_mc_0\",\n\tsplit=\"train\")\n```\n\n## Latest results\n\
\nThese are the [latest results from run 2023-08-04T17:26:25.175957](https://huggingface.co/datasets/open-llm-leaderboard/details_OptimalScale__robin-7b-v2-delta/blob/main/results_2023-08-04T17%3A26%3A25.175957.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.3929860483472965,\n\
\ \"acc_stderr\": 0.03475011382789092,\n \"acc_norm\": 0.3973144877483442,\n\
\ \"acc_norm_stderr\": 0.034741735928325954,\n \"mc1\": 0.2729498164014688,\n\
\ \"mc1_stderr\": 0.01559475363200652,\n \"mc2\": 0.4227251694229852,\n\
\ \"mc2_stderr\": 0.014483446210472699\n },\n \"harness|arc:challenge|25\"\
: {\n \"acc\": 0.4351535836177474,\n \"acc_stderr\": 0.014487986197186047,\n\
\ \"acc_norm\": 0.49146757679180886,\n \"acc_norm_stderr\": 0.01460926316563219\n\
\ },\n \"harness|hellaswag|10\": {\n \"acc\": 0.5452101175064729,\n\
\ \"acc_stderr\": 0.004969341773423513,\n \"acc_norm\": 0.7442740489942242,\n\
\ \"acc_norm_stderr\": 0.004353768730644565\n },\n \"harness|hendrycksTest-abstract_algebra|5\"\
: {\n \"acc\": 0.33,\n \"acc_stderr\": 0.04725815626252605,\n \
\ \"acc_norm\": 0.33,\n \"acc_norm_stderr\": 0.04725815626252605\n \
\ },\n \"harness|hendrycksTest-anatomy|5\": {\n \"acc\": 0.4444444444444444,\n\
\ \"acc_stderr\": 0.04292596718256981,\n \"acc_norm\": 0.4444444444444444,\n\
\ \"acc_norm_stderr\": 0.04292596718256981\n },\n \"harness|hendrycksTest-astronomy|5\"\
: {\n \"acc\": 0.35526315789473684,\n \"acc_stderr\": 0.03894734487013317,\n\
\ \"acc_norm\": 0.35526315789473684,\n \"acc_norm_stderr\": 0.03894734487013317\n\
\ },\n \"harness|hendrycksTest-business_ethics|5\": {\n \"acc\": 0.47,\n\
\ \"acc_stderr\": 0.05016135580465919,\n \"acc_norm\": 0.47,\n \
\ \"acc_norm_stderr\": 0.05016135580465919\n },\n \"harness|hendrycksTest-clinical_knowledge|5\"\
: {\n \"acc\": 0.39245283018867927,\n \"acc_stderr\": 0.03005258057955784,\n\
\ \"acc_norm\": 0.39245283018867927,\n \"acc_norm_stderr\": 0.03005258057955784\n\
\ },\n \"harness|hendrycksTest-college_biology|5\": {\n \"acc\": 0.3611111111111111,\n\
\ \"acc_stderr\": 0.040166600304512336,\n \"acc_norm\": 0.3611111111111111,\n\
\ \"acc_norm_stderr\": 0.040166600304512336\n },\n \"harness|hendrycksTest-college_chemistry|5\"\
: {\n \"acc\": 0.24,\n \"acc_stderr\": 0.042923469599092816,\n \
\ \"acc_norm\": 0.24,\n \"acc_norm_stderr\": 0.042923469599092816\n \
\ },\n \"harness|hendrycksTest-college_computer_science|5\": {\n \"\
acc\": 0.3,\n \"acc_stderr\": 0.046056618647183814,\n \"acc_norm\"\
: 0.3,\n \"acc_norm_stderr\": 0.046056618647183814\n },\n \"harness|hendrycksTest-college_mathematics|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_medicine|5\": {\n \"acc\": 0.3236994219653179,\n\
\ \"acc_stderr\": 0.03567603799639169,\n \"acc_norm\": 0.3236994219653179,\n\
\ \"acc_norm_stderr\": 0.03567603799639169\n },\n \"harness|hendrycksTest-college_physics|5\"\
: {\n \"acc\": 0.21568627450980393,\n \"acc_stderr\": 0.04092563958237654,\n\
\ \"acc_norm\": 0.21568627450980393,\n \"acc_norm_stderr\": 0.04092563958237654\n\
\ },\n \"harness|hendrycksTest-computer_security|5\": {\n \"acc\":\
\ 0.46,\n \"acc_stderr\": 0.05009082659620333,\n \"acc_norm\": 0.46,\n\
\ \"acc_norm_stderr\": 0.05009082659620333\n },\n \"harness|hendrycksTest-conceptual_physics|5\"\
: {\n \"acc\": 0.3276595744680851,\n \"acc_stderr\": 0.030683020843231004,\n\
\ \"acc_norm\": 0.3276595744680851,\n \"acc_norm_stderr\": 0.030683020843231004\n\
\ },\n \"harness|hendrycksTest-econometrics|5\": {\n \"acc\": 0.21052631578947367,\n\
\ \"acc_stderr\": 0.03835153954399421,\n \"acc_norm\": 0.21052631578947367,\n\
\ \"acc_norm_stderr\": 0.03835153954399421\n },\n \"harness|hendrycksTest-electrical_engineering|5\"\
: {\n \"acc\": 0.31724137931034485,\n \"acc_stderr\": 0.038783523721386215,\n\
\ \"acc_norm\": 0.31724137931034485,\n \"acc_norm_stderr\": 0.038783523721386215\n\
\ },\n \"harness|hendrycksTest-elementary_mathematics|5\": {\n \"acc\"\
: 0.25132275132275134,\n \"acc_stderr\": 0.022340482339643898,\n \"\
acc_norm\": 0.25132275132275134,\n \"acc_norm_stderr\": 0.022340482339643898\n\
\ },\n \"harness|hendrycksTest-formal_logic|5\": {\n \"acc\": 0.24603174603174602,\n\
\ \"acc_stderr\": 0.03852273364924315,\n \"acc_norm\": 0.24603174603174602,\n\
\ \"acc_norm_stderr\": 0.03852273364924315\n },\n \"harness|hendrycksTest-global_facts|5\"\
: {\n \"acc\": 0.31,\n \"acc_stderr\": 0.04648231987117316,\n \
\ \"acc_norm\": 0.31,\n \"acc_norm_stderr\": 0.04648231987117316\n \
\ },\n \"harness|hendrycksTest-high_school_biology|5\": {\n \"acc\": 0.4,\n\
\ \"acc_stderr\": 0.027869320571664632,\n \"acc_norm\": 0.4,\n \
\ \"acc_norm_stderr\": 0.027869320571664632\n },\n \"harness|hendrycksTest-high_school_chemistry|5\"\
: {\n \"acc\": 0.26108374384236455,\n \"acc_stderr\": 0.030903796952114482,\n\
\ \"acc_norm\": 0.26108374384236455,\n \"acc_norm_stderr\": 0.030903796952114482\n\
\ },\n \"harness|hendrycksTest-high_school_computer_science|5\": {\n \
\ \"acc\": 0.38,\n \"acc_stderr\": 0.04878317312145632,\n \"acc_norm\"\
: 0.38,\n \"acc_norm_stderr\": 0.04878317312145632\n },\n \"harness|hendrycksTest-high_school_european_history|5\"\
: {\n \"acc\": 0.5212121212121212,\n \"acc_stderr\": 0.03900828913737302,\n\
\ \"acc_norm\": 0.5212121212121212,\n \"acc_norm_stderr\": 0.03900828913737302\n\
\ },\n \"harness|hendrycksTest-high_school_geography|5\": {\n \"acc\"\
: 0.45454545454545453,\n \"acc_stderr\": 0.03547601494006937,\n \"\
acc_norm\": 0.45454545454545453,\n \"acc_norm_stderr\": 0.03547601494006937\n\
\ },\n \"harness|hendrycksTest-high_school_government_and_politics|5\": {\n\
\ \"acc\": 0.5129533678756477,\n \"acc_stderr\": 0.036072280610477486,\n\
\ \"acc_norm\": 0.5129533678756477,\n \"acc_norm_stderr\": 0.036072280610477486\n\
\ },\n \"harness|hendrycksTest-high_school_macroeconomics|5\": {\n \
\ \"acc\": 0.32564102564102565,\n \"acc_stderr\": 0.02375966576741229,\n\
\ \"acc_norm\": 0.32564102564102565,\n \"acc_norm_stderr\": 0.02375966576741229\n\
\ },\n \"harness|hendrycksTest-high_school_mathematics|5\": {\n \"\
acc\": 0.24814814814814815,\n \"acc_stderr\": 0.0263357394040558,\n \
\ \"acc_norm\": 0.24814814814814815,\n \"acc_norm_stderr\": 0.0263357394040558\n\
\ },\n \"harness|hendrycksTest-high_school_microeconomics|5\": {\n \
\ \"acc\": 0.3277310924369748,\n \"acc_stderr\": 0.03048991141767323,\n \
\ \"acc_norm\": 0.3277310924369748,\n \"acc_norm_stderr\": 0.03048991141767323\n\
\ },\n \"harness|hendrycksTest-high_school_physics|5\": {\n \"acc\"\
: 0.2582781456953642,\n \"acc_stderr\": 0.035737053147634576,\n \"\
acc_norm\": 0.2582781456953642,\n \"acc_norm_stderr\": 0.035737053147634576\n\
\ },\n \"harness|hendrycksTest-high_school_psychology|5\": {\n \"acc\"\
: 0.45871559633027525,\n \"acc_stderr\": 0.021364122533881695,\n \"\
acc_norm\": 0.45871559633027525,\n \"acc_norm_stderr\": 0.021364122533881695\n\
\ },\n \"harness|hendrycksTest-high_school_statistics|5\": {\n \"acc\"\
: 0.42592592592592593,\n \"acc_stderr\": 0.03372343271653063,\n \"\
acc_norm\": 0.42592592592592593,\n \"acc_norm_stderr\": 0.03372343271653063\n\
\ },\n \"harness|hendrycksTest-high_school_us_history|5\": {\n \"acc\"\
: 0.47549019607843135,\n \"acc_stderr\": 0.035050931943487976,\n \"\
acc_norm\": 0.47549019607843135,\n \"acc_norm_stderr\": 0.035050931943487976\n\
\ },\n \"harness|hendrycksTest-high_school_world_history|5\": {\n \"\
acc\": 0.5232067510548524,\n \"acc_stderr\": 0.03251215201141018,\n \
\ \"acc_norm\": 0.5232067510548524,\n \"acc_norm_stderr\": 0.03251215201141018\n\
\ },\n \"harness|hendrycksTest-human_aging|5\": {\n \"acc\": 0.5112107623318386,\n\
\ \"acc_stderr\": 0.033549366530984746,\n \"acc_norm\": 0.5112107623318386,\n\
\ \"acc_norm_stderr\": 0.033549366530984746\n },\n \"harness|hendrycksTest-human_sexuality|5\"\
: {\n \"acc\": 0.4198473282442748,\n \"acc_stderr\": 0.04328577215262972,\n\
\ \"acc_norm\": 0.4198473282442748,\n \"acc_norm_stderr\": 0.04328577215262972\n\
\ },\n \"harness|hendrycksTest-international_law|5\": {\n \"acc\":\
\ 0.5867768595041323,\n \"acc_stderr\": 0.04495087843548408,\n \"\
acc_norm\": 0.5867768595041323,\n \"acc_norm_stderr\": 0.04495087843548408\n\
\ },\n \"harness|hendrycksTest-jurisprudence|5\": {\n \"acc\": 0.5092592592592593,\n\
\ \"acc_stderr\": 0.04832853553437056,\n \"acc_norm\": 0.5092592592592593,\n\
\ \"acc_norm_stderr\": 0.04832853553437056\n },\n \"harness|hendrycksTest-logical_fallacies|5\"\
: {\n \"acc\": 0.39263803680981596,\n \"acc_stderr\": 0.03836740907831028,\n\
\ \"acc_norm\": 0.39263803680981596,\n \"acc_norm_stderr\": 0.03836740907831028\n\
\ },\n \"harness|hendrycksTest-machine_learning|5\": {\n \"acc\": 0.2857142857142857,\n\
\ \"acc_stderr\": 0.042878587513404565,\n \"acc_norm\": 0.2857142857142857,\n\
\ \"acc_norm_stderr\": 0.042878587513404565\n },\n \"harness|hendrycksTest-management|5\"\
: {\n \"acc\": 0.47572815533980584,\n \"acc_stderr\": 0.049449010929737795,\n\
\ \"acc_norm\": 0.47572815533980584,\n \"acc_norm_stderr\": 0.049449010929737795\n\
\ },\n \"harness|hendrycksTest-marketing|5\": {\n \"acc\": 0.594017094017094,\n\
\ \"acc_stderr\": 0.03217180182641086,\n \"acc_norm\": 0.594017094017094,\n\
\ \"acc_norm_stderr\": 0.03217180182641086\n },\n \"harness|hendrycksTest-medical_genetics|5\"\
: {\n \"acc\": 0.46,\n \"acc_stderr\": 0.05009082659620333,\n \
\ \"acc_norm\": 0.46,\n \"acc_norm_stderr\": 0.05009082659620333\n \
\ },\n \"harness|hendrycksTest-miscellaneous|5\": {\n \"acc\": 0.5389527458492975,\n\
\ \"acc_stderr\": 0.017825621793239012,\n \"acc_norm\": 0.5389527458492975,\n\
\ \"acc_norm_stderr\": 0.017825621793239012\n },\n \"harness|hendrycksTest-moral_disputes|5\"\
: {\n \"acc\": 0.4421965317919075,\n \"acc_stderr\": 0.0267386036438074,\n\
\ \"acc_norm\": 0.4421965317919075,\n \"acc_norm_stderr\": 0.0267386036438074\n\
\ },\n \"harness|hendrycksTest-moral_scenarios|5\": {\n \"acc\": 0.24804469273743016,\n\
\ \"acc_stderr\": 0.01444415780826145,\n \"acc_norm\": 0.24804469273743016,\n\
\ \"acc_norm_stderr\": 0.01444415780826145\n },\n \"harness|hendrycksTest-nutrition|5\"\
: {\n \"acc\": 0.3888888888888889,\n \"acc_stderr\": 0.02791405551046801,\n\
\ \"acc_norm\": 0.3888888888888889,\n \"acc_norm_stderr\": 0.02791405551046801\n\
\ },\n \"harness|hendrycksTest-philosophy|5\": {\n \"acc\": 0.4405144694533762,\n\
\ \"acc_stderr\": 0.028196400574197422,\n \"acc_norm\": 0.4405144694533762,\n\
\ \"acc_norm_stderr\": 0.028196400574197422\n },\n \"harness|hendrycksTest-prehistory|5\"\
: {\n \"acc\": 0.4876543209876543,\n \"acc_stderr\": 0.027812262269327235,\n\
\ \"acc_norm\": 0.4876543209876543,\n \"acc_norm_stderr\": 0.027812262269327235\n\
\ },\n \"harness|hendrycksTest-professional_accounting|5\": {\n \"\
acc\": 0.30141843971631205,\n \"acc_stderr\": 0.02737412888263115,\n \
\ \"acc_norm\": 0.30141843971631205,\n \"acc_norm_stderr\": 0.02737412888263115\n\
\ },\n \"harness|hendrycksTest-professional_law|5\": {\n \"acc\": 0.29465449804432853,\n\
\ \"acc_stderr\": 0.011643576764069546,\n \"acc_norm\": 0.29465449804432853,\n\
\ \"acc_norm_stderr\": 0.011643576764069546\n },\n \"harness|hendrycksTest-professional_medicine|5\"\
: {\n \"acc\": 0.3786764705882353,\n \"acc_stderr\": 0.029465133639776132,\n\
\ \"acc_norm\": 0.3786764705882353,\n \"acc_norm_stderr\": 0.029465133639776132\n\
\ },\n \"harness|hendrycksTest-professional_psychology|5\": {\n \"\
acc\": 0.36764705882352944,\n \"acc_stderr\": 0.019506291693954847,\n \
\ \"acc_norm\": 0.36764705882352944,\n \"acc_norm_stderr\": 0.019506291693954847\n\
\ },\n \"harness|hendrycksTest-public_relations|5\": {\n \"acc\": 0.43636363636363634,\n\
\ \"acc_stderr\": 0.04750185058907297,\n \"acc_norm\": 0.43636363636363634,\n\
\ \"acc_norm_stderr\": 0.04750185058907297\n },\n \"harness|hendrycksTest-security_studies|5\"\
: {\n \"acc\": 0.3142857142857143,\n \"acc_stderr\": 0.029719329422417475,\n\
\ \"acc_norm\": 0.3142857142857143,\n \"acc_norm_stderr\": 0.029719329422417475\n\
\ },\n \"harness|hendrycksTest-sociology|5\": {\n \"acc\": 0.4527363184079602,\n\
\ \"acc_stderr\": 0.03519702717576915,\n \"acc_norm\": 0.4527363184079602,\n\
\ \"acc_norm_stderr\": 0.03519702717576915\n },\n \"harness|hendrycksTest-us_foreign_policy|5\"\
: {\n \"acc\": 0.58,\n \"acc_stderr\": 0.049604496374885836,\n \
\ \"acc_norm\": 0.58,\n \"acc_norm_stderr\": 0.049604496374885836\n \
\ },\n \"harness|hendrycksTest-virology|5\": {\n \"acc\": 0.35542168674698793,\n\
\ \"acc_stderr\": 0.03726214354322416,\n \"acc_norm\": 0.35542168674698793,\n\
\ \"acc_norm_stderr\": 0.03726214354322416\n },\n \"harness|hendrycksTest-world_religions|5\"\
: {\n \"acc\": 0.5847953216374269,\n \"acc_stderr\": 0.037792759455032014,\n\
\ \"acc_norm\": 0.5847953216374269,\n \"acc_norm_stderr\": 0.037792759455032014\n\
\ },\n \"harness|truthfulqa:mc|0\": {\n \"mc1\": 0.2729498164014688,\n\
\ \"mc1_stderr\": 0.01559475363200652,\n \"mc2\": 0.4227251694229852,\n\
\ \"mc2_stderr\": 0.014483446210472699\n }\n}\n```"
repo_url: https://huggingface.co/OptimalScale/robin-7b-v2-delta
leaderboard_url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard
point_of_contact: [email protected]
configs:
- config_name: harness_arc_challenge_25
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|arc:challenge|25_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|arc:challenge|25_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hellaswag_10
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hellaswag|10_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hellaswag|10_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-anatomy|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-astronomy|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-business_ethics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-college_biology|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-college_medicine|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-college_physics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-computer_security|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-econometrics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-formal_logic|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-global_facts|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-human_aging|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-international_law|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-machine_learning|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-management|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-marketing|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-nutrition|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-philosophy|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-prehistory|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-professional_law|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-public_relations|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-security_studies|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-sociology|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-virology|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-world_religions|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-anatomy|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-astronomy|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-business_ethics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-college_biology|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-college_medicine|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-college_physics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-computer_security|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-econometrics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-formal_logic|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-global_facts|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-human_aging|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-international_law|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-machine_learning|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-management|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-marketing|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-nutrition|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-philosophy|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-prehistory|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-professional_law|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-public_relations|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-security_studies|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-sociology|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-virology|5_2023-08-04T17:26:25.175957.parquet'
- '**/details_harness|hendrycksTest-world_religions|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_abstract_algebra_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_anatomy_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-anatomy|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-anatomy|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_astronomy_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-astronomy|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-astronomy|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_business_ethics_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-business_ethics|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-business_ethics|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_clinical_knowledge_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_college_biology_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-college_biology|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_biology|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_college_chemistry_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_college_computer_science_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_college_mathematics_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_college_medicine_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-college_medicine|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_medicine|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_college_physics_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-college_physics|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_physics|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_computer_security_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-computer_security|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-computer_security|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_conceptual_physics_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_econometrics_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-econometrics|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-econometrics|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_electrical_engineering_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_elementary_mathematics_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_formal_logic_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-formal_logic|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-formal_logic|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_global_facts_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-global_facts|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-global_facts|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_high_school_biology_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_high_school_chemistry_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_high_school_computer_science_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_high_school_european_history_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_high_school_geography_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_high_school_government_and_politics_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_high_school_macroeconomics_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_high_school_mathematics_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_high_school_microeconomics_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_high_school_physics_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_high_school_psychology_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_high_school_statistics_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_high_school_us_history_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_high_school_world_history_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_human_aging_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-human_aging|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-human_aging|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_human_sexuality_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_international_law_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-international_law|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-international_law|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_jurisprudence_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_logical_fallacies_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_machine_learning_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-machine_learning|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-machine_learning|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_management_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-management|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-management|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_marketing_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-marketing|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-marketing|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_medical_genetics_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_miscellaneous_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_moral_disputes_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_moral_scenarios_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_nutrition_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-nutrition|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-nutrition|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_philosophy_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-philosophy|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-philosophy|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_prehistory_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-prehistory|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-prehistory|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_professional_accounting_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_professional_law_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-professional_law|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_law|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_professional_medicine_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_professional_psychology_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_public_relations_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-public_relations|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-public_relations|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_security_studies_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-security_studies|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-security_studies|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_sociology_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-sociology|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-sociology|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_us_foreign_policy_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_virology_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-virology|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-virology|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_hendrycksTest_world_religions_5
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|hendrycksTest-world_religions|5_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-world_religions|5_2023-08-04T17:26:25.175957.parquet'
- config_name: harness_truthfulqa_mc_0
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- '**/details_harness|truthfulqa:mc|0_2023-08-04T17:26:25.175957.parquet'
- split: latest
path:
- '**/details_harness|truthfulqa:mc|0_2023-08-04T17:26:25.175957.parquet'
- config_name: results
data_files:
- split: 2023_08_04T17_26_25.175957
path:
- results_2023-08-04T17:26:25.175957.parquet
- split: latest
path:
- results_2023-08-04T17:26:25.175957.parquet
---
# Dataset Card for Evaluation run of OptimalScale/robin-7b-v2-delta
## Dataset Description
- **Homepage:**
- **Repository:** https://huggingface.co/OptimalScale/robin-7b-v2-delta
- **Paper:**
- **Leaderboard:** https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard
- **Point of Contact:** [email protected]
### Dataset Summary
Dataset automatically created during the evaluation run of model [OptimalScale/robin-7b-v2-delta](https://huggingface.co/OptimalScale/robin-7b-v2-delta) on the [Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard).
The dataset is composed of 61 configuration, each one coresponding to one of the evaluated task.
The dataset has been created from 1 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_OptimalScale__robin-7b-v2-delta",
"harness_truthfulqa_mc_0",
split="train")
```
## Latest results
These are the [latest results from run 2023-08-04T17:26:25.175957](https://huggingface.co/datasets/open-llm-leaderboard/details_OptimalScale__robin-7b-v2-delta/blob/main/results_2023-08-04T17%3A26%3A25.175957.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.3929860483472965,
"acc_stderr": 0.03475011382789092,
"acc_norm": 0.3973144877483442,
"acc_norm_stderr": 0.034741735928325954,
"mc1": 0.2729498164014688,
"mc1_stderr": 0.01559475363200652,
"mc2": 0.4227251694229852,
"mc2_stderr": 0.014483446210472699
},
"harness|arc:challenge|25": {
"acc": 0.4351535836177474,
"acc_stderr": 0.014487986197186047,
"acc_norm": 0.49146757679180886,
"acc_norm_stderr": 0.01460926316563219
},
"harness|hellaswag|10": {
"acc": 0.5452101175064729,
"acc_stderr": 0.004969341773423513,
"acc_norm": 0.7442740489942242,
"acc_norm_stderr": 0.004353768730644565
},
"harness|hendrycksTest-abstract_algebra|5": {
"acc": 0.33,
"acc_stderr": 0.04725815626252605,
"acc_norm": 0.33,
"acc_norm_stderr": 0.04725815626252605
},
"harness|hendrycksTest-anatomy|5": {
"acc": 0.4444444444444444,
"acc_stderr": 0.04292596718256981,
"acc_norm": 0.4444444444444444,
"acc_norm_stderr": 0.04292596718256981
},
"harness|hendrycksTest-astronomy|5": {
"acc": 0.35526315789473684,
"acc_stderr": 0.03894734487013317,
"acc_norm": 0.35526315789473684,
"acc_norm_stderr": 0.03894734487013317
},
"harness|hendrycksTest-business_ethics|5": {
"acc": 0.47,
"acc_stderr": 0.05016135580465919,
"acc_norm": 0.47,
"acc_norm_stderr": 0.05016135580465919
},
"harness|hendrycksTest-clinical_knowledge|5": {
"acc": 0.39245283018867927,
"acc_stderr": 0.03005258057955784,
"acc_norm": 0.39245283018867927,
"acc_norm_stderr": 0.03005258057955784
},
"harness|hendrycksTest-college_biology|5": {
"acc": 0.3611111111111111,
"acc_stderr": 0.040166600304512336,
"acc_norm": 0.3611111111111111,
"acc_norm_stderr": 0.040166600304512336
},
"harness|hendrycksTest-college_chemistry|5": {
"acc": 0.24,
"acc_stderr": 0.042923469599092816,
"acc_norm": 0.24,
"acc_norm_stderr": 0.042923469599092816
},
"harness|hendrycksTest-college_computer_science|5": {
"acc": 0.3,
"acc_stderr": 0.046056618647183814,
"acc_norm": 0.3,
"acc_norm_stderr": 0.046056618647183814
},
"harness|hendrycksTest-college_mathematics|5": {
"acc": 0.23,
"acc_stderr": 0.04229525846816508,
"acc_norm": 0.23,
"acc_norm_stderr": 0.04229525846816508
},
"harness|hendrycksTest-college_medicine|5": {
"acc": 0.3236994219653179,
"acc_stderr": 0.03567603799639169,
"acc_norm": 0.3236994219653179,
"acc_norm_stderr": 0.03567603799639169
},
"harness|hendrycksTest-college_physics|5": {
"acc": 0.21568627450980393,
"acc_stderr": 0.04092563958237654,
"acc_norm": 0.21568627450980393,
"acc_norm_stderr": 0.04092563958237654
},
"harness|hendrycksTest-computer_security|5": {
"acc": 0.46,
"acc_stderr": 0.05009082659620333,
"acc_norm": 0.46,
"acc_norm_stderr": 0.05009082659620333
},
"harness|hendrycksTest-conceptual_physics|5": {
"acc": 0.3276595744680851,
"acc_stderr": 0.030683020843231004,
"acc_norm": 0.3276595744680851,
"acc_norm_stderr": 0.030683020843231004
},
"harness|hendrycksTest-econometrics|5": {
"acc": 0.21052631578947367,
"acc_stderr": 0.03835153954399421,
"acc_norm": 0.21052631578947367,
"acc_norm_stderr": 0.03835153954399421
},
"harness|hendrycksTest-electrical_engineering|5": {
"acc": 0.31724137931034485,
"acc_stderr": 0.038783523721386215,
"acc_norm": 0.31724137931034485,
"acc_norm_stderr": 0.038783523721386215
},
"harness|hendrycksTest-elementary_mathematics|5": {
"acc": 0.25132275132275134,
"acc_stderr": 0.022340482339643898,
"acc_norm": 0.25132275132275134,
"acc_norm_stderr": 0.022340482339643898
},
"harness|hendrycksTest-formal_logic|5": {
"acc": 0.24603174603174602,
"acc_stderr": 0.03852273364924315,
"acc_norm": 0.24603174603174602,
"acc_norm_stderr": 0.03852273364924315
},
"harness|hendrycksTest-global_facts|5": {
"acc": 0.31,
"acc_stderr": 0.04648231987117316,
"acc_norm": 0.31,
"acc_norm_stderr": 0.04648231987117316
},
"harness|hendrycksTest-high_school_biology|5": {
"acc": 0.4,
"acc_stderr": 0.027869320571664632,
"acc_norm": 0.4,
"acc_norm_stderr": 0.027869320571664632
},
"harness|hendrycksTest-high_school_chemistry|5": {
"acc": 0.26108374384236455,
"acc_stderr": 0.030903796952114482,
"acc_norm": 0.26108374384236455,
"acc_norm_stderr": 0.030903796952114482
},
"harness|hendrycksTest-high_school_computer_science|5": {
"acc": 0.38,
"acc_stderr": 0.04878317312145632,
"acc_norm": 0.38,
"acc_norm_stderr": 0.04878317312145632
},
"harness|hendrycksTest-high_school_european_history|5": {
"acc": 0.5212121212121212,
"acc_stderr": 0.03900828913737302,
"acc_norm": 0.5212121212121212,
"acc_norm_stderr": 0.03900828913737302
},
"harness|hendrycksTest-high_school_geography|5": {
"acc": 0.45454545454545453,
"acc_stderr": 0.03547601494006937,
"acc_norm": 0.45454545454545453,
"acc_norm_stderr": 0.03547601494006937
},
"harness|hendrycksTest-high_school_government_and_politics|5": {
"acc": 0.5129533678756477,
"acc_stderr": 0.036072280610477486,
"acc_norm": 0.5129533678756477,
"acc_norm_stderr": 0.036072280610477486
},
"harness|hendrycksTest-high_school_macroeconomics|5": {
"acc": 0.32564102564102565,
"acc_stderr": 0.02375966576741229,
"acc_norm": 0.32564102564102565,
"acc_norm_stderr": 0.02375966576741229
},
"harness|hendrycksTest-high_school_mathematics|5": {
"acc": 0.24814814814814815,
"acc_stderr": 0.0263357394040558,
"acc_norm": 0.24814814814814815,
"acc_norm_stderr": 0.0263357394040558
},
"harness|hendrycksTest-high_school_microeconomics|5": {
"acc": 0.3277310924369748,
"acc_stderr": 0.03048991141767323,
"acc_norm": 0.3277310924369748,
"acc_norm_stderr": 0.03048991141767323
},
"harness|hendrycksTest-high_school_physics|5": {
"acc": 0.2582781456953642,
"acc_stderr": 0.035737053147634576,
"acc_norm": 0.2582781456953642,
"acc_norm_stderr": 0.035737053147634576
},
"harness|hendrycksTest-high_school_psychology|5": {
"acc": 0.45871559633027525,
"acc_stderr": 0.021364122533881695,
"acc_norm": 0.45871559633027525,
"acc_norm_stderr": 0.021364122533881695
},
"harness|hendrycksTest-high_school_statistics|5": {
"acc": 0.42592592592592593,
"acc_stderr": 0.03372343271653063,
"acc_norm": 0.42592592592592593,
"acc_norm_stderr": 0.03372343271653063
},
"harness|hendrycksTest-high_school_us_history|5": {
"acc": 0.47549019607843135,
"acc_stderr": 0.035050931943487976,
"acc_norm": 0.47549019607843135,
"acc_norm_stderr": 0.035050931943487976
},
"harness|hendrycksTest-high_school_world_history|5": {
"acc": 0.5232067510548524,
"acc_stderr": 0.03251215201141018,
"acc_norm": 0.5232067510548524,
"acc_norm_stderr": 0.03251215201141018
},
"harness|hendrycksTest-human_aging|5": {
"acc": 0.5112107623318386,
"acc_stderr": 0.033549366530984746,
"acc_norm": 0.5112107623318386,
"acc_norm_stderr": 0.033549366530984746
},
"harness|hendrycksTest-human_sexuality|5": {
"acc": 0.4198473282442748,
"acc_stderr": 0.04328577215262972,
"acc_norm": 0.4198473282442748,
"acc_norm_stderr": 0.04328577215262972
},
"harness|hendrycksTest-international_law|5": {
"acc": 0.5867768595041323,
"acc_stderr": 0.04495087843548408,
"acc_norm": 0.5867768595041323,
"acc_norm_stderr": 0.04495087843548408
},
"harness|hendrycksTest-jurisprudence|5": {
"acc": 0.5092592592592593,
"acc_stderr": 0.04832853553437056,
"acc_norm": 0.5092592592592593,
"acc_norm_stderr": 0.04832853553437056
},
"harness|hendrycksTest-logical_fallacies|5": {
"acc": 0.39263803680981596,
"acc_stderr": 0.03836740907831028,
"acc_norm": 0.39263803680981596,
"acc_norm_stderr": 0.03836740907831028
},
"harness|hendrycksTest-machine_learning|5": {
"acc": 0.2857142857142857,
"acc_stderr": 0.042878587513404565,
"acc_norm": 0.2857142857142857,
"acc_norm_stderr": 0.042878587513404565
},
"harness|hendrycksTest-management|5": {
"acc": 0.47572815533980584,
"acc_stderr": 0.049449010929737795,
"acc_norm": 0.47572815533980584,
"acc_norm_stderr": 0.049449010929737795
},
"harness|hendrycksTest-marketing|5": {
"acc": 0.594017094017094,
"acc_stderr": 0.03217180182641086,
"acc_norm": 0.594017094017094,
"acc_norm_stderr": 0.03217180182641086
},
"harness|hendrycksTest-medical_genetics|5": {
"acc": 0.46,
"acc_stderr": 0.05009082659620333,
"acc_norm": 0.46,
"acc_norm_stderr": 0.05009082659620333
},
"harness|hendrycksTest-miscellaneous|5": {
"acc": 0.5389527458492975,
"acc_stderr": 0.017825621793239012,
"acc_norm": 0.5389527458492975,
"acc_norm_stderr": 0.017825621793239012
},
"harness|hendrycksTest-moral_disputes|5": {
"acc": 0.4421965317919075,
"acc_stderr": 0.0267386036438074,
"acc_norm": 0.4421965317919075,
"acc_norm_stderr": 0.0267386036438074
},
"harness|hendrycksTest-moral_scenarios|5": {
"acc": 0.24804469273743016,
"acc_stderr": 0.01444415780826145,
"acc_norm": 0.24804469273743016,
"acc_norm_stderr": 0.01444415780826145
},
"harness|hendrycksTest-nutrition|5": {
"acc": 0.3888888888888889,
"acc_stderr": 0.02791405551046801,
"acc_norm": 0.3888888888888889,
"acc_norm_stderr": 0.02791405551046801
},
"harness|hendrycksTest-philosophy|5": {
"acc": 0.4405144694533762,
"acc_stderr": 0.028196400574197422,
"acc_norm": 0.4405144694533762,
"acc_norm_stderr": 0.028196400574197422
},
"harness|hendrycksTest-prehistory|5": {
"acc": 0.4876543209876543,
"acc_stderr": 0.027812262269327235,
"acc_norm": 0.4876543209876543,
"acc_norm_stderr": 0.027812262269327235
},
"harness|hendrycksTest-professional_accounting|5": {
"acc": 0.30141843971631205,
"acc_stderr": 0.02737412888263115,
"acc_norm": 0.30141843971631205,
"acc_norm_stderr": 0.02737412888263115
},
"harness|hendrycksTest-professional_law|5": {
"acc": 0.29465449804432853,
"acc_stderr": 0.011643576764069546,
"acc_norm": 0.29465449804432853,
"acc_norm_stderr": 0.011643576764069546
},
"harness|hendrycksTest-professional_medicine|5": {
"acc": 0.3786764705882353,
"acc_stderr": 0.029465133639776132,
"acc_norm": 0.3786764705882353,
"acc_norm_stderr": 0.029465133639776132
},
"harness|hendrycksTest-professional_psychology|5": {
"acc": 0.36764705882352944,
"acc_stderr": 0.019506291693954847,
"acc_norm": 0.36764705882352944,
"acc_norm_stderr": 0.019506291693954847
},
"harness|hendrycksTest-public_relations|5": {
"acc": 0.43636363636363634,
"acc_stderr": 0.04750185058907297,
"acc_norm": 0.43636363636363634,
"acc_norm_stderr": 0.04750185058907297
},
"harness|hendrycksTest-security_studies|5": {
"acc": 0.3142857142857143,
"acc_stderr": 0.029719329422417475,
"acc_norm": 0.3142857142857143,
"acc_norm_stderr": 0.029719329422417475
},
"harness|hendrycksTest-sociology|5": {
"acc": 0.4527363184079602,
"acc_stderr": 0.03519702717576915,
"acc_norm": 0.4527363184079602,
"acc_norm_stderr": 0.03519702717576915
},
"harness|hendrycksTest-us_foreign_policy|5": {
"acc": 0.58,
"acc_stderr": 0.049604496374885836,
"acc_norm": 0.58,
"acc_norm_stderr": 0.049604496374885836
},
"harness|hendrycksTest-virology|5": {
"acc": 0.35542168674698793,
"acc_stderr": 0.03726214354322416,
"acc_norm": 0.35542168674698793,
"acc_norm_stderr": 0.03726214354322416
},
"harness|hendrycksTest-world_religions|5": {
"acc": 0.5847953216374269,
"acc_stderr": 0.037792759455032014,
"acc_norm": 0.5847953216374269,
"acc_norm_stderr": 0.037792759455032014
},
"harness|truthfulqa:mc|0": {
"mc1": 0.2729498164014688,
"mc1_stderr": 0.01559475363200652,
"mc2": 0.4227251694229852,
"mc2_stderr": 0.014483446210472699
}
}
```
### 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] | [
-0.7719953060150146,
-0.8814082145690918,
0.2981839179992676,
0.1810637265443802,
-0.1636326014995575,
-0.08097246289253235,
0.008107129484415054,
-0.20465025305747986,
0.5888851284980774,
-0.08389806002378464,
-0.5167871117591858,
-0.6550499796867371,
-0.4369707703590393,
0.2378276139497757,
-0.01492505893111229,
0.7888054847717285,
-0.1661403626203537,
-0.12709131836891174,
0.12131515145301819,
-0.036781784147024155,
-0.23561619222164154,
-0.3025917112827301,
-0.5454983711242676,
-0.31736066937446594,
0.20136824250221252,
0.48009583353996277,
0.4471222758293152,
0.8873103857040405,
0.7088778018951416,
0.29719796776771545,
-0.28258374333381653,
-0.028740130364894867,
-0.17342819273471832,
-0.27539318799972534,
0.4092387557029724,
-0.3146999776363373,
-0.8325133323669434,
0.2889209985733032,
0.8123677372932434,
0.6298874020576477,
-0.09221609681844711,
0.3114137351512909,
0.017690256237983704,
0.6506869792938232,
-0.36308765411376953,
0.09591449052095413,
-0.30090752243995667,
0.1896502673625946,
-0.1968747228384018,
-0.2583676278591156,
-0.2913637161254883,
-0.24531133472919464,
-0.17851029336452484,
-0.8383212685585022,
0.26110339164733887,
0.3411274552345276,
1.5515068769454956,
-0.12507577240467072,
-0.26194167137145996,
0.10089230537414551,
-0.10168492794036865,
1.027100682258606,
-0.8316763043403625,
0.3495825529098511,
0.7494096159934998,
0.1947886049747467,
-0.1555566042661667,
-0.592158854007721,
-0.6307150721549988,
0.10475938767194748,
-0.33057305216789246,
0.35292088985443115,
-0.12794925272464752,
-0.16197670996189117,
0.3706609010696411,
0.6200551390647888,
-0.6065679788589478,
0.1813921481370926,
-0.6565614938735962,
-0.1493280678987503,
1.0496498346328735,
0.326162725687027,
0.06805175542831421,
-0.3475511074066162,
-0.6605939865112305,
-0.6838845014572144,
-0.36377838253974915,
0.3088782727718353,
0.4168853163719177,
0.41040998697280884,
-0.37457841634750366,
0.6869868040084839,
-0.3859223425388336,
0.5966418385505676,
0.48069581389427185,
0.044888004660606384,
0.8603687882423401,
-0.6172137260437012,
-0.5512227416038513,
-0.05623307451605797,
1.0869340896606445,
0.5790737271308899,
0.06032421812415123,
0.25496137142181396,
-0.00007428105891449377,
-0.13021577894687653,
0.016653966158628464,
-0.8400739431381226,
-0.2614089250564575,
0.1968865841627121,
-0.36997726559638977,
-0.49159547686576843,
0.40441176295280457,
-0.8595517873764038,
0.1382555514574051,
-0.04579000920057297,
0.4169749319553375,
-0.49570217728614807,
-0.11035902053117752,
0.19318969547748566,
-0.43437251448631287,
0.8313566446304321,
-0.18970778584480286,
-0.8097221851348877,
0.3970770239830017,
0.47968509793281555,
0.745635986328125,
-0.11960284411907196,
-0.4120495617389679,
-0.16000820696353912,
-0.10677388310432434,
-0.3260529339313507,
0.5185462236404419,
-0.247605100274086,
-0.37874898314476013,
-0.2613069713115692,
0.30382218956947327,
-0.24783611297607422,
-0.37777283787727356,
0.7507169842720032,
-0.23201429843902588,
0.1532968431711197,
-0.5000941753387451,
-0.6279893517494202,
0.13330306112766266,
0.3387596011161804,
-0.45116880536079407,
1.2434133291244507,
0.3003818988800049,
-0.8167475461959839,
0.3989567458629608,
-0.6192677021026611,
-0.19675931334495544,
-0.03130762279033661,
-0.016391364857554436,
-0.7980654239654541,
-0.26748353242874146,
0.19003161787986755,
0.4293389618396759,
-0.16791562736034393,
-0.12951208651065826,
-0.3913526237010956,
-0.3461151719093323,
0.32228487730026245,
-0.12291346490383148,
1.235031008720398,
0.005523532163351774,
-0.7855697870254517,
-0.07100851833820343,
-1.228941798210144,
0.37318718433380127,
0.21186132729053497,
-0.36335790157318115,
-0.15188410878181458,
-0.48439130187034607,
-0.0001180064064101316,
0.13627998530864716,
0.2882174253463745,
-0.7972179651260376,
0.23052410781383514,
-0.29522785544395447,
0.19032718241214752,
1.288079857826233,
0.04494299739599228,
0.16949187219142914,
-0.5969695448875427,
0.4971112608909607,
0.19555121660232544,
0.2522315979003906,
0.41761404275894165,
-0.5508824586868286,
-0.8076393008232117,
-0.5248417854309082,
-0.08316116034984589,
0.5877830386161804,
-0.1980375498533249,
1.1773784160614014,
0.09635987132787704,
-0.8508216142654419,
-0.4186430871486664,
-0.14496755599975586,
0.46945720911026,
0.7855648994445801,
0.6099180579185486,
-0.005863928701728582,
-0.6284146308898926,
-1.1748595237731934,
-0.30610454082489014,
-0.15672528743743896,
0.12489385157823563,
0.19564898312091827,
0.9898685216903687,
-0.2822216749191284,
0.6123837828636169,
-0.9953916668891907,
-0.21639464795589447,
0.11196953058242798,
-0.12994521856307983,
0.8043226599693298,
0.7336268424987793,
0.6025938391685486,
-0.657929539680481,
-0.578347384929657,
0.1871630698442459,
-0.8647604584693909,
-0.13832588493824005,
0.09410049021244049,
-0.3254924416542053,
0.1605340540409088,
0.13989301025867462,
-0.6299911141395569,
0.4678683280944824,
0.20203149318695068,
-1.0409562587738037,
1.0374008417129517,
-0.3448951244354248,
0.563901424407959,
-0.9670471549034119,
0.17082896828651428,
-0.01051385048776865,
0.006866326555609703,
-0.4912492036819458,
0.07905809581279755,
0.13573865592479706,
0.5000282526016235,
-0.4607436954975128,
0.7956879138946533,
-0.7200846672058105,
-0.0645906925201416,
0.45776230096817017,
0.11298278719186783,
-0.17858394980430603,
0.35729435086250305,
-0.23600836098194122,
0.794769287109375,
0.7364109754562378,
-0.4508308172225952,
0.5012046694755554,
0.344912588596344,
-0.1992010772228241,
0.7270687818527222,
-0.49557679891586304,
-0.3006923198699951,
0.29388734698295593,
-0.08400370925664902,
-0.834709882736206,
-0.4966440200805664,
0.01993592455983162,
-0.5913298726081848,
-0.06811242550611496,
0.38114771246910095,
-0.28579071164131165,
-0.8238229751586914,
-0.9858654141426086,
0.2757730782032013,
0.7676777243614197,
-0.44291090965270996,
-0.18444015085697174,
0.1037188246846199,
0.09936238825321198,
-0.8040271401405334,
-0.830317497253418,
-0.5209987163543701,
-0.20601579546928406,
-0.7266719937324524,
0.2709352970123291,
-0.2960721254348755,
-0.31077471375465393,
-0.1309528797864914,
-0.27008160948753357,
-0.3744417428970337,
-0.054246339946985245,
0.10815844684839249,
0.6683380603790283,
-0.39230629801750183,
-0.3339613378047943,
-0.1642094850540161,
-0.1631413698196411,
0.26585522294044495,
-0.11500255018472672,
0.3615248203277588,
-0.5498414039611816,
-0.3634040653705597,
-0.4469914436340332,
-0.006180330645292997,
0.7598697543144226,
-0.02837986871600151,
0.7501972317695618,
0.44067326188087463,
-0.28935661911964417,
-0.031524959951639175,
-0.3403102457523346,
-0.2842957377433777,
-0.5924937725067139,
0.3027535080909729,
-0.4886535406112671,
-1.015869140625,
0.7810133695602417,
0.5312424302101135,
0.04612838849425316,
1.1663565635681152,
0.5808740258216858,
-0.3438481092453003,
0.9983746409416199,
0.06655996292829514,
0.35905784368515015,
0.4114084243774414,
-0.711764395236969,
0.09335510432720184,
-0.9501754641532898,
-0.2755608558654785,
-0.5536471009254456,
-0.49315714836120605,
-0.7075071334838867,
-0.044702690094709396,
0.3369170129299164,
0.18332180380821228,
-0.7711447477340698,
0.5636366605758667,
-0.829136312007904,
0.6084548234939575,
0.6139634251594543,
0.2956766188144684,
0.12380277365446091,
-0.1232425644993782,
-0.42119812965393066,
-0.1419147402048111,
-0.5132583379745483,
-0.2353658676147461,
1.2077794075012207,
0.254525750875473,
0.6902380585670471,
0.10605138540267944,
0.8947267532348633,
0.118012934923172,
-0.08871055394411087,
-0.5594159364700317,
0.638820230960846,
0.1239996924996376,
-0.7930402755737305,
-0.47253912687301636,
-0.5191528797149658,
-1.0917621850967407,
0.3733697235584259,
-0.14212539792060852,
-0.8271266222000122,
0.10706021636724472,
0.03630227595567703,
-0.16523203253746033,
0.5119327902793884,
-0.5600764155387878,
0.8239690065383911,
-0.11750775575637817,
-0.4974398910999298,
0.1197752133011818,
-0.8597397804260254,
0.45912161469459534,
0.15125617384910583,
0.31517842411994934,
0.09994843602180481,
0.2459925413131714,
1.1573165655136108,
-0.8688492774963379,
0.4237612187862396,
0.06446241587400436,
0.10137666761875153,
0.34909188747406006,
-0.14218060672283173,
0.5278983116149902,
0.044970251619815826,
0.010919199325144291,
-0.14806264638900757,
0.3201172351837158,
-0.9040655493736267,
-0.04840981215238571,
0.9151734709739685,
-0.9845726490020752,
-0.5830753445625305,
-0.9179375767707825,
-0.5240370035171509,
0.06317415833473206,
0.598721981048584,
0.3888148069381714,
0.48703163862228394,
0.04619938135147095,
0.46491217613220215,
0.8476068377494812,
-0.13780316710472107,
0.6305403709411621,
0.2553718388080597,
0.10555588454008102,
-0.6626201868057251,
0.8220449686050415,
0.08275313675403595,
0.40423640608787537,
0.27318859100341797,
0.45198410749435425,
-0.5619155168533325,
-0.22151803970336914,
-0.1811552345752716,
0.5282355546951294,
-0.6614168882369995,
-0.2691815495491028,
-0.34264087677001953,
-0.4040317237377167,
-0.7504969239234924,
-0.6792169213294983,
-0.34035274386405945,
-0.5225575566291809,
-0.4190636873245239,
-0.4816052317619324,
0.5552024841308594,
0.4976426661014557,
-0.4686591327190399,
0.0514051616191864,
-0.4810144305229187,
0.24173761904239655,
0.3464532494544983,
0.5325482487678528,
-0.35856375098228455,
-0.5532308220863342,
0.07657518982887268,
-0.11760970205068588,
-0.5414926409721375,
-0.9379924535751343,
0.3347364664077759,
-0.06686493009328842,
0.5329073071479797,
0.608409583568573,
0.1474565863609314,
0.811866283416748,
-0.19582323729991913,
1.0047494173049927,
0.37311285734176636,
-0.8112637996673584,
0.7319225668907166,
-0.3673122227191925,
0.18979202210903168,
0.6412053108215332,
0.1683553159236908,
-0.1862597018480301,
-0.6777852177619934,
-1.321189284324646,
-0.8209598660469055,
0.6347200274467468,
0.4010046124458313,
-0.3149421513080597,
0.018592843785881996,
0.1721215695142746,
-0.3057253062725067,
-0.179647296667099,
-0.670879602432251,
-0.9069393873214722,
-0.12161901593208313,
-0.49533846974372864,
0.10552424937486649,
0.003033207030966878,
-0.3777076303958893,
-0.8459822535514832,
0.9188990592956543,
0.04124351218342781,
0.6208059787750244,
0.4787256419658661,
0.07717010378837585,
0.026428835466504097,
0.4438951015472412,
0.9491328001022339,
0.7512691617012024,
-0.4784509241580963,
0.4059659242630005,
0.3973592221736908,
-1.0441794395446777,
0.4513002932071686,
0.27306482195854187,
-0.07055731862783432,
-0.03906535357236862,
0.5227181315422058,
0.36079704761505127,
-0.003267350373789668,
-0.16429148614406586,
0.6230367422103882,
0.0003836120886262506,
-0.5423234701156616,
-0.4092557430267334,
0.08311431854963303,
-0.13729797303676605,
0.014987112954258919,
0.403310626745224,
-0.12837685644626617,
-0.05014302581548691,
-0.5128834247589111,
0.4765174388885498,
0.37723949551582336,
-0.49256035685539246,
-0.10814650356769562,
0.7418864369392395,
-0.19003520905971527,
-0.16982834041118622,
0.35891789197921753,
-0.17577488720417023,
-0.6349398493766785,
1.1630736589431763,
0.5815874934196472,
0.6789865493774414,
-0.2503531277179718,
-0.07588977366685867,
0.9534844756126404,
0.41415172815322876,
-0.05048159509897232,
0.5257463455200195,
0.3297993540763855,
-0.25932401418685913,
0.2182135283946991,
-0.8460673093795776,
-0.029485296458005905,
0.11649502068758011,
-0.8655340671539307,
0.31449615955352783,
-0.5703354477882385,
-0.21974748373031616,
0.01509729865938425,
0.4181293845176697,
-0.46660691499710083,
0.5118119120597839,
-0.46047380566596985,
1.2176975011825562,
-0.9441119432449341,
0.7347556948661804,
0.7256670594215393,
-0.5472665429115295,
-1.0509119033813477,
-0.5515827536582947,
0.043996915221214294,
-0.8286206722259521,
0.579363226890564,
-0.09687302261590958,
0.14465907216072083,
-0.060827672481536865,
-0.7128011584281921,
-0.9013715982437134,
1.3988252878189087,
-0.03581858426332474,
-0.488125741481781,
0.2756780982017517,
-0.0696287602186203,
0.4248790144920349,
0.14042147994041443,
0.5926172733306885,
0.7501828670501709,
0.8883320689201355,
-0.054024774581193924,
-0.7181802988052368,
0.3380555808544159,
-0.4909289479255676,
-0.2967427968978882,
0.47091278433799744,
-0.9403280019760132,
1.2050583362579346,
-0.04606609046459198,
0.22810479998588562,
-0.1865270733833313,
0.6423556208610535,
0.7619311213493347,
0.23910647630691528,
0.37158507108688354,
0.8254503607749939,
0.8642699122428894,
-0.4972432255744934,
1.0712515115737915,
-0.23706911504268646,
0.8686540722846985,
0.686240553855896,
0.2771192193031311,
0.8018007874488831,
0.6825699806213379,
-0.5752649307250977,
0.4920192360877991,
0.8296534419059753,
-0.286703497171402,
0.3904818594455719,
0.2984367907047272,
-0.09416188299655914,
-0.13897402584552765,
0.5043248534202576,
-0.8717644214630127,
0.06091577187180519,
0.02002405934035778,
-0.31943410634994507,
0.11379160732030869,
-0.47952699661254883,
0.33731770515441895,
-0.05021167919039726,
-0.053486455231904984,
0.3391147255897522,
0.011597182601690292,
-0.41251668334007263,
0.966339647769928,
-0.12034140527248383,
0.7574366927146912,
-0.5659655928611755,
-0.030050037428736687,
-0.41747820377349854,
0.6370055079460144,
-0.40907204151153564,
-1.039743185043335,
0.17431572079658508,
0.03398852050304413,
-0.14272639155387878,
-0.1646379679441452,
0.639380156993866,
-0.1840134710073471,
-0.7972524166107178,
0.13643094897270203,
0.05222076177597046,
0.08281975984573364,
0.47564175724983215,
-0.6651744246482849,
-0.3055432140827179,
-0.0453813411295414,
-0.5089621543884277,
0.1260146051645279,
0.29903268814086914,
0.296146035194397,
0.5486217141151428,
0.6214023232460022,
0.16411812603473663,
0.4074736535549164,
-0.550982654094696,
0.7478933930397034,
-1.0426228046417236,
-0.7376796007156372,
-0.9122634530067444,
0.4193933308124542,
-0.34735360741615295,
-0.8320813775062561,
0.9856448173522949,
1.0358141660690308,
0.8539935946464539,
-0.026076097041368484,
0.6521701216697693,
-0.36956530809402466,
0.2644265294075012,
-0.3698136508464813,
0.9587345123291016,
-0.830541729927063,
-0.20472098886966705,
-0.2788240909576416,
-0.7506327033042908,
-0.3935616612434387,
0.8892756700515747,
-0.13803669810295105,
0.07118313014507294,
1.1333612203598022,
0.6126560568809509,
-0.10046130418777466,
0.020747892558574677,
-0.05863211303949356,
0.6092605590820312,
0.39451318979263306,
1.0058765411376953,
0.5845246315002441,
-0.745660126209259,
0.2975110113620758,
-0.503663182258606,
-0.4827629625797272,
-0.3714650273323059,
-0.46484237909317017,
-0.8799779415130615,
-0.5286278128623962,
-0.21469099819660187,
-0.6241015791893005,
-0.08204594999551773,
1.0220067501068115,
0.4498208165168762,
-0.9056049585342407,
-0.4806654155254364,
-0.12599331140518188,
0.14536769688129425,
-0.6109487414360046,
-0.41526323556900024,
0.7351818084716797,
-0.14690019190311432,
-0.5400495529174805,
0.13811573386192322,
-0.13807737827301025,
0.23242484033107758,
0.12112906575202942,
-0.4106387794017792,
-0.6921736598014832,
0.034655287861824036,
0.4445239007472992,
0.3459942638874054,
-0.7067975401878357,
-0.7413379549980164,
0.2924078106880188,
-0.5035173892974854,
0.4296470880508423,
-0.03247318044304848,
-0.4674428105354309,
0.03970464691519737,
0.6681939959526062,
0.4682796895503998,
0.6867356300354004,
-0.057818956673145294,
0.10620716214179993,
-0.6095489263534546,
0.1460261344909668,
-0.03224635869264603,
0.2877196967601776,
-0.06400147080421448,
-0.30108997225761414,
0.7823323607444763,
0.6586214900016785,
-0.5072079300880432,
-1.0596423149108887,
-0.42968136072158813,
-1.4923646450042725,
-0.06864936649799347,
1.1251367330551147,
0.04565096274018288,
-0.5100350379943848,
0.290381520986557,
-0.12714016437530518,
0.16697849333286285,
-0.351826936006546,
0.7316481471061707,
0.7775413393974304,
-0.39138051867485046,
0.09754927456378937,
-0.6351152658462524,
0.3754756450653076,
0.4713646471500397,
-1.1513234376907349,
-0.10319841653108597,
0.23287810385227203,
0.3414551317691803,
0.2874804437160492,
0.6310218572616577,
-0.0884939506649971,
0.2624424397945404,
0.24964751303195953,
0.006734597962349653,
-0.05344467982649803,
0.04839843884110451,
-0.22043442726135254,
0.07911386340856552,
-0.23574694991111755,
-0.45269033312797546
]
|
open-llm-leaderboard/details_h2oai__h2ogpt-gm-oasst1-en-1024-open-llama-7b-preview-400bt | open-llm-leaderboard | 2023-10-21T18:24:54Z | 261 | 0 | [
"region:us"
]
| null | 2023-08-18T11:53:32Z | ---
pretty_name: Evaluation run of h2oai/h2ogpt-gm-oasst1-en-1024-open-llama-7b-preview-400bt
dataset_summary: "Dataset automatically created during the evaluation run of model\
\ [h2oai/h2ogpt-gm-oasst1-en-1024-open-llama-7b-preview-400bt](https://huggingface.co/h2oai/h2ogpt-gm-oasst1-en-1024-open-llama-7b-preview-400bt)\
\ 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_h2oai__h2ogpt-gm-oasst1-en-1024-open-llama-7b-preview-400bt\"\
,\n\t\"harness_winogrande_5\",\n\tsplit=\"train\")\n```\n\n## Latest results\n\n\
These are the [latest results from run 2023-10-21T18:24:41.819664](https://huggingface.co/datasets/open-llm-leaderboard/details_h2oai__h2ogpt-gm-oasst1-en-1024-open-llama-7b-preview-400bt/blob/main/results_2023-10-21T18-24-41.819664.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.0014681208053691276,\n\
\ \"em_stderr\": 0.00039210421902985155,\n \"f1\": 0.05380872483221496,\n\
\ \"f1_stderr\": 0.0013618747592707128,\n \"acc\": 0.33039128803540985,\n\
\ \"acc_stderr\": 0.008404668659041216\n },\n \"harness|drop|3\": {\n\
\ \"em\": 0.0014681208053691276,\n \"em_stderr\": 0.00039210421902985155,\n\
\ \"f1\": 0.05380872483221496,\n \"f1_stderr\": 0.0013618747592707128\n\
\ },\n \"harness|gsm8k|5\": {\n \"acc\": 0.015163002274450341,\n \
\ \"acc_stderr\": 0.003366022949726341\n },\n \"harness|winogrande|5\"\
: {\n \"acc\": 0.6456195737963694,\n \"acc_stderr\": 0.013443314368356092\n\
\ }\n}\n```"
repo_url: https://huggingface.co/h2oai/h2ogpt-gm-oasst1-en-1024-open-llama-7b-preview-400bt
leaderboard_url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard
point_of_contact: [email protected]
configs:
- config_name: harness_arc_challenge_25
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|arc:challenge|25_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|arc:challenge|25_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_drop_3
data_files:
- split: 2023_10_21T18_24_41.819664
path:
- '**/details_harness|drop|3_2023-10-21T18-24-41.819664.parquet'
- split: latest
path:
- '**/details_harness|drop|3_2023-10-21T18-24-41.819664.parquet'
- config_name: harness_gsm8k_5
data_files:
- split: 2023_10_21T18_24_41.819664
path:
- '**/details_harness|gsm8k|5_2023-10-21T18-24-41.819664.parquet'
- split: latest
path:
- '**/details_harness|gsm8k|5_2023-10-21T18-24-41.819664.parquet'
- config_name: harness_hellaswag_10
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hellaswag|10_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hellaswag|10_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-anatomy|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-astronomy|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-business_ethics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-college_biology|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-college_medicine|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-college_physics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-computer_security|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-econometrics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-formal_logic|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-global_facts|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-human_aging|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-international_law|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-machine_learning|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-management|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-marketing|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-nutrition|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-philosophy|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-prehistory|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-professional_law|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-public_relations|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-security_studies|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-sociology|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-virology|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-world_religions|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-anatomy|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-astronomy|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-business_ethics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-college_biology|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-college_medicine|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-college_physics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-computer_security|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-econometrics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-formal_logic|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-global_facts|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-human_aging|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-international_law|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-machine_learning|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-management|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-marketing|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-nutrition|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-philosophy|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-prehistory|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-professional_law|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-public_relations|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-security_studies|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-sociology|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-virology|5_2023-07-19T17:21:26.476069.parquet'
- '**/details_harness|hendrycksTest-world_religions|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_abstract_algebra_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_anatomy_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-anatomy|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-anatomy|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_astronomy_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-astronomy|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-astronomy|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_business_ethics_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-business_ethics|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-business_ethics|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_clinical_knowledge_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_college_biology_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-college_biology|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_biology|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_college_chemistry_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_college_computer_science_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_college_mathematics_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_college_medicine_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-college_medicine|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_medicine|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_college_physics_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-college_physics|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_physics|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_computer_security_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-computer_security|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-computer_security|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_conceptual_physics_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_econometrics_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-econometrics|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-econometrics|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_electrical_engineering_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_elementary_mathematics_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_formal_logic_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-formal_logic|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-formal_logic|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_global_facts_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-global_facts|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-global_facts|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_high_school_biology_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_high_school_chemistry_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_high_school_computer_science_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_high_school_european_history_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_high_school_geography_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_high_school_government_and_politics_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_high_school_macroeconomics_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_high_school_mathematics_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_high_school_microeconomics_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_high_school_physics_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_high_school_psychology_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_high_school_statistics_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_high_school_us_history_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_high_school_world_history_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_human_aging_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-human_aging|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-human_aging|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_human_sexuality_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_international_law_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-international_law|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-international_law|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_jurisprudence_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_logical_fallacies_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_machine_learning_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-machine_learning|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-machine_learning|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_management_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-management|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-management|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_marketing_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-marketing|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-marketing|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_medical_genetics_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_miscellaneous_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_moral_disputes_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_moral_scenarios_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_nutrition_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-nutrition|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-nutrition|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_philosophy_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-philosophy|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-philosophy|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_prehistory_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-prehistory|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-prehistory|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_professional_accounting_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_professional_law_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-professional_law|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_law|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_professional_medicine_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_professional_psychology_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_public_relations_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-public_relations|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-public_relations|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_security_studies_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-security_studies|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-security_studies|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_sociology_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-sociology|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-sociology|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_us_foreign_policy_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_virology_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-virology|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-virology|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_hendrycksTest_world_religions_5
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|hendrycksTest-world_religions|5_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-world_religions|5_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_truthfulqa_mc_0
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- '**/details_harness|truthfulqa:mc|0_2023-07-19T17:21:26.476069.parquet'
- split: latest
path:
- '**/details_harness|truthfulqa:mc|0_2023-07-19T17:21:26.476069.parquet'
- config_name: harness_winogrande_5
data_files:
- split: 2023_10_21T18_24_41.819664
path:
- '**/details_harness|winogrande|5_2023-10-21T18-24-41.819664.parquet'
- split: latest
path:
- '**/details_harness|winogrande|5_2023-10-21T18-24-41.819664.parquet'
- config_name: results
data_files:
- split: 2023_07_19T17_21_26.476069
path:
- results_2023-07-19T17:21:26.476069.parquet
- split: 2023_10_21T18_24_41.819664
path:
- results_2023-10-21T18-24-41.819664.parquet
- split: latest
path:
- results_2023-10-21T18-24-41.819664.parquet
---
# Dataset Card for Evaluation run of h2oai/h2ogpt-gm-oasst1-en-1024-open-llama-7b-preview-400bt
## Dataset Description
- **Homepage:**
- **Repository:** https://huggingface.co/h2oai/h2ogpt-gm-oasst1-en-1024-open-llama-7b-preview-400bt
- **Paper:**
- **Leaderboard:** https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard
- **Point of Contact:** [email protected]
### Dataset Summary
Dataset automatically created during the evaluation run of model [h2oai/h2ogpt-gm-oasst1-en-1024-open-llama-7b-preview-400bt](https://huggingface.co/h2oai/h2ogpt-gm-oasst1-en-1024-open-llama-7b-preview-400bt) 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_h2oai__h2ogpt-gm-oasst1-en-1024-open-llama-7b-preview-400bt",
"harness_winogrande_5",
split="train")
```
## Latest results
These are the [latest results from run 2023-10-21T18:24:41.819664](https://huggingface.co/datasets/open-llm-leaderboard/details_h2oai__h2ogpt-gm-oasst1-en-1024-open-llama-7b-preview-400bt/blob/main/results_2023-10-21T18-24-41.819664.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.0014681208053691276,
"em_stderr": 0.00039210421902985155,
"f1": 0.05380872483221496,
"f1_stderr": 0.0013618747592707128,
"acc": 0.33039128803540985,
"acc_stderr": 0.008404668659041216
},
"harness|drop|3": {
"em": 0.0014681208053691276,
"em_stderr": 0.00039210421902985155,
"f1": 0.05380872483221496,
"f1_stderr": 0.0013618747592707128
},
"harness|gsm8k|5": {
"acc": 0.015163002274450341,
"acc_stderr": 0.003366022949726341
},
"harness|winogrande|5": {
"acc": 0.6456195737963694,
"acc_stderr": 0.013443314368356092
}
}
```
### 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] | [
-0.35458341240882874,
-0.6761021018028259,
0.2185409814119339,
0.19867555797100067,
-0.1572704017162323,
0.1912337690591812,
-0.31063246726989746,
-0.29677748680114746,
0.3628145754337311,
0.43740493059158325,
-0.6521469950675964,
-0.8502764701843262,
-0.7040190100669861,
0.11771037429571152,
-0.05979225039482117,
1.08489990234375,
-0.30113884806632996,
-0.26821500062942505,
0.012469240464270115,
-0.2418273389339447,
-0.3625375032424927,
-0.42566168308258057,
-0.5654944777488708,
-0.4472396671772003,
0.3332422375679016,
0.6380475163459778,
0.3652185797691345,
0.7443954944610596,
0.6903867125511169,
0.33424821496009827,
-0.1343514770269394,
0.1460118591785431,
-0.49497056007385254,
-0.13585315644741058,
0.24743926525115967,
-0.5417035222053528,
-0.8751393556594849,
0.19829314947128296,
0.6597387790679932,
0.42610758543014526,
-0.22906669974327087,
0.654471755027771,
0.21295185387134552,
0.5369067788124084,
-0.46791911125183105,
0.409906268119812,
-0.34568265080451965,
-0.03860832378268242,
-0.29012399911880493,
-0.1279478520154953,
-0.030971653759479523,
-0.23936563730239868,
-0.08700276166200638,
-0.5329793095588684,
0.057803940027952194,
0.2407747209072113,
1.1233246326446533,
0.1914791315793991,
-0.19857507944107056,
-0.19115044176578522,
-0.20489069819450378,
0.8614612221717834,
-0.9141537547111511,
-0.0418604239821434,
0.7274483442306519,
0.1410665661096573,
-0.2795948088169098,
-0.49437469244003296,
-0.3526572585105896,
-0.0719166249036789,
-0.28152891993522644,
0.21050941944122314,
0.0013224437134340405,
-0.16275161504745483,
0.3843842148780823,
0.6111511588096619,
-0.6991661787033081,
0.10960841923952103,
-0.5438342094421387,
-0.21737493574619293,
1.017971158027649,
0.3261149525642395,
-0.012881611473858356,
-0.5108208060264587,
-0.44436943531036377,
-0.3008826673030853,
-0.4501836895942688,
0.24499885737895966,
0.47473615407943726,
0.40639740228652954,
-0.6995288729667664,
0.8032509684562683,
-0.43190106749534607,
0.44779345393180847,
-0.12174548953771591,
-0.3219952881336212,
0.8496241569519043,
-0.5619059801101685,
-0.21537229418754578,
0.015714388340711594,
1.051161527633667,
0.41805198788642883,
-0.01989768259227276,
0.24513700604438782,
-0.23840828239917755,
-0.11563462764024734,
-0.006361193489283323,
-0.8427009582519531,
-0.08790566772222519,
0.42573782801628113,
-0.5802329182624817,
-0.41698721051216125,
0.23531676828861237,
-0.9563395380973816,
-0.13186194002628326,
-0.20430678129196167,
0.2107263207435608,
-0.14348328113555908,
-0.37650009989738464,
-0.0857483372092247,
-0.20366376638412476,
0.29078710079193115,
0.1475682109594345,
-0.585002601146698,
0.33985570073127747,
0.6676335334777832,
0.9895642399787903,
-0.18366743624210358,
-0.41757306456565857,
-0.3618012070655823,
-0.20131395757198334,
-0.09961562603712082,
0.4291268587112427,
-0.20620645582675934,
-0.42307689785957336,
-0.18033215403556824,
0.3131806552410126,
-0.2652040421962738,
-0.6222410798072815,
0.6233758926391602,
-0.2119375765323639,
0.2173050493001938,
-0.29988962411880493,
-0.4335559010505676,
-0.06006060913205147,
0.4246838688850403,
-0.5531482100486755,
1.4786581993103027,
0.3749946355819702,
-0.7677040100097656,
0.05834602937102318,
-0.8189213871955872,
-0.2135867178440094,
-0.026228969916701317,
0.03743027150630951,
-0.5966413021087646,
-0.212381973862648,
0.11137622594833374,
0.4429854452610016,
-0.37651705741882324,
0.035419024527072906,
-0.2579897940158844,
-0.3387438654899597,
0.06333931535482407,
-0.06947916746139526,
0.9982949495315552,
0.22044074535369873,
-0.44819602370262146,
0.08461251854896545,
-0.9728578925132751,
0.1279338300228119,
0.4043032228946686,
-0.6633760333061218,
-0.16573697328567505,
-0.2224084585905075,
0.11008702963590622,
0.17176538705825806,
0.569325864315033,
-0.5989442467689514,
0.3931243121623993,
-0.16779445111751556,
0.4130517840385437,
0.9788148403167725,
-0.023918375372886658,
0.218983992934227,
-0.398197203874588,
0.5184023976325989,
-0.016685528680682182,
0.3593824505805969,
0.09317079186439514,
-0.7494637370109558,
-0.6906902194023132,
-0.2363336980342865,
0.1373998522758484,
0.7172872424125671,
-0.443142294883728,
0.7752485275268555,
-0.3578043580055237,
-0.6625002026557922,
-0.7621831893920898,
0.12363925576210022,
0.531499445438385,
0.6355631351470947,
0.40792611241340637,
-0.2926408350467682,
-0.6455904245376587,
-0.9959672689437866,
0.07564523071050644,
-0.32004955410957336,
-0.007788599468767643,
0.587431013584137,
1.0839767456054688,
-0.3518465757369995,
0.6690264344215393,
-0.7975185513496399,
-0.3010214567184448,
-0.20328888297080994,
0.06928078085184097,
0.7157148718833923,
0.5442288517951965,
0.4258406162261963,
-0.5739324688911438,
-0.36196473240852356,
-0.05820474773645401,
-0.8124570250511169,
-0.22847793996334076,
-0.03726093843579292,
-0.3707646429538727,
0.30308157205581665,
-0.059386223554611206,
-0.5251892805099487,
0.5532422661781311,
0.580008327960968,
-0.6500852704048157,
0.687044084072113,
-0.03241315856575966,
0.38387808203697205,
-1.1730549335479736,
0.2264193892478943,
0.011163313873112202,
0.003278929041698575,
-0.3819883167743683,
-0.08064717799425125,
-0.03967295214533806,
0.3273186683654785,
-0.41334035992622375,
0.6897374987602234,
-0.4484635889530182,
-0.22292429208755493,
-0.026478050276637077,
0.09504009783267975,
-0.07777831703424454,
0.5742251873016357,
-0.28294870257377625,
0.8043346405029297,
0.4966127276420593,
-0.3120688199996948,
0.3559648394584656,
0.5167101621627808,
-0.5368444323539734,
0.16880923509597778,
-0.5706751346588135,
0.034818135201931,
0.2129146158695221,
0.1726047396659851,
-0.9827800393104553,
-0.4251321852207184,
0.4736437499523163,
-0.5840273499488831,
0.1811709851026535,
-0.32071027159690857,
-0.5127581357955933,
-0.5258893370628357,
-0.5394466519355774,
0.29575878381729126,
0.634814977645874,
-0.48465099930763245,
0.21791104972362518,
0.4467199146747589,
0.0246487595140934,
-0.6661607027053833,
-0.7112874984741211,
-0.12804003059864044,
-0.27031195163726807,
-0.6487206816673279,
0.37646397948265076,
-0.12634263932704926,
-0.22849534451961517,
0.04428907483816147,
-0.10599557310342789,
-0.040663957595825195,
0.21091137826442719,
0.3998296856880188,
0.5497609972953796,
-0.1463259756565094,
-0.36451926827430725,
-0.1936301738023758,
-0.13537074625492096,
0.11949063837528229,
0.10230764746665955,
0.6624560356140137,
-0.2507765591144562,
-0.23499749600887299,
-0.32142284512519836,
0.14286470413208008,
0.4415779411792755,
-0.1375112533569336,
0.7717773914337158,
0.6974156498908997,
-0.2786893844604492,
0.06884707510471344,
-0.34590670466423035,
-0.021270422264933586,
-0.4829522371292114,
0.31518030166625977,
-0.2851213812828064,
-0.812743067741394,
0.803834855556488,
0.19631801545619965,
0.09538935124874115,
0.7399183511734009,
0.5964288711547852,
0.007900686003267765,
0.7592528462409973,
0.22676396369934082,
-0.1915917843580246,
0.5086826086044312,
-0.794689416885376,
-0.08910949528217316,
-1.2083154916763306,
-0.43924179673194885,
-0.44883373379707336,
-0.4168027341365814,
-0.8164880275726318,
-0.39183565974235535,
0.2970271706581116,
0.20561160147190094,
-0.45757538080215454,
0.5193879008293152,
-0.6125606298446655,
0.18946102261543274,
0.6917981505393982,
0.20560325682163239,
0.023757124319672585,
0.019324013963341713,
-0.05776146799325943,
0.2788013517856598,
-0.44253596663475037,
-0.4632658064365387,
1.3677667379379272,
0.364477276802063,
0.6269832253456116,
0.01006560493260622,
0.9097739458084106,
0.32679739594459534,
0.27617403864860535,
-0.6126817464828491,
0.6071392297744751,
0.08923138678073883,
-0.5427030324935913,
-0.255612850189209,
-0.5487937927246094,
-0.9826605319976807,
0.23722465336322784,
-0.05334659665822983,
-0.9957789778709412,
0.1018403097987175,
0.05752488598227501,
-0.07406666874885559,
0.294437974691391,
-0.5707811117172241,
0.8246922492980957,
-0.24947452545166016,
-0.45483192801475525,
-0.015497453510761261,
-0.8753534555435181,
0.36609548330307007,
0.11810699850320816,
0.31251880526542664,
-0.3593963384628296,
-0.03193959593772888,
1.1361583471298218,
-0.6606426239013672,
0.6965838670730591,
-0.22586652636528015,
0.05178752541542053,
0.4497200846672058,
-0.39737892150878906,
0.6087794899940491,
-0.04883367568254471,
-0.2920058071613312,
0.5359007716178894,
-0.2561376392841339,
-0.38377365469932556,
-0.23410996794700623,
0.8141545653343201,
-0.90740966796875,
-0.4327552318572998,
-0.4380011260509491,
-0.4880187213420868,
0.24161973595619202,
0.22119762003421783,
0.34571680426597595,
0.19544735550880432,
0.10703812539577484,
0.1563066691160202,
0.17471584677696228,
-0.13430753350257874,
0.5443781018257141,
0.3672349750995636,
-0.13920903205871582,
-0.7256523370742798,
0.6945668458938599,
0.1892968863248825,
0.17141437530517578,
0.15179595351219177,
0.1276039034128189,
-0.47711077332496643,
-0.43108201026916504,
-0.4507148861885071,
0.3561612367630005,
-0.48717570304870605,
-0.27642107009887695,
-0.387602835893631,
-0.24108996987342834,
-0.4025784432888031,
0.02249152399599552,
-0.39491501450538635,
-0.4618726670742035,
-0.43339529633522034,
-0.2520029842853546,
0.5492037534713745,
0.5594819188117981,
-0.3221287727355957,
0.3732774257659912,
-0.7206853628158569,
0.21612022817134857,
-0.12296608090400696,
0.3815057873725891,
-0.09036007523536682,
-0.6131910085678101,
-0.4266912639141083,
0.17539213597774506,
-0.4369748532772064,
-0.881017804145813,
0.5914933085441589,
0.034320563077926636,
0.660233199596405,
0.15256798267364502,
0.03362313285470009,
0.7834470868110657,
-0.2512214779853821,
1.084505319595337,
0.007141410373151302,
-0.733421266078949,
0.8111373782157898,
-0.2821677327156067,
0.10928209125995636,
0.5013320446014404,
0.24729867279529572,
-0.4184603989124298,
-0.21547923982143402,
-0.8098056316375732,
-1.1564314365386963,
1.0213290452957153,
0.5674454569816589,
-0.41033023595809937,
0.1859540194272995,
0.4112735390663147,
-0.05957220867276192,
0.24803559482097626,
-0.5771950483322144,
-0.7164306640625,
-0.11537319421768188,
-0.24879033863544464,
-0.07987429946660995,
-0.12296127527952194,
-0.43788382411003113,
-0.4764118194580078,
0.9207327961921692,
-0.06786715239286423,
0.5799445509910583,
0.23579315841197968,
-0.03984294459223747,
-0.0913175418972969,
0.2520103454589844,
0.4626254737377167,
0.6514279246330261,
-0.4709000885486603,
-0.07708791643381119,
0.2212129682302475,
-0.6798490285873413,
0.11275340616703033,
0.23504489660263062,
-0.03621494397521019,
-0.17814351618289948,
0.6516532897949219,
1.029135823249817,
-0.04816463589668274,
-0.467010498046875,
0.4922116696834564,
0.09500893205404282,
-0.3419118821620941,
-0.4034953713417053,
0.13633598387241364,
-0.09137454628944397,
0.34777337312698364,
0.42966461181640625,
-0.11202367395162582,
0.06525438278913498,
-0.44971963763237,
0.22665078938007355,
0.23549291491508484,
-0.08917267620563507,
-0.3577461838722229,
0.643934965133667,
-0.012698224745690823,
-0.3224540650844574,
0.8374682068824768,
-0.21109066903591156,
-0.6076781749725342,
1.1660748720169067,
0.3803115487098694,
0.8472500443458557,
-0.12543243169784546,
0.08228522539138794,
0.6430168747901917,
0.34591323137283325,
-0.1402869075536728,
0.6227803826332092,
0.10432906448841095,
-0.5939918160438538,
-0.1973722279071808,
-0.7688603401184082,
-0.242318257689476,
0.31678277254104614,
-1.0745635032653809,
0.28871282935142517,
-0.11735869199037552,
-0.3073190450668335,
-0.13476262986660004,
0.3864433765411377,
-0.8076379895210266,
0.1205611303448677,
0.08647222071886063,
0.9015295505523682,
-1.0111240148544312,
0.6757194399833679,
0.8282437920570374,
-0.4126465618610382,
-0.8124207258224487,
-0.22820651531219482,
0.11365283280611038,
-0.9753180742263794,
0.4336782991886139,
0.2885585129261017,
0.4120894968509674,
-0.18575358390808105,
-0.6620964407920837,
-1.1101077795028687,
1.5853909254074097,
0.0977618470788002,
-0.5939694046974182,
0.1563333421945572,
0.22523227334022522,
0.4036644399166107,
-0.33578261733055115,
0.5421953201293945,
0.8103436827659607,
0.7822940945625305,
-0.020381541922688484,
-1.0113946199417114,
0.37027209997177124,
-0.4973013401031494,
-0.14721518754959106,
0.23491822183132172,
-0.9547116160392761,
1.0363898277282715,
-0.28884437680244446,
-0.006411590147763491,
-0.029877735301852226,
0.3460999131202698,
0.5922012329101562,
0.39282235503196716,
0.42289724946022034,
0.7417712211608887,
0.7283946871757507,
-0.37450069189071655,
1.0879323482513428,
-0.28355032205581665,
0.8670212626457214,
1.0837857723236084,
-0.0627247542142868,
0.8682622313499451,
0.3934364914894104,
-0.4860863983631134,
0.5023525953292847,
0.8774130940437317,
-0.4085196852684021,
0.5054662227630615,
0.16834691166877747,
-0.010743483901023865,
-0.05352630838751793,
-0.008333129808306694,
-0.486549437046051,
0.4585971534252167,
0.1750805526971817,
-0.4855552613735199,
-0.1178487241268158,
-0.30599451065063477,
0.1639557033777237,
-0.43286842107772827,
-0.19826793670654297,
0.6222835779190063,
0.006820605136454105,
-0.5412531495094299,
0.7879714369773865,
-0.07357975095510483,
0.7164556980133057,
-0.5736052989959717,
-0.12689495086669922,
-0.22434988617897034,
0.17221565544605255,
-0.5205268859863281,
-1.0176588296890259,
0.18895386159420013,
0.12038426101207733,
-0.21929940581321716,
-0.12902022898197174,
0.559237003326416,
-0.28899329900741577,
-0.4860854148864746,
0.48742204904556274,
0.41321298480033875,
0.3631272614002228,
0.1198270320892334,
-0.8960848450660706,
0.18960820138454437,
0.23805080354213715,
-0.8425537943840027,
0.423322856426239,
0.1365835815668106,
0.04512487351894379,
0.5739414095878601,
0.6879664659500122,
0.05426330864429474,
0.09280616044998169,
-0.12445779889822006,
1.038840651512146,
-0.7581067085266113,
-0.35146671533584595,
-0.8595759272575378,
0.8990945816040039,
-0.29804298281669617,
-0.6640388369560242,
0.7910737991333008,
1.0222495794296265,
0.8101090788841248,
0.1084115132689476,
0.8538928627967834,
-0.471405953168869,
0.3922696113586426,
-0.3931991755962372,
0.837444007396698,
-0.7743051648139954,
0.28875094652175903,
-0.07775314897298813,
-0.760352611541748,
0.04556616395711899,
0.6331685185432434,
-0.15829618275165558,
-0.09007084369659424,
0.5809364318847656,
0.9353318810462952,
0.09132479131221771,
0.02068598009645939,
-0.10354603826999664,
0.4727969765663147,
0.33627769351005554,
0.656700074672699,
0.6168766021728516,
-0.7604581117630005,
0.39388275146484375,
-0.574977457523346,
-0.48643258213996887,
-0.23329344391822815,
-0.6869078874588013,
-0.7659961581230164,
-0.489345908164978,
-0.37883076071739197,
-0.5437398552894592,
-0.0009139333851635456,
1.0398709774017334,
0.5272111296653748,
-0.8326460123062134,
-0.48149508237838745,
0.07594981789588928,
0.21968936920166016,
-0.21639451384544373,
-0.3408240079879761,
0.6082961559295654,
-0.035698436200618744,
-0.7580540776252747,
0.3667316436767578,
-0.11680485308170319,
-0.0842345580458641,
0.050957247614860535,
-0.3129855990409851,
-0.3586796224117279,
-0.22690148651599884,
0.5249730944633484,
0.1852305382490158,
-0.6684480309486389,
-0.3303048312664032,
-0.12039762735366821,
-0.06903115659952164,
0.3728926181793213,
0.23479458689689636,
-0.5262739658355713,
-0.012149292044341564,
0.6253681182861328,
0.24948599934577942,
0.6748254895210266,
0.10765390843153,
0.13253580033779144,
-0.7292931079864502,
0.000010958257917081937,
-0.06410203129053116,
0.5476816892623901,
0.11195863038301468,
-0.4852786362171173,
1.0365016460418701,
0.4041789174079895,
-0.7382988929748535,
-0.9279781579971313,
-0.20583732426166534,
-1.2653462886810303,
-0.02006903663277626,
1.5245643854141235,
-0.2980976402759552,
-0.40587908029556274,
0.14905034005641937,
-0.2136741429567337,
0.32017797231674194,
-0.7572889924049377,
0.5603482127189636,
0.6969512701034546,
-0.366644948720932,
0.08327165246009827,
-0.6753907799720764,
0.3305971920490265,
0.030173592269420624,
-1.0659089088439941,
-0.0596303753554821,
0.28825876116752625,
0.4208073019981384,
0.20251795649528503,
0.6718820929527283,
0.007467998657375574,
-0.17179059982299805,
0.0087339598685503,
0.23582501709461212,
-0.2671413719654083,
-0.12981516122817993,
-0.20951907336711884,
0.12105759233236313,
-0.3703293204307556,
-0.5601145029067993
]
|
open-llm-leaderboard/details_Devio__testC | open-llm-leaderboard | 2023-09-02T17:28:32Z | 261 | 0 | [
"region:us"
]
| null | 2023-09-02T17:27:36Z | ---
pretty_name: Evaluation run of Devio/testC
dataset_summary: "Dataset automatically created during the evaluation run of model\
\ [Devio/testC](https://huggingface.co/Devio/testC) on the [Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard).\n\
\nThe dataset is composed of 61 configuration, each one coresponding to one of the\
\ evaluated task.\n\nThe dataset has been created from 1 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_Devio__testC\"\
,\n\t\"harness_truthfulqa_mc_0\",\n\tsplit=\"train\")\n```\n\n## Latest results\n\
\nThese are the [latest results from run 2023-09-02T17:27:16.860385](https://huggingface.co/datasets/open-llm-leaderboard/details_Devio__testC/blob/main/results_2023-09-02T17%3A27%3A16.860385.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.28185588236286707,\n\
\ \"acc_stderr\": 0.03225753349873974,\n \"acc_norm\": 0.2855290591736718,\n\
\ \"acc_norm_stderr\": 0.03226027924923892,\n \"mc1\": 0.20318237454100369,\n\
\ \"mc1_stderr\": 0.014085666526340882,\n \"mc2\": 0.35665813452391837,\n\
\ \"mc2_stderr\": 0.014271431688144938\n },\n \"harness|arc:challenge|25\"\
: {\n \"acc\": 0.35494880546075086,\n \"acc_stderr\": 0.013983036904094097,\n\
\ \"acc_norm\": 0.39590443686006827,\n \"acc_norm_stderr\": 0.014291228393536583\n\
\ },\n \"harness|hellaswag|10\": {\n \"acc\": 0.4529974108743278,\n\
\ \"acc_stderr\": 0.004967685204073108,\n \"acc_norm\": 0.6287592113124876,\n\
\ \"acc_norm_stderr\": 0.004821492994082116\n },\n \"harness|hendrycksTest-abstract_algebra|5\"\
: {\n \"acc\": 0.3,\n \"acc_stderr\": 0.04605661864718381,\n \
\ \"acc_norm\": 0.3,\n \"acc_norm_stderr\": 0.04605661864718381\n },\n\
\ \"harness|hendrycksTest-anatomy|5\": {\n \"acc\": 0.22962962962962963,\n\
\ \"acc_stderr\": 0.03633384414073461,\n \"acc_norm\": 0.22962962962962963,\n\
\ \"acc_norm_stderr\": 0.03633384414073461\n },\n \"harness|hendrycksTest-astronomy|5\"\
: {\n \"acc\": 0.32894736842105265,\n \"acc_stderr\": 0.03823428969926603,\n\
\ \"acc_norm\": 0.32894736842105265,\n \"acc_norm_stderr\": 0.03823428969926603\n\
\ },\n \"harness|hendrycksTest-business_ethics|5\": {\n \"acc\": 0.21,\n\
\ \"acc_stderr\": 0.04093601807403326,\n \"acc_norm\": 0.21,\n \
\ \"acc_norm_stderr\": 0.04093601807403326\n },\n \"harness|hendrycksTest-clinical_knowledge|5\"\
: {\n \"acc\": 0.2981132075471698,\n \"acc_stderr\": 0.028152837942493857,\n\
\ \"acc_norm\": 0.2981132075471698,\n \"acc_norm_stderr\": 0.028152837942493857\n\
\ },\n \"harness|hendrycksTest-college_biology|5\": {\n \"acc\": 0.2638888888888889,\n\
\ \"acc_stderr\": 0.03685651095897532,\n \"acc_norm\": 0.2638888888888889,\n\
\ \"acc_norm_stderr\": 0.03685651095897532\n },\n \"harness|hendrycksTest-college_chemistry|5\"\
: {\n \"acc\": 0.37,\n \"acc_stderr\": 0.04852365870939099,\n \
\ \"acc_norm\": 0.37,\n \"acc_norm_stderr\": 0.04852365870939099\n \
\ },\n \"harness|hendrycksTest-college_computer_science|5\": {\n \"acc\"\
: 0.33,\n \"acc_stderr\": 0.047258156262526045,\n \"acc_norm\": 0.33,\n\
\ \"acc_norm_stderr\": 0.047258156262526045\n },\n \"harness|hendrycksTest-college_mathematics|5\"\
: {\n \"acc\": 0.28,\n \"acc_stderr\": 0.04512608598542128,\n \
\ \"acc_norm\": 0.28,\n \"acc_norm_stderr\": 0.04512608598542128\n \
\ },\n \"harness|hendrycksTest-college_medicine|5\": {\n \"acc\": 0.27167630057803466,\n\
\ \"acc_stderr\": 0.0339175032232166,\n \"acc_norm\": 0.27167630057803466,\n\
\ \"acc_norm_stderr\": 0.0339175032232166\n },\n \"harness|hendrycksTest-college_physics|5\"\
: {\n \"acc\": 0.30392156862745096,\n \"acc_stderr\": 0.045766654032077636,\n\
\ \"acc_norm\": 0.30392156862745096,\n \"acc_norm_stderr\": 0.045766654032077636\n\
\ },\n \"harness|hendrycksTest-computer_security|5\": {\n \"acc\":\
\ 0.16,\n \"acc_stderr\": 0.03684529491774708,\n \"acc_norm\": 0.16,\n\
\ \"acc_norm_stderr\": 0.03684529491774708\n },\n \"harness|hendrycksTest-conceptual_physics|5\"\
: {\n \"acc\": 0.28936170212765955,\n \"acc_stderr\": 0.02964400657700962,\n\
\ \"acc_norm\": 0.28936170212765955,\n \"acc_norm_stderr\": 0.02964400657700962\n\
\ },\n \"harness|hendrycksTest-econometrics|5\": {\n \"acc\": 0.23684210526315788,\n\
\ \"acc_stderr\": 0.039994238792813344,\n \"acc_norm\": 0.23684210526315788,\n\
\ \"acc_norm_stderr\": 0.039994238792813344\n },\n \"harness|hendrycksTest-electrical_engineering|5\"\
: {\n \"acc\": 0.2827586206896552,\n \"acc_stderr\": 0.037528339580033376,\n\
\ \"acc_norm\": 0.2827586206896552,\n \"acc_norm_stderr\": 0.037528339580033376\n\
\ },\n \"harness|hendrycksTest-elementary_mathematics|5\": {\n \"acc\"\
: 0.23809523809523808,\n \"acc_stderr\": 0.021935878081184756,\n \"\
acc_norm\": 0.23809523809523808,\n \"acc_norm_stderr\": 0.021935878081184756\n\
\ },\n \"harness|hendrycksTest-formal_logic|5\": {\n \"acc\": 0.3888888888888889,\n\
\ \"acc_stderr\": 0.04360314860077459,\n \"acc_norm\": 0.3888888888888889,\n\
\ \"acc_norm_stderr\": 0.04360314860077459\n },\n \"harness|hendrycksTest-global_facts|5\"\
: {\n \"acc\": 0.33,\n \"acc_stderr\": 0.047258156262526045,\n \
\ \"acc_norm\": 0.33,\n \"acc_norm_stderr\": 0.047258156262526045\n \
\ },\n \"harness|hendrycksTest-high_school_biology|5\": {\n \"acc\"\
: 0.3258064516129032,\n \"acc_stderr\": 0.0266620105785671,\n \"acc_norm\"\
: 0.3258064516129032,\n \"acc_norm_stderr\": 0.0266620105785671\n },\n\
\ \"harness|hendrycksTest-high_school_chemistry|5\": {\n \"acc\": 0.2857142857142857,\n\
\ \"acc_stderr\": 0.0317852971064275,\n \"acc_norm\": 0.2857142857142857,\n\
\ \"acc_norm_stderr\": 0.0317852971064275\n },\n \"harness|hendrycksTest-high_school_computer_science|5\"\
: {\n \"acc\": 0.18,\n \"acc_stderr\": 0.038612291966536955,\n \
\ \"acc_norm\": 0.18,\n \"acc_norm_stderr\": 0.038612291966536955\n \
\ },\n \"harness|hendrycksTest-high_school_european_history|5\": {\n \
\ \"acc\": 0.23030303030303031,\n \"acc_stderr\": 0.0328766675860349,\n\
\ \"acc_norm\": 0.23030303030303031,\n \"acc_norm_stderr\": 0.0328766675860349\n\
\ },\n \"harness|hendrycksTest-high_school_geography|5\": {\n \"acc\"\
: 0.35858585858585856,\n \"acc_stderr\": 0.03416903640391521,\n \"\
acc_norm\": 0.35858585858585856,\n \"acc_norm_stderr\": 0.03416903640391521\n\
\ },\n \"harness|hendrycksTest-high_school_government_and_politics|5\": {\n\
\ \"acc\": 0.36787564766839376,\n \"acc_stderr\": 0.03480175668466036,\n\
\ \"acc_norm\": 0.36787564766839376,\n \"acc_norm_stderr\": 0.03480175668466036\n\
\ },\n \"harness|hendrycksTest-high_school_macroeconomics|5\": {\n \
\ \"acc\": 0.34615384615384615,\n \"acc_stderr\": 0.024121125416941183,\n\
\ \"acc_norm\": 0.34615384615384615,\n \"acc_norm_stderr\": 0.024121125416941183\n\
\ },\n \"harness|hendrycksTest-high_school_mathematics|5\": {\n \"\
acc\": 0.25925925925925924,\n \"acc_stderr\": 0.026719240783712177,\n \
\ \"acc_norm\": 0.25925925925925924,\n \"acc_norm_stderr\": 0.026719240783712177\n\
\ },\n \"harness|hendrycksTest-high_school_microeconomics|5\": {\n \
\ \"acc\": 0.33613445378151263,\n \"acc_stderr\": 0.030684737115135356,\n\
\ \"acc_norm\": 0.33613445378151263,\n \"acc_norm_stderr\": 0.030684737115135356\n\
\ },\n \"harness|hendrycksTest-high_school_physics|5\": {\n \"acc\"\
: 0.33774834437086093,\n \"acc_stderr\": 0.03861557546255169,\n \"\
acc_norm\": 0.33774834437086093,\n \"acc_norm_stderr\": 0.03861557546255169\n\
\ },\n \"harness|hendrycksTest-high_school_psychology|5\": {\n \"acc\"\
: 0.3431192660550459,\n \"acc_stderr\": 0.02035477773608604,\n \"\
acc_norm\": 0.3431192660550459,\n \"acc_norm_stderr\": 0.02035477773608604\n\
\ },\n \"harness|hendrycksTest-high_school_statistics|5\": {\n \"acc\"\
: 0.4351851851851852,\n \"acc_stderr\": 0.033812000056435254,\n \"\
acc_norm\": 0.4351851851851852,\n \"acc_norm_stderr\": 0.033812000056435254\n\
\ },\n \"harness|hendrycksTest-high_school_us_history|5\": {\n \"acc\"\
: 0.2549019607843137,\n \"acc_stderr\": 0.030587591351604246,\n \"\
acc_norm\": 0.2549019607843137,\n \"acc_norm_stderr\": 0.030587591351604246\n\
\ },\n \"harness|hendrycksTest-high_school_world_history|5\": {\n \"\
acc\": 0.20675105485232068,\n \"acc_stderr\": 0.0263616516683891,\n \
\ \"acc_norm\": 0.20675105485232068,\n \"acc_norm_stderr\": 0.0263616516683891\n\
\ },\n \"harness|hendrycksTest-human_aging|5\": {\n \"acc\": 0.15695067264573992,\n\
\ \"acc_stderr\": 0.024413587174907412,\n \"acc_norm\": 0.15695067264573992,\n\
\ \"acc_norm_stderr\": 0.024413587174907412\n },\n \"harness|hendrycksTest-human_sexuality|5\"\
: {\n \"acc\": 0.2824427480916031,\n \"acc_stderr\": 0.03948406125768361,\n\
\ \"acc_norm\": 0.2824427480916031,\n \"acc_norm_stderr\": 0.03948406125768361\n\
\ },\n \"harness|hendrycksTest-international_law|5\": {\n \"acc\":\
\ 0.14049586776859505,\n \"acc_stderr\": 0.03172233426002161,\n \"\
acc_norm\": 0.14049586776859505,\n \"acc_norm_stderr\": 0.03172233426002161\n\
\ },\n \"harness|hendrycksTest-jurisprudence|5\": {\n \"acc\": 0.23148148148148148,\n\
\ \"acc_stderr\": 0.04077494709252628,\n \"acc_norm\": 0.23148148148148148,\n\
\ \"acc_norm_stderr\": 0.04077494709252628\n },\n \"harness|hendrycksTest-logical_fallacies|5\"\
: {\n \"acc\": 0.22085889570552147,\n \"acc_stderr\": 0.032591773927421776,\n\
\ \"acc_norm\": 0.22085889570552147,\n \"acc_norm_stderr\": 0.032591773927421776\n\
\ },\n \"harness|hendrycksTest-machine_learning|5\": {\n \"acc\": 0.20535714285714285,\n\
\ \"acc_stderr\": 0.038342410214190735,\n \"acc_norm\": 0.20535714285714285,\n\
\ \"acc_norm_stderr\": 0.038342410214190735\n },\n \"harness|hendrycksTest-management|5\"\
: {\n \"acc\": 0.4174757281553398,\n \"acc_stderr\": 0.04882840548212237,\n\
\ \"acc_norm\": 0.4174757281553398,\n \"acc_norm_stderr\": 0.04882840548212237\n\
\ },\n \"harness|hendrycksTest-marketing|5\": {\n \"acc\": 0.18803418803418803,\n\
\ \"acc_stderr\": 0.025598193686652244,\n \"acc_norm\": 0.18803418803418803,\n\
\ \"acc_norm_stderr\": 0.025598193686652244\n },\n \"harness|hendrycksTest-medical_genetics|5\"\
: {\n \"acc\": 0.28,\n \"acc_stderr\": 0.04512608598542127,\n \
\ \"acc_norm\": 0.28,\n \"acc_norm_stderr\": 0.04512608598542127\n \
\ },\n \"harness|hendrycksTest-miscellaneous|5\": {\n \"acc\": 0.210727969348659,\n\
\ \"acc_stderr\": 0.014583812465862553,\n \"acc_norm\": 0.210727969348659,\n\
\ \"acc_norm_stderr\": 0.014583812465862553\n },\n \"harness|hendrycksTest-moral_disputes|5\"\
: {\n \"acc\": 0.22832369942196531,\n \"acc_stderr\": 0.02259870380432162,\n\
\ \"acc_norm\": 0.22832369942196531,\n \"acc_norm_stderr\": 0.02259870380432162\n\
\ },\n \"harness|hendrycksTest-moral_scenarios|5\": {\n \"acc\": 0.2424581005586592,\n\
\ \"acc_stderr\": 0.014333522059217889,\n \"acc_norm\": 0.2424581005586592,\n\
\ \"acc_norm_stderr\": 0.014333522059217889\n },\n \"harness|hendrycksTest-nutrition|5\"\
: {\n \"acc\": 0.3006535947712418,\n \"acc_stderr\": 0.02625605383571896,\n\
\ \"acc_norm\": 0.3006535947712418,\n \"acc_norm_stderr\": 0.02625605383571896\n\
\ },\n \"harness|hendrycksTest-philosophy|5\": {\n \"acc\": 0.26688102893890675,\n\
\ \"acc_stderr\": 0.02512263760881664,\n \"acc_norm\": 0.26688102893890675,\n\
\ \"acc_norm_stderr\": 0.02512263760881664\n },\n \"harness|hendrycksTest-prehistory|5\"\
: {\n \"acc\": 0.25308641975308643,\n \"acc_stderr\": 0.02419180860071301,\n\
\ \"acc_norm\": 0.25308641975308643,\n \"acc_norm_stderr\": 0.02419180860071301\n\
\ },\n \"harness|hendrycksTest-professional_accounting|5\": {\n \"\
acc\": 0.2624113475177305,\n \"acc_stderr\": 0.026244920349843003,\n \
\ \"acc_norm\": 0.2624113475177305,\n \"acc_norm_stderr\": 0.026244920349843003\n\
\ },\n \"harness|hendrycksTest-professional_law|5\": {\n \"acc\": 0.2457627118644068,\n\
\ \"acc_stderr\": 0.010996156635142695,\n \"acc_norm\": 0.2457627118644068,\n\
\ \"acc_norm_stderr\": 0.010996156635142695\n },\n \"harness|hendrycksTest-professional_medicine|5\"\
: {\n \"acc\": 0.4485294117647059,\n \"acc_stderr\": 0.030211479609121593,\n\
\ \"acc_norm\": 0.4485294117647059,\n \"acc_norm_stderr\": 0.030211479609121593\n\
\ },\n \"harness|hendrycksTest-professional_psychology|5\": {\n \"\
acc\": 0.22058823529411764,\n \"acc_stderr\": 0.01677467236546851,\n \
\ \"acc_norm\": 0.22058823529411764,\n \"acc_norm_stderr\": 0.01677467236546851\n\
\ },\n \"harness|hendrycksTest-public_relations|5\": {\n \"acc\": 0.2727272727272727,\n\
\ \"acc_stderr\": 0.04265792110940589,\n \"acc_norm\": 0.2727272727272727,\n\
\ \"acc_norm_stderr\": 0.04265792110940589\n },\n \"harness|hendrycksTest-security_studies|5\"\
: {\n \"acc\": 0.39591836734693875,\n \"acc_stderr\": 0.03130802899065686,\n\
\ \"acc_norm\": 0.39591836734693875,\n \"acc_norm_stderr\": 0.03130802899065686\n\
\ },\n \"harness|hendrycksTest-sociology|5\": {\n \"acc\": 0.263681592039801,\n\
\ \"acc_stderr\": 0.03115715086935556,\n \"acc_norm\": 0.263681592039801,\n\
\ \"acc_norm_stderr\": 0.03115715086935556\n },\n \"harness|hendrycksTest-us_foreign_policy|5\"\
: {\n \"acc\": 0.35,\n \"acc_stderr\": 0.0479372485441102,\n \
\ \"acc_norm\": 0.35,\n \"acc_norm_stderr\": 0.0479372485441102\n },\n\
\ \"harness|hendrycksTest-virology|5\": {\n \"acc\": 0.21084337349397592,\n\
\ \"acc_stderr\": 0.0317555478662992,\n \"acc_norm\": 0.21084337349397592,\n\
\ \"acc_norm_stderr\": 0.0317555478662992\n },\n \"harness|hendrycksTest-world_religions|5\"\
: {\n \"acc\": 0.14619883040935672,\n \"acc_stderr\": 0.027097290118070803,\n\
\ \"acc_norm\": 0.14619883040935672,\n \"acc_norm_stderr\": 0.027097290118070803\n\
\ },\n \"harness|truthfulqa:mc|0\": {\n \"mc1\": 0.20318237454100369,\n\
\ \"mc1_stderr\": 0.014085666526340882,\n \"mc2\": 0.35665813452391837,\n\
\ \"mc2_stderr\": 0.014271431688144938\n }\n}\n```"
repo_url: https://huggingface.co/Devio/testC
leaderboard_url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard
point_of_contact: [email protected]
configs:
- config_name: harness_arc_challenge_25
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|arc:challenge|25_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|arc:challenge|25_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hellaswag_10
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hellaswag|10_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hellaswag|10_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-anatomy|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-astronomy|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-business_ethics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-college_biology|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-college_medicine|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-college_physics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-computer_security|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-econometrics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-formal_logic|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-global_facts|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-human_aging|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-international_law|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-machine_learning|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-management|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-marketing|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-nutrition|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-philosophy|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-prehistory|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-professional_law|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-public_relations|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-security_studies|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-sociology|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-virology|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-world_religions|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-anatomy|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-astronomy|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-business_ethics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-college_biology|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-college_medicine|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-college_physics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-computer_security|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-econometrics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-formal_logic|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-global_facts|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-human_aging|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-international_law|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-machine_learning|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-management|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-marketing|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-nutrition|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-philosophy|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-prehistory|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-professional_law|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-public_relations|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-security_studies|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-sociology|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-virology|5_2023-09-02T17:27:16.860385.parquet'
- '**/details_harness|hendrycksTest-world_religions|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_abstract_algebra_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_anatomy_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-anatomy|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-anatomy|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_astronomy_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-astronomy|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-astronomy|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_business_ethics_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-business_ethics|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-business_ethics|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_clinical_knowledge_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_college_biology_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-college_biology|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_biology|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_college_chemistry_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_college_computer_science_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_college_mathematics_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_college_medicine_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-college_medicine|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_medicine|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_college_physics_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-college_physics|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_physics|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_computer_security_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-computer_security|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-computer_security|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_conceptual_physics_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_econometrics_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-econometrics|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-econometrics|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_electrical_engineering_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_elementary_mathematics_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_formal_logic_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-formal_logic|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-formal_logic|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_global_facts_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-global_facts|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-global_facts|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_high_school_biology_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_high_school_chemistry_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_high_school_computer_science_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_high_school_european_history_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_high_school_geography_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_high_school_government_and_politics_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_high_school_macroeconomics_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_high_school_mathematics_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_high_school_microeconomics_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_high_school_physics_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_high_school_psychology_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_high_school_statistics_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_high_school_us_history_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_high_school_world_history_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_human_aging_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-human_aging|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-human_aging|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_human_sexuality_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_international_law_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-international_law|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-international_law|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_jurisprudence_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_logical_fallacies_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_machine_learning_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-machine_learning|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-machine_learning|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_management_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-management|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-management|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_marketing_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-marketing|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-marketing|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_medical_genetics_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_miscellaneous_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_moral_disputes_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_moral_scenarios_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_nutrition_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-nutrition|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-nutrition|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_philosophy_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-philosophy|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-philosophy|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_prehistory_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-prehistory|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-prehistory|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_professional_accounting_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_professional_law_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-professional_law|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_law|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_professional_medicine_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_professional_psychology_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_public_relations_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-public_relations|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-public_relations|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_security_studies_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-security_studies|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-security_studies|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_sociology_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-sociology|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-sociology|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_us_foreign_policy_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_virology_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-virology|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-virology|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_hendrycksTest_world_religions_5
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|hendrycksTest-world_religions|5_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-world_religions|5_2023-09-02T17:27:16.860385.parquet'
- config_name: harness_truthfulqa_mc_0
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- '**/details_harness|truthfulqa:mc|0_2023-09-02T17:27:16.860385.parquet'
- split: latest
path:
- '**/details_harness|truthfulqa:mc|0_2023-09-02T17:27:16.860385.parquet'
- config_name: results
data_files:
- split: 2023_09_02T17_27_16.860385
path:
- results_2023-09-02T17:27:16.860385.parquet
- split: latest
path:
- results_2023-09-02T17:27:16.860385.parquet
---
# Dataset Card for Evaluation run of Devio/testC
## Dataset Description
- **Homepage:**
- **Repository:** https://huggingface.co/Devio/testC
- **Paper:**
- **Leaderboard:** https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard
- **Point of Contact:** [email protected]
### Dataset Summary
Dataset automatically created during the evaluation run of model [Devio/testC](https://huggingface.co/Devio/testC) on the [Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard).
The dataset is composed of 61 configuration, each one coresponding to one of the evaluated task.
The dataset has been created from 1 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_Devio__testC",
"harness_truthfulqa_mc_0",
split="train")
```
## Latest results
These are the [latest results from run 2023-09-02T17:27:16.860385](https://huggingface.co/datasets/open-llm-leaderboard/details_Devio__testC/blob/main/results_2023-09-02T17%3A27%3A16.860385.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.28185588236286707,
"acc_stderr": 0.03225753349873974,
"acc_norm": 0.2855290591736718,
"acc_norm_stderr": 0.03226027924923892,
"mc1": 0.20318237454100369,
"mc1_stderr": 0.014085666526340882,
"mc2": 0.35665813452391837,
"mc2_stderr": 0.014271431688144938
},
"harness|arc:challenge|25": {
"acc": 0.35494880546075086,
"acc_stderr": 0.013983036904094097,
"acc_norm": 0.39590443686006827,
"acc_norm_stderr": 0.014291228393536583
},
"harness|hellaswag|10": {
"acc": 0.4529974108743278,
"acc_stderr": 0.004967685204073108,
"acc_norm": 0.6287592113124876,
"acc_norm_stderr": 0.004821492994082116
},
"harness|hendrycksTest-abstract_algebra|5": {
"acc": 0.3,
"acc_stderr": 0.04605661864718381,
"acc_norm": 0.3,
"acc_norm_stderr": 0.04605661864718381
},
"harness|hendrycksTest-anatomy|5": {
"acc": 0.22962962962962963,
"acc_stderr": 0.03633384414073461,
"acc_norm": 0.22962962962962963,
"acc_norm_stderr": 0.03633384414073461
},
"harness|hendrycksTest-astronomy|5": {
"acc": 0.32894736842105265,
"acc_stderr": 0.03823428969926603,
"acc_norm": 0.32894736842105265,
"acc_norm_stderr": 0.03823428969926603
},
"harness|hendrycksTest-business_ethics|5": {
"acc": 0.21,
"acc_stderr": 0.04093601807403326,
"acc_norm": 0.21,
"acc_norm_stderr": 0.04093601807403326
},
"harness|hendrycksTest-clinical_knowledge|5": {
"acc": 0.2981132075471698,
"acc_stderr": 0.028152837942493857,
"acc_norm": 0.2981132075471698,
"acc_norm_stderr": 0.028152837942493857
},
"harness|hendrycksTest-college_biology|5": {
"acc": 0.2638888888888889,
"acc_stderr": 0.03685651095897532,
"acc_norm": 0.2638888888888889,
"acc_norm_stderr": 0.03685651095897532
},
"harness|hendrycksTest-college_chemistry|5": {
"acc": 0.37,
"acc_stderr": 0.04852365870939099,
"acc_norm": 0.37,
"acc_norm_stderr": 0.04852365870939099
},
"harness|hendrycksTest-college_computer_science|5": {
"acc": 0.33,
"acc_stderr": 0.047258156262526045,
"acc_norm": 0.33,
"acc_norm_stderr": 0.047258156262526045
},
"harness|hendrycksTest-college_mathematics|5": {
"acc": 0.28,
"acc_stderr": 0.04512608598542128,
"acc_norm": 0.28,
"acc_norm_stderr": 0.04512608598542128
},
"harness|hendrycksTest-college_medicine|5": {
"acc": 0.27167630057803466,
"acc_stderr": 0.0339175032232166,
"acc_norm": 0.27167630057803466,
"acc_norm_stderr": 0.0339175032232166
},
"harness|hendrycksTest-college_physics|5": {
"acc": 0.30392156862745096,
"acc_stderr": 0.045766654032077636,
"acc_norm": 0.30392156862745096,
"acc_norm_stderr": 0.045766654032077636
},
"harness|hendrycksTest-computer_security|5": {
"acc": 0.16,
"acc_stderr": 0.03684529491774708,
"acc_norm": 0.16,
"acc_norm_stderr": 0.03684529491774708
},
"harness|hendrycksTest-conceptual_physics|5": {
"acc": 0.28936170212765955,
"acc_stderr": 0.02964400657700962,
"acc_norm": 0.28936170212765955,
"acc_norm_stderr": 0.02964400657700962
},
"harness|hendrycksTest-econometrics|5": {
"acc": 0.23684210526315788,
"acc_stderr": 0.039994238792813344,
"acc_norm": 0.23684210526315788,
"acc_norm_stderr": 0.039994238792813344
},
"harness|hendrycksTest-electrical_engineering|5": {
"acc": 0.2827586206896552,
"acc_stderr": 0.037528339580033376,
"acc_norm": 0.2827586206896552,
"acc_norm_stderr": 0.037528339580033376
},
"harness|hendrycksTest-elementary_mathematics|5": {
"acc": 0.23809523809523808,
"acc_stderr": 0.021935878081184756,
"acc_norm": 0.23809523809523808,
"acc_norm_stderr": 0.021935878081184756
},
"harness|hendrycksTest-formal_logic|5": {
"acc": 0.3888888888888889,
"acc_stderr": 0.04360314860077459,
"acc_norm": 0.3888888888888889,
"acc_norm_stderr": 0.04360314860077459
},
"harness|hendrycksTest-global_facts|5": {
"acc": 0.33,
"acc_stderr": 0.047258156262526045,
"acc_norm": 0.33,
"acc_norm_stderr": 0.047258156262526045
},
"harness|hendrycksTest-high_school_biology|5": {
"acc": 0.3258064516129032,
"acc_stderr": 0.0266620105785671,
"acc_norm": 0.3258064516129032,
"acc_norm_stderr": 0.0266620105785671
},
"harness|hendrycksTest-high_school_chemistry|5": {
"acc": 0.2857142857142857,
"acc_stderr": 0.0317852971064275,
"acc_norm": 0.2857142857142857,
"acc_norm_stderr": 0.0317852971064275
},
"harness|hendrycksTest-high_school_computer_science|5": {
"acc": 0.18,
"acc_stderr": 0.038612291966536955,
"acc_norm": 0.18,
"acc_norm_stderr": 0.038612291966536955
},
"harness|hendrycksTest-high_school_european_history|5": {
"acc": 0.23030303030303031,
"acc_stderr": 0.0328766675860349,
"acc_norm": 0.23030303030303031,
"acc_norm_stderr": 0.0328766675860349
},
"harness|hendrycksTest-high_school_geography|5": {
"acc": 0.35858585858585856,
"acc_stderr": 0.03416903640391521,
"acc_norm": 0.35858585858585856,
"acc_norm_stderr": 0.03416903640391521
},
"harness|hendrycksTest-high_school_government_and_politics|5": {
"acc": 0.36787564766839376,
"acc_stderr": 0.03480175668466036,
"acc_norm": 0.36787564766839376,
"acc_norm_stderr": 0.03480175668466036
},
"harness|hendrycksTest-high_school_macroeconomics|5": {
"acc": 0.34615384615384615,
"acc_stderr": 0.024121125416941183,
"acc_norm": 0.34615384615384615,
"acc_norm_stderr": 0.024121125416941183
},
"harness|hendrycksTest-high_school_mathematics|5": {
"acc": 0.25925925925925924,
"acc_stderr": 0.026719240783712177,
"acc_norm": 0.25925925925925924,
"acc_norm_stderr": 0.026719240783712177
},
"harness|hendrycksTest-high_school_microeconomics|5": {
"acc": 0.33613445378151263,
"acc_stderr": 0.030684737115135356,
"acc_norm": 0.33613445378151263,
"acc_norm_stderr": 0.030684737115135356
},
"harness|hendrycksTest-high_school_physics|5": {
"acc": 0.33774834437086093,
"acc_stderr": 0.03861557546255169,
"acc_norm": 0.33774834437086093,
"acc_norm_stderr": 0.03861557546255169
},
"harness|hendrycksTest-high_school_psychology|5": {
"acc": 0.3431192660550459,
"acc_stderr": 0.02035477773608604,
"acc_norm": 0.3431192660550459,
"acc_norm_stderr": 0.02035477773608604
},
"harness|hendrycksTest-high_school_statistics|5": {
"acc": 0.4351851851851852,
"acc_stderr": 0.033812000056435254,
"acc_norm": 0.4351851851851852,
"acc_norm_stderr": 0.033812000056435254
},
"harness|hendrycksTest-high_school_us_history|5": {
"acc": 0.2549019607843137,
"acc_stderr": 0.030587591351604246,
"acc_norm": 0.2549019607843137,
"acc_norm_stderr": 0.030587591351604246
},
"harness|hendrycksTest-high_school_world_history|5": {
"acc": 0.20675105485232068,
"acc_stderr": 0.0263616516683891,
"acc_norm": 0.20675105485232068,
"acc_norm_stderr": 0.0263616516683891
},
"harness|hendrycksTest-human_aging|5": {
"acc": 0.15695067264573992,
"acc_stderr": 0.024413587174907412,
"acc_norm": 0.15695067264573992,
"acc_norm_stderr": 0.024413587174907412
},
"harness|hendrycksTest-human_sexuality|5": {
"acc": 0.2824427480916031,
"acc_stderr": 0.03948406125768361,
"acc_norm": 0.2824427480916031,
"acc_norm_stderr": 0.03948406125768361
},
"harness|hendrycksTest-international_law|5": {
"acc": 0.14049586776859505,
"acc_stderr": 0.03172233426002161,
"acc_norm": 0.14049586776859505,
"acc_norm_stderr": 0.03172233426002161
},
"harness|hendrycksTest-jurisprudence|5": {
"acc": 0.23148148148148148,
"acc_stderr": 0.04077494709252628,
"acc_norm": 0.23148148148148148,
"acc_norm_stderr": 0.04077494709252628
},
"harness|hendrycksTest-logical_fallacies|5": {
"acc": 0.22085889570552147,
"acc_stderr": 0.032591773927421776,
"acc_norm": 0.22085889570552147,
"acc_norm_stderr": 0.032591773927421776
},
"harness|hendrycksTest-machine_learning|5": {
"acc": 0.20535714285714285,
"acc_stderr": 0.038342410214190735,
"acc_norm": 0.20535714285714285,
"acc_norm_stderr": 0.038342410214190735
},
"harness|hendrycksTest-management|5": {
"acc": 0.4174757281553398,
"acc_stderr": 0.04882840548212237,
"acc_norm": 0.4174757281553398,
"acc_norm_stderr": 0.04882840548212237
},
"harness|hendrycksTest-marketing|5": {
"acc": 0.18803418803418803,
"acc_stderr": 0.025598193686652244,
"acc_norm": 0.18803418803418803,
"acc_norm_stderr": 0.025598193686652244
},
"harness|hendrycksTest-medical_genetics|5": {
"acc": 0.28,
"acc_stderr": 0.04512608598542127,
"acc_norm": 0.28,
"acc_norm_stderr": 0.04512608598542127
},
"harness|hendrycksTest-miscellaneous|5": {
"acc": 0.210727969348659,
"acc_stderr": 0.014583812465862553,
"acc_norm": 0.210727969348659,
"acc_norm_stderr": 0.014583812465862553
},
"harness|hendrycksTest-moral_disputes|5": {
"acc": 0.22832369942196531,
"acc_stderr": 0.02259870380432162,
"acc_norm": 0.22832369942196531,
"acc_norm_stderr": 0.02259870380432162
},
"harness|hendrycksTest-moral_scenarios|5": {
"acc": 0.2424581005586592,
"acc_stderr": 0.014333522059217889,
"acc_norm": 0.2424581005586592,
"acc_norm_stderr": 0.014333522059217889
},
"harness|hendrycksTest-nutrition|5": {
"acc": 0.3006535947712418,
"acc_stderr": 0.02625605383571896,
"acc_norm": 0.3006535947712418,
"acc_norm_stderr": 0.02625605383571896
},
"harness|hendrycksTest-philosophy|5": {
"acc": 0.26688102893890675,
"acc_stderr": 0.02512263760881664,
"acc_norm": 0.26688102893890675,
"acc_norm_stderr": 0.02512263760881664
},
"harness|hendrycksTest-prehistory|5": {
"acc": 0.25308641975308643,
"acc_stderr": 0.02419180860071301,
"acc_norm": 0.25308641975308643,
"acc_norm_stderr": 0.02419180860071301
},
"harness|hendrycksTest-professional_accounting|5": {
"acc": 0.2624113475177305,
"acc_stderr": 0.026244920349843003,
"acc_norm": 0.2624113475177305,
"acc_norm_stderr": 0.026244920349843003
},
"harness|hendrycksTest-professional_law|5": {
"acc": 0.2457627118644068,
"acc_stderr": 0.010996156635142695,
"acc_norm": 0.2457627118644068,
"acc_norm_stderr": 0.010996156635142695
},
"harness|hendrycksTest-professional_medicine|5": {
"acc": 0.4485294117647059,
"acc_stderr": 0.030211479609121593,
"acc_norm": 0.4485294117647059,
"acc_norm_stderr": 0.030211479609121593
},
"harness|hendrycksTest-professional_psychology|5": {
"acc": 0.22058823529411764,
"acc_stderr": 0.01677467236546851,
"acc_norm": 0.22058823529411764,
"acc_norm_stderr": 0.01677467236546851
},
"harness|hendrycksTest-public_relations|5": {
"acc": 0.2727272727272727,
"acc_stderr": 0.04265792110940589,
"acc_norm": 0.2727272727272727,
"acc_norm_stderr": 0.04265792110940589
},
"harness|hendrycksTest-security_studies|5": {
"acc": 0.39591836734693875,
"acc_stderr": 0.03130802899065686,
"acc_norm": 0.39591836734693875,
"acc_norm_stderr": 0.03130802899065686
},
"harness|hendrycksTest-sociology|5": {
"acc": 0.263681592039801,
"acc_stderr": 0.03115715086935556,
"acc_norm": 0.263681592039801,
"acc_norm_stderr": 0.03115715086935556
},
"harness|hendrycksTest-us_foreign_policy|5": {
"acc": 0.35,
"acc_stderr": 0.0479372485441102,
"acc_norm": 0.35,
"acc_norm_stderr": 0.0479372485441102
},
"harness|hendrycksTest-virology|5": {
"acc": 0.21084337349397592,
"acc_stderr": 0.0317555478662992,
"acc_norm": 0.21084337349397592,
"acc_norm_stderr": 0.0317555478662992
},
"harness|hendrycksTest-world_religions|5": {
"acc": 0.14619883040935672,
"acc_stderr": 0.027097290118070803,
"acc_norm": 0.14619883040935672,
"acc_norm_stderr": 0.027097290118070803
},
"harness|truthfulqa:mc|0": {
"mc1": 0.20318237454100369,
"mc1_stderr": 0.014085666526340882,
"mc2": 0.35665813452391837,
"mc2_stderr": 0.014271431688144938
}
}
```
### 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] | [
-0.7206045985221863,
-0.8238658905029297,
0.2602244019508362,
0.2351870983839035,
-0.14240345358848572,
-0.07411205768585205,
0.03948425501585007,
-0.20520786941051483,
0.5768095850944519,
-0.08386515080928802,
-0.48336103558540344,
-0.6917821764945984,
-0.4636463224887848,
0.2624220550060272,
-0.028659719973802567,
0.8180094957351685,
-0.17679384350776672,
-0.102161705493927,
0.0768531858921051,
-0.025151195004582405,
-0.2540312111377716,
-0.3271484375,
-0.4900088310241699,
-0.31391647458076477,
0.13169606029987335,
0.4181388020515442,
0.4173014163970947,
0.7859770059585571,
0.6856751441955566,
0.2974437177181244,
-0.33985814452171326,
0.015617302618920803,
-0.18060050904750824,
-0.2801448106765747,
0.4042176306247711,
-0.3779941201210022,
-0.8418216705322266,
0.30205583572387695,
0.7563682198524475,
0.6257672905921936,
-0.07789698243141174,
0.24903443455696106,
0.01239253394305706,
0.5695689916610718,
-0.37803685665130615,
0.019587138667702675,
-0.2854723334312439,
0.19907759130001068,
-0.18577779829502106,
-0.23691637814044952,
-0.30500736832618713,
-0.26355063915252686,
-0.18875420093536377,
-0.8621432185173035,
0.30172133445739746,
0.28518345952033997,
1.5895617008209229,
-0.14429162442684174,
-0.2221118062734604,
0.11812812089920044,
-0.12371769547462463,
1.0143400430679321,
-0.8610122799873352,
0.3833233118057251,
0.8222935795783997,
0.11725946515798569,
-0.1420486718416214,
-0.5384010076522827,
-0.5972365736961365,
0.09362518042325974,
-0.3622465133666992,
0.3739887475967407,
-0.01971297897398472,
-0.2351403534412384,
0.36055195331573486,
0.7046650648117065,
-0.6361020803451538,
0.15472741425037384,
-0.6899734735488892,
-0.15432609617710114,
1.0885429382324219,
0.3710780143737793,
0.06466663628816605,
-0.34154656529426575,
-0.7226622700691223,
-0.6338329911231995,
-0.42445558309555054,
0.234857976436615,
0.4161394238471985,
0.34252631664276123,
-0.4171042740345001,
0.6723203063011169,
-0.36296603083610535,
0.5638459920883179,
0.4278477430343628,
0.06643148511648178,
0.8882512450218201,
-0.6829075813293457,
-0.536426842212677,
-0.08173543214797974,
1.1333951950073242,
0.5487350821495056,
0.045595064759254456,
0.24486155807971954,
0.000420986907556653,
-0.11607738584280014,
0.05633518099784851,
-0.8624160885810852,
-0.2875954806804657,
0.1705651730298996,
-0.37363865971565247,
-0.5249424576759338,
0.3560311794281006,
-0.9181059002876282,
0.10356432944536209,
-0.009508139453828335,
0.3816279470920563,
-0.5348968505859375,
-0.12507109344005585,
0.2303052395582199,
-0.3911418914794922,
0.8329209089279175,
-0.16123917698860168,
-0.8281744122505188,
0.4195643365383148,
0.5034881830215454,
0.7947379946708679,
-0.14280720055103302,
-0.4603663682937622,
-0.12428777664899826,
-0.09696487337350845,
-0.3048056364059448,
0.5317767858505249,
-0.2801840603351593,
-0.46706342697143555,
-0.30315548181533813,
0.28149595856666565,
-0.29954078793525696,
-0.3549732267856598,
0.7536121010780334,
-0.22176803648471832,
0.23036889731884003,
-0.4371390640735626,
-0.6395840048789978,
0.16864491999149323,
0.38228633999824524,
-0.42877396941185,
1.2695176601409912,
0.2538657784461975,
-0.8159161806106567,
0.41918522119522095,
-0.6060964465141296,
-0.18111518025398254,
-0.04899531230330467,
-0.04529814049601555,
-0.8013450503349304,
-0.25908324122428894,
0.18478195369243622,
0.42266225814819336,
-0.1516260951757431,
-0.15892326831817627,
-0.37285473942756653,
-0.35756993293762207,
0.36555588245391846,
-0.14199937880039215,
1.2214266061782837,
-0.01312283519655466,
-0.7483818531036377,
-0.08915069699287415,
-1.2232173681259155,
0.2746378183364868,
0.19800862669944763,
-0.3554234206676483,
-0.19662059843540192,
-0.49852830171585083,
-0.027082275599241257,
0.15497389435768127,
0.26167017221450806,
-0.796676516532898,
0.25551825761795044,
-0.3814053535461426,
0.17460866272449493,
1.302107810974121,
0.015521246939897537,
0.14086061716079712,
-0.525844931602478,
0.501304566860199,
0.26085659861564636,
0.19985999166965485,
0.384505957365036,
-0.6063065528869629,
-0.7949349880218506,
-0.5254385471343994,
-0.03451878949999809,
0.5922020077705383,
-0.12245480716228485,
1.130613923072815,
0.08511505275964737,
-0.8777036070823669,
-0.452173113822937,
-0.1493077278137207,
0.49137043952941895,
0.782296895980835,
0.602340579032898,
-0.015621013939380646,
-0.6012656092643738,
-1.1058666706085205,
-0.2726336121559143,
-0.16133451461791992,
0.1384420543909073,
0.18928129971027374,
1.0468897819519043,
-0.2562330663204193,
0.5602063536643982,
-1.0814493894577026,
-0.21748128533363342,
0.19900821149349213,
-0.08397247642278671,
0.7790589332580566,
0.7504932284355164,
0.5688751935958862,
-0.700205385684967,
-0.5159722566604614,
0.1898183524608612,
-0.8643353581428528,
-0.05680660158395767,
0.1162947341799736,
-0.322184681892395,
0.13331721723079681,
0.11929098516702652,
-0.6747886538505554,
0.5202871561050415,
0.19344504177570343,
-1.0889079570770264,
1.0635367631912231,
-0.34274986386299133,
0.6127321720123291,
-1.0431994199752808,
0.17121893167495728,
-0.04810057953000069,
0.05091796815395355,
-0.5049375891685486,
0.016050295904278755,
0.10972027480602264,
0.431665301322937,
-0.5099109411239624,
0.8200843930244446,
-0.6878761053085327,
-0.02882540598511696,
0.4746291935443878,
0.12026413530111313,
-0.11483384668827057,
0.3586573302745819,
-0.2253877967596054,
0.8483617305755615,
0.778253972530365,
-0.5197708606719971,
0.5107320547103882,
0.4477383494377136,
-0.18955020606517792,
0.746207594871521,
-0.49507299065589905,
-0.3172926604747772,
0.32396674156188965,
-0.127130389213562,
-0.8228034377098083,
-0.48477795720100403,
0.02315579541027546,
-0.6119688153266907,
-0.08147863298654556,
0.41310879588127136,
-0.23037756979465485,
-0.7833214402198792,
-0.9753769040107727,
0.30479878187179565,
0.7066150903701782,
-0.41664227843284607,
-0.2005934715270996,
0.0775875374674797,
0.14162641763687134,
-0.7862282991409302,
-0.8472437858581543,
-0.5032263398170471,
-0.21827203035354614,
-0.7074427008628845,
0.30924317240715027,
-0.2738988399505615,
-0.29764288663864136,
-0.1264987587928772,
-0.21788126230239868,
-0.3461957275867462,
-0.0044633313082158566,
0.13917356729507446,
0.6861999034881592,
-0.38840997219085693,
-0.2959739565849304,
-0.2504189908504486,
-0.19471615552902222,
0.2597847878932953,
-0.07183834910392761,
0.36781102418899536,
-0.5089195966720581,
-0.42790108919143677,
-0.4086160361766815,
-0.023957306519150734,
0.7375834584236145,
-0.09959372133016586,
0.7459089756011963,
0.38877207040786743,
-0.31883499026298523,
-0.006500341929495335,
-0.2723656892776489,
-0.2709527015686035,
-0.5784680247306824,
0.27167946100234985,
-0.5442727208137512,
-1.0062825679779053,
0.8030751347541809,
0.5404424667358398,
0.05742906406521797,
1.1711704730987549,
0.6299309134483337,
-0.28042829036712646,
1.0069835186004639,
0.038089606910943985,
0.36019766330718994,
0.3723527491092682,
-0.7009623646736145,
0.09644469618797302,
-0.9562450647354126,
-0.3545313775539398,
-0.5928910374641418,
-0.47085264325141907,
-0.6912095546722412,
-0.07120875269174576,
0.2682017683982849,
0.14491219818592072,
-0.6995640397071838,
0.5930671095848083,
-0.8480939269065857,
0.5723889470100403,
0.5753090381622314,
0.27460914850234985,
0.16519629955291748,
-0.18292057514190674,
-0.40155771374702454,
-0.13284404575824738,
-0.42695188522338867,
-0.23730283975601196,
1.2199764251708984,
0.2592485249042511,
0.7696778178215027,
0.09855860471725464,
0.8905982375144958,
0.08537089824676514,
-0.08771935850381851,
-0.5648215413093567,
0.6366230845451355,
0.10075806826353073,
-0.7891144752502441,
-0.39921894669532776,
-0.4943171441555023,
-1.0694009065628052,
0.3918575644493103,
-0.10648590326309204,
-0.8240098357200623,
0.1564459204673767,
-0.01793944090604782,
-0.20118333399295807,
0.4989836513996124,
-0.5637778639793396,
0.8388310670852661,
-0.1436503827571869,
-0.5224782824516296,
0.11601453274488449,
-0.8156947493553162,
0.48519429564476013,
0.19601517915725708,
0.25300315022468567,
0.05442747101187706,
0.23699213564395905,
1.18167245388031,
-0.8296484351158142,
0.42797383666038513,
0.11867973953485489,
0.033949337899684906,
0.29566314816474915,
-0.13928009569644928,
0.4898757040500641,
0.10454171895980835,
-0.0462925098836422,
-0.12334657460451126,
0.31966525316238403,
-0.868911862373352,
-0.05463475361466408,
0.9573216438293457,
-0.9827409386634827,
-0.5977404713630676,
-0.897739589214325,
-0.5014556646347046,
0.04673405736684799,
0.5681713223457336,
0.3686799108982086,
0.5219763517379761,
-0.024790745228528976,
0.4149309992790222,
0.8981556296348572,
-0.10570509731769562,
0.5848053693771362,
0.21282346546649933,
0.10110718011856079,
-0.6942670941352844,
0.8489740490913391,
0.020803337916731834,
0.37383678555488586,
0.2816251814365387,
0.4063476026058197,
-0.5601227283477783,
-0.20492905378341675,
-0.22745166718959808,
0.5420442819595337,
-0.6103435754776001,
-0.2622362971305847,
-0.3654046654701233,
-0.38967078924179077,
-0.7747700810432434,
-0.6430823802947998,
-0.33296820521354675,
-0.4954987168312073,
-0.5039954781532288,
-0.4910358488559723,
0.5896332859992981,
0.4745933413505554,
-0.38808906078338623,
0.004024411551654339,
-0.5101976990699768,
0.2542051672935486,
0.32448917627334595,
0.5737801194190979,
-0.42038553953170776,
-0.5646617412567139,
0.056302450597286224,
-0.11395233869552612,
-0.5678008794784546,
-0.9899510741233826,
0.32694679498672485,
-0.07718247920274734,
0.5036376714706421,
0.6141605377197266,
0.06924021244049072,
0.8500730395317078,
-0.18793985247612,
1.049299955368042,
0.34551501274108887,
-0.7838958501815796,
0.7743105888366699,
-0.3239855170249939,
0.157022163271904,
0.6795536875724792,
0.19364184141159058,
-0.18510624766349792,
-0.679233729839325,
-1.3197437524795532,
-0.7462941408157349,
0.66370689868927,
0.40827783942222595,
-0.26525476574897766,
0.036662761121988297,
0.10786309093236923,
-0.2772458791732788,
-0.18619082868099213,
-0.6350588798522949,
-0.8741946220397949,
-0.1595849096775055,
-0.49450981616973877,
0.13179053366184235,
0.04820714518427849,
-0.43782636523246765,
-0.8213516473770142,
0.9338969588279724,
0.03634793683886528,
0.5996207594871521,
0.4730762243270874,
0.07751750200986862,
0.09173540025949478,
0.4810163080692291,
0.970014750957489,
0.7541998028755188,
-0.4524613320827484,
0.44546443223953247,
0.4214751422405243,
-1.087911605834961,
0.4761931002140045,
0.31499865651130676,
-0.10388029366731644,
-0.04072582721710205,
0.448438823223114,
0.4332086443901062,
0.017188122496008873,
-0.20341308414936066,
0.6179195642471313,
-0.015734810382127762,
-0.5651487708091736,
-0.36069849133491516,
0.11177637428045273,
-0.12263651937246323,
-0.04449630156159401,
0.35773900151252747,
-0.12702973186969757,
-0.06289935857057571,
-0.46888452768325806,
0.47671377658843994,
0.362888902425766,
-0.5145987272262573,
-0.17529338598251343,
0.7867605686187744,
-0.15292157232761383,
-0.16988055408000946,
0.3413896858692169,
-0.15100303292274475,
-0.6335480809211731,
1.128525972366333,
0.6029507517814636,
0.7145401835441589,
-0.28696975111961365,
-0.05425474792718887,
0.9325599670410156,
0.37500259280204773,
-0.03416959196329117,
0.5021328330039978,
0.3328459560871124,
-0.24029289186000824,
0.20028774440288544,
-0.8850428462028503,
-0.036177195608615875,
0.164535790681839,
-0.7709245681762695,
0.36027824878692627,
-0.5150719881057739,
-0.14453710615634918,
0.0028715424705296755,
0.41731494665145874,
-0.4083557724952698,
0.553398847579956,
-0.42017316818237305,
1.216524362564087,
-1.0003294944763184,
0.6760039925575256,
0.7802130579948425,
-0.5894297361373901,
-1.024807333946228,
-0.5386261343955994,
0.006288487464189529,
-0.7977634072303772,
0.5889769196510315,
-0.0696902722120285,
0.15542112290859222,
-0.10211654007434845,
-0.6782416105270386,
-0.881803035736084,
1.3669353723526,
-0.08204429596662521,
-0.3882097005844116,
0.268945574760437,
-0.03610893711447716,
0.45755741000175476,
0.16279619932174683,
0.6202227473258972,
0.711654782295227,
0.8238493800163269,
-0.05082951486110687,
-0.7043962478637695,
0.35325685143470764,
-0.512496829032898,
-0.3332640826702118,
0.49382728338241577,
-0.932982325553894,
1.2108654975891113,
-0.007304425351321697,
0.21549779176712036,
-0.21764087677001953,
0.6578401327133179,
0.790968656539917,
0.27578046917915344,
0.3469283878803253,
0.9075321555137634,
0.8604335784912109,
-0.5092254877090454,
1.0158125162124634,
-0.2017318457365036,
0.8708881735801697,
0.6835716366767883,
0.22234970331192017,
0.7433405518531799,
0.6609796285629272,
-0.6156494617462158,
0.5195761919021606,
0.8352625966072083,
-0.3096066117286682,
0.3885739743709564,
0.2500377893447876,
-0.13605093955993652,
-0.1495399922132492,
0.44822320342063904,
-0.8911277651786804,
0.08592239022254944,
0.052188511937856674,
-0.3339693248271942,
0.07088393718004227,
-0.45677536725997925,
0.3010523021221161,
-0.049809373915195465,
-0.03497989848256111,
0.3482001721858978,
0.03894587606191635,
-0.4093387722969055,
0.9598684906959534,
-0.15714654326438904,
0.7566707730293274,
-0.5484538674354553,
-0.07600849866867065,
-0.41907766461372375,
0.6375259757041931,
-0.46162256598472595,
-1.0685186386108398,
0.21807239949703217,
0.05874276161193848,
-0.13162817060947418,
-0.1933056116104126,
0.6927605271339417,
-0.17555348575115204,
-0.7861022353172302,
0.08931128680706024,
0.0626521036028862,
0.10750235617160797,
0.5100419521331787,
-0.6527804732322693,
-0.3468305170536041,
-0.038999419659376144,
-0.5422410368919373,
0.11531759053468704,
0.3063361346721649,
0.268717497587204,
0.535595178604126,
0.633684515953064,
0.16895179450511932,
0.42060112953186035,
-0.550167441368103,
0.8077166676521301,
-1.0518474578857422,
-0.7241209149360657,
-0.944144606590271,
0.4494081735610962,
-0.34638920426368713,
-0.9042851328849792,
0.9967320561408997,
1.0947494506835938,
0.867120623588562,
-0.029451783746480942,
0.6094958186149597,
-0.38577818870544434,
0.25964102149009705,
-0.36809641122817993,
0.9581913352012634,
-0.8509167432785034,
-0.21844004094600677,
-0.2363339066505432,
-0.6760351061820984,
-0.3885675072669983,
0.8206258416175842,
-0.19707074761390686,
0.04428332298994064,
1.0863693952560425,
0.6810705661773682,
-0.1381082534790039,
0.08370335400104523,
-0.054058220237493515,
0.5911931395530701,
0.38861116766929626,
0.9922718405723572,
0.6447098255157471,
-0.7996448874473572,
0.31384795904159546,
-0.49745339155197144,
-0.4079122543334961,
-0.35939767956733704,
-0.4048716723918915,
-0.8809384703636169,
-0.532684862613678,
-0.22296541929244995,
-0.6134225726127625,
-0.12629495561122894,
0.9392475485801697,
0.46012142300605774,
-0.9586619734764099,
-0.4165734052658081,
-0.12997889518737793,
0.19226308166980743,
-0.5959673523902893,
-0.4208140969276428,
0.741265594959259,
-0.1313999593257904,
-0.5993729829788208,
0.1846611499786377,
-0.15000522136688232,
0.20721812546253204,
0.0953044444322586,
-0.4180088937282562,
-0.7750820517539978,
0.007947993464767933,
0.4189029932022095,
0.31685927510261536,
-0.6489167213439941,
-0.681780219078064,
0.3467497229576111,
-0.5368074178695679,
0.4479212462902069,
-0.014803136698901653,
-0.5149059295654297,
0.03741435334086418,
0.7215701341629028,
0.4912544786930084,
0.6877830028533936,
-0.015801476314663887,
0.08835870772600174,
-0.6409866213798523,
0.14363063871860504,
0.015368263237178326,
0.2448226660490036,
-0.04524906724691391,
-0.34249427914619446,
0.8105919361114502,
0.6894909143447876,
-0.5125069618225098,
-1.0752999782562256,
-0.4242960810661316,
-1.4154328107833862,
-0.038018759340047836,
1.1131832599639893,
0.039800383150577545,
-0.5143281817436218,
0.27179843187332153,
-0.11810897290706635,
0.17224237322807312,
-0.31504637002944946,
0.7454094290733337,
0.795619785785675,
-0.38874486088752747,
0.12882734835147858,
-0.6363202929496765,
0.3645765781402588,
0.5263555645942688,
-1.2308461666107178,
-0.06949138641357422,
0.254241019487381,
0.3094770908355713,
0.3761879801750183,
0.6238310933113098,
-0.13512364029884338,
0.24176856875419617,
0.23095101118087769,
0.0223404373973608,
-0.033142853528261185,
0.07392221689224243,
-0.24002619087696075,
0.06879538297653198,
-0.2832922637462616,
-0.49919062852859497
]
|
stsb_mt_sv | null | 2022-11-18T21:48:42Z | 260 | 1 | [
"task_categories:text-classification",
"task_ids:text-scoring",
"task_ids:semantic-similarity-scoring",
"annotations_creators:crowdsourced",
"language_creators:crowdsourced",
"language_creators:machine-generated",
"multilinguality:monolingual",
"size_categories:1K<n<10K",
"source_datasets:extended|other-sts-b",
"language:sv",
"license:unknown",
"arxiv:2009.03116",
"region:us"
]
| [
"text-classification"
]
| 2022-03-02T23:29:22Z | ---
annotations_creators:
- crowdsourced
language_creators:
- crowdsourced
- machine-generated
language:
- sv
license:
- unknown
multilinguality:
- monolingual
size_categories:
- 1K<n<10K
source_datasets:
- extended|other-sts-b
task_categories:
- text-classification
task_ids:
- text-scoring
- semantic-similarity-scoring
paperswithcode_id: null
pretty_name: Swedish Machine Translated STS-B
dataset_info:
features:
- name: sentence1
dtype: string
- name: sentence2
dtype: string
- name: score
dtype: float32
config_name: plain_text
splits:
- name: test
num_bytes: 171823
num_examples: 1379
- name: validation
num_bytes: 218843
num_examples: 1500
- name: train
num_bytes: 772847
num_examples: 5749
download_size: 383047
dataset_size: 1163513
---
# Dataset Card for Swedish Machine Translated STS-B
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [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)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:** [stsb-mt-sv homepage](https://github.com/timpal0l/sts-benchmark-swedish)
- **Repository:** [stsb-mt-sv repository](https://github.com/timpal0l/sts-benchmark-swedish)
- **Paper:** [Why Not Simply Translate? A First Swedish Evaluation Benchmark for Semantic Similarity
](https://arxiv.org/abs/2009.03116)
- **Point of Contact:** [Tim Isbister](mailto:[email protected])
### Dataset Summary
This dataset is a Swedish machine translated version for semantic textual similarity.
### Supported Tasks and Leaderboards
This dataset can be used to evaluate text similarity on Swedish.
### Languages
The text in the dataset is in Swedish. The associated BCP-47 code is `sv`.
## Dataset Structure
### Data Instances
What a sample looks like:
```
{'score': '4.2',
'sentence1': 'Undrar om jultomten kommer i år pga Corona..?',
'sentence2': 'Jag undrar om jultomen kommer hit i år med tanke på covid-19',
}
```
### Data Fields
- `score`: a float representing the semantic similarity score. Where 0.0 is the lowest score and 5.0 is the highest.
- `sentence1`: a string representing a text
- `sentence2`: another string to compare the semantic with
### Data Splits
The data is split into a training, validation and test set. The final split sizes are as follow:
| Train | Valid | Test |
| ------ | ----- | ---- |
| 5749 | 1500 | 1379 |
## Dataset Creation
### Curation Rationale
[Needs More Information]
### Source Data
#### Initial Data Collection and Normalization
[Needs More Information]
#### Who are the source language producers?
[Needs More Information]
### Annotations
#### Annotation process
[Needs More Information]
#### Who are the annotators?
[Needs More Information]
### Personal and Sensitive Information
[Needs More Information]
## Considerations for Using the Data
### Social Impact of Dataset
[Needs More Information]
### Discussion of Biases
[Needs More Information]
### Other Known Limitations
[Needs More Information]
## Additional Information
### Dataset Curators
The machine translated version were put together by @timpal0l
### Licensing Information
[Needs More Information]
### Citation Information
```
@article{isbister2020not,
title={Why Not Simply Translate? A First Swedish Evaluation Benchmark for Semantic Similarity},
author={Isbister, Tim and Sahlgren, Magnus},
journal={arXiv preprint arXiv:2009.03116},
year={2020}
}
```
### Contributions
Thanks to [@timpal0l](https://github.com/timpal0l) for adding this dataset. | [
-0.3137575685977936,
-0.5020038485527039,
0.256849080324173,
0.21248088777065277,
-0.7096502780914307,
-0.07914324104785919,
-0.4850821793079376,
-0.4159088134765625,
0.2959880828857422,
0.5163163542747498,
-0.8658340573310852,
-1.2016124725341797,
-0.7675970196723938,
0.35460007190704346,
-0.2160983681678772,
1.0462086200714111,
-0.2860366404056549,
0.4690365493297577,
-0.3574899435043335,
-0.330994576215744,
-0.3674440085887909,
-0.5436145663261414,
-0.28258323669433594,
-0.12750791013240814,
0.41517946124076843,
0.5301052331924438,
0.48132821917533875,
0.8410000801086426,
0.7402594685554504,
0.283963680267334,
-0.03351254761219025,
0.1333809494972229,
-0.5149939656257629,
-0.04596560075879097,
-0.2587650716304779,
-0.3792040944099426,
-0.31989336013793945,
-0.16964688897132874,
0.6998090744018555,
0.6773285269737244,
0.1713615506887436,
0.6040306687355042,
0.16859957575798035,
0.6922611594200134,
-0.20726226270198822,
0.524553656578064,
-0.5224937200546265,
-0.08798567950725555,
-0.38056477904319763,
0.09048957377672195,
-0.17782394587993622,
-0.3555675148963928,
-0.18671898543834686,
-0.5302358269691467,
0.14303819835186005,
0.29726433753967285,
1.1341030597686768,
0.23537315428256989,
-0.37153246998786926,
-0.26483795046806335,
-0.39105525612831116,
0.9930896759033203,
-0.5990853905677795,
0.28161925077438354,
0.417436420917511,
0.2733028829097748,
0.014131499454379082,
-0.6819190979003906,
-0.6481189131736755,
0.11169393360614777,
-0.21537762880325317,
0.2248402088880539,
-0.10725123435258865,
-0.2207566201686859,
0.33667659759521484,
0.24394233524799347,
-0.6529321074485779,
-0.021559689193964005,
-0.6325976848602295,
-0.2809975743293762,
0.8377269506454468,
0.31836193799972534,
0.2392946481704712,
-0.5864258408546448,
-0.5139521956443787,
-0.47425973415374756,
-0.55887371301651,
-0.20323625206947327,
0.42008236050605774,
0.5624910593032837,
-0.5821467041969299,
0.7858610153198242,
-0.09431920200586319,
0.6227633357048035,
-0.37210801243782043,
0.03591788187623024,
0.8809003233909607,
-0.7248815894126892,
-0.08807013928890228,
-0.0766516625881195,
0.9205766916275024,
0.6119750142097473,
0.21629087626934052,
0.11851325631141663,
-0.24775747954845428,
0.04943491145968437,
0.19486097991466522,
-0.635898232460022,
0.01800837554037571,
0.21976631879806519,
-0.729732871055603,
-0.22360770404338837,
0.21241585910320282,
-0.7076998949050903,
0.018171358853578568,
-0.46584200859069824,
0.28630581498146057,
-0.3509438633918762,
-0.16475984454154968,
0.035974111407995224,
-0.20662999153137207,
0.4489279091358185,
0.03136323764920235,
-0.4602769613265991,
0.3684830367565155,
0.6701804399490356,
0.8098241090774536,
-0.5123694539070129,
-0.3864409923553467,
0.045077625662088394,
-0.0002817871863953769,
-0.18211986124515533,
0.6783206462860107,
-0.18728268146514893,
-0.6168820858001709,
0.11149057000875473,
0.43167534470558167,
-0.06904824823141098,
-0.34491434693336487,
1.0560146570205688,
-0.14320330321788788,
0.5114850401878357,
-0.5383304357528687,
-0.5522076487541199,
0.009624135680496693,
0.34028366208076477,
-0.6118200421333313,
1.6402701139450073,
0.28684714436531067,
-0.9872791767120361,
0.41373923420906067,
-0.8126475214958191,
-0.5097496509552002,
0.16865403950214386,
-0.32253512740135193,
-0.42457759380340576,
-0.1358707696199417,
0.0002036284131463617,
0.6190683841705322,
-0.5419081449508667,
0.15966123342514038,
-0.23310501873493195,
-0.2665160298347473,
0.00223291153088212,
-0.15158574283123016,
1.0403374433517456,
0.32527095079421997,
-0.1685563623905182,
0.2043296992778778,
-0.9867964386940002,
0.04018023610115051,
0.31831079721450806,
-0.2112477868795395,
-0.4943903386592865,
-0.21098977327346802,
0.5312115550041199,
0.5121076703071594,
0.5142154097557068,
-0.731480062007904,
-0.09738839417695999,
-0.49777042865753174,
0.20247101783752441,
0.6849001049995422,
0.016620658338069916,
0.2644021213054657,
-0.312445729970932,
0.43210703134536743,
0.14779527485370636,
0.24705591797828674,
0.07234029471874237,
-0.6159712076187134,
-0.7165456414222717,
-0.317960262298584,
0.4463113248348236,
0.74444180727005,
-0.8714969754219055,
0.9257943630218506,
-0.9124374985694885,
-0.6859545707702637,
-0.9605631232261658,
0.12149019539356232,
0.6442198753356934,
0.5025315284729004,
0.4993930757045746,
-0.3066282868385315,
-0.7240347266197205,
-1.1216460466384888,
-0.15961790084838867,
-0.08746176958084106,
-0.03732721880078316,
0.3904063403606415,
0.9799860119819641,
-0.025678908452391624,
0.6200363636016846,
-0.6637279987335205,
-0.37169814109802246,
-0.4036744236946106,
-0.07996788620948792,
0.367252379655838,
0.6606768369674683,
0.5211750268936157,
-1.0236220359802246,
-0.7111374139785767,
-0.10845353454351425,
-0.7584741711616516,
-0.11937116831541061,
0.16680589318275452,
-0.2907690107822418,
0.3923531472682953,
0.3476545810699463,
-0.5857356786727905,
0.36558443307876587,
0.49926450848579407,
-0.5765456557273865,
0.47251442074775696,
-0.23219598829746246,
0.2399185299873352,
-1.6271470785140991,
0.3760061264038086,
-0.14548498392105103,
-0.0026888686697930098,
-0.4555637240409851,
-0.09510791301727295,
0.03347095102071762,
0.0343734547495842,
-0.665291965007782,
0.806343138217926,
-0.2609350085258484,
-0.030672328546643257,
0.07761205732822418,
0.2544367015361786,
0.02651910111308098,
0.487378865480423,
-0.057917624711990356,
0.7109068036079407,
0.4858126938343048,
-0.5083014369010925,
0.27143603563308716,
0.7604464888572693,
-0.7153996229171753,
0.8051973581314087,
-0.7519592642784119,
-0.007064132019877434,
-0.20702554285526276,
0.1552351415157318,
-1.1205899715423584,
-0.15790659189224243,
0.4768139123916626,
-0.7483721375465393,
0.12950699031352997,
-0.14430271089076996,
-0.970235288143158,
-0.4434477686882019,
-0.39579659700393677,
0.07583960145711899,
0.5538469552993774,
-0.2299094945192337,
0.550460696220398,
0.38344207406044006,
-0.14344128966331482,
-0.5675562620162964,
-1.1008490324020386,
0.0677444115281105,
-0.12737809121608734,
-0.7449121475219727,
0.5113400220870972,
-0.22341646254062653,
-0.08307402580976486,
0.24846087396144867,
0.024862581863999367,
0.06950759887695312,
0.05130874365568161,
0.28099244832992554,
0.5363748669624329,
-0.08805814385414124,
0.18805493414402008,
0.15338817238807678,
-0.21232649683952332,
-0.035522982478141785,
-0.24952073395252228,
0.5413223505020142,
-0.018382210284471512,
-0.26779705286026,
-0.3178301453590393,
0.4871115982532501,
0.36824336647987366,
-0.07963260263204575,
0.9061770439147949,
0.8751360177993774,
-0.3679487109184265,
0.13125818967819214,
-0.4283781349658966,
-0.0255498755723238,
-0.39764922857284546,
0.4103755056858063,
-0.5879441499710083,
-0.6847217082977295,
0.7272977232933044,
0.12176170945167542,
0.04486539214849472,
0.9664062261581421,
0.580862820148468,
-0.10657145082950592,
0.9496573805809021,
0.43805286288261414,
-0.05911475419998169,
0.30041688680648804,
-0.3889623284339905,
-0.1460908055305481,
-0.6705774068832397,
-0.5623058080673218,
-0.9219273328781128,
-0.26261308789253235,
-0.990534245967865,
-0.5506791472434998,
0.038632914423942566,
-0.27649950981140137,
-0.2259877771139145,
0.6270110607147217,
-0.5202900767326355,
0.36507895588874817,
0.5592794418334961,
-0.11964040249586105,
0.05695076286792755,
0.08880559355020523,
-0.38897499442100525,
-0.3757323622703552,
-0.6499373316764832,
-0.5598817467689514,
0.9787733554840088,
0.2573104798793793,
0.3100414276123047,
0.028185496106743813,
0.7304938435554504,
0.35291898250579834,
-0.001191205345094204,
-0.539516270160675,
0.785550057888031,
-0.434929221868515,
-0.5831884741783142,
-0.25478827953338623,
-0.4163162410259247,
-0.9997537136077881,
0.2525462806224823,
-0.4228430390357971,
-0.4378966689109802,
0.13601301610469818,
-0.11771342158317566,
0.2594629228115082,
0.10582613199949265,
-0.7549700140953064,
1.062788724899292,
-0.1416291743516922,
-0.17979338765144348,
-0.18058539927005768,
-1.1642777919769287,
-0.19709597527980804,
0.006071357987821102,
0.4385598301887512,
-0.2109510749578476,
-0.2264120727777481,
0.9365850687026978,
-0.34944796562194824,
0.948296308517456,
-0.2573186159133911,
0.10397116839885712,
0.10756278783082962,
-0.2808803915977478,
0.5855134129524231,
-0.3411339819431305,
-0.17109602689743042,
0.6322015523910522,
0.20686140656471252,
-0.5735502243041992,
-0.41877251863479614,
0.7532605528831482,
-0.7827081084251404,
-0.1964934915304184,
-0.4545340836048126,
-0.38544753193855286,
0.11021047085523605,
0.5997356176376343,
0.3049258589744568,
0.004830094985663891,
-0.29808706045150757,
0.34934696555137634,
0.5536680817604065,
-0.2668713629245758,
-0.016829630360007286,
0.5862106680870056,
0.0012091945391148329,
-0.671421468257904,
0.8179943561553955,
0.26219043135643005,
0.11931116133928299,
0.500042200088501,
0.05773109570145607,
-0.5726693868637085,
-0.43569105863571167,
-0.4973430335521698,
0.3725537061691284,
-0.9452889561653137,
-0.0993727445602417,
-0.6773572564125061,
-0.13616310060024261,
-0.6236752867698669,
-0.044577457010746,
-0.1730257272720337,
-0.6415715217590332,
-0.22704410552978516,
-0.4168955087661743,
0.42465895414352417,
0.5155546069145203,
-0.03290560469031334,
0.1479920744895935,
-0.6876466274261475,
0.13920176029205322,
-0.3446809649467468,
0.40884003043174744,
-0.30749741196632385,
-0.5028617978096008,
-0.4436303675174713,
-0.009355139918625355,
0.05122506991028786,
-0.5691970586776733,
0.3433820307254791,
-0.054737623780965805,
0.7033795714378357,
-0.05192738026380539,
0.07713266462087631,
0.4924388825893402,
-0.5159462690353394,
1.1348094940185547,
0.09051898866891861,
-0.7876406311988831,
0.550528347492218,
-0.3171619772911072,
0.5079281330108643,
0.9976481199264526,
0.44836294651031494,
-0.7171682715415955,
-0.204152911901474,
-0.8802860379219055,
-1.1502685546875,
0.8446518182754517,
0.3297518491744995,
0.3955686092376709,
-0.16575054824352264,
0.1421041488647461,
0.16753393411636353,
0.2756982445716858,
-0.5910223722457886,
-0.7483690977096558,
-0.19436290860176086,
-0.6334301829338074,
-0.20699667930603027,
-0.2651556134223938,
-0.11548653990030289,
-0.32183724641799927,
0.9153101444244385,
0.19277924299240112,
0.2632054090499878,
0.04946671798825264,
-0.10367915779352188,
0.2273288071155548,
0.2582041919231415,
0.5837177634239197,
0.31078389286994934,
-0.16416501998901367,
0.049408916383981705,
0.40101689100265503,
-0.6566539406776428,
-0.1562737375497818,
0.18324021995067596,
-0.322466641664505,
0.2665224075317383,
0.34638160467147827,
0.9834094643592834,
0.31446194648742676,
-0.6491771340370178,
0.7352954745292664,
0.06147731468081474,
-0.38985738158226013,
-0.5837271809577942,
-0.25187498331069946,
0.023851150646805763,
0.04950558766722679,
0.1636309027671814,
-0.08200082927942276,
-0.035061273723840714,
-0.19988121092319489,
0.23108401894569397,
0.04102795198559761,
-0.616021454334259,
-0.2730903625488281,
0.5201433300971985,
0.2421184480190277,
-0.4396924674510956,
0.5426740050315857,
-0.15827122330665588,
-0.4168500006198883,
0.4600263237953186,
0.41768214106559753,
0.8669762015342712,
-0.0016591722378507257,
0.2580534517765045,
0.738315761089325,
0.4319077730178833,
-0.09990021586418152,
0.8086063861846924,
-0.14789803326129913,
-0.6897075772285461,
-0.36865559220314026,
-0.5615901947021484,
-0.13636472821235657,
-0.013358576223254204,
-0.8547483086585999,
0.6057639718055725,
-0.10812187194824219,
-0.07294560223817825,
-0.10207398235797882,
0.23608848452568054,
-0.9669003486633301,
0.23796139657497406,
-0.048564303666353226,
1.2036807537078857,
-1.1093755960464478,
0.884135901927948,
0.8123884201049805,
-0.6756508946418762,
-0.46259763836860657,
-0.21996937692165375,
-0.02178405597805977,
-0.8874228000640869,
0.611299455165863,
0.0641656294465065,
0.15195943415164948,
-0.04746674746274948,
-0.6257210969924927,
-0.8390983939170837,
1.237380027770996,
0.16072168946266174,
-0.29502591490745544,
0.1580583155155182,
0.46325376629829407,
0.8432402610778809,
-0.5272519588470459,
-0.022093018516898155,
0.4070202708244324,
0.7479592561721802,
0.19219492375850677,
-0.692402184009552,
0.22267475724220276,
-0.5732967257499695,
0.20646490156650543,
0.21400244534015656,
-0.5708194971084595,
0.4376715123653412,
0.06554697453975677,
-0.2736997902393341,
-0.027986746281385422,
0.6092200875282288,
0.20182941854000092,
0.28968217968940735,
0.39272040128707886,
0.5424181222915649,
0.6495376229286194,
-0.20830364525318146,
1.1170519590377808,
-0.4668561518192291,
0.3445439338684082,
1.225465178489685,
-0.1259962022304535,
0.9385551810264587,
0.5976603627204895,
-0.29280179738998413,
0.5673539042472839,
0.6134210824966431,
-0.45058611035346985,
0.4883890151977539,
0.23610253632068634,
0.11178841441869736,
-0.11842164397239685,
-0.2608831226825714,
-0.36591944098472595,
0.40394729375839233,
0.34185096621513367,
-0.5948745608329773,
-0.10668531060218811,
-0.04317425191402435,
0.22536048293113708,
0.22555169463157654,
-0.06838011741638184,
0.796558678150177,
0.03219250217080116,
-0.4954947233200073,
0.43067577481269836,
0.09144066274166107,
0.525014340877533,
-0.813967227935791,
0.025790074840188026,
0.010859857313334942,
-0.01607021689414978,
-0.1119675561785698,
-1.0621998310089111,
0.4704264998435974,
0.046203356236219406,
-0.29004204273223877,
-0.4159082770347595,
0.717845618724823,
-0.5691826343536377,
-0.7123814225196838,
0.35147300362586975,
0.4512154757976532,
0.5053540468215942,
0.3516726791858673,
-1.1972694396972656,
0.20448312163352966,
0.1360289454460144,
-0.1643017679452896,
0.2697353959083557,
0.4161967933177948,
-0.16368326544761658,
0.4698801636695862,
0.5960537195205688,
0.17904753983020782,
-0.12614935636520386,
0.2362794280052185,
0.7879080176353455,
-0.721760094165802,
-0.456201434135437,
-0.7109975814819336,
0.7089945673942566,
-0.5182726979255676,
-0.49866220355033875,
0.9703893065452576,
0.9724421501159668,
1.2246124744415283,
-0.1936366856098175,
0.9519710540771484,
-0.31964364647865295,
0.8877518773078918,
-0.42866024374961853,
0.7146816253662109,
-0.6142948865890503,
0.12974348664283752,
-0.2624172270298004,
-0.8660961389541626,
-0.43488815426826477,
0.4241897761821747,
-0.275599867105484,
-0.04654712229967117,
0.7316545248031616,
0.7896859645843506,
0.011865641921758652,
-0.12111236155033112,
0.34801197052001953,
0.47791576385498047,
-0.06166282296180725,
0.27763307094573975,
0.26762402057647705,
-0.7367428541183472,
0.7335377335548401,
-0.24406138062477112,
0.02029772661626339,
-0.04445682838559151,
-0.8451082706451416,
-0.943509042263031,
-1.1064090728759766,
-0.3988807797431946,
-0.6283585429191589,
0.05767113342881203,
1.2086011171340942,
0.29143112897872925,
-0.9414743185043335,
-0.21427513659000397,
0.18743614852428436,
0.1521298587322235,
-0.24244141578674316,
-0.1842718869447708,
0.744289219379425,
-0.027846552431583405,
-0.8162252902984619,
-0.04112336039543152,
0.05643221363425255,
0.14989826083183289,
-0.19185739755630493,
-0.15267103910446167,
-0.3457067608833313,
-0.007978247478604317,
0.6000360250473022,
-0.008078182116150856,
-0.6503759026527405,
-0.15887786448001862,
0.0843127965927124,
-0.2788928747177124,
0.08337917178869247,
0.3372951149940491,
-0.3261389434337616,
0.40992099046707153,
0.7836257815361023,
0.48503777384757996,
0.6568703651428223,
-0.1286020576953888,
0.23493145406246185,
-0.8859230279922485,
0.19115206599235535,
0.1300722062587738,
0.2998884916305542,
0.46963974833488464,
-0.25376802682876587,
0.7048938274383545,
0.3885776996612549,
-0.33288660645484924,
-0.9374485611915588,
0.003362249117344618,
-1.2289130687713623,
-0.12185324728488922,
1.4690532684326172,
-0.2220524698495865,
-0.48260363936424255,
-0.3030661344528198,
-0.31284916400909424,
0.342818021774292,
-0.3921513557434082,
0.5854246616363525,
1.0225484371185303,
0.42350614070892334,
0.22454652190208435,
-0.46370166540145874,
0.4575527310371399,
0.13875101506710052,
-0.7915669679641724,
-0.027243832126259804,
0.30162692070007324,
0.41982027888298035,
0.09878478199243546,
0.6044979691505432,
-0.49604785442352295,
0.01961394213140011,
-0.06165708974003792,
0.4463256597518921,
0.040265973657369614,
0.016142990440130234,
-0.31760382652282715,
-0.16116808354854584,
-0.225967139005661,
-0.2796615958213806
]
|
NYTK/HuCOLA | NYTK | 2022-10-21T16:08:35Z | 260 | 0 | [
"task_ids:text-simplification",
"annotations_creators:expert-generated",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:unknown",
"source_datasets:original",
"language:hu",
"license:cc-by-sa-4.0",
"region:us"
]
| [
"conditional-text-generation"
]
| 2022-03-02T23:29:22Z | ---
YAML tags:
annotations_creators:
- expert-generated
language_creators:
- found
language:
- hu
license:
- cc-by-sa-4.0
multilinguality:
- monolingual
pretty_name: HuCOLA
size_categories:
- unknown
source_datasets:
- original
task_categories:
- conditional-text-generation
task_ids:
- machine-translation
- summarization
- text-simplification
---
# Dataset Card for HuCOLA
## Table of Contents
- [Table of Contents](#table-of-contents)
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [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)
- [Contributions](#contributions)
## Dataset Description
- **Homepage:**
- **Repository:**
[HuCOLA dataset](https://github.com/nytud/HuCOLA)
- **Paper:**
- **Leaderboard:**
- **Point of Contact:**
[lnnoemi](mailto:[email protected])
### Dataset Summary
This is the dataset card for the Hungarian Corpus of Linguistic Acceptability (HuCOLA), which is also part of the Hungarian Language Understanding Evaluation Benchmark Kit [HuLU](hulu.nlp.nytud.hu).
### Supported Tasks and Leaderboards
### Languages
The BCP-47 code for Hungarian, the only represented language in this dataset, is hu-HU.
## Dataset Structure
### Data Instances
For each instance, there is aN id, a sentence and a label.
An example:
```
{"Sent_id": "dev_0",
"Sent": "A földek eláradtak.",
"Label": "0"}
```
### Data Fields
- Sent_id: unique id of the instances, an integer between 1 and 1000;
- Sent: a Hungarian sentence;
- label: '0' for wrong, '1' for good sentences.
### Data Splits
HuCOLA has 3 splits: *train*, *validation* and *test*.
| Dataset split | Number of sentences in the split | Proportion of the split
|---------------|----------------------------------| ---------|
| train | 7276 | 80%|
| validation | 900 |10%|
| test | 900 |10%|
The test data is distributed without the labels. To evaluate your model, please [contact us](mailto:[email protected]), or check [HuLU's website](hulu.nlp.nytud.hu) for an automatic evaluation (this feature is under construction at the moment). The evaluation metric is Matthew's correlation coefficient.
## Dataset Creation
### Source Data
#### Initial Data Collection and Normalization
The data was collected by two human annotators from 3 main linguistic books on Hungarian language:
- Kiefer Ferenc (ed.) (1992), Strukturális magyar nyelvtan 1. Mondattan. Budapest, Akadémiai Kiadó.
- Alberti, Gábor and Laczkó, Tibor (eds) (2018), Syntax of Hungarian Nouns and Noun Phrases. I., II. Comprehensive grammar resources. Amsterdam University Press, Amsterdam.
- Katalin É. Kiss and Veronika Hegedűs (eds) (2021), Postpositions and Postpositional Phrases. Amsterdam: Amsterdam University Press.
The process of collecting sentences partly followed the one described in Warstadt et. al (2018). The guideline of our process is available in the repository of [HuCOLA](https://github.com/nytud/HuCOLA).
### Annotations
#### Annotation process
Each instance was annotated by 4 human annotators for its acceptability (see the annotation guidelines in the repository of [HuCOLA](https://github.com/nytud/HuCOLA)).
#### Who are the annotators?
The annotators were native Hungarian speakers (of various ages, from 20 to 67) without any linguistic backround.
## Additional Information
### Licensing Information
HuCOLA is released under the CC-BY-SA 4.0 licence.
### Citation Information
If you use this resource or any part of its documentation, please refer to:
Ligeti-Nagy, N., Ferenczi, G., Héja, E., Jelencsik-Mátyus, K., Laki, L. J., Vadász, N., Yang, Z. Gy. and Váradi, T. (2022) HuLU: magyar nyelvű benchmark adatbázis
kiépítése a neurális nyelvmodellek kiértékelése céljából [HuLU: Hungarian benchmark dataset to evaluate neural language models]. XVIII. Magyar Számítógépes Nyelvészeti Konferencia. (in press)
```
@inproceedings{ligetinagy2022hulu,
title={HuLU: magyar nyelvű benchmark adatbázis kiépítése a neurális nyelvmodellek kiértékelése céljából},
author={Ligeti-Nagy, N. and Ferenczi, G. and Héja, E. and Jelencsik-Mátyus, K. and Laki, L. J. and Vadász, N. and Yang, Z. Gy. and Váradi, T.},
booktitle={XVIII. Magyar Számítógépes Nyelvészeti Konferencia},
year={2022}
}
```
### Contributions
Thanks to [lnnoemi](https://github.com/lnnoemi) for adding this dataset. | [
-0.34397244453430176,
-0.9540302157402039,
0.056908100843429565,
0.4103364050388336,
-0.10016946494579315,
-0.3527897894382477,
-0.6072083115577698,
-0.35047417879104614,
0.23960402607917786,
0.37131407856941223,
-0.4005078971385956,
-0.8463134765625,
-0.5834257006645203,
0.2848633825778961,
-0.03561791777610779,
1.251287579536438,
-0.16034860908985138,
-0.04953198507428169,
-0.32029178738594055,
-0.31252947449684143,
-0.1462256759405136,
-0.5871191024780273,
-0.2604794204235077,
-0.34806007146835327,
0.7174307107925415,
0.3155379593372345,
0.39041221141815186,
0.6099903583526611,
0.49623987078666687,
0.33968785405158997,
-0.16892872750759125,
-0.026696570217609406,
-0.2758904993534088,
0.09516829252243042,
0.09488720446825027,
-0.23654361069202423,
-0.6308852434158325,
0.1052255630493164,
0.47794297337532043,
0.8399689793586731,
-0.0632774755358696,
0.46053051948547363,
0.3241695761680603,
0.6715332269668579,
-0.7469850778579712,
0.5595567226409912,
-0.3739953935146332,
-0.020520053803920746,
-0.22765351831912994,
-0.11851092427968979,
-0.4349727928638458,
-0.5066195130348206,
0.061039794236421585,
-0.632845401763916,
-0.01122067030519247,
-0.00952157098799944,
1.211488127708435,
0.06797164678573608,
-0.05881943553686142,
-0.15150080621242523,
-0.5548598170280457,
0.5790813565254211,
-0.9679871201515198,
0.0822024792432785,
0.7309544682502747,
0.08869683742523193,
-0.06429672986268997,
-0.5793341398239136,
-0.43697625398635864,
-0.17478439211845398,
-0.3033047914505005,
0.17796067893505096,
-0.51287442445755,
-0.1651242971420288,
0.47302135825157166,
0.31702226400375366,
-0.6778671741485596,
-0.034337762743234634,
-0.4784957468509674,
-0.21198226511478424,
0.6582144498825073,
0.14353147149085999,
0.008670511655509472,
-0.4275570511817932,
-0.17643265426158905,
-0.13652700185775757,
-0.5267680287361145,
0.284309446811676,
0.7026187777519226,
0.4913604259490967,
-0.21571972966194153,
0.7829583287239075,
-0.3065188527107239,
0.8037784695625305,
-0.09363275021314621,
0.09762771427631378,
0.740778923034668,
-0.6064156293869019,
-0.4290845990180969,
-0.14025123417377472,
1.1187479496002197,
0.1450110524892807,
0.3182888329029083,
-0.042215894907712936,
0.022416800260543823,
0.14084689319133759,
0.015152146108448505,
-0.6898983120918274,
-0.26043620705604553,
0.1515597254037857,
-0.4052199721336365,
-0.2528949975967407,
0.23413582146167755,
-0.8869175910949707,
-0.03502616658806801,
-0.15187621116638184,
0.3345595598220825,
-0.36875924468040466,
-0.2400377243757248,
0.19985751807689667,
0.08631354570388794,
0.2290341854095459,
-0.0739312544465065,
-0.7997443079948425,
0.4831951856613159,
0.36108335852622986,
0.5635070204734802,
-0.040858302265405655,
-0.5374870300292969,
-0.3523346781730652,
-0.27776217460632324,
-0.017025509849190712,
0.731511652469635,
-0.21728600561618805,
-0.13523276150226593,
0.11240752786397934,
0.2512495815753937,
-0.39175155758857727,
-0.4837084412574768,
0.7655773162841797,
-0.05297763645648956,
0.3980795443058014,
-0.3527410626411438,
-0.6051508784294128,
-0.15243355929851532,
0.34656697511672974,
-0.7103514075279236,
1.2583224773406982,
0.30372586846351624,
-1.038604497909546,
0.2610965371131897,
-0.578793466091156,
-0.4835263788700104,
0.023544806987047195,
-0.029762327671051025,
-0.4722568094730377,
-0.1169261634349823,
0.12821470201015472,
0.5422916412353516,
-0.07784648984670639,
0.3793008029460907,
-0.2588183283805847,
-0.2921580374240875,
0.22345875203609467,
-0.2930828928947449,
1.239405632019043,
0.18876336514949799,
-0.49746811389923096,
0.08285980671644211,
-0.8288876414299011,
-0.04483019933104515,
0.13917148113250732,
-0.5384008884429932,
-0.36145153641700745,
-0.10803554207086563,
0.30911538004875183,
0.2737957835197449,
0.3164447844028473,
-0.5110669136047363,
0.2105758786201477,
-0.45810893177986145,
0.46490931510925293,
0.4174478352069855,
-0.20867010951042175,
0.3382135033607483,
-0.22369933128356934,
0.4866546392440796,
0.21793606877326965,
0.3493649959564209,
-0.03625987842679024,
-0.8400929570198059,
-0.9953941702842712,
0.012791376560926437,
0.5451169013977051,
0.8379480242729187,
-0.42884722352027893,
1.1897873878479004,
-0.39417392015457153,
-0.6396176218986511,
-0.7296456098556519,
0.16059906780719757,
0.39516502618789673,
0.48973989486694336,
0.4147911071777344,
0.026695309206843376,
-0.6422551870346069,
-1.063267469406128,
0.32845339179039,
-0.15394294261932373,
0.10277175158262253,
0.4059158265590668,
0.7427471280097961,
-0.21823038160800934,
0.8559216260910034,
-0.3854224979877472,
-0.21359744668006897,
-0.3273009657859802,
0.15684661269187927,
0.43395987153053284,
0.45120522379875183,
0.5099315643310547,
-0.594125509262085,
-0.4162391424179077,
0.06458026170730591,
-0.8952327370643616,
-0.15668803453445435,
0.312441349029541,
-0.19030222296714783,
0.2724410891532898,
0.16181695461273193,
-0.5245466232299805,
0.6514794826507568,
0.6603281497955322,
-0.7099371552467346,
0.7427396178245544,
-0.3145839273929596,
0.08906211704015732,
-1.14814293384552,
0.26830437779426575,
0.10496623069047928,
0.10666609555482864,
-0.5338420867919922,
-0.1453852504491806,
-0.1254037469625473,
0.10091271996498108,
-0.3589901328086853,
0.5731525421142578,
-0.3381815552711487,
0.03305681049823761,
0.010280502028763294,
0.1447850465774536,
0.2414943277835846,
0.7631685733795166,
-0.07670062780380249,
0.5384032726287842,
0.6615664958953857,
-0.448674738407135,
0.34564509987831116,
0.30972591042518616,
-0.7329511046409607,
0.3921487331390381,
-0.7875692248344421,
-0.17379292845726013,
-0.0013525504618883133,
0.06253039836883545,
-0.8140433430671692,
0.1167689636349678,
0.5737154483795166,
-0.5153111815452576,
0.038437068462371826,
0.00006874113023513928,
-0.5777437090873718,
-0.43115004897117615,
-0.19410814344882965,
0.1778382509946823,
0.3216747045516968,
-0.07551775127649307,
0.2586594223976135,
0.34272775053977966,
-0.07342735677957535,
-0.6514775156974792,
-0.8514575958251953,
-0.020981742069125175,
-0.3491448163986206,
-0.6604738235473633,
0.2938491106033325,
-0.3228515386581421,
-0.35883191227912903,
0.1383398324251175,
0.28560811281204224,
-0.03394951671361923,
0.022134188562631607,
0.19864267110824585,
0.24597136676311493,
-0.3821399509906769,
-0.20062628388404846,
-0.13068467378616333,
-0.03597478196024895,
-0.15687672793865204,
-0.14562883973121643,
0.5850751996040344,
-0.28057706356048584,
0.18716135621070862,
-0.5288509130477905,
0.37298330664634705,
0.3427095115184784,
-0.22766099870204926,
0.6968467831611633,
0.8373236656188965,
-0.49525609612464905,
0.1941831111907959,
-0.4655923545360565,
-0.050391972064971924,
-0.3995808959007263,
0.1641157567501068,
-0.250259131193161,
-0.7234171032905579,
0.8410549163818359,
0.6081138849258423,
0.07682159543037415,
0.5313445329666138,
0.6921592950820923,
-0.15034596621990204,
0.6214795112609863,
0.3946300745010376,
-0.17496444284915924,
0.46910712122917175,
-0.6941837072372437,
0.10830903053283691,
-0.9124362468719482,
-0.3524223864078522,
-0.9270403385162354,
-0.26387208700180054,
-0.9251670837402344,
-0.3402811586856842,
-0.13857056200504303,
0.1897410750389099,
-0.10274872928857803,
0.8954944610595703,
-0.3618229627609253,
0.06424438953399658,
0.6620284914970398,
0.20260803401470184,
0.15331247448921204,
0.10451444983482361,
-0.2115263044834137,
-0.18069663643836975,
-0.817790687084198,
-0.6332569122314453,
0.8880273103713989,
0.2352885901927948,
0.5415647625923157,
-0.15947994589805603,
0.6736626625061035,
0.2692455053329468,
0.15653452277183533,
-0.7697941064834595,
0.612598180770874,
-0.24005663394927979,
-0.6293427348136902,
-0.39322593808174133,
-0.5052844285964966,
-1.2644290924072266,
0.13675038516521454,
-0.34707868099212646,
-0.8671309351921082,
0.589052140712738,
0.07745148986577988,
-0.3716500401496887,
0.09664256870746613,
-0.7699825167655945,
1.1584265232086182,
-0.05998680740594864,
-0.43250662088394165,
0.15814842283725739,
-0.4900665879249573,
0.007180632557719946,
0.31109777092933655,
0.24245628714561462,
-0.3008233904838562,
0.23779068887233734,
1.0156641006469727,
-0.3013227581977844,
0.7823257446289062,
-0.1490013152360916,
0.010173248127102852,
0.39669081568717957,
-0.21325041353702545,
0.32104745507240295,
-0.11639053374528885,
-0.31063589453697205,
0.4467642605304718,
-0.04202700033783913,
-0.478096067905426,
-0.5502761006355286,
0.6350576281547546,
-0.7063892483711243,
-0.2309347242116928,
-0.41699275374412537,
-0.506608784198761,
0.10124137252569199,
0.2133253514766693,
0.5275000333786011,
0.47594451904296875,
-0.2522297501564026,
0.35357823967933655,
0.35081011056900024,
-0.3305567502975464,
0.37885236740112305,
0.1775239259004593,
-0.050894249230623245,
-0.4817984998226166,
0.7264093160629272,
0.38572338223457336,
-0.03579981252551079,
0.32569456100463867,
0.3986883759498596,
-0.12108997255563736,
-0.5387353897094727,
-0.23473449051380157,
0.22345700860023499,
-0.5196359157562256,
-0.10026951879262924,
-0.6580612659454346,
-0.296307772397995,
-0.7264699339866638,
0.09364178031682968,
-0.13295641541481018,
-0.45430800318717957,
-0.27192750573158264,
-0.3634655773639679,
0.29902738332748413,
0.41765064001083374,
-0.08217822015285492,
0.26520174741744995,
-0.37860190868377686,
-0.10732313245534897,
0.15723009407520294,
0.10630077123641968,
-0.13357536494731903,
-0.6503041982650757,
-0.5697250366210938,
0.16816088557243347,
-0.2402392029762268,
-0.7551851868629456,
0.4573507010936737,
0.14067521691322327,
0.7121967673301697,
0.4532393217086792,
-0.00885719247162342,
0.4920278787612915,
-0.37176966667175293,
0.7843825817108154,
0.0523248091340065,
-0.6858367323875427,
0.7378300428390503,
-0.4931388199329376,
0.33848604559898376,
0.8787825703620911,
0.35821589827537537,
-0.44119489192962646,
-0.43598276376724243,
-0.8549026846885681,
-1.0228649377822876,
0.4856933355331421,
0.523213267326355,
0.22132988274097443,
-0.17079131305217743,
0.12555627524852753,
0.12078339606523514,
0.21000874042510986,
-1.016385793685913,
-0.5723603367805481,
-0.1519850343465805,
-0.16751554608345032,
-0.13981893658638,
-0.25740352272987366,
-0.08558866381645203,
-0.7623760104179382,
0.618154764175415,
0.15981124341487885,
0.5306938290596008,
0.06211244687438011,
-0.12293172627687454,
0.14458945393562317,
0.4144059419631958,
0.6379796266555786,
0.7172686457633972,
-0.5097970962524414,
0.07319249957799911,
-0.13290947675704956,
-0.5573678612709045,
-0.062140654772520065,
0.32124093174934387,
-0.5482039451599121,
0.16815243661403656,
0.5895527005195618,
1.2715989351272583,
0.4019402265548706,
-0.3765297532081604,
0.46184802055358887,
-0.04642525315284729,
-0.37228792905807495,
-0.3962904214859009,
0.046418119221925735,
-0.003313269931823015,
0.060670021921396255,
0.1851421445608139,
-0.03829190507531166,
0.11041633039712906,
-0.437900185585022,
0.32147058844566345,
-0.057212695479393005,
-0.27774327993392944,
-0.5581244826316833,
0.4606916904449463,
0.0547013096511364,
-0.46214184165000916,
0.6326676607131958,
-0.14320309460163116,
-0.2551354765892029,
0.5858467817306519,
0.4618678689002991,
0.8931611776351929,
-0.23602478206157684,
0.44762176275253296,
0.8681033253669739,
0.36795467138290405,
-0.03970653563737869,
0.2554967403411865,
-0.16344797611236572,
-1.0152109861373901,
-0.20521456003189087,
-0.7592370510101318,
0.07706544548273087,
0.25307899713516235,
-1.1084519624710083,
0.32918626070022583,
-0.22239409387111664,
-0.4305252432823181,
0.20432248711585999,
0.2528707981109619,
-0.7081442475318909,
0.06981875002384186,
0.1401757150888443,
0.9531719088554382,
-1.0828007459640503,
1.0361676216125488,
0.6155945658683777,
-0.6580480933189392,
-0.5283893346786499,
-0.25758233666419983,
-0.35106584429740906,
-0.5442578792572021,
0.4632420837879181,
0.2264457494020462,
0.3092699646949768,
-0.08621209859848022,
-0.3982298970222473,
-0.5425790548324585,
0.9292997717857361,
0.3361915647983551,
-0.49037042260169983,
-0.1179586872458458,
0.11024276912212372,
0.7579609155654907,
-0.46331787109375,
0.30358442664146423,
0.7587368488311768,
0.8038895130157471,
-0.06812462210655212,
-0.7115367650985718,
-0.1494579315185547,
-0.6812423467636108,
-0.28864505887031555,
-0.1739477813243866,
-0.27809056639671326,
0.7780300378799438,
-0.1536640226840973,
-0.013090039603412151,
-0.049224093556404114,
0.6109108924865723,
0.41972512006759644,
0.2604442834854126,
0.4326044023036957,
0.733799397945404,
0.6210038065910339,
-0.2902073562145233,
0.9531123042106628,
-0.17729529738426208,
0.4413655996322632,
1.1311074495315552,
-0.04444975033402443,
1.0073798894882202,
0.5097295641899109,
-0.4063800871372223,
0.6641112565994263,
0.7975813746452332,
-0.23737190663814545,
0.4346218705177307,
0.2182794213294983,
0.03379642590880394,
-0.07254800200462341,
-0.09461399912834167,
-0.24033597111701965,
0.5646024346351624,
0.37413617968559265,
-0.3388313055038452,
-0.18541696667671204,
0.12461826950311661,
0.4886975884437561,
0.05772829428315163,
0.032631613314151764,
0.5592793226242065,
0.04343656450510025,
-0.6652485728263855,
0.822892963886261,
-0.12495602667331696,
0.7874749302864075,
-0.5576650500297546,
0.20071181654930115,
-0.4512529969215393,
-0.008296902291476727,
-0.29073724150657654,
-0.7164050340652466,
0.37262463569641113,
0.07375217974185944,
-0.42807668447494507,
-0.17922355234622955,
0.32278457283973694,
-0.6176795363426208,
-0.8951584100723267,
0.6115100979804993,
0.40890753269195557,
0.24860602617263794,
0.19494636356830597,
-1.032655954360962,
0.05744487792253494,
-0.0518430694937706,
-0.5534795522689819,
0.2152191549539566,
0.3164322078227997,
0.06576705724000931,
0.33940401673316956,
0.37462684512138367,
0.42340877652168274,
0.20430514216423035,
0.30824166536331177,
0.6291713118553162,
-0.4597792625427246,
-0.38385963439941406,
-0.7678759098052979,
0.6536643505096436,
-0.1301567405462265,
-0.5809241533279419,
0.9780398607254028,
0.7275270223617554,
0.9884406924247742,
0.04745440557599068,
0.7369162440299988,
-0.4668189287185669,
0.14223314821720123,
-0.27890610694885254,
0.6703199148178101,
-0.5252931118011475,
-0.06391838192939758,
-0.43928858637809753,
-1.0399627685546875,
-0.3825640380382538,
0.8958637118339539,
-0.4605388641357422,
-0.014398949220776558,
0.7280780673027039,
0.8610780835151672,
0.07995089888572693,
-0.2333574891090393,
0.37254709005355835,
0.42849308252334595,
-0.04954444617033005,
0.6214151382446289,
0.4198814034461975,
-0.8463893532752991,
0.5444085001945496,
-0.625822126865387,
-0.23742718994617462,
-0.1130065843462944,
-0.8014532923698425,
-0.8696238398551941,
-1.0024292469024658,
-0.4543364942073822,
-0.5137559175491333,
-0.0732225701212883,
0.7859506011009216,
0.669421374797821,
-1.1059870719909668,
-0.6293665766716003,
0.17880100011825562,
0.009434067644178867,
-0.4845793843269348,
-0.2343071550130844,
0.6673492193222046,
-0.06571095436811447,
-0.7766814231872559,
0.1539110392332077,
0.1337418258190155,
-0.18452991545200348,
-0.2843642234802246,
-0.16461001336574554,
-0.6413719058036804,
-0.14311876893043518,
0.6664667725563049,
0.2606779932975769,
-0.5682668089866638,
-0.03345290943980217,
0.285081684589386,
-0.2907958924770355,
0.32564643025398254,
0.6552504897117615,
-0.47043532133102417,
0.2957414388656616,
0.846126139163971,
0.21834449470043182,
0.4491676390171051,
-0.14599668979644775,
0.27121680974960327,
-0.5420668125152588,
0.509421706199646,
0.10281383991241455,
0.6398719549179077,
0.4434635043144226,
-0.3715079426765442,
0.48599371314048767,
0.3945944607257843,
-0.5180823802947998,
-0.740329384803772,
-0.21012666821479797,
-1.1627110242843628,
0.0011074173962697387,
1.4268512725830078,
-0.4125097990036011,
-0.5664811134338379,
-0.2067015916109085,
0.0904667004942894,
0.3547472059726715,
-0.32815635204315186,
0.7064244747161865,
0.9430615901947021,
0.06035556644201279,
-0.018906135112047195,
-0.7042805552482605,
0.3215984106063843,
0.1179070919752121,
-1.093719244003296,
0.2445116937160492,
0.4244227707386017,
0.26535773277282715,
0.19476191699504852,
0.7097745537757874,
-0.19467419385910034,
-0.007710212375968695,
-0.1173996850848198,
0.28103089332580566,
-0.03150462359189987,
-0.40148863196372986,
-0.2609075605869293,
-0.11462730914354324,
-0.25684285163879395,
-0.17635688185691833
]
|
alvp/autonlp-data-alberti-stanza-names | alvp | 2021-11-19T13:26:10Z | 260 | 0 | [
"task_categories:text-classification",
"region:us"
]
| [
"text-classification"
]
| 2022-03-02T23:29:22Z | ---
task_categories:
- text-classification
---
# AutoNLP Dataset for project: alberti-stanza-names
## Table of content
- [Dataset Description](#dataset-description)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
## Dataset Descritpion
This dataset has been automatically processed by AutoNLP for project alberti-stanza-names.
### Languages
The BCP-47 code for the dataset's language is unk.
## Dataset Structure
### Data Instances
A sample from this dataset looks as follows:
```json
[
{
"text": "\u00bfDe d\u00f3nde tantos dolores?\nAmores.\n\u00bfY cu\u00e1nto cuesta esa herida?\nLa vida\n\u00bfTe mueres si no te quiero?\nMe muero.\nY es as\u00ed, pues nada espero,\nque esta ausencia es mi condena:\ntodo cuanto me enajena\namor es, la vida muero.",
"target": 24
},
{
"text": "Retra\u00edda est\u00e1 la infanta,\nbien as\u00ed como sol\u00eda,\nviviendo muy descontenta\nde la vida que ten\u00eda,\nviendo que ya se pasaba\ntoda la flor de su vida,\ny que el rey no la casaba,\nni tal cuidado ten\u00eda.\nEntre s\u00ed estaba pensando\na qui\u00e9n se descubrir\u00eda;\nacord\u00f3 llamar al rey\ncomo otras veces sol\u00eda,\npor decirle su secreto\ny la intenci\u00f3n que ten\u00eda.\nVino el rey, siendo llamado,\nque no tard\u00f3 su venida:\nv\u00eddola estar apartada,\nsola est\u00e1 sin compa\u00f1\u00eda:\nsu lindo gesto mostraba\nser m\u00e1s triste que sol\u00eda.\nConociera luego el rey \nel enojo que ten\u00eda.\n\u00bfQu\u00e9 es aquesto, la infanta?\n\u00bfQu\u00e9 es aquesto, hija m\u00eda?\nContadme vuestros enojos,\nno tom\u00e9is malencon\u00eda,\nque sabiendo la verdad\ntodo se remediar\u00eda.\nMenester ser\u00e1, buen rey,\nremediar la vida m\u00eda,\nque a vos qued\u00e9 encomendada\nde la madre que ten\u00eda.\nD\u00e9desme, buen rey, marido,\nque mi edad ya lo ped\u00eda:\ncon verg\u00fcenza os lo demando,\nno con gana que ten\u00eda,\nque aquestos cuidados tales,\na vos, rey, pertenec\u00edan.\nEscuchada su demanda,\nel buen rey le respond\u00eda:\nEsa culpa, la infanta,\nvuestra era, que no m\u00eda,\nque ya fu\u00e9rades casada\ncon el pr\u00edncipe de Hungr\u00eda.\nNo quesistes escuchar\nla embajada que os ven\u00eda:\npues ac\u00e1 en las nuestras cortes,\nhija, mal recaudo hab\u00eda, \nporque en todos los mis reinos\nvuestro par igual no hab\u00eda,\nsi no era el conde Alarcos,\nhijos y mujer ten\u00eda.\nConvidaldo vos, el rey,\nal conde Alarcos un d\u00eda,\ny despu\u00e9s que hay\u00e1is comido\ndecidle de parte m\u00eda,\ndecidle que se le acuerde\nde la fe que del ten\u00eda,\nla cual \u00e9l me prometi\u00f3,\nque yo no se la ped\u00eda,\nde ser siempre mi marido,\nyo que su mujer ser\u00eda.\nYo fui de ello muy contenta\ny que no me arrepent\u00eda.\nSi cas\u00f3 con la condesa,\nque mirase lo que hac\u00eda,\nque por \u00e9l no me cas\u00e9\ncon el pr\u00edncipe de Hungr\u00eda;\nsi cas\u00f3 con la Condesa,\ndel es culpa, que no m\u00eda.\nPerdiera el rey en o\u00edrlo\nel sentido que ten\u00eda,\nmas despu\u00e9s en si tornado\ncon enojo respond\u00eda:\n\u00a1No son \u00e9stos los consejos\nque vuestra madre os dec\u00eda! \n\u00a1Muy mal mirastes, infanta,\ndo estaba la honra m\u00eda!\nSi verdad es todo eso,\nvuestra honra ya es perdida:\nno pod\u00e9is vos ser casada,\nsiendo la condesa viva.\nSi se hace el casamiento\npor raz\u00f3n o por justicia,\nen el decir de las gentes\npor mala ser\u00e9is tenida.\nDadme vos, hija, consejo,\nque el m\u00edo no bastar\u00eda,\nque ya es muerta vuestra madre\na quien consejo ped\u00eda.\nYo vos lo dar\u00e9, buen rey,\nde este poco que ten\u00eda:\nmate el conde a la condesa,\nque nadie no lo sabr\u00eda,\ny eche fama que ella es muerta\nde un cierto mal que ten\u00eda,\ny tratarse ha el casamiento\ncomo cosa no sabida.\nDe esta manera, buen rey,\nmi honra se guardar\u00eda.\nDe all\u00ed se sal\u00eda el rey,\nno con placer que ten\u00eda;\nlleno va de pensamientos\ncon la nueva que sab\u00eda; \nvido estar al conde Alarcos\nentre muchos, que dec\u00eda:\n\u00bf Qu\u00e9 aprovecha, caballeros,\namar y servir amiga,\nque son servicios perdidos\ndonde firmeza no hab\u00eda?\nNo pueden por m\u00ed decir\naquesto que yo dec\u00eda,\nque en el tiempo que serv\u00ed\nuna que tanto quer\u00eda,\nsi muy bien la quise entonces,\nagora m\u00e1s la quer\u00eda;\nmas por m\u00ed pueden decir:\nquien bien ama, tarde olvida.\nEstas palabras diciendo,\nvido al buen rey que ven\u00eda,\ny para hablar con el rey,\nde entre todos se sal\u00eda.\nDijo el buen rey al conde,\nhablando con cortes\u00eda:\nConvidaros quiero, conde,\npor ma\u00f1ana en aquel d\u00eda,\nque quer\u00e1is comer conmigo\npor tenerme compa\u00f1\u00eda.\nQue se haga de buen grado\nlo que su alteza dec\u00eda;\nbeso sus reales manos\npor la buena cortes\u00eda; \ndetenerme he aqu\u00ed ma\u00f1ana,\naunque estaba de partida,\nque la condesa me espera\nseg\u00fan la carta me env\u00eda.\nOtro d\u00eda de ma\u00f1ana\nel rey de misa sal\u00eda;\nluego se asent\u00f3 a comer,\nno por gana que ten\u00eda,\nsino por hablar al Conde\nlo que hablarle quer\u00eda.\nAll\u00ed fueron bien servidos\ncomo a rey pertenec\u00eda.\nDespu\u00e9s que hubieron comido,\ntoda la gente salida,\nqued\u00f3se el rey con el conde\nen la tabla do com\u00eda.\nEmpez\u00f3 de hablar el rey\nla embajada que tra\u00eda:\nUnas nuevas traigo, conde,\nque de ellas no me plac\u00eda,\npor las cuales yo me quejo\nde vuestra descortes\u00eda.\nPrometistes a la infanta\nlo que ella no vos ped\u00eda,\nde siempre ser su marido,\ny a ella que le plac\u00eda. \nSi otras cosas m\u00e1s pasastes\nno entro en esa porf\u00eda.\nOtra cosa os digo, conde,\nde que m\u00e1s os pesar\u00eda:\nque mat\u00e9is a la condesa\nque cumple a la honra m\u00eda;\nech\u00e9is fama que ella es muerta\nde cierto mal que ten\u00eda,\ny tratarse ha el casamiento\ncomo cosa no sabida,\nporque no sea deshonrada\nhija que tanto quer\u00eda.\nO\u00eddas estas razones\nel buen conde respond\u00eda:\nNo puedo negar, el rey,\nlo que la infanta dec\u00eda,\nsino que otorgo ser verdad\ntodo cuanto me ped\u00eda.\nPor miedo de vos, el rey,\nno cas\u00e9 con quien deb\u00eda,\nno pens\u00e9 que vuestra alteza\nen ello consentir\u00eda:\nde casar con la infanta\nyo, se\u00f1or, bien casar\u00eda;\nmas matar a la condesa,\nse\u00f1or rey, no lo har\u00eda,\nporque no debe morir\nla que mal no merec\u00eda. \nDe morir tiene, el buen conde,\npor salvar la honra m\u00eda,\npues no miraste primero\nlo que mirar se deb\u00eda.\nSi no muere la condesa\na vos costar\u00e1 la vida.\nPor la honra de los reyes\nmuchos sin culpa mor\u00edan,\nporque muera la condesa\nno es mucha maravilla.\nYo la matar\u00e9, buen rey,\nmas no ser\u00e1 culpa m\u00eda:\nvos os avendr\u00e9is con Dios\nen la fin de vuestra vida,\ny prometo a vuestra alteza,\na fe de caballer\u00eda,\nque me tengan por traidor\nsi lo dicho no cumpl\u00eda,\nde matar a la condesa,\naunque mal no merec\u00eda.\nBuen rey, si me dais licencia\nyo luego me partir\u00eda.\nVay\u00e1is con Dios, el buen conde,\nordenad vuestra partida.\nLlorando se parte el conde,\nllorando, sin alegr\u00eda;\nllorando por la condesa,\nque m\u00e1s que a s\u00ed la quer\u00eda\nLloraba tambi\u00e9n el conde\npor tres hijos que ten\u00eda,\nel uno era de pecho,\nque la condesa lo cr\u00eda;\nlos otros eran peque\u00f1os,\npoco sentido ten\u00edan.\nAntes que llegase el conde\nestas razones dec\u00eda:\n\u00a1Qui\u00e9n podr\u00e1 mirar, condesa,\nvuestra cara de alegr\u00eda,\nque saldr\u00e9is a recebirme\na la fin de vuestra vida!\nYo soy el triste culpado,\nesta culpa toda es m\u00eda.\nEn diciendo estas palabras\nla condesa ya sal\u00eda,\nque un paje le hab\u00eda dicho\nc\u00f3mo el conde ya ven\u00eda.\nVido la condesa al conde\nla tristeza que ten\u00eda,\nviole los ojos llorosos,\nque hinchados los tra\u00eda,\nde llorar por el camino,\nmirando el bien que perd\u00eda.\nDijo la condesa al conde:\n\u00a1Bien veng\u00e1is, bien de mi vida!\n\u00bfQu\u00e9 hab\u00e9is, el conde Alarcos?\n\u00bfPor qu\u00e9 llor\u00e1is, vida m\u00eda, \nque ven\u00eds tan demudado\nque cierto no os conoc\u00eda?\nNo parece vuestra cara\nni el gesto que ser sol\u00eda;\ndadme parte del enojo\ncomo dais de la alegr\u00eda.\n\u00a1Dec\u00eddmelo luego, conde,\nno mat\u00e9is la vida m\u00eda!\nYo vos lo dir\u00e9, condesa,\ncuando la hora ser\u00eda.\nSi no me lo dec\u00eds, conde,\ncierto yo reventar\u00eda.\nNo me fatigu\u00e9is, se\u00f1ora,\nque no es la hora venida.\nCenemos luego, condesa,\nde aqueso que en casa hab\u00eda.\nAparejado est\u00e1, conde,\ncomo otras veces sol\u00eda.\nSent\u00f3se el conde a la mesa,\nno cenaba ni pod\u00eda,\ncon sus hijos al costado,\nque muy mucho los quer\u00eda.\nEch\u00f3se sobre los brazos;\nhizo como que dorm\u00eda;\nde l\u00e1grimas de sus ojos\ntoda la mesa cubr\u00eda.\nMir\u00e1ndolo la condesa,\nque la causa no sab\u00eda,\nno le preguntaba nada,\nque no osaba ni pod\u00eda.\nLevant\u00f3se luego el conde,\ndijo que dormir quer\u00eda;\ndijo tambi\u00e9n la condesa\nque ella tambi\u00e9n dormir\u00eda;\nmas entre ellos no hab\u00eda sue\u00f1o,\nsi la verdad se dec\u00eda.\nVanse el conde y la condesa\na dormir donde sol\u00edan:\ndejan los ni\u00f1os de fuera\nque el conde no los quer\u00eda;\nllev\u00e1ronse el m\u00e1s chiquito,\nel que la condesa cr\u00eda;\ncerrara el conde la puerta,\nlo que hacer no sol\u00eda.\nEmpez\u00f3 de hablar el conde\ncon dolor y con mancilla:\n\u00a1Oh, desdichada condesa,\ngrande fu\u00e9 la tu desdicha!\nNo so desdichada, el conde,\npor dichosa me ten\u00eda;\ns\u00f3lo en ser vuestra mujer,\nesta fu\u00e9 gran dicha m\u00eda.\n\u00a1 Si bien lo sab\u00e9is, condesa,\nesa fu\u00e9 vuestra desdicha!\nSabed que en tiempo pasado\nYO am\u00e9 a quien bien serv\u00eda,\nla cual era la infanta,\npor desdicha vuestra y m\u00eda.\nPromet\u00ed casar con ella,\ny a ella que le plac\u00eda;\ndem\u00e1ndame por marido\npor la fe que me ten\u00eda.\nPu\u00e9delo muy bien hacer\nde raz\u00f3n y de justicia:\nd\u00edjomelo el rey, su padre,\nporque de ella lo sab\u00eda.\nOtra cosa manda el rey,\nque toca en el alma m\u00eda:\nmanda que mur\u00e1is, condesa,\npor la honra de su hija,\nque no puede tener honra\nsiendo vos, condesa, viva.\nDesque esto oy\u00f3 la condesa\ncay\u00f3 en tierra amortecida;\nmas despu\u00e9s en s\u00ed tornada\nestas palabras dec\u00eda:\n\u00a1Pagos son de mis servicios,\nconde, con que yo os serv\u00eda!\nSi no me mat\u00e1is, el conde,\nyo bien os aconsejar\u00eda,\nenvi\u00e9desme a mis tierras\nque mi padre me tern\u00eda;\nyo criar\u00e9 vuestros hijos\nmejor que la que vern\u00eda, \nyo os mantendr\u00e9 lealtad\ncomo siempre os manten\u00eda.\nDe morir hab\u00e9is, condesa,\nenantes que venga el d\u00eda.\n\u00a1Bien parece, el conde Alarcos,\nyo ser sola en esta vida;\nporque tengo el padre viejo,\nmi madre ya es fallecida,\ny mataron a mi hermano,\nel buen conde don Garc\u00eda,\nque el rey lo mand\u00f3 matar\npor miedo que del ten\u00eda!\nNo me pesa de mi muerte,\nporque yo morir ten\u00eda,\nmas p\u00e9same de mis hijos,\nque pierden mi compa\u00f1\u00eda;\nhac\u00e9melos venir, conde,\ny ver\u00e1n mi despedida.\nNo los ver\u00e9is m\u00e1s, condesa,\nen d\u00edas de vuestra vida;\nabrazad este chiquito,\nque aqueste es el que os perd\u00eda.\nP\u00e9same de vos, condesa,\ncuanto pesar me pod\u00eda.\nNo os puedo valer, se\u00f1ora,\nque m\u00e1s me va que la vida;\nencomendaos a Dios\nque esto hacerse ten\u00eda. \nDej\u00e9isme decir, buen conde,\nuna oraci\u00f3n que sab\u00eda.\nDecidla presto, condesa,\nenantes que venga el d\u00eda.\nPresto la habr\u00e9 dicho, conde,\nno estar\u00e9 un Ave Mar\u00eda.\nHinc\u00f3 rodillas en tierra,\naquesta oraci\u00f3n dec\u00eda:\nEn las tus manos, Se\u00f1or,\nencomiendo el alma m\u00eda;\nno me juzgues mis pecados\nseg\u00fan que yo merec\u00eda,\nm\u00e1s seg\u00fan tu gran piedad\ny la tu gracia infinita.\nAcabada es ya, buen conde,\nla oraci\u00f3n que yo sab\u00eda;\nencomi\u00e9ndoos esos hijos\nque entre vos y m\u00ed hab\u00eda,\ny rogad a Dios por m\u00ed,\nmientras tuvi\u00e9redes vida,\nque a ello sois obligado\npues que sin culpa mor\u00eda.\nD\u00e9desme ac\u00e1 ese hijo,\nmamar\u00e1 por despedida.\nNo lo despert\u00e9is, condesa,\ndejadlo estar, que dorm\u00eda,\nsino que os pido perd\u00f3n\nporque ya se viene el d\u00eda. \nA vos yo perdono, conde,\npor el amor que os ten\u00eda;\nm\u00e1s yo no perdono al rey,\nni a la infanta su hija,\nsino que queden citados\ndelante la alta justicia,\nque all\u00e1 vayan a juicio\ndentro de los treinta d\u00edas.\nEstas palabras diciendo\nel conde se aperceb\u00eda:\nech\u00f3le por la garganta\nuna toca que ten\u00eda.\n\u00a1Socorre, mis escuderos,\nque la condesa se fina!\nHallan la condesa muerta,\nlos que a socorrer ven\u00edan.\nAs\u00ed muri\u00f3 la condesa,\nsin raz\u00f3n y sin justicia;\nmas tambi\u00e9n todos murieron\ndentro de los treinta d\u00edas.\nLos doce d\u00edas pasados\nla infanta tambi\u00e9n mor\u00eda;\nel rey a los veinte y cinco,\nel conde al treinteno d\u00eda:\nall\u00e1 fueron a dar cuenta\na la justicia divina.\nAc\u00e1 nos d\u00e9 Dios su gracia,\ny all\u00e1 la gloria cumplida. \n",
"target": 28
}
]
```
### Dataset Fields
The dataset has the following fields (also called "features"):
```json
{
"target": "ClassLabel(num_classes=46, names=['cantar', 'chamberga', 'copla_arte_mayor', 'copla_arte_menor', 'copla_castellana', 'copla_mixta', 'copla_real', 'couplet', 'cuaderna_v\u00eda', 'cuarteta', 'cuarteto', 'cuarteto_lira', 'd\u00e9cima_antigua', 'endecha_real', 'espinela', 'estrofa_francisco_de_la_torre', 'estrofa_manrique\u00f1a', 'estrofa_s\u00e1fica', 'haiku', 'lira', 'novena', 'octava', 'octava_real', 'octavilla', 'ovillejo', 'quinteto', 'quintilla', 'redondilla', 'romance', 'romance_arte_mayor', 'seguidilla', 'seguidilla_compuesta', 'seguidilla_gitana', 'septeto', 'septilla', 'serventesio', 'sexta_rima', 'sexteto', 'sexteto_lira', 'sextilla', 'silva_arromanzada', 'sole\u00e1', 'tercetillo', 'terceto', 'terceto_monorrimo', 'unknown'], names_file=None, id=None)",
"text": "Value(dtype='string', id=None)"
}
```
### Dataset Splits
This dataset is split into a train and validation split. The split sizes are as follow:
| Split name | Num samples |
| ------------ | ------------------- |
| train | 4004 |
| valid | 1001 |
| [
-0.371742308139801,
-0.2760646939277649,
0.2525794804096222,
0.5879234671592712,
-0.5020529627799988,
0.1036999449133873,
0.20809076726436615,
-0.475698858499527,
0.8653594255447388,
0.7616729736328125,
-0.7689541578292847,
-0.7539095878601074,
-0.36729082465171814,
0.48020094633102417,
-0.27772149443626404,
0.8874396681785583,
-0.15931391716003418,
-0.07223619520664215,
0.04381747543811798,
0.3791425824165344,
-0.43987151980400085,
0.07685095071792603,
-0.4749426543712616,
0.37504562735557556,
0.6820387840270996,
0.444534033536911,
0.4081806540489197,
0.6644546389579773,
0.5316680669784546,
0.5356675386428833,
-0.06568977236747742,
0.18356771767139435,
-0.3601391613483429,
0.5915272235870361,
-0.6249727606773376,
-0.28391045331954956,
-0.33168986439704895,
-0.36570116877555847,
0.8078378438949585,
0.4305768311023712,
-0.374824583530426,
0.455564945936203,
0.17719703912734985,
1.003078579902649,
-0.6297643780708313,
0.547167956829071,
-0.347770631313324,
0.34646254777908325,
0.02044709585607052,
-0.20727096498012543,
0.04236795753240585,
-0.8309859037399292,
-0.34719231724739075,
-0.7776010632514954,
0.2478611022233963,
0.2344830483198166,
0.9622396230697632,
0.10316673666238785,
-0.33075350522994995,
-0.6720713376998901,
-0.8300281763076782,
0.9762148857116699,
-0.6589248776435852,
0.30135205388069153,
0.3887806832790375,
0.144403338432312,
-0.3409866690635681,
-0.8264935612678528,
-0.9585326313972473,
-0.07986750453710556,
-0.436139851808548,
0.7975084185600281,
-0.7399925589561462,
-0.38517919182777405,
0.29020926356315613,
0.048370543867349625,
-0.5678287148475647,
-0.3646235466003418,
-0.647953450679779,
-0.21006964147090912,
0.699642539024353,
0.31502091884613037,
0.49530819058418274,
-0.22148296236991882,
-0.45112138986587524,
-0.21710717678070068,
-0.4808506965637207,
0.43720439076423645,
0.8458889126777649,
-0.060808248817920685,
-0.6123451590538025,
0.5118582844734192,
-0.23535604774951935,
0.44043540954589844,
-0.013929086737334728,
-0.3720630705356598,
0.019513435661792755,
-0.3339291214942932,
-0.05525919049978256,
-0.34441643953323364,
1.1930886507034302,
0.8107030987739563,
0.23721307516098022,
-0.49842560291290283,
-0.036446478217840195,
-0.12774881720542908,
0.24750685691833496,
-0.49716177582740784,
0.04391175135970116,
0.046277523040771484,
-0.39803433418273926,
-0.3256169557571411,
0.2896796464920044,
-1.4459195137023926,
-0.12282899022102356,
0.20476366579532623,
-0.17084060609340668,
-0.31613221764564514,
0.20453712344169617,
0.3567366898059845,
0.013107700273394585,
-0.22767497599124908,
0.3497905731201172,
-0.9529699087142944,
0.24735330045223236,
0.2074170559644699,
0.18018972873687744,
0.22259408235549927,
-0.21558018028736115,
0.06398319453001022,
0.23864372074604034,
-0.5253893136978149,
0.7261160612106323,
-0.023431051522493362,
-0.6008921265602112,
-0.12648078799247742,
0.5074540972709656,
-0.4215439260005951,
-0.19006836414337158,
0.8347797989845276,
-0.3044772148132324,
0.44498151540756226,
-0.3638203740119934,
-0.09183776378631592,
-0.0564689114689827,
-0.041790567338466644,
-0.6874547600746155,
0.567351758480072,
-0.0638880580663681,
-0.765706479549408,
-0.22629068791866302,
-0.38857510685920715,
-0.43394210934638977,
-0.11225153505802155,
-0.06029628962278366,
-0.2416944056749344,
-0.06978713721036911,
0.30581459403038025,
0.3539198040962219,
-0.43675968050956726,
-0.39903560280799866,
0.0926140546798706,
0.18640628457069397,
0.7901633381843567,
-0.23500129580497742,
1.1937825679779053,
0.6607921719551086,
-0.34024521708488464,
-0.40600982308387756,
-0.6455644965171814,
-0.025362104177474976,
0.45456045866012573,
-0.37935590744018555,
0.3043559193611145,
-0.2526450753211975,
-0.16504397988319397,
0.34627076983451843,
0.7638424038887024,
-0.8839501142501831,
0.1562328338623047,
-0.37313422560691833,
0.2409903109073639,
0.5571911931037903,
0.5499649047851562,
0.27001234889030457,
-0.8237639665603638,
1.0864263772964478,
-0.10339723527431488,
0.4017044007778168,
-0.2875310182571411,
-0.4065127372741699,
-0.8804957270622253,
0.04614439234137535,
-0.2743092477321625,
1.0503268241882324,
-0.7895474433898926,
0.3457237482070923,
-0.20704932510852814,
-0.785426676273346,
-0.5885474681854248,
0.335582971572876,
0.9507176280021667,
0.5141727328300476,
0.4089142978191376,
-0.0723533108830452,
-0.7534252405166626,
-0.6160706877708435,
-0.12199589610099792,
-0.6693189144134521,
0.14924366772174835,
0.751049816608429,
0.6373361945152283,
-0.06368829309940338,
0.4583974778652191,
-0.895228385925293,
-0.354322224855423,
-0.257967472076416,
-0.4379201829433441,
0.5885270833969116,
0.3083116412162781,
0.7736912965774536,
-0.9053129553794861,
-0.7389782667160034,
0.10516676306724548,
-0.9588088393211365,
-0.12467707693576813,
-0.08243720978498459,
-0.3825107514858246,
-0.4195503294467926,
0.40066224336624146,
-0.3976934254169464,
0.3681716024875641,
0.3263181149959564,
-0.657894492149353,
0.43115267157554626,
-0.5803846716880798,
0.39478814601898193,
-1.3062249422073364,
-0.052601732313632965,
-0.10443852096796036,
0.07404705137014389,
-0.5844994187355042,
0.13357312977313995,
-0.12250715494155884,
0.5204076170921326,
-0.9925374984741211,
0.7062578201293945,
-0.5867182016372681,
0.5445087552070618,
0.3070029616355896,
-0.15059618651866913,
0.35823097825050354,
0.4650605320930481,
-0.011251958087086678,
0.5946240425109863,
0.44463276863098145,
-0.3815758228302002,
0.8158701062202454,
0.4422420859336853,
-0.027306826785206795,
0.5657137632369995,
-0.8342419862747192,
0.03908531740307808,
-0.6637775301933289,
0.3923543691635132,
-1.4720020294189453,
-0.29001757502555847,
0.8807968497276306,
-0.5116662383079529,
0.16146773099899292,
-0.005238019861280918,
-0.40342119336128235,
-0.9100847840309143,
-0.10248471051454544,
0.32392987608909607,
0.5392751097679138,
-0.34163954854011536,
0.32194480299949646,
0.47110170125961304,
-0.2498457282781601,
-0.9933297038078308,
-0.6647215485572815,
0.2852756977081299,
-0.4434542655944824,
-0.5280758738517761,
0.38230398297309875,
-0.2989857494831085,
-0.25102004408836365,
-0.2937076687812805,
0.21145160496234894,
-0.371482253074646,
-0.09094832837581635,
0.43482479453086853,
0.2965836822986603,
-0.45673272013664246,
-0.39161399006843567,
0.14964355528354645,
0.17183387279510498,
0.05091587454080582,
-0.06851399689912796,
0.5444433689117432,
-0.391159325838089,
-0.049826402217149734,
-0.7555134296417236,
0.6717925667762756,
0.9111176133155823,
0.06764375418424606,
0.6576383113861084,
0.783615231513977,
-0.3185010254383087,
-0.12144869565963745,
-0.4313700497150421,
0.23353610932826996,
-0.5330967307090759,
-0.488966703414917,
-0.10521285235881805,
-0.5067552328109741,
0.8619117736816406,
0.4480013847351074,
-0.3659350574016571,
1.0402532815933228,
0.7075668573379517,
-0.7926727533340454,
0.6931867599487305,
0.4335252642631531,
-0.048327524214982986,
0.3150317966938019,
-0.8912906050682068,
0.13921009004116058,
-0.6203959584236145,
-0.9840011596679688,
-0.6048024296760559,
-0.5398863554000854,
-0.3204810321331024,
-0.34058189392089844,
0.10422839969396591,
0.36123666167259216,
-0.11785305291414261,
0.9480217695236206,
-0.644298255443573,
0.5191009640693665,
0.40654683113098145,
-0.03188182786107063,
0.43681445717811584,
-0.4108777940273285,
-0.3350665271282196,
-0.27933555841445923,
-0.5373445749282837,
-0.6254218816757202,
0.5787569880485535,
0.4369528889656067,
1.1605998277664185,
0.8817092776298523,
0.6617386341094971,
0.30330052971839905,
-0.11045961081981659,
-0.5041688084602356,
0.8066754937171936,
-0.07806689292192459,
-0.7020278573036194,
-0.32973623275756836,
0.0033758096396923065,
-1.5076547861099243,
0.09254994988441467,
-0.253465861082077,
-0.9167338013648987,
0.8951904773712158,
-0.2888529598712921,
-0.770878255367279,
0.13544730842113495,
-0.9283442497253418,
0.9460012316703796,
-0.49279317259788513,
-0.15700744092464447,
0.19207501411437988,
-0.8172485828399658,
0.5407501459121704,
0.10577413439750671,
0.15316206216812134,
-0.3553845286369324,
-0.6022837162017822,
0.9624320864677429,
-0.7710374593734741,
0.9289118647575378,
0.3856413960456848,
-0.16515031456947327,
0.8200733065605164,
0.05718247964978218,
0.2770135998725891,
0.4614080786705017,
0.20370601117610931,
0.014715882949531078,
0.2749157249927521,
-0.31504565477371216,
-0.2793390452861786,
0.9991595149040222,
-0.9375320076942444,
-0.012906203046441078,
-0.6575493812561035,
-0.16070586442947388,
0.4146699607372284,
0.44067010283470154,
0.8686175346374512,
0.299525648355484,
-0.15924443304538727,
0.18329407274723053,
0.216313436627388,
-0.10183725506067276,
0.8204637765884399,
0.5868076086044312,
-0.267570823431015,
-0.6492587327957153,
0.8086650371551514,
0.30944836139678955,
-0.22435016930103302,
0.6690523624420166,
0.2823777496814728,
-0.6136714220046997,
-0.6343870162963867,
-0.2886944115161896,
0.4954990744590759,
-0.5330466032028198,
-0.4561346173286438,
-0.9483186602592468,
0.04076141119003296,
-0.8835868835449219,
-0.3072509765625,
-0.06281401216983795,
-0.16589893400669098,
-0.6360538601875305,
0.032252661883831024,
0.4550043046474457,
1.0820716619491577,
0.06609995663166046,
0.47483018040657043,
-0.8444162607192993,
0.7323749661445618,
0.07678017020225525,
0.17086361348628998,
-0.210133895277977,
-0.4837946891784668,
-0.38089635968208313,
0.11336152255535126,
-0.2901657819747925,
-1.3237613439559937,
0.8348720669746399,
-0.15095208585262299,
0.22989557683467865,
0.5210209488868713,
0.24236643314361572,
0.6728572845458984,
-0.7123841047286987,
0.8122795224189758,
0.4767996370792389,
-0.7463058233261108,
0.7772390246391296,
-0.7924342751502991,
-0.04149908199906349,
0.7719159722328186,
0.6153801083564758,
-0.7086616158485413,
-0.26700785756111145,
-1.009190320968628,
-0.7025425434112549,
0.4537826180458069,
0.20188497006893158,
0.5606955885887146,
-0.28150659799575806,
-0.061451587826013565,
-0.2068352848291397,
0.3573337197303772,
-0.7440873980522156,
-0.8048577308654785,
-0.06199315935373306,
0.007814944721758366,
0.15966445207595825,
0.01123354397714138,
-0.013622540980577469,
-0.9064138531684875,
0.7069082260131836,
0.5125483870506287,
0.45856109261512756,
0.26379185914993286,
0.014090846292674541,
-0.14141663908958435,
0.408271849155426,
0.8647527694702148,
0.6879975199699402,
-0.17770850658416748,
-0.042318958789110184,
0.16077791154384613,
-0.9904424548149109,
0.21559086441993713,
-0.10162235796451569,
-0.2640407383441925,
0.4085950553417206,
0.42590734362602234,
0.9883430600166321,
0.2901715040206909,
-0.6256124973297119,
0.8001989126205444,
-0.47366002202033997,
0.035388924181461334,
-0.9657596945762634,
0.05155865103006363,
-0.17544740438461304,
0.3832126259803772,
0.29514697194099426,
0.021318983286619186,
-0.018890738487243652,
-0.6751999855041504,
0.2961694300174713,
0.16563189029693604,
-0.24780116975307465,
-0.06833705306053162,
0.9439159035682678,
-0.03361668810248375,
-0.5173810720443726,
0.06255627423524857,
-0.5886533856391907,
-0.32392212748527527,
0.7537450790405273,
0.7705869078636169,
0.6934218406677246,
-0.5071719288825989,
0.6371949315071106,
0.7824812531471252,
0.29068541526794434,
-0.049825623631477356,
0.6763701438903809,
0.09657617658376694,
-0.7042636275291443,
-0.11923929303884506,
-0.8968814015388489,
-0.46731263399124146,
0.40140828490257263,
-0.5919613838195801,
0.3723631203174591,
-0.9322906136512756,
0.08786197751760483,
-0.14150334894657135,
-0.2631191313266754,
-1.0128430128097534,
0.4486408829689026,
0.2298644334077835,
0.6440685987472534,
-0.9030102491378784,
0.6755564212799072,
0.46447038650512695,
-0.7265074253082275,
-1.1267720460891724,
0.051309458911418915,
-0.3447223901748657,
-0.9856840968132019,
0.32494017481803894,
-0.5250752568244934,
-0.306082159280777,
0.3895563781261444,
-0.5285595655441284,
-1.1070520877838135,
1.1169270277023315,
0.12863171100616455,
-0.46854934096336365,
-0.09088023006916046,
0.059510666877031326,
0.8709636926651001,
-0.5896645784378052,
0.5824376940727234,
0.48878195881843567,
0.5615050196647644,
0.5346022248268127,
-0.597691535949707,
-0.0903676301240921,
-0.6192105412483215,
-0.20717324316501617,
-0.1219421923160553,
-0.6809105277061462,
0.9889334440231323,
-0.5399715304374695,
-0.3235064148902893,
0.3293600380420685,
1.010658860206604,
-0.3256623446941376,
0.4142502248287201,
0.5241779685020447,
0.7520459294319153,
0.7842916250228882,
-0.1768132597208023,
1.1637253761291504,
-0.3633880019187927,
0.4737083315849304,
0.836887538433075,
0.14734084904193878,
0.8853664994239807,
0.2766835689544678,
-0.6706949472427368,
0.7026301622390747,
0.534696638584137,
-0.2647344172000885,
0.395877867937088,
0.33553919196128845,
-0.7538446187973022,
0.3070066273212433,
-0.465867280960083,
-0.32439517974853516,
0.6514205932617188,
0.11860297620296478,
-0.6164065599441528,
-0.1531585156917572,
0.31978389620780945,
0.29510921239852905,
0.3143072724342346,
-0.31302180886268616,
0.5997067093849182,
0.308418869972229,
-0.9478552341461182,
0.6031341552734375,
-0.07535573095083237,
0.6109653115272522,
-0.2579726576805115,
0.27102309465408325,
-0.35510411858558655,
-0.08366180211305618,
-0.40774086117744446,
-1.0717337131500244,
0.19096757471561432,
0.3867347836494446,
-0.38898494839668274,
-0.6939795017242432,
0.45161378383636475,
-0.6626923680305481,
-1.2132495641708374,
0.21855823695659637,
0.613494336605072,
0.6718023419380188,
0.43100106716156006,
-0.9365410804748535,
-0.0743737518787384,
0.28369250893592834,
-0.015340871177613735,
-0.22346140444278717,
0.09387525916099548,
0.13525837659835815,
0.4632684588432312,
0.575503408908844,
0.5042940378189087,
0.3889731168746948,
-0.027936208993196487,
0.36013010144233704,
-0.7945844531059265,
-0.46644914150238037,
-1.0208113193511963,
0.9879693388938904,
0.0380287766456604,
-0.5234187245368958,
0.9131407141685486,
0.7759777307510376,
0.6175557971000671,
-0.554871678352356,
0.6241227388381958,
-0.29476869106292725,
0.813444197177887,
-0.3280501365661621,
0.9324303865432739,
-0.444618284702301,
0.008170845918357372,
-0.5195896625518799,
-1.013679027557373,
-0.31703513860702515,
0.7669519782066345,
-0.40656578540802,
-0.04535449296236038,
0.7807527184486389,
0.9110580086708069,
0.3020685911178589,
-0.2668594717979431,
0.2894446849822998,
0.4450097382068634,
-0.020982641726732254,
0.6215609312057495,
0.988664448261261,
-0.718487560749054,
0.398831307888031,
-0.9100594520568848,
0.3984067738056183,
-0.29803499579429626,
-0.9118505716323853,
-0.607222318649292,
-0.839104950428009,
-0.48460274934768677,
-0.7265053987503052,
-0.18265677988529205,
0.6538568735122681,
-0.015335780568420887,
-0.9277572631835938,
-0.25434640049934387,
0.15893499553203583,
0.36778393387794495,
0.14589232206344604,
-0.1778278946876526,
0.05683024227619171,
0.4315040111541748,
-0.965736985206604,
0.5376555919647217,
0.09221241623163223,
0.4600927531719208,
0.040115371346473694,
0.03837449103593826,
-0.06859247386455536,
0.055737752467393875,
0.09376350045204163,
0.5510191917419434,
-0.5301706790924072,
-0.19134549796581268,
0.2347501814365387,
-0.6780975461006165,
-0.21400374174118042,
0.6724513173103333,
-0.5729271769523621,
0.19279737770557404,
0.8349695801734924,
-0.0897124782204628,
0.5559437870979309,
0.08958244323730469,
-0.047446977347135544,
-0.3548624515533447,
-0.01981665939092636,
0.854321300983429,
0.6640586853027344,
-0.210062175989151,
-0.6634451150894165,
0.4496755599975586,
0.3872036039829254,
-0.37847399711608887,
-0.7783445715904236,
0.06811490654945374,
-1.3989263772964478,
-0.03964994102716446,
1.1767650842666626,
0.34899774193763733,
-0.3942488729953766,
-0.183878093957901,
-0.4360983371734619,
0.5347808599472046,
-0.37180855870246887,
0.3756546676158905,
0.5466286540031433,
-0.11773356050252914,
0.08191728591918945,
-0.8185259699821472,
0.3261195421218872,
0.16834330558776855,
-0.644809365272522,
-0.4139394760131836,
0.2695438265800476,
0.2646818161010742,
0.36542809009552,
1.0735700130462646,
0.12459007650613785,
0.21383880078792572,
0.012341015972197056,
0.39488300681114197,
0.4054035544395447,
-0.4591786861419678,
-0.1562470644712448,
-0.10066792368888855,
-0.4540337026119232,
-0.47471854090690613
]
|
evageon/IADD | evageon | 2022-01-29T11:16:17Z | 260 | 0 | [
"license:cc-by-4.0",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
license: cc-by-4.0
---
# IADD
IADD is an Integrated Dataset for Arabic Dialect iDentification Dataset. It contains 136,317 texts representing 5 regions (Maghrebi (MGH) , Levantine (LEV), Egypt (EGY) , Iraq (IRQ) and Gulf (GLF)) and 9 countries (Algeria, Morocco, Tunisia, Palestine, Jordan, Syria, Lebanon, Egypt and Iraq).
IADD is created from the combination of subsets of five corpora: DART, SHAMI, TSAC, PADIC and AOC. The Dialectal ARabic Tweets dataset (DART) [1] has about 25,000 tweets that are annotated via crowdsourcing while the SHAMI dataset [2] consists of 117,805 sentences and covers levantine dialects spoken in Palestine, Jordan, Lebanon and Syria. TSAC [3] is a Tunisian dialect corpus of 17,000 comments collected mainly from Tunisian Facebook pages. Parallel Arabic Dialect Corpus (PADIC) [4] is made of sentences transcribed from recordings or translated from MSA. Finally, the Arabic Online Commentary (AOC) dataset [5] is based on reader commentary from the online versions of three Arabic newspapers, and it consists of 1.4M comments.
IADD is stored in a JSON-like format with the following keys:
- Sentence: contains the sentence/ text;
- Region: stores the corresponding dialectal region (MGH, LEV, EGY, IRQ, GLF or general);
- Country: specifies the corresponding country, if available (MAR, TUN, DZ, EGY, IRQ, SYR, JOR, PSE, LBN);
- DataSource: indicates the source of the data (PADIC, DART, AOC, SHAMI or TSAC).
[1] Alsarsour, I., Mohamed, E., Suwaileh, R., & Elsayed, T. (2018, May). Dart: A large dataset of dialectal arabic tweets. In Proceedings of the Eleventh International Conference on Language Resources and Evaluation (LREC 2018).
[2] Abu Kwaik, K., Saad, M. K., Chatzikyriakidis, S., & Dobnik, S. (2018). Shami: A corpus of levantine arabic dialects. In Proceedings of the eleventh international conference on language resources and evaluation (LREC 2018).
[3] Mdhaffar, S., Bougares, F., Esteve, Y., & Hadrich-Belguith, L. (2017, April). Sentiment analysis of tunisian dialects: Linguistic ressources and experiments. In Third Arabic Natural Language Processing Workshop (WANLP) (pp. 55-61).
[4] Meftouh, K., Harrat, S., Jamoussi, S., Abbas, M., & Smaili, K. (2015, October). Machine translation experiments on PADIC: A parallel Arabic dialect corpus. In The 29th Pacific Asia conference on language, information and computation.
[5] Zaidan, O., & Callison-Burch, C. (2011, June). The arabic online commentary dataset: an annotated dataset of informal arabic with high dialectal content. In Proceedings of the 49th Annual Meeting of the Association for Computational Linguistics: Human Language Technologies (pp. 37-41).
| [
-0.8835545182228088,
-0.715246856212616,
0.28009232878685,
0.45982247591018677,
-0.20591703057289124,
0.12218493968248367,
-0.22778482735157013,
-0.20364347100257874,
0.465635746717453,
0.3983493745326996,
-0.37048858404159546,
-0.958543062210083,
-0.7477381825447083,
0.08561039716005325,
-0.6607552170753479,
1.1630170345306396,
0.0580020397901535,
-0.09613540768623352,
0.3876844346523285,
-0.5567768812179565,
0.18228191137313843,
-0.5929656624794006,
-0.5739116668701172,
0.3889200687408447,
0.20233191549777985,
0.6691045165061951,
0.6281346082687378,
0.42500555515289307,
0.2786720097064972,
0.3128373920917511,
0.03319505602121353,
0.1274920254945755,
-0.12007812410593033,
-0.04040848836302757,
0.0943785086274147,
0.02526526339352131,
-0.5005275011062622,
-0.1428527981042862,
0.5044403672218323,
0.7423480153083801,
-0.15911687910556793,
0.05108044296503067,
-0.14032967388629913,
1.0264196395874023,
-0.540934145450592,
0.02813013084232807,
-0.35275742411613464,
-0.4763728678226471,
-0.6768656969070435,
0.3032315969467163,
0.014446872286498547,
-0.7048661112785339,
0.15587222576141357,
0.01765926368534565,
0.2384188324213028,
-0.014839934185147285,
1.0629100799560547,
-0.04073084890842438,
-0.8851636052131653,
-0.5698956847190857,
-0.2642723321914673,
0.6436400413513184,
-0.9067137241363525,
0.37820082902908325,
0.4946279525756836,
0.07599474489688873,
-0.09280114620923996,
-0.450741708278656,
-0.8531010746955872,
-0.06083547696471214,
-0.0003297028597444296,
0.12128357589244843,
-0.024762291461229324,
0.1502581536769867,
0.026817651465535164,
0.3367204964160919,
-0.2514309883117676,
-0.20743562281131744,
-0.2675560414791107,
0.07114799320697784,
0.8787127733230591,
-0.15150323510169983,
0.16173356771469116,
-0.395657479763031,
-0.21985481679439545,
-0.05501681938767433,
-0.7667450308799744,
0.08176350593566895,
0.4763414263725281,
0.14434321224689484,
-0.6167266368865967,
0.5035071969032288,
-0.12447554618120193,
0.3435218334197998,
0.07256582379341125,
-0.13001291453838348,
0.5077733993530273,
-0.31135526299476624,
0.05172930657863617,
-0.10989737510681152,
1.0501608848571777,
0.3780403435230255,
0.5511036515235901,
0.022252101451158524,
-0.3520791530609131,
-0.37615033984184265,
0.02925976552069187,
-0.7566304206848145,
-0.21505632996559143,
0.4382789134979248,
-0.6045385003089905,
-0.057189349085092545,
0.2996308207511902,
-1.0408772230148315,
-0.34436923265457153,
-0.10380489379167557,
0.04784024506807327,
-0.6446003317832947,
-0.2640286087989807,
-0.22379790246486664,
-0.04085957258939743,
0.19504128396511078,
0.3322080969810486,
-0.9097210764884949,
0.46978259086608887,
0.4990016222000122,
0.7702335715293884,
-0.22287920117378235,
-0.18539157509803772,
-0.07613679021596909,
-0.06592217832803726,
-0.36698415875434875,
0.6686545014381409,
-0.3597043454647064,
-0.6995808482170105,
0.3280535042285919,
-0.2855800986289978,
0.04428137093782425,
-0.8125843405723572,
0.8236949443817139,
-0.5549290776252747,
-0.008403684943914413,
-0.3247939348220825,
-0.3739865720272064,
-0.3024647831916809,
-0.13278049230575562,
-0.754925012588501,
1.227712631225586,
0.275364488363266,
-0.7441601753234863,
0.20004470646381378,
-0.7334831953048706,
-0.4684533476829529,
-0.3735201358795166,
-0.24100859463214874,
-0.30474281311035156,
0.08121570199728012,
0.5420565009117126,
0.3737257122993469,
-0.5179317593574524,
0.3579895794391632,
-0.2655431628227234,
-0.17068715393543243,
0.5358659029006958,
-0.41659143567085266,
1.0260865688323975,
0.45738404989242554,
-0.5446096658706665,
-0.05988127738237381,
-0.9253166317939758,
0.02538505382835865,
-0.28026700019836426,
-0.20191600918769836,
-0.05646338313817978,
-0.042639944702386856,
0.6480949521064758,
0.23655369877815247,
-0.02993144281208515,
-0.6724141240119934,
0.14120832085609436,
-0.44871222972869873,
0.2795344591140747,
0.8983301520347595,
0.31075891852378845,
0.2547190487384796,
-0.4683540165424347,
0.4586350917816162,
0.3247070014476776,
-0.22169619798660278,
0.07569829374551773,
-0.39174145460128784,
-1.1876989603042603,
-0.6439762711524963,
0.3859773874282837,
0.4905697703361511,
-0.5353772640228271,
0.6115301847457886,
-0.37345561385154724,
-0.46359193325042725,
-0.9834673404693604,
-0.16604867577552795,
0.2895328104496002,
0.19565103948116302,
0.2877638638019562,
-0.1668478399515152,
-0.6727219820022583,
-1.1443488597869873,
-0.05299944803118706,
-0.49769678711891174,
0.2893170118331909,
0.3115164339542389,
0.5936074256896973,
-0.24759185314178467,
0.9169914126396179,
-0.24685755372047424,
-0.27096205949783325,
-0.2257155328989029,
0.30767446756362915,
0.2966673672199249,
0.12626595795154572,
0.8531419038772583,
-0.7228906750679016,
-0.9220728278160095,
-0.08374468982219696,
-0.44937142729759216,
-0.5699051022529602,
0.003943419083952904,
-0.1265556812286377,
0.5674899220466614,
0.5834768414497375,
-0.4979729950428009,
0.7020831108093262,
0.5010390281677246,
-0.4740299880504608,
0.4788276255130768,
0.34206530451774597,
0.5839147567749023,
-1.2165863513946533,
-0.047624342143535614,
-0.06498878449201584,
-0.008769487030804157,
-0.43350881338119507,
-0.061502180993556976,
-0.03665189817547798,
0.22661538422107697,
-0.2591618299484253,
0.8207071423530579,
-0.3204348087310791,
0.18088863790035248,
-0.001600788440555334,
-0.026898151263594627,
-0.2690693140029907,
0.2958720922470093,
-0.2398146390914917,
1.246993899345398,
0.4535568356513977,
-0.4027838706970215,
0.22476547956466675,
0.2337811440229416,
-0.747471809387207,
0.462420791387558,
-0.523739755153656,
0.057905156165361404,
-0.10636673867702484,
0.10003913193941116,
-1.034436583518982,
-0.25641658902168274,
-0.018017753958702087,
-0.4779719114303589,
-0.017939893528819084,
0.08172868937253952,
-0.44758960604667664,
0.008948247879743576,
-0.3998902142047882,
0.5000255107879639,
0.46829918026924133,
-0.49442195892333984,
0.4228486716747284,
0.591114342212677,
-0.3573824465274811,
-0.7057501673698425,
-0.4918743073940277,
0.2665187120437622,
-0.3384784460067749,
-0.6869192123413086,
0.33381718397140503,
0.0603155642747879,
-0.9588066339492798,
0.2118801325559616,
0.20541419088840485,
-0.16905130445957184,
0.034818705171346664,
0.41804590821266174,
0.006086766254156828,
-0.26795095205307007,
0.10396451503038406,
0.011027815751731396,
0.3083493411540985,
-0.0058680567890405655,
-0.0101134879514575,
0.6082416772842407,
-0.22792692482471466,
-0.3769987225532532,
-0.5553995370864868,
0.9728649258613586,
0.6165598630905151,
-0.12278077751398087,
1.1506460905075073,
0.6435750722885132,
-0.24737896025180817,
-0.35916125774383545,
-0.7443614602088928,
0.062352731823921204,
-0.45104801654815674,
0.3585040867328644,
-0.66721510887146,
-0.6042523384094238,
0.6207007765769958,
0.08704978227615356,
-0.03820711374282837,
0.7399709820747375,
0.7202059626579285,
-0.32071784138679504,
0.7083315253257751,
0.48937180638313293,
-0.5264614820480347,
0.2824901044368744,
-0.29392316937446594,
0.46682414412498474,
-0.557300329208374,
-0.2566949427127838,
-0.8161156177520752,
-0.3501209020614624,
-0.7927870750427246,
-0.21744175255298615,
0.6039625406265259,
0.12128550559282303,
-0.4135493040084839,
-0.05832638591527939,
0.1621842235326767,
0.16763782501220703,
0.6557851433753967,
-0.12767086923122406,
0.07846865057945251,
0.13646255433559418,
-0.04644503816962242,
-0.22958005964756012,
-0.27676284313201904,
-0.7150083184242249,
1.2905299663543701,
0.1389845907688141,
0.6406100988388062,
0.8123065233230591,
0.9478209018707275,
0.8845925331115723,
0.2669430673122406,
-0.7402188181877136,
0.6513925194740295,
-0.14154106378555298,
-0.4241901636123657,
0.006113428622484207,
-0.18922264873981476,
-0.7607392072677612,
-0.024069927632808685,
0.1325862556695938,
-0.7365332841873169,
0.47225213050842285,
-0.2893807888031006,
-0.05492114648222923,
0.2206638753414154,
-0.8167222738265991,
0.4069196283817291,
-0.05337407439947128,
0.04280684143304825,
-0.2837364375591278,
-0.519176185131073,
0.20694328844547272,
0.003429522505030036,
0.5094083547592163,
-0.1476707011461258,
-0.20373186469078064,
0.9302955865859985,
-0.7497556805610657,
0.5705007910728455,
-0.01652282476425171,
-0.0187687985599041,
0.4146774113178253,
-0.005270268768072128,
0.20733913779258728,
0.15489806234836578,
-0.44057798385620117,
0.34196874499320984,
0.038541361689567566,
-0.6002755165100098,
-0.38706034421920776,
0.8944582343101501,
-1.2216074466705322,
-0.7008365988731384,
-0.8476669788360596,
-0.27093398571014404,
-0.3797787129878998,
-0.11040440201759338,
0.27500393986701965,
0.7443645596504211,
-0.43492212891578674,
0.18656975030899048,
0.30376654863357544,
-0.17040327191352844,
0.6191606521606445,
0.27766379714012146,
-0.16527077555656433,
-0.6213297247886658,
0.7151454091072083,
0.14745861291885376,
0.17548221349716187,
0.1794816106557846,
-0.4260528087615967,
-0.23560456931591034,
-0.569802463054657,
-0.5918481349945068,
0.48248666524887085,
-0.8055245876312256,
-0.10276380926370621,
-0.7712828516960144,
-0.47169163823127747,
-0.7858119010925293,
-0.20494188368320465,
-0.1524650603532791,
-0.6083902716636658,
-0.13193252682685852,
-0.1382412165403366,
0.4934569001197815,
1.0135797262191772,
-0.08275012671947479,
0.2671835422515869,
-0.567753791809082,
0.35772043466567993,
-0.0517067052423954,
0.008923325687646866,
-0.05232170969247818,
-0.6811850666999817,
-0.2213890254497528,
0.10855751484632492,
-0.1699191927909851,
-1.1499528884887695,
0.633185625076294,
0.5212549567222595,
0.26747775077819824,
0.5566661953926086,
0.23738984763622284,
0.6834582090377808,
-0.4349098205566406,
0.9781293272972107,
-0.2520177960395813,
-0.9662631154060364,
0.43487465381622314,
-0.24970026314258575,
0.16359473764896393,
0.605459988117218,
0.5341104865074158,
-0.8909804821014404,
-0.2665047347545624,
-0.6550090909004211,
-0.9991444945335388,
0.772487998008728,
0.06583123654127121,
0.12668412923812866,
-0.4745563268661499,
0.10337097197771072,
0.26899364590644836,
0.3048098087310791,
-0.35745739936828613,
-0.8128275871276855,
-0.14174386858940125,
-0.7002926468849182,
-0.013397566974163055,
-0.6342142224311829,
-0.27656692266464233,
-0.339896559715271,
0.837518572807312,
0.08340633660554886,
0.6318905353546143,
0.0373002290725708,
-0.005504431203007698,
0.21396522223949432,
0.48188531398773193,
0.43712717294692993,
0.5850688815116882,
-0.3519452214241028,
0.20161676406860352,
-0.22294387221336365,
-0.711206316947937,
0.14123883843421936,
0.18330533802509308,
-0.27211427688598633,
0.1317959427833557,
0.6026868224143982,
0.7539552450180054,
-0.48598524928092957,
-0.808803915977478,
0.6011962890625,
0.09160273522138596,
-0.18028387427330017,
-0.634742796421051,
-0.15058815479278564,
-0.1415005475282669,
0.156568244099617,
0.6531553268432617,
0.1538117378950119,
0.19719476997852325,
-0.8478386998176575,
0.18057750165462494,
0.3225124776363373,
-0.2328842580318451,
-0.33743131160736084,
0.2825639247894287,
0.39814293384552,
-0.13738352060317993,
0.7387039065361023,
-0.4346867501735687,
-0.7088196873664856,
0.8488054871559143,
0.3848634362220764,
0.9792930483818054,
0.01623762957751751,
0.4479388892650604,
0.3698558211326599,
0.19382773339748383,
0.5343694686889648,
0.7158780097961426,
0.0512906052172184,
-0.7858065962791443,
0.11007945239543915,
-0.7438264489173889,
-0.14017941057682037,
0.1751740276813507,
-0.5597876310348511,
0.3293367028236389,
-0.5712353587150574,
-0.12774789333343506,
-0.05784673988819122,
-0.023561781272292137,
-0.6423153281211853,
0.3550007939338684,
-0.027912035584449768,
0.9140894412994385,
-0.7134979963302612,
0.9924938678741455,
0.8207945823669434,
-0.3865043818950653,
-0.5170680284500122,
0.5515392422676086,
0.4331507980823517,
-0.716615617275238,
0.7498154640197754,
-0.1217438355088234,
-0.01682613231241703,
0.06159907951951027,
-0.39567995071411133,
-0.9316399693489075,
0.6519052386283875,
-0.02780454233288765,
-0.07291054725646973,
0.4244019687175751,
0.2782050669193268,
0.5234037637710571,
-0.4413982927799225,
0.530626118183136,
0.6559107303619385,
0.3215322494506836,
-0.07740411907434464,
-0.9482017159461975,
-0.15290792286396027,
-0.5844637155532837,
-0.14687688648700714,
0.22272352874279022,
-0.8451822400093079,
1.097606897354126,
-0.2048656940460205,
-0.32054343819618225,
0.2661333382129669,
0.768358051776886,
-0.15195634961128235,
0.03848259523510933,
0.27211064100265503,
0.6695064306259155,
0.7014991044998169,
-0.28757381439208984,
0.9913015961647034,
-0.37346142530441284,
-0.05503673851490021,
0.9264218807220459,
-0.07294948399066925,
0.9839579463005066,
0.5083305239677429,
-0.5193027257919312,
0.7697901129722595,
0.4970702826976776,
0.5856087803840637,
0.8155802488327026,
-0.12062078714370728,
-0.7924445867538452,
0.23936299979686737,
-0.4129611849784851,
-0.5184751749038696,
0.5056079030036926,
0.6240344643592834,
-0.23248128592967987,
-0.060312025249004364,
0.0065231178887188435,
0.4573453664779663,
0.25813883543014526,
-0.0726662129163742,
0.7687039971351624,
-0.03938842564821243,
-0.6888296008110046,
0.6728270053863525,
0.4952754080295563,
0.5490027070045471,
-0.43153855204582214,
-0.010134296491742134,
-0.6224350929260254,
0.20162570476531982,
-0.15197528898715973,
-0.8052043914794922,
0.35032954812049866,
0.1763768494129181,
-0.17343305051326752,
-0.11037833988666534,
0.18639571964740753,
-0.5353363752365112,
-0.45344170928001404,
0.11013060063123703,
0.6279303431510925,
0.14293906092643738,
0.19103455543518066,
-0.5936710834503174,
0.17761600017547607,
0.2793039381504059,
-0.19738757610321045,
0.23064972460269928,
0.8157896995544434,
-0.21246810257434845,
0.6046368479728699,
0.23152323067188263,
0.3328195810317993,
0.11238973587751389,
0.13621215522289276,
0.906043291091919,
-0.8168860077857971,
-0.18151919543743134,
-0.6740296483039856,
0.39485758543014526,
-0.1574864685535431,
-0.6254054307937622,
0.885779082775116,
0.5057650804519653,
0.8081983327865601,
0.019145607948303223,
1.2144286632537842,
-0.6584959626197815,
0.823789656162262,
-0.5697354078292847,
0.7393670082092285,
-0.40657833218574524,
0.38795700669288635,
-0.027563465759158134,
-0.8864465355873108,
0.002492477186024189,
0.6467086672782898,
-0.24561332166194916,
0.2772064208984375,
0.9771852493286133,
0.9708320498466492,
-0.056634385138750076,
0.06129201501607895,
-0.06720520555973053,
0.6956473588943481,
0.23310977220535278,
0.16823168098926544,
0.4676535427570343,
-0.5465749502182007,
0.07528167217969894,
-0.44240573048591614,
-0.12601161003112793,
-0.15859273076057434,
-0.5144352912902832,
-1.0112637281417847,
-1.051245927810669,
-0.16148920357227325,
-0.6872808337211609,
0.161050483584404,
1.342088222503662,
0.4549909234046936,
-1.4212062358856201,
-0.6936849355697632,
0.16281136870384216,
-0.05082135275006294,
0.05733111500740051,
-0.263653427362442,
0.807483971118927,
-0.09296336024999619,
-0.8388146758079529,
0.22951269149780273,
0.08544421195983887,
-0.09326556324958801,
0.00414711469784379,
-0.09647807478904724,
-0.6621699333190918,
0.24961255490779877,
0.42854437232017517,
0.19028320908546448,
-0.8604364395141602,
-0.3895717263221741,
-0.09790623188018799,
-0.5036448836326599,
0.035044025629758835,
0.4783608615398407,
-0.7698342800140381,
0.27572062611579895,
0.24049977958202362,
0.5424440503120422,
0.3306649923324585,
0.21226191520690918,
0.4267895519733429,
-0.6800580024719238,
0.34709393978118896,
0.17689000070095062,
0.3452838957309723,
0.3741321861743927,
0.05878760293126106,
0.5739262104034424,
0.2436065822839737,
-0.5386064052581787,
-0.5147050619125366,
0.10610975325107574,
-0.9323409199714661,
-0.020077208057045937,
1.3768163919448853,
-0.11541307717561722,
-0.021967584267258644,
-0.5058280229568481,
-0.49685993790626526,
-0.11982747912406921,
-0.916607677936554,
0.9035264849662781,
1.0534008741378784,
0.025912627577781677,
-0.2330806851387024,
-0.543542206287384,
0.8337072730064392,
0.4620892107486725,
-0.8397252559661865,
-0.3191432058811188,
0.4613046646118164,
-0.05148300901055336,
-0.41637924313545227,
0.9283546209335327,
0.015452554449439049,
0.03059261292219162,
-0.11499643325805664,
-0.009506721049547195,
0.4733287990093231,
-0.13685232400894165,
-0.1267334371805191,
0.01876705326139927,
0.14235270023345947,
-0.102601557970047
]
|
huggingartists/5nizza | huggingartists | 2022-10-25T09:22:00Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/289ded19d51d41798be99217d6059eb3.458x458x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6394956111907959,
-0.5043624043464661,
0.07201231271028519,
0.29038944840431213,
-0.2301088124513626,
-0.004424207378178835,
-0.29669320583343506,
-0.4735053479671478,
0.8633828163146973,
0.3129916489124298,
-0.9226629734039307,
-0.8402038216590881,
-0.5512228608131409,
0.1725148856639862,
-0.09992756694555283,
1.2809653282165527,
-0.16709811985492706,
-0.3583010137081146,
-0.3066651523113251,
-0.24693435430526733,
-0.28502002358436584,
-0.3130054473876953,
-0.2655908465385437,
-0.3502660095691681,
0.39381226897239685,
0.5335994958877563,
0.6895932555198669,
0.8850698471069336,
0.5130537152290344,
0.3619363307952881,
-0.14122577011585236,
0.006489807739853859,
-0.380885511636734,
-0.1298617124557495,
0.18900419771671295,
-0.30845388770103455,
-0.6786822080612183,
0.2570114731788635,
0.5276194214820862,
0.41574084758758545,
-0.07955560088157654,
0.47275063395500183,
0.030580386519432068,
0.8580107092857361,
-0.2915751338005066,
0.4894469082355499,
-0.23711520433425903,
-0.1498573124408722,
-0.2926855683326721,
0.06265164911746979,
0.16374212503433228,
-0.6066136956214905,
-0.012376791797578335,
-0.7504270076751709,
0.06621384620666504,
-0.012533891014754772,
1.0378623008728027,
0.07353381812572479,
0.12944233417510986,
-0.19841237366199493,
-0.12983950972557068,
0.49240899085998535,
-0.5980084538459778,
-0.023369193077087402,
0.5606608390808105,
0.17803820967674255,
0.007711794693022966,
-0.6241486072540283,
-0.6365690231323242,
0.09224748611450195,
-0.15932582318782806,
0.2962966859340668,
-0.1673058420419693,
-0.3344309628009796,
0.536492645740509,
0.5460957884788513,
-0.4749327003955841,
-0.23228640854358673,
-0.5397074222564697,
-0.12744218111038208,
1.1687146425247192,
0.12848979234695435,
0.4218197166919708,
-0.49350857734680176,
-0.2356066256761551,
-0.3825896382331848,
-0.24815605580806732,
0.34451156854629517,
0.5864694118499756,
0.4380428194999695,
-1.0314078330993652,
0.6079514622688293,
-0.19608339667320251,
0.5315364003181458,
0.17103958129882812,
-0.03401399776339531,
0.8111748099327087,
-0.41752785444259644,
-0.11260111629962921,
-0.12164387851953506,
1.077620506286621,
0.6845955848693848,
0.20738819241523743,
0.10715797543525696,
-0.033726997673511505,
0.028602903708815575,
-0.14549019932746887,
-0.8552192449569702,
-0.41480326652526855,
0.6340640783309937,
-0.5763052701950073,
-0.5950813293457031,
0.1480950117111206,
-0.9859570860862732,
-0.22565221786499023,
-0.2398587018251419,
0.2273152619600296,
-0.3806859850883484,
-0.5128089189529419,
0.15248817205429077,
-0.2920408546924591,
0.11208526045084,
0.03433891385793686,
-0.64006507396698,
0.179715096950531,
0.5436142086982727,
0.761956512928009,
0.19480566680431366,
-0.31151413917541504,
-0.2522231340408325,
-0.15432655811309814,
-0.1361420899629593,
0.679827868938446,
-0.2703390419483185,
-0.34974536299705505,
-0.16697187721729279,
0.34798359870910645,
-0.06820136308670044,
-0.2856820821762085,
0.9121373891830444,
0.06696043908596039,
0.19787968695163727,
-0.5830981135368347,
-0.44306114315986633,
-0.032662343233823776,
0.29949089884757996,
-0.8190398812294006,
1.048126220703125,
0.2991844713687897,
-1.0061253309249878,
0.21619686484336853,
-0.8181546926498413,
-0.2929737865924835,
0.024686073884367943,
0.09975532442331314,
-0.8318877816200256,
-0.1708315759897232,
0.1987198144197464,
0.7437419295310974,
-0.2997627556324005,
0.002527844626456499,
-0.6370176076889038,
-0.12361685931682587,
0.38812312483787537,
0.23379214107990265,
1.1826436519622803,
0.09992359578609467,
-0.1660212129354477,
0.10272452235221863,
-0.9638769626617432,
0.13937559723854065,
0.4286268949508667,
-0.15827476978302002,
-0.09351342916488647,
-0.24024486541748047,
0.3958641290664673,
0.2827455997467041,
0.09852378070354462,
-0.5995233654975891,
0.41053280234336853,
-0.20235741138458252,
0.4724195599555969,
0.7319517135620117,
-0.012418331578373909,
0.30289605259895325,
-0.6278440952301025,
0.38051658868789673,
0.11076659709215164,
0.3842584788799286,
-0.007828645408153534,
-0.5638803839683533,
-0.4847821295261383,
-0.2697753310203552,
0.3437940776348114,
0.4338821768760681,
-0.6881183981895447,
1.0005531311035156,
-0.32616958022117615,
-0.8322198987007141,
-0.6223729848861694,
0.12430384010076523,
0.18103255331516266,
0.4828505218029022,
0.3935644030570984,
-0.4238503873348236,
-0.585888147354126,
-0.6776580214500427,
0.0934896394610405,
-0.24904607236385345,
0.21965399384498596,
0.4054851830005646,
0.8470554351806641,
-0.23209628462791443,
0.8183190226554871,
-0.6443576812744141,
-0.2862688899040222,
-0.2891591489315033,
-0.33076512813568115,
0.3950493633747101,
0.7967599630355835,
0.7050418853759766,
-0.8578730225563049,
-0.494716614484787,
-0.24380795657634735,
-0.703502357006073,
-0.1036348044872284,
-0.027483204379677773,
-0.2582978308200836,
0.03521576151251793,
0.11237852275371552,
-0.6969989538192749,
0.5476991534233093,
0.5177723169326782,
-0.6904940605163574,
0.5453951358795166,
0.0760485827922821,
-0.0003137720632366836,
-1.2913473844528198,
0.3513835668563843,
0.23511981964111328,
0.01667446829378605,
-0.6007453799247742,
-0.2054569125175476,
-0.042893312871456146,
-0.007989220321178436,
-0.11864829808473587,
0.6044708490371704,
-0.37017375230789185,
0.2677116096019745,
0.15448927879333496,
0.03803355246782303,
0.08806112408638,
0.4652092158794403,
-0.08147765696048737,
0.28322482109069824,
0.98715740442276,
-0.35846877098083496,
0.6748610138893127,
0.5910312533378601,
-0.21881963312625885,
0.8531914949417114,
-0.8018295764923096,
0.025814594700932503,
-0.221518412232399,
0.40529665350914,
-0.8240272402763367,
-0.5584689974784851,
0.822252094745636,
-0.7253928780555725,
0.3570747375488281,
-0.22490307688713074,
-0.5520390272140503,
-0.8066631555557251,
-0.682226300239563,
0.12855757772922516,
0.5049153566360474,
-0.3899748921394348,
0.4042900502681732,
0.5819118022918701,
0.11136788874864578,
-0.3550419211387634,
-0.7871057987213135,
-0.14657051861286163,
-0.4079306721687317,
-0.7949233055114746,
0.42508959770202637,
-0.3595988154411316,
-0.05548761412501335,
0.14200852811336517,
0.10515132546424866,
0.07375725358724594,
0.020394494757056236,
0.3817870318889618,
0.2995087504386902,
0.11348510533571243,
-0.024012310430407524,
-0.09920063614845276,
-0.25687843561172485,
0.10773579776287079,
-0.20075295865535736,
0.2453043907880783,
-0.2844788730144501,
-0.11847253143787384,
-0.713375449180603,
0.21903449296951294,
0.48011091351509094,
-0.24075140058994293,
0.6784917116165161,
0.8263208270072937,
-0.23672893643379211,
-0.014026978984475136,
-0.5039766430854797,
-0.12946105003356934,
-0.41403672099113464,
0.02076151594519615,
-0.2676168382167816,
-0.6115536689758301,
0.9515319466590881,
0.22118353843688965,
0.07150662690401077,
0.6624864935874939,
0.5137024521827698,
-0.08063285797834396,
0.6982845067977905,
0.3983829915523529,
-0.2756320834159851,
0.5223254561424255,
-0.7037699818611145,
-0.22864186763763428,
-0.8540742993354797,
-0.4913749098777771,
-0.5071110725402832,
-0.543150782585144,
-0.8895702958106995,
-0.45933035016059875,
0.22164204716682434,
0.13581067323684692,
-0.19459494948387146,
0.4503636062145233,
-0.9422606825828552,
0.28071868419647217,
0.35317400097846985,
0.2845607101917267,
-0.1144123375415802,
0.07010039687156677,
0.04063006862998009,
0.14210627973079681,
-0.6285510659217834,
-0.2318355292081833,
1.1106175184249878,
0.5012475848197937,
0.5511655211448669,
-0.06983345746994019,
0.8522763848304749,
0.0038085884880274534,
0.22053824365139008,
-0.5298148393630981,
0.4888409674167633,
0.022817490622401237,
-0.5213964581489563,
-0.1643901914358139,
-0.5007482171058655,
-0.888293981552124,
-0.1331748217344284,
-0.4181363582611084,
-0.6762987375259399,
0.5264348387718201,
0.09338235855102539,
-0.2607642710208893,
0.3703826069831848,
-0.6500242352485657,
0.8615546226501465,
-0.07108292728662491,
-0.4787992238998413,
0.3039315938949585,
-1.0314717292785645,
0.1748998612165451,
0.23346638679504395,
0.270818293094635,
-0.4316742420196533,
0.012809265404939651,
0.9847776293754578,
-0.8087520599365234,
0.9564753174781799,
-0.36626219749450684,
0.1673525720834732,
0.5669893622398376,
-0.33683159947395325,
0.4437120258808136,
0.10800758004188538,
-0.2808758020401001,
0.3450286388397217,
0.04167136922478676,
-0.47860902547836304,
-0.4461894929409027,
0.6860877275466919,
-0.7319921255111694,
0.06014958396553993,
-0.36007553339004517,
-0.4702701270580292,
0.056543536484241486,
0.18448080122470856,
0.2716239392757416,
0.351112425327301,
0.023934265598654747,
0.15515965223312378,
0.4306691586971283,
-0.11746510118246078,
0.3372875154018402,
0.028240226209163666,
-0.06170910224318504,
-0.793410062789917,
0.9140583872795105,
0.17114794254302979,
0.05355217680335045,
-0.07802043855190277,
0.4348953068256378,
-0.3662797808647156,
-0.13899995386600494,
-0.6376028656959534,
0.4481598734855652,
-0.3745083808898926,
-0.3919275403022766,
-0.48877856135368347,
-0.14372371137142181,
-0.6348196268081665,
-0.14796008169651031,
-0.25576964020729065,
-0.5099251866340637,
-0.3291472792625427,
-0.23316890001296997,
1.0453081130981445,
0.44647979736328125,
-0.6970508098602295,
0.11382713913917542,
-0.5166714191436768,
0.26030364632606506,
-0.08531568199396133,
0.6532304883003235,
-0.11167288571596146,
-0.27496254444122314,
-0.22306470572948456,
0.08198718726634979,
-0.18787981569766998,
-0.7117425203323364,
0.28286847472190857,
-0.04162216931581497,
0.37852510809898376,
0.11990828067064285,
0.10519064962863922,
0.7082260251045227,
-0.0695776641368866,
0.6595223546028137,
0.31912869215011597,
-0.8061330318450928,
0.6526476740837097,
-0.49934637546539307,
0.16918933391571045,
0.7507325410842896,
0.3960861265659332,
-0.5783254504203796,
-0.10802567005157471,
-0.979473352432251,
-0.8382595181465149,
0.775329053401947,
0.43131205439567566,
0.06737944483757019,
0.20834672451019287,
0.5582855343818665,
-0.19760197401046753,
0.2886631488800049,
-0.6700767278671265,
-0.8258936405181885,
-0.4281570017337799,
-0.3493058383464813,
-0.02500290423631668,
-0.0923488512635231,
-0.2434999942779541,
-0.7088313102722168,
0.7552394866943359,
-0.17494212090969086,
0.34184393286705017,
0.4140961766242981,
0.4382326304912567,
-0.183413565158844,
-0.03138010948896408,
0.29502296447753906,
0.3580331802368164,
-0.20333324372768402,
-0.32001930475234985,
-0.14489328861236572,
-0.5874999165534973,
-0.10700896382331848,
0.4936726689338684,
-0.3657306432723999,
-0.07836644351482391,
0.3331758379936218,
0.9066097140312195,
0.008398809470236301,
-0.23592840135097504,
0.5943321585655212,
-0.06209332495927811,
-0.4275347888469696,
-0.39849722385406494,
0.018520252779126167,
0.16280628740787506,
0.2406536042690277,
0.03357129171490669,
0.0674968734383583,
-0.09079939126968384,
-0.43525251746177673,
0.41613996028900146,
0.22653907537460327,
-0.4066144526004791,
-0.49999284744262695,
0.6013866066932678,
0.1063162088394165,
-0.1217639148235321,
0.46193331480026245,
-0.1441127210855484,
-0.6282955408096313,
0.7821382284164429,
0.11827297508716583,
0.8077259063720703,
-0.1536235511302948,
0.33570486307144165,
0.738554060459137,
0.19389943778514862,
-0.05924942344427109,
0.5378666520118713,
-0.2095927596092224,
-0.6573680639266968,
-0.052498869597911835,
-0.5643691420555115,
-0.10503914207220078,
0.04350025951862335,
-0.835649847984314,
0.44319501519203186,
-0.49577072262763977,
-0.2345684915781021,
0.031944721937179565,
0.3980516493320465,
-0.6868978142738342,
0.19189822673797607,
-0.06314260512590408,
1.039121150970459,
-1.0282738208770752,
0.46842828392982483,
0.6801441311836243,
-0.7030581831932068,
-1.2088130712509155,
-0.15031322836875916,
0.18727830052375793,
-0.5803077816963196,
0.19071060419082642,
0.21099162101745605,
0.4972233176231384,
-0.050867460668087006,
-0.9238167405128479,
-0.6396979093551636,
1.1769206523895264,
0.034651823341846466,
-0.23374024033546448,
0.30468329787254333,
0.08755246549844742,
0.6385961174964905,
-0.36854755878448486,
0.33653128147125244,
0.659622311592102,
0.7107637524604797,
0.34589534997940063,
-0.7119950652122498,
0.2670518755912781,
-0.6322864294052124,
-0.23158186674118042,
0.04877712205052376,
-1.0537571907043457,
0.6147101521492004,
-0.20886853337287903,
-0.010065484791994095,
0.03778306394815445,
0.628480851650238,
0.43803003430366516,
0.38410741090774536,
0.4429294168949127,
0.7668728828430176,
0.8134113550186157,
-0.3379058837890625,
1.2314090728759766,
-0.2776293456554413,
0.6212347149848938,
0.7664439082145691,
0.025922710075974464,
0.497537225484848,
0.2505185306072235,
-0.30074062943458557,
0.5777806043624878,
0.677588939666748,
-0.4571894407272339,
0.23463666439056396,
0.3894556760787964,
-0.051900867372751236,
-0.08904953300952911,
-0.2586376965045929,
-0.5766468048095703,
0.32100048661231995,
0.21522144973278046,
-0.3168802261352539,
0.021870670840144157,
-0.030384954065084457,
0.3849932551383972,
-0.03248412907123566,
-0.24797025322914124,
0.6703042984008789,
0.03109624795615673,
-0.35057586431503296,
0.5532271862030029,
-0.1901874542236328,
0.6866710186004639,
-0.5588834285736084,
0.12822309136390686,
-0.12049508839845657,
0.113310307264328,
-0.6354213953018188,
-1.0653444528579712,
0.39468449354171753,
-0.060826145112514496,
-0.26389890909194946,
-0.35636499524116516,
0.6984745860099792,
-0.46365249156951904,
-0.8112992644309998,
0.22566381096839905,
0.20718111097812653,
0.3273499310016632,
0.19434650242328644,
-1.296212077140808,
0.6041793823242188,
0.1614677608013153,
-0.45534324645996094,
0.10100677609443665,
0.5331899523735046,
0.13694040477275848,
0.5501269698143005,
0.7291515469551086,
0.2681887149810791,
-0.220534548163414,
0.08888223022222519,
1.115126132965088,
-0.560859203338623,
-0.48664164543151855,
-0.7608584761619568,
0.9143149852752686,
-0.4087297320365906,
-0.41834384202957153,
0.6953971982002258,
0.769334077835083,
0.8778402209281921,
0.03389699384570122,
0.7893171906471252,
-0.6589042544364929,
0.6835588812828064,
-0.2176658660173416,
0.9565998315811157,
-0.697744607925415,
-0.0656658187508583,
-0.7137488126754761,
-0.5025135278701782,
-0.42622533440589905,
0.6707046031951904,
-0.17682772874832153,
0.20368069410324097,
0.298664927482605,
0.9056412577629089,
0.04997755214571953,
0.11579104512929916,
-0.21274414658546448,
0.31678617000579834,
0.28412559628486633,
0.5615982413291931,
0.41321834921836853,
-0.8854776620864868,
0.3476938009262085,
-0.7765364646911621,
-0.296085923910141,
0.03831899166107178,
-0.8479334115982056,
-0.9196591973304749,
-0.9372501969337463,
-0.6493446826934814,
-0.7548482418060303,
-0.26666828989982605,
1.0562366247177124,
0.7356908321380615,
-0.7008793950080872,
-0.2638319134712219,
0.08115413039922714,
0.29709288477897644,
-0.08705474436283112,
-0.3127376437187195,
0.6292735934257507,
0.3649594485759735,
-0.6432877779006958,
-0.13466060161590576,
0.018597347661852837,
0.24192875623703003,
0.018827326595783234,
-0.07244258373975754,
-0.13375212252140045,
-0.31103646755218506,
0.34014469385147095,
0.4519244432449341,
-0.329618364572525,
-0.12026640772819519,
-0.2395249605178833,
0.04042727127671242,
0.17069153487682343,
0.47114214301109314,
-0.5291666984558105,
0.20296987891197205,
0.6530291438102722,
0.2921465039253235,
0.46038687229156494,
0.19798168540000916,
0.0319889560341835,
-0.45461592078208923,
0.10642437636852264,
-0.019187835976481438,
0.29451316595077515,
0.40860605239868164,
-0.46432018280029297,
0.7994188070297241,
0.6088695526123047,
-0.4730100631713867,
-0.821670413017273,
-0.15784132480621338,
-1.3051022291183472,
0.10600344091653824,
1.0126357078552246,
-0.017212659120559692,
-0.6033316850662231,
0.09201125800609589,
-0.19632241129875183,
0.12837126851081848,
-0.5671967267990112,
0.4681648015975952,
0.5449925661087036,
-0.13297487795352936,
0.11536774039268494,
-0.3640053868293762,
0.6275613903999329,
-0.0171255674213171,
-1.0153270959854126,
0.14406104385852814,
0.46838274598121643,
0.48338770866394043,
0.31815701723098755,
0.762571394443512,
-0.2765178382396698,
0.08672447502613068,
-0.07348240911960602,
0.308731347322464,
-0.29356643557548523,
-0.011066405102610588,
-0.34835952520370483,
-0.10049749910831451,
-0.5293781161308289,
-0.22711095213890076
]
|
huggingartists/5opka | huggingartists | 2022-10-25T09:22:06Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/5opka"
## 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.110132 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('https://images.genius.com/c56dce03a151e17a9626e55e6c295bb1.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/5opka">
<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">5opka</div>
<a href="https://genius.com/artists/5opka">
<div style="text-align: center; font-size: 14px;">@5opka</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/5opka).
### 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/5opka")
```
## 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|
|------:|---------:|---:|
|35| -| -|
'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/5opka")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6487160325050354,
-0.5097470879554749,
0.09418142586946487,
0.27741730213165283,
-0.24978715181350708,
-0.0027866102755069733,
-0.29861339926719666,
-0.47887668013572693,
0.8388728499412537,
0.3320952355861664,
-0.9047990441322327,
-0.8306471109390259,
-0.563450276851654,
0.17881305515766144,
-0.07251931726932526,
1.2784698009490967,
-0.18092387914657593,
-0.3789041340351105,
-0.3219195306301117,
-0.24306505918502808,
-0.29818275570869446,
-0.32575899362564087,
-0.25891584157943726,
-0.37232792377471924,
0.36189505457878113,
0.5501726865768433,
0.7109784483909607,
0.8554123640060425,
0.5214229822158813,
0.3562740683555603,
-0.11850200593471527,
-0.02653711475431919,
-0.3643791675567627,
-0.11763462424278259,
0.2083273082971573,
-0.3241732716560364,
-0.6863109469413757,
0.25932398438453674,
0.5231621265411377,
0.4126669764518738,
-0.08858350664377213,
0.4835701584815979,
0.011435645632445812,
0.8453688025474548,
-0.3010677993297577,
0.5020012259483337,
-0.21987152099609375,
-0.12668099999427795,
-0.29319414496421814,
0.07573073357343674,
0.15552352368831635,
-0.5951226949691772,
0.020498231053352356,
-0.7798052430152893,
0.034718189388513565,
0.005277479533106089,
1.0483626127243042,
0.05346950888633728,
0.12981390953063965,
-0.19407935440540314,
-0.15429913997650146,
0.5329747796058655,
-0.5968002676963806,
-0.04673631489276886,
0.6024699211120605,
0.19496703147888184,
0.02614157646894455,
-0.6278331279754639,
-0.6332013607025146,
0.11719020456075668,
-0.1683451533317566,
0.3009081780910492,
-0.17420023679733276,
-0.3205605447292328,
0.5124655961990356,
0.5517299771308899,
-0.4871371388435364,
-0.26095786690711975,
-0.5418633818626404,
-0.1369025707244873,
1.1781188249588013,
0.12570412456989288,
0.427581250667572,
-0.4900728464126587,
-0.2286505252122879,
-0.38929980993270874,
-0.23258060216903687,
0.3200244903564453,
0.5751920938491821,
0.4415866434574127,
-1.0248055458068848,
0.6129336953163147,
-0.19496513903141022,
0.5370956659317017,
0.1534300297498703,
-0.05028213560581207,
0.8199952840805054,
-0.4054085314273834,
-0.11793414503335953,
-0.11298753321170807,
1.061995267868042,
0.6743759512901306,
0.20541593432426453,
0.1271791309118271,
-0.04206825792789459,
0.03067525289952755,
-0.13538414239883423,
-0.8347446918487549,
-0.4241633415222168,
0.6514014005661011,
-0.6115911602973938,
-0.6093047857284546,
0.11125531047582626,
-0.980542778968811,
-0.21047575771808624,
-0.26502615213394165,
0.2715485095977783,
-0.41515716910362244,
-0.5409746766090393,
0.15148700773715973,
-0.2847450375556946,
0.12213795632123947,
0.048070114105939865,
-0.63358473777771,
0.19459351897239685,
0.5556213855743408,
0.756864070892334,
0.200912207365036,
-0.33616161346435547,
-0.22173039615154266,
-0.19764812290668488,
-0.1518876701593399,
0.6827399730682373,
-0.30206114053726196,
-0.3179354965686798,
-0.16405072808265686,
0.31383734941482544,
-0.04777589440345764,
-0.28476572036743164,
0.8931772708892822,
0.03884868696331978,
0.21760806441307068,
-0.5718764662742615,
-0.4426090717315674,
-0.03706607222557068,
0.2914467453956604,
-0.7783047556877136,
1.0733999013900757,
0.30780503153800964,
-0.9869805574417114,
0.23352308571338654,
-0.8242150545120239,
-0.2946896553039551,
0.03742817044258118,
0.10193265229463577,
-0.8596454858779907,
-0.17402318120002747,
0.20258401334285736,
0.7419876456260681,
-0.2810423970222473,
-0.005607470870018005,
-0.6244279146194458,
-0.11050499230623245,
0.36551225185394287,
0.2648880183696747,
1.1639740467071533,
0.135984405875206,
-0.14676237106323242,
0.10261977463960648,
-0.9764347076416016,
0.12766100466251373,
0.46181124448776245,
-0.16610866785049438,
-0.12924614548683167,
-0.2557668685913086,
0.3990321755409241,
0.29497432708740234,
0.09041541814804077,
-0.6003127098083496,
0.4143717586994171,
-0.18070058524608612,
0.4345068633556366,
0.7386874556541443,
-0.0015420628478750587,
0.32418084144592285,
-0.6281668543815613,
0.39713019132614136,
0.11006409674882889,
0.3893289268016815,
-0.03548469766974449,
-0.5871493816375732,
-0.45881229639053345,
-0.2649378776550293,
0.3281899690628052,
0.4093182384967804,
-0.6721529960632324,
1.0070607662200928,
-0.3174092471599579,
-0.8401882648468018,
-0.6231996417045593,
0.10035117715597153,
0.15880341827869415,
0.49523603916168213,
0.39419305324554443,
-0.443148136138916,
-0.6071065664291382,
-0.6498357057571411,
0.09050075709819794,
-0.2372123897075653,
0.20371179282665253,
0.3962440490722656,
0.8526157140731812,
-0.20457464456558228,
0.8517023324966431,
-0.6669018268585205,
-0.3032662570476532,
-0.31195443868637085,
-0.31304532289505005,
0.3875768780708313,
0.775658369064331,
0.7047063708305359,
-0.8493780493736267,
-0.5267118811607361,
-0.2705739140510559,
-0.7143851518630981,
-0.09445304423570633,
-0.03704507276415825,
-0.24756082892417908,
0.03514458239078522,
0.10315872728824615,
-0.7074540853500366,
0.5163501501083374,
0.514830470085144,
-0.703544020652771,
0.5557025671005249,
0.07187233865261078,
-0.017658594995737076,
-1.2873526811599731,
0.3677271008491516,
0.19364088773727417,
0.014860966242849827,
-0.6278342604637146,
-0.196572944521904,
-0.058772068470716476,
-0.05975119024515152,
-0.11278335005044937,
0.5942224264144897,
-0.3719049096107483,
0.25085341930389404,
0.14275352656841278,
0.05266162008047104,
0.06816280633211136,
0.4576530158519745,
-0.045651331543922424,
0.26024651527404785,
1.0264217853546143,
-0.36976027488708496,
0.6642370223999023,
0.6132599711418152,
-0.22464154660701752,
0.8669387698173523,
-0.7701596021652222,
0.0404423251748085,
-0.2483777403831482,
0.42369404435157776,
-0.8141307234764099,
-0.5619049668312073,
0.8306360244750977,
-0.7275385856628418,
0.3482203483581543,
-0.22781331837177277,
-0.5366219878196716,
-0.7740148901939392,
-0.6896804571151733,
0.1276502013206482,
0.5473191142082214,
-0.38649168610572815,
0.4336128830909729,
0.5896968245506287,
0.09958453476428986,
-0.37884896993637085,
-0.7751054763793945,
-0.14085964858531952,
-0.40934380888938904,
-0.800528883934021,
0.41004958748817444,
-0.3378564417362213,
-0.053797874599695206,
0.16225624084472656,
0.10447906702756882,
0.09677392244338989,
0.010467059910297394,
0.3610312342643738,
0.2905132472515106,
0.09704361110925674,
-0.009167809970676899,
-0.1236552894115448,
-0.26828137040138245,
0.10053341090679169,
-0.2010270357131958,
0.2711191177368164,
-0.2969151437282562,
-0.10511694848537445,
-0.676693320274353,
0.20433436334133148,
0.4810892343521118,
-0.2553054690361023,
0.6970001459121704,
0.822303831577301,
-0.24558265507221222,
0.0021680938079953194,
-0.49566736817359924,
-0.14790652692317963,
-0.4127673804759979,
0.02160041593015194,
-0.2567007541656494,
-0.5884279012680054,
0.9566894769668579,
0.20247367024421692,
0.09008944779634476,
0.6597186923027039,
0.4879257082939148,
-0.07893640547990799,
0.6934598088264465,
0.3956579864025116,
-0.26725906133651733,
0.5147179961204529,
-0.694128155708313,
-0.21524237096309662,
-0.8653101921081543,
-0.46293923258781433,
-0.47222578525543213,
-0.5216265916824341,
-0.8688971996307373,
-0.44374966621398926,
0.21654152870178223,
0.1351025104522705,
-0.203685462474823,
0.43649277091026306,
-0.9442936182022095,
0.27398496866226196,
0.34037336707115173,
0.25065651535987854,
-0.10502777248620987,
0.08360598981380463,
0.05472739413380623,
0.15218862891197205,
-0.6253584027290344,
-0.23848289251327515,
1.1520429849624634,
0.5229452848434448,
0.5406379699707031,
-0.0748722180724144,
0.876602053642273,
-0.00015507957141380757,
0.2045717090368271,
-0.5232563614845276,
0.4991099238395691,
0.04004424810409546,
-0.5283662676811218,
-0.1846165955066681,
-0.47730472683906555,
-0.9212010502815247,
-0.10458189249038696,
-0.4396285116672516,
-0.6696032285690308,
0.5057417154312134,
0.11413361132144928,
-0.26241689920425415,
0.3636156916618347,
-0.6369852423667908,
0.8527668714523315,
-0.05682818591594696,
-0.44098153710365295,
0.278189092874527,
-1.0428979396820068,
0.1720665544271469,
0.21975569427013397,
0.2829397916793823,
-0.43810197710990906,
0.020708249881863594,
0.98613440990448,
-0.8132056593894958,
0.961284875869751,
-0.37159907817840576,
0.17712262272834778,
0.5832323431968689,
-0.34180784225463867,
0.46456748247146606,
0.09127216041088104,
-0.25399816036224365,
0.3460579216480255,
0.03070637956261635,
-0.48795783519744873,
-0.4329693019390106,
0.6540988683700562,
-0.7618439197540283,
0.0828503668308258,
-0.3984920382499695,
-0.4522487223148346,
0.065910205245018,
0.21686933934688568,
0.26990967988967896,
0.3181685209274292,
0.03917030245065689,
0.13950520753860474,
0.4321274757385254,
-0.14209605753421783,
0.3176599144935608,
0.04298854246735573,
-0.09523145854473114,
-0.7793395519256592,
0.9296264052391052,
0.16825440526008606,
0.057106662541627884,
-0.06666597723960876,
0.4652903974056244,
-0.34662580490112305,
-0.13117575645446777,
-0.6032018661499023,
0.4452417492866516,
-0.4072808027267456,
-0.3834295868873596,
-0.4840570092201233,
-0.1302877515554428,
-0.6318005323410034,
-0.1510666161775589,
-0.28621625900268555,
-0.516395628452301,
-0.296862930059433,
-0.22243894636631012,
1.05206298828125,
0.4502725899219513,
-0.69853276014328,
0.11196562647819519,
-0.5227883458137512,
0.2636639475822449,
-0.07637903094291687,
0.6661181449890137,
-0.10182930529117584,
-0.2674126923084259,
-0.20992770791053772,
0.042748987674713135,
-0.19721241295337677,
-0.6994030475616455,
0.27420538663864136,
-0.03540416806936264,
0.37565818428993225,
0.09609322994947433,
0.12252502888441086,
0.6680971384048462,
-0.05917185917496681,
0.6900532841682434,
0.3093337118625641,
-0.8052114248275757,
0.6626033186912537,
-0.49920469522476196,
0.19820711016654968,
0.729297399520874,
0.3909638226032257,
-0.604028582572937,
-0.10942636430263519,
-0.9827889204025269,
-0.8690120577812195,
0.8225975036621094,
0.4525811970233917,
0.06833554059267044,
0.23022890090942383,
0.5487625002861023,
-0.19382189214229584,
0.2769031822681427,
-0.6774227619171143,
-0.8433049321174622,
-0.44950371980667114,
-0.3530910611152649,
-0.036624789237976074,
-0.08039037883281708,
-0.24193155765533447,
-0.6721020936965942,
0.7666197419166565,
-0.16723500192165375,
0.3560572564601898,
0.4222412705421448,
0.4294590651988983,
-0.21424280107021332,
-0.02375536412000656,
0.3145599663257599,
0.36010557413101196,
-0.2231774777173996,
-0.2934693694114685,
-0.12241099029779434,
-0.6241806149482727,
-0.1057123988866806,
0.4830469787120819,
-0.36264514923095703,
-0.0821540579199791,
0.3434196710586548,
0.9190948605537415,
-0.022509709000587463,
-0.2234378308057785,
0.575101375579834,
-0.07730111479759216,
-0.40623483061790466,
-0.4179370105266571,
-0.016370348632335663,
0.15065841376781464,
0.20035450160503387,
0.05334111675620079,
0.0914146900177002,
-0.12007790803909302,
-0.4392218589782715,
0.4041004776954651,
0.20528553426265717,
-0.3800428509712219,
-0.5118570923805237,
0.5685688853263855,
0.10270588845014572,
-0.11404991894960403,
0.48320797085762024,
-0.13507123291492462,
-0.6205766201019287,
0.7640352249145508,
0.11630959063768387,
0.8038747310638428,
-0.1814117282629013,
0.3303563892841339,
0.7414518594741821,
0.19815807044506073,
-0.06221427023410797,
0.5392123460769653,
-0.19874079525470734,
-0.6529973149299622,
-0.06264379620552063,
-0.5690984129905701,
-0.11997982859611511,
0.0868377834558487,
-0.8137356638908386,
0.44836267828941345,
-0.48213815689086914,
-0.2254626452922821,
0.030042938888072968,
0.3787047564983368,
-0.678542971611023,
0.20403973758220673,
-0.046962231397628784,
1.0151803493499756,
-1.0482732057571411,
0.45555955171585083,
0.7081528306007385,
-0.6952487230300903,
-1.196455955505371,
-0.13278062641620636,
0.19476133584976196,
-0.5774681568145752,
0.18745674192905426,
0.18881414830684662,
0.518619179725647,
-0.07832597941160202,
-0.8972805738449097,
-0.6817528605461121,
1.1785600185394287,
0.023796677589416504,
-0.2167687863111496,
0.32162192463874817,
0.12626156210899353,
0.6457029581069946,
-0.36803969740867615,
0.3408811390399933,
0.6530150771141052,
0.7080732583999634,
0.3083987534046173,
-0.7237933278083801,
0.28068748116493225,
-0.6132450103759766,
-0.23006069660186768,
0.0549035482108593,
-1.0459264516830444,
0.6135571599006653,
-0.20033970475196838,
0.0032067555002868176,
-0.011342787183821201,
0.6265227794647217,
0.4450104832649231,
0.3780781030654907,
0.4526808261871338,
0.7522701621055603,
0.7971977591514587,
-0.32029804587364197,
1.2402094602584839,
-0.27284565567970276,
0.6446810960769653,
0.7547672390937805,
0.03487534075975418,
0.5105928182601929,
0.24861487746238708,
-0.31893935799598694,
0.554024875164032,
0.6762896776199341,
-0.44811713695526123,
0.2631378769874573,
0.37084200978279114,
-0.04997679218649864,
-0.0969654992222786,
-0.2184169441461563,
-0.5672599673271179,
0.32648807764053345,
0.20948857069015503,
-0.30727511644363403,
0.009560609236359596,
-0.01886056736111641,
0.3866533935070038,
-0.05157310515642166,
-0.23973041772842407,
0.6704320907592773,
0.050024423748254776,
-0.3820602595806122,
0.5491693019866943,
-0.1940235197544098,
0.6857261061668396,
-0.5945896506309509,
0.12319830060005188,
-0.1030021384358406,
0.13201330602169037,
-0.6419253945350647,
-1.0897679328918457,
0.41648903489112854,
-0.08990965783596039,
-0.227678120136261,
-0.35148492455482483,
0.7436724901199341,
-0.4591379761695862,
-0.7760733366012573,
0.21827934682369232,
0.17009203135967255,
0.33383163809776306,
0.18685059249401093,
-1.2893308401107788,
0.6043375730514526,
0.13914690911769867,
-0.4807412326335907,
0.1420714110136032,
0.49222368001937866,
0.13628309965133667,
0.5464540719985962,
0.7164373993873596,
0.24858872592449188,
-0.2370624542236328,
0.07217096537351608,
1.0805469751358032,
-0.5249913334846497,
-0.4869125783443451,
-0.7476223707199097,
0.916598916053772,
-0.3895144760608673,
-0.4225853979587555,
0.6809357404708862,
0.764751672744751,
0.8727290034294128,
-0.009819474071264267,
0.8184083700180054,
-0.6671309471130371,
0.6742660403251648,
-0.20823341608047485,
0.9654328227043152,
-0.6921713352203369,
-0.07410282641649246,
-0.7348259687423706,
-0.5118623971939087,
-0.4351106882095337,
0.7002848386764526,
-0.18250563740730286,
0.19857583940029144,
0.3006097376346588,
0.8578923344612122,
0.023552892729640007,
0.11043068766593933,
-0.20372121036052704,
0.31043529510498047,
0.2947339117527008,
0.5417129397392273,
0.41393372416496277,
-0.8977369070053101,
0.3790387511253357,
-0.8026090860366821,
-0.3141494393348694,
0.03161613270640373,
-0.8561393618583679,
-0.908183217048645,
-0.9544793963432312,
-0.66826993227005,
-0.7378863096237183,
-0.27689599990844727,
1.0662133693695068,
0.7354446053504944,
-0.6989878416061401,
-0.25571247935295105,
0.06301342695951462,
0.2772054374217987,
-0.11227644979953766,
-0.31520578265190125,
0.6544932723045349,
0.3327281177043915,
-0.6176095604896545,
-0.15032841265201569,
0.01850767433643341,
0.22749881446361542,
0.03965446352958679,
-0.08772709965705872,
-0.1279921680688858,
-0.2828483283519745,
0.3683398962020874,
0.4527054727077484,
-0.33789315819740295,
-0.1306859403848648,
-0.22952629625797272,
0.07155127823352814,
0.19100181758403778,
0.45729780197143555,
-0.5183922052383423,
0.23215261101722717,
0.6702328324317932,
0.2560437023639679,
0.4709550142288208,
0.18966950476169586,
0.05020483583211899,
-0.4799771308898926,
0.08103279769420624,
-0.002201312454417348,
0.2899188697338104,
0.40239018201828003,
-0.4596008360385895,
0.789542555809021,
0.5824437141418457,
-0.5012534856796265,
-0.8278866410255432,
-0.1459396332502365,
-1.2920074462890625,
0.10123234242200851,
1.013824224472046,
-0.02712390199303627,
-0.566472053527832,
0.05601547285914421,
-0.21671055257320404,
0.11626936495304108,
-0.577743649482727,
0.4861806333065033,
0.5659922957420349,
-0.1717020720243454,
0.10096526890993118,
-0.35075634717941284,
0.6537553071975708,
0.020114002749323845,
-1.0108832120895386,
0.18543176352977753,
0.42402079701423645,
0.4972214102745056,
0.36225125193595886,
0.7877470254898071,
-0.2837750315666199,
0.1004248633980751,
-0.055738415569067,
0.33272379636764526,
-0.2703600227832794,
0.020101472735404968,
-0.36685848236083984,
-0.10370112955570221,
-0.48983511328697205,
-0.22854720056056976
]
|
huggingartists/alan-walker | huggingartists | 2022-10-25T09:23:05Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/alan-walker"
## 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.269381 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('https://images.genius.com/70b44d7b5a4be028e87b865dd425a4cc.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/alan-walker">
<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">Alan Walker</div>
<a href="https://genius.com/artists/alan-walker">
<div style="text-align: center; font-size: 14px;">@alan-walker</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/alan-walker).
### 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/alan-walker")
```
## 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|
|------:|---------:|---:|
|206| -| -|
'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/alan-walker")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6072074174880981,
-0.5267903208732605,
0.11465270817279816,
0.2638971507549286,
-0.20592206716537476,
-0.00872276071459055,
-0.2667352259159088,
-0.49514999985694885,
0.8967489004135132,
0.3269188404083252,
-0.9044294953346252,
-0.8143843412399292,
-0.5875183939933777,
0.14782306551933289,
-0.14164039492607117,
1.2365864515304565,
-0.21030373871326447,
-0.37587210536003113,
-0.3136600852012634,
-0.28214743733406067,
-0.29145240783691406,
-0.3088212013244629,
-0.3566960394382477,
-0.3560616374015808,
0.3776950538158417,
0.4980368912220001,
0.74016934633255,
0.9065115451812744,
0.5260711312294006,
0.34293779730796814,
-0.12528757750988007,
-0.011902295053005219,
-0.3677462041378021,
-0.12933695316314697,
0.17523790895938873,
-0.28502312302589417,
-0.7084082961082458,
0.24780486524105072,
0.5536516904830933,
0.4255387783050537,
-0.1048932746052742,
0.4473235011100769,
0.060105957090854645,
0.8739634156227112,
-0.2795726954936981,
0.47485002875328064,
-0.2345522791147232,
-0.14988481998443604,
-0.29463598132133484,
0.020192062482237816,
0.17227236926555634,
-0.585135817527771,
-0.017043614760041237,
-0.723301351070404,
0.07512247562408447,
0.022378036752343178,
1.0205726623535156,
0.06007467955350876,
0.1054505705833435,
-0.19436441361904144,
-0.19418524205684662,
0.5135334730148315,
-0.5749660134315491,
-0.0019670932088047266,
0.610061764717102,
0.15083497762680054,
0.03271891549229622,
-0.6323040127754211,
-0.648165225982666,
0.07124077528715134,
-0.177451491355896,
0.252752423286438,
-0.1873718649148941,
-0.30848202109336853,
0.491905152797699,
0.558986246585846,
-0.5046972632408142,
-0.2105490118265152,
-0.5352172255516052,
-0.08591893315315247,
1.2050532102584839,
0.1784668266773224,
0.404758483171463,
-0.4712287187576294,
-0.18823052942752838,
-0.42198511958122253,
-0.2591923773288727,
0.3491109609603882,
0.5442924499511719,
0.44683584570884705,
-1.046727180480957,
0.6412527561187744,
-0.1453617364168167,
0.5748163461685181,
0.16052976250648499,
-0.01871783845126629,
0.8229844570159912,
-0.3861925005912781,
-0.11541783809661865,
-0.1130819097161293,
1.0832873582839966,
0.6903112530708313,
0.1661473959684372,
0.08692573010921478,
-0.06444866210222244,
0.062193308025598526,
-0.1653040200471878,
-0.7890669107437134,
-0.4300343096256256,
0.6809555888175964,
-0.6094846725463867,
-0.583787202835083,
0.15035204589366913,
-0.9670875072479248,
-0.2633368670940399,
-0.2771524488925934,
0.2405586689710617,
-0.3784950375556946,
-0.532187283039093,
0.19198782742023468,
-0.29338306188583374,
0.14671237766742706,
0.05432983487844467,
-0.6155580282211304,
0.1741650104522705,
0.5529599189758301,
0.7569311857223511,
0.20802205801010132,
-0.3441638648509979,
-0.28641271591186523,
-0.15137377381324768,
-0.11660706251859665,
0.6726474761962891,
-0.3160809278488159,
-0.36216187477111816,
-0.16362783312797546,
0.350574791431427,
-0.07166998833417892,
-0.29211321473121643,
0.8618534207344055,
0.08600296080112457,
0.18747645616531372,
-0.561922550201416,
-0.43741387128829956,
0.01871180534362793,
0.2811691462993622,
-0.8123635649681091,
1.082094669342041,
0.31523415446281433,
-0.9906684160232544,
0.1712179183959961,
-0.8172715902328491,
-0.3372064232826233,
0.03938276693224907,
0.04489589110016823,
-0.7727789282798767,
-0.20128381252288818,
0.2025867998600006,
0.7360734343528748,
-0.3250718116760254,
-0.015278124250471592,
-0.5699889659881592,
-0.09905263036489487,
0.3592485785484314,
0.24550586938858032,
1.1696724891662598,
0.06893482804298401,
-0.14145605266094208,
0.08603475987911224,
-0.9776983261108398,
0.10804231464862823,
0.4792323708534241,
-0.18765850365161896,
-0.09217160940170288,
-0.21121028065681458,
0.4155685305595398,
0.2679503262042999,
0.07406333833932877,
-0.5934158563613892,
0.3667197823524475,
-0.17531220614910126,
0.4448873698711395,
0.7613658308982849,
0.0009026206098496914,
0.30215367674827576,
-0.6942521929740906,
0.4284789264202118,
0.04708972945809364,
0.37098127603530884,
0.005493060685694218,
-0.5826030373573303,
-0.47652554512023926,
-0.24611730873584747,
0.2830559313297272,
0.46398162841796875,
-0.633199155330658,
1.0452337265014648,
-0.31911158561706543,
-0.8369701504707336,
-0.651502251625061,
0.12348413467407227,
0.16652260720729828,
0.5021668076515198,
0.39889469742774963,
-0.4895971417427063,
-0.5856866240501404,
-0.6437709927558899,
0.08578575402498245,
-0.3054395616054535,
0.18397849798202515,
0.44544827938079834,
0.7805431485176086,
-0.2869117856025696,
0.8387024402618408,
-0.6629717350006104,
-0.28261280059814453,
-0.28168046474456787,
-0.3493310213088989,
0.3720293641090393,
0.794501543045044,
0.687629759311676,
-0.8377121090888977,
-0.49411627650260925,
-0.2599567770957947,
-0.6952141523361206,
-0.07596539705991745,
-0.06684065610170364,
-0.26859548687934875,
0.005715712904930115,
0.14057542383670807,
-0.7301815152168274,
0.5476451516151428,
0.5179596543312073,
-0.7214471697807312,
0.5643841624259949,
0.07813693583011627,
-0.0059625194407999516,
-1.2635562419891357,
0.38601261377334595,
0.2711523771286011,
0.0010455718729645014,
-0.5739135146141052,
-0.21164293587207794,
-0.09612707048654556,
-0.007779849227517843,
-0.09406248480081558,
0.6031811833381653,
-0.3242347240447998,
0.3070809841156006,
0.16483885049819946,
0.07400163263082504,
0.12046236544847488,
0.4352979362010956,
-0.06419830769300461,
0.242635115981102,
1.0155375003814697,
-0.38512343168258667,
0.6859943270683289,
0.6389537453651428,
-0.21570460498332977,
0.852604866027832,
-0.8239476084709167,
0.04239725321531296,
-0.3186393082141876,
0.3933631479740143,
-0.8194477558135986,
-0.4969077408313751,
0.8280762434005737,
-0.6688829064369202,
0.39234596490859985,
-0.2280634492635727,
-0.5395452976226807,
-0.7716066241264343,
-0.6624437570571899,
0.1349087804555893,
0.5248773694038391,
-0.3814624547958374,
0.4384716749191284,
0.6078441739082336,
0.09429515153169632,
-0.3396000564098358,
-0.7766709923744202,
-0.12374851852655411,
-0.3669162392616272,
-0.8045763969421387,
0.39191561937332153,
-0.3565838932991028,
-0.1175818145275116,
0.18328538537025452,
0.07746511697769165,
0.12208089977502823,
-0.0020315260626375675,
0.3773616850376129,
0.3035523593425751,
0.10644445568323135,
-0.01298537664115429,
-0.12672194838523865,
-0.26118719577789307,
0.12469596415758133,
-0.1697641760110855,
0.2647811770439148,
-0.28713205456733704,
-0.13331471383571625,
-0.6764839887619019,
0.23627349734306335,
0.4506600797176361,
-0.2704610824584961,
0.6996248960494995,
0.764196515083313,
-0.21615856885910034,
-0.017828823998570442,
-0.45669761300086975,
-0.15098239481449127,
-0.4150635600090027,
0.06454088538885117,
-0.21925050020217896,
-0.5834529399871826,
0.9038127064704895,
0.23566187918186188,
0.11313621699810028,
0.6896253824234009,
0.46731239557266235,
-0.11981840431690216,
0.6606222987174988,
0.37925517559051514,
-0.28669875860214233,
0.5108137130737305,
-0.7260057926177979,
-0.21593205630779266,
-0.8668539524078369,
-0.4787771999835968,
-0.51849365234375,
-0.5461311936378479,
-0.830150306224823,
-0.4479101002216339,
0.1782563179731369,
0.12652848660945892,
-0.20961037278175354,
0.4747924208641052,
-0.9482560753822327,
0.2845880091190338,
0.3409249484539032,
0.29149073362350464,
-0.11640897393226624,
0.07157383859157562,
0.09174215793609619,
0.17656508088111877,
-0.5704252123832703,
-0.2480410784482956,
1.1554399728775024,
0.5218849778175354,
0.5948660969734192,
-0.05319869890809059,
0.8335184454917908,
0.06792832165956497,
0.17711275815963745,
-0.5312536954879761,
0.5103712677955627,
0.03744574263691902,
-0.4934937059879303,
-0.16945843398571014,
-0.47757065296173096,
-0.9365511536598206,
-0.15201187133789062,
-0.4548470973968506,
-0.7045055031776428,
0.5026431679725647,
0.13493500649929047,
-0.21804367005825043,
0.39010512828826904,
-0.6270662546157837,
0.8544981479644775,
-0.08021910488605499,
-0.42131945490837097,
0.25018802285194397,
-1.0463794469833374,
0.11791350692510605,
0.19924841821193695,
0.2569889426231384,
-0.40927812457084656,
0.054140523076057434,
1.0164960622787476,
-0.7999662756919861,
0.9164159893989563,
-0.3463590741157532,
0.14428798854351044,
0.5494012832641602,
-0.3061122000217438,
0.5044944286346436,
0.07625602185726166,
-0.2574840188026428,
0.32553333044052124,
0.03419053182005882,
-0.4529920220375061,
-0.4205482304096222,
0.6508601307868958,
-0.7415752410888672,
0.03434956446290016,
-0.3629375696182251,
-0.4479062855243683,
0.03941407799720764,
0.16478262841701508,
0.2637248635292053,
0.376070111989975,
0.023305291309952736,
0.12094482034444809,
0.4190601408481598,
-0.11528473347425461,
0.28638359904289246,
0.031694862991571426,
-0.08367560058832169,
-0.7331925630569458,
0.8835140466690063,
0.12770198285579681,
0.04756871610879898,
-0.031794946640729904,
0.4262307584285736,
-0.36531707644462585,
-0.14297771453857422,
-0.571701169013977,
0.49789664149284363,
-0.4253336191177368,
-0.3452262878417969,
-0.4989652633666992,
-0.17177747189998627,
-0.6199708580970764,
-0.18245451152324677,
-0.23011921346187592,
-0.5254908204078674,
-0.31859850883483887,
-0.2398965209722519,
1.0616458654403687,
0.49019569158554077,
-0.6677258610725403,
0.1299547404050827,
-0.5330119729042053,
0.3006310760974884,
-0.08148317039012909,
0.6475505232810974,
-0.056629713624715805,
-0.2798624336719513,
-0.22233469784259796,
0.07470708340406418,
-0.20284052193164825,
-0.6857430338859558,
0.2396119236946106,
-0.02534756064414978,
0.3792881369590759,
0.11750239878892899,
0.1159030944108963,
0.6851163506507874,
-0.07972333580255508,
0.6668572425842285,
0.3329741358757019,
-0.7617523670196533,
0.6835008263587952,
-0.4522053301334381,
0.13071280717849731,
0.7439132332801819,
0.37637218832969666,
-0.6388431787490845,
-0.13643521070480347,
-0.9696155190467834,
-0.8833428025245667,
0.7976456880569458,
0.4099900722503662,
0.043910447508096695,
0.2251623421907425,
0.5379446744918823,
-0.19508275389671326,
0.2522149980068207,
-0.6520394682884216,
-0.9045442342758179,
-0.3887040913105011,
-0.3760116398334503,
-0.09512587636709213,
-0.07453927397727966,
-0.25940194725990295,
-0.706433117389679,
0.8023132681846619,
-0.1106589138507843,
0.3307678997516632,
0.4255640506744385,
0.4334934651851654,
-0.24626679718494415,
-0.0323248952627182,
0.22568266093730927,
0.3874376118183136,
-0.25416067242622375,
-0.31255605816841125,
-0.19948557019233704,
-0.6356109976768494,
-0.09288366883993149,
0.5138906836509705,
-0.35930243134498596,
-0.07477306574583054,
0.3581078052520752,
0.9210688471794128,
-0.06764515489339828,
-0.26019376516342163,
0.5764469504356384,
-0.08937250822782516,
-0.39777055382728577,
-0.41125577688217163,
0.02226436138153076,
0.13686224818229675,
0.23370975255966187,
0.042905405163764954,
0.12283403426408768,
-0.13623946905136108,
-0.41204723715782166,
0.4054872393608093,
0.24621126055717468,
-0.383227676153183,
-0.48960307240486145,
0.6222231984138489,
0.10541660338640213,
-0.17978617548942566,
0.50040203332901,
-0.1350947618484497,
-0.5496819019317627,
0.7687641978263855,
0.1341361552476883,
0.831233024597168,
-0.14030642807483673,
0.3113700747489929,
0.7084482312202454,
0.2209538221359253,
-0.03878774121403694,
0.5519008636474609,
-0.1965092420578003,
-0.6705792546272278,
-0.04373569414019585,
-0.5545609593391418,
-0.1043364554643631,
0.0932736024260521,
-0.8373417258262634,
0.421428918838501,
-0.49607598781585693,
-0.23271924257278442,
0.06330734491348267,
0.37753474712371826,
-0.7330073714256287,
0.17191512882709503,
-0.05381147563457489,
1.0763877630233765,
-1.0793383121490479,
0.47533226013183594,
0.7191223502159119,
-0.650280237197876,
-1.2054306268692017,
-0.10610164701938629,
0.20078471302986145,
-0.6032936573028564,
0.15630939602851868,
0.1920326054096222,
0.4959028959274292,
-0.04500870779156685,
-0.8786976337432861,
-0.6259124875068665,
1.183702826499939,
0.03132979944348335,
-0.2476431131362915,
0.3064916729927063,
0.11469686031341553,
0.5875037312507629,
-0.3455096185207367,
0.3037461042404175,
0.6631717085838318,
0.691142201423645,
0.3147795796394348,
-0.7168936729431152,
0.27110183238983154,
-0.6310376524925232,
-0.2211623191833496,
0.08605096489191055,
-0.9906742572784424,
0.6159704327583313,
-0.1831238567829132,
-0.021323014050722122,
0.0021418577525764704,
0.5856778621673584,
0.44606927037239075,
0.3824100196361542,
0.46724462509155273,
0.7910507917404175,
0.8408791422843933,
-0.28057730197906494,
1.2379616498947144,
-0.2716656029224396,
0.6082693934440613,
0.7716600894927979,
0.007921237498521805,
0.5062934160232544,
0.27705687284469604,
-0.356775164604187,
0.581229031085968,
0.6202096939086914,
-0.4376241862773895,
0.2500891089439392,
0.3583829700946808,
-0.06087717041373253,
-0.06397270411252975,
-0.23826105892658234,
-0.5748317241668701,
0.30958065390586853,
0.20309077203273773,
-0.34088537096977234,
0.023526543751358986,
-0.07007741928100586,
0.34804749488830566,
-0.033521879464387894,
-0.28160926699638367,
0.6344510316848755,
0.045557111501693726,
-0.3343930244445801,
0.5311939716339111,
-0.1679205298423767,
0.6712872982025146,
-0.6156399846076965,
0.1256275624036789,
-0.09820021688938141,
0.13825558125972748,
-0.6327893733978271,
-1.1175127029418945,
0.3660706579685211,
-0.0769461840391159,
-0.2580193281173706,
-0.3388305604457855,
0.6919591426849365,
-0.4525546431541443,
-0.7907042503356934,
0.24014464020729065,
0.19624711573123932,
0.3354997932910919,
0.20356746017932892,
-1.281770944595337,
0.5832234025001526,
0.16772742569446564,
-0.44601529836654663,
0.08962435275316238,
0.4820561110973358,
0.17375780642032623,
0.5459479093551636,
0.6926383376121521,
0.29234886169433594,
-0.25259387493133545,
0.06859376281499863,
1.0755023956298828,
-0.5705906748771667,
-0.4942699074745178,
-0.768505871295929,
0.9060183763504028,
-0.36577507853507996,
-0.3978511691093445,
0.7033730745315552,
0.7766035795211792,
0.8728447556495667,
0.043781109154224396,
0.8214944005012512,
-0.6840127110481262,
0.6678358316421509,
-0.21696482598781586,
0.9349921941757202,
-0.6937875151634216,
-0.04771708697080612,
-0.7333234548568726,
-0.5092911720275879,
-0.408332496881485,
0.6908375024795532,
-0.14241772890090942,
0.21190382540225983,
0.2893962562084198,
0.9185208678245544,
0.02813875488936901,
0.1266132891178131,
-0.2693656086921692,
0.29242366552352905,
0.3026609718799591,
0.5746341943740845,
0.40313661098480225,
-0.8921536207199097,
0.3347187638282776,
-0.753323495388031,
-0.31110528111457825,
0.0638618916273117,
-0.8467914462089539,
-0.8997985124588013,
-0.9702367782592773,
-0.6795694231987,
-0.8220893740653992,
-0.299355149269104,
1.0942519903182983,
0.7179916501045227,
-0.7105162739753723,
-0.2777958810329437,
0.0721437856554985,
0.2491835504770279,
-0.11353170871734619,
-0.31306323409080505,
0.6958661675453186,
0.419776052236557,
-0.5820945501327515,
-0.11538276076316833,
-0.01082852017134428,
0.25990885496139526,
0.05109041929244995,
-0.16443663835525513,
-0.12253917753696442,
-0.30663642287254333,
0.34294021129608154,
0.5026504993438721,
-0.31327614188194275,
-0.11813661456108093,
-0.27358463406562805,
0.051715653389692307,
0.20839600265026093,
0.4660387933254242,
-0.5634949803352356,
0.19431282579898834,
0.6084099411964417,
0.293647438287735,
0.46279177069664,
0.22076290845870972,
0.010217403993010521,
-0.519429087638855,
0.10057364404201508,
0.01100206933915615,
0.3200147747993469,
0.4094609022140503,
-0.46769243478775024,
0.7728342413902283,
0.5755526423454285,
-0.5010767579078674,
-0.8108421564102173,
-0.1301063895225525,
-1.319944143295288,
0.10836005210876465,
1.0547186136245728,
0.04905468225479126,
-0.5427644848823547,
0.060637082904577255,
-0.2042444497346878,
0.08614271134138107,
-0.5638198256492615,
0.45679914951324463,
0.49152225255966187,
-0.14844974875450134,
0.09508689492940903,
-0.30704501271247864,
0.6253087520599365,
-0.049728114157915115,
-0.9570465087890625,
0.1948467642068863,
0.44233834743499756,
0.4454132318496704,
0.3062266707420349,
0.8443498015403748,
-0.24431386590003967,
0.059753239154815674,
-0.06291186809539795,
0.2918873131275177,
-0.2840002775192261,
0.006923985201865435,
-0.3789280951023102,
-0.1650051474571228,
-0.4346984028816223,
-0.2485453337430954
]
|
huggingartists/andre-3000 | huggingartists | 2022-10-25T09:23:12Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/andre-3000"
## 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.907585 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('https://images.genius.com/64b15c9489c65f5bf8f6577334347404.434x434x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/andre-3000">
<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">André 3000</div>
<a href="https://genius.com/artists/andre-3000">
<div style="text-align: center; font-size: 14px;">@andre-3000</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/andre-3000).
### 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/andre-3000")
```
## 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|
|------:|---------:|---:|
|338| -| -|
'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/andre-3000")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6771466732025146,
-0.49636581540107727,
0.11323820799589157,
0.2923662066459656,
-0.17716199159622192,
0.007956882938742638,
-0.2622317671775818,
-0.4602300524711609,
0.8686568737030029,
0.303460955619812,
-0.8874899744987488,
-0.8067064881324768,
-0.5828567147254944,
0.1851138472557068,
-0.08420368283987045,
1.2499980926513672,
-0.2293461114168167,
-0.3469858765602112,
-0.31183087825775146,
-0.27981308102607727,
-0.2952282130718231,
-0.2552407681941986,
-0.3678813576698303,
-0.36678534746170044,
0.41250312328338623,
0.518990159034729,
0.6948389410972595,
0.9307555556297302,
0.48543521761894226,
0.34859699010849,
-0.02844124473631382,
-0.013957761228084564,
-0.36614280939102173,
-0.14295922219753265,
0.18591441214084625,
-0.24265092611312866,
-0.7330479621887207,
0.24156394600868225,
0.5529698729515076,
0.40340349078178406,
-0.06149732694029808,
0.4679332673549652,
0.046622421592473984,
0.8628197908401489,
-0.2870306372642517,
0.4739096760749817,
-0.18982507288455963,
-0.17149874567985535,
-0.30706530809402466,
0.012780851684510708,
0.17201994359493256,
-0.585488498210907,
-0.02231082320213318,
-0.7873276472091675,
0.0070517524145543575,
0.024973353371024132,
1.0496139526367188,
0.02691471017897129,
0.1119668036699295,
-0.1877347081899643,
-0.1824537217617035,
0.5307513475418091,
-0.5604661703109741,
-0.00025234598433598876,
0.6032719016075134,
0.16150344908237457,
0.05628166347742081,
-0.6145966649055481,
-0.6590945720672607,
0.11327093839645386,
-0.141211599111557,
0.29475268721580505,
-0.23921020328998566,
-0.3101659417152405,
0.511648416519165,
0.5356308221817017,
-0.5399011969566345,
-0.2585269808769226,
-0.5592248439788818,
-0.119418665766716,
1.1742585897445679,
0.09963544458150864,
0.4362659752368927,
-0.4465498626232147,
-0.21167971193790436,
-0.42349743843078613,
-0.29336410760879517,
0.2633519172668457,
0.5876258015632629,
0.39823880791664124,
-0.9858457446098328,
0.622146725654602,
-0.20083147287368774,
0.5530198812484741,
0.11133242398500443,
-0.01902676932513714,
0.8055092692375183,
-0.32480674982070923,
-0.12317490577697754,
-0.14193402230739594,
1.0920885801315308,
0.660413920879364,
0.27038976550102234,
0.09934834390878677,
-0.06869993358850479,
-0.0019346335902810097,
-0.19070765376091003,
-0.845564603805542,
-0.41747763752937317,
0.6779892444610596,
-0.5543800592422485,
-0.5376489758491516,
0.1253834217786789,
-0.999638020992279,
-0.20352570712566376,
-0.3053431212902069,
0.3181508481502533,
-0.4139612913131714,
-0.4822317063808441,
0.184625044465065,
-0.28444045782089233,
0.13692131638526917,
0.08304011821746826,
-0.5790523886680603,
0.19059643149375916,
0.5378084182739258,
0.7515535354614258,
0.24713550508022308,
-0.3028869032859802,
-0.31569671630859375,
-0.12484629452228546,
-0.09727068990468979,
0.7098273634910583,
-0.32584255933761597,
-0.34342581033706665,
-0.11526814848184586,
0.33738502860069275,
-0.06880182772874832,
-0.29631757736206055,
0.8726437091827393,
-0.000013255001249490306,
0.17290781438350677,
-0.5690199136734009,
-0.4582670331001282,
0.021119000390172005,
0.2645242512226105,
-0.7677714228630066,
1.0375056266784668,
0.3050350844860077,
-0.9963440895080566,
0.1883237361907959,
-0.8282592296600342,
-0.29248684644699097,
0.07841967791318893,
0.04920291155576706,
-0.7888917326927185,
-0.24111764132976532,
0.22413837909698486,
0.7240176200866699,
-0.2905513048171997,
-0.03201925754547119,
-0.6372988820075989,
-0.10313063114881516,
0.33823031187057495,
0.28413447737693787,
1.1537405252456665,
0.15421371161937714,
-0.1068187952041626,
0.06508073210716248,
-0.9614280462265015,
0.12566518783569336,
0.43558311462402344,
-0.15164287388324738,
-0.0970078781247139,
-0.2512866258621216,
0.40885424613952637,
0.25570932030677795,
0.05108294263482094,
-0.6146923899650574,
0.43086549639701843,
-0.14492642879486084,
0.42674222588539124,
0.7521069645881653,
0.017804734408855438,
0.30409783124923706,
-0.6824055910110474,
0.43977662920951843,
0.01874099299311638,
0.32015660405158997,
-0.018585877493023872,
-0.5667999982833862,
-0.46220895648002625,
-0.3039693236351013,
0.33444154262542725,
0.5068365335464478,
-0.6769939064979553,
0.9551530480384827,
-0.373261034488678,
-0.8067672252655029,
-0.621485710144043,
0.126257985830307,
0.18834352493286133,
0.4818408191204071,
0.3822380006313324,
-0.43099117279052734,
-0.5938056707382202,
-0.6736012101173401,
0.07289261370897293,
-0.23491933941841125,
0.12153024226427078,
0.43438833951950073,
0.8561830520629883,
-0.2471250742673874,
0.8316417336463928,
-0.7017388939857483,
-0.29056158661842346,
-0.2556148171424866,
-0.2998582720756531,
0.33944448828697205,
0.8412109017372131,
0.7056763172149658,
-0.8086779117584229,
-0.5161348581314087,
-0.26224231719970703,
-0.7216418981552124,
-0.10776061564683914,
-0.015008176676928997,
-0.26262807846069336,
-0.046136051416397095,
0.17638689279556274,
-0.682526171207428,
0.5467914342880249,
0.45788827538490295,
-0.6395722031593323,
0.5387499928474426,
0.05605756863951683,
0.03380407765507698,
-1.272976279258728,
0.38287582993507385,
0.26644790172576904,
-0.011505607515573502,
-0.5841563940048218,
-0.2398248165845871,
-0.06267164647579193,
-0.020208224654197693,
-0.08788398653268814,
0.6576643586158752,
-0.32731014490127563,
0.300270676612854,
0.14223256707191467,
0.09395095705986023,
0.07595234364271164,
0.43791353702545166,
-0.08139806240797043,
0.28551825881004333,
0.9981762766838074,
-0.38497987389564514,
0.6838451623916626,
0.6153027415275574,
-0.22070202231407166,
0.8955345749855042,
-0.8287240862846375,
0.04529884457588196,
-0.3024119436740875,
0.40731164813041687,
-0.832595944404602,
-0.5956682562828064,
0.7990263104438782,
-0.7373592257499695,
0.4176591634750366,
-0.24146252870559692,
-0.5833163261413574,
-0.7740796804428101,
-0.6801707744598389,
0.18336591124534607,
0.5244376063346863,
-0.3464016020298004,
0.39833784103393555,
0.5863803029060364,
0.09146028757095337,
-0.35441699624061584,
-0.765328049659729,
-0.13632775843143463,
-0.409032940864563,
-0.8193756937980652,
0.40187394618988037,
-0.3753226101398468,
-0.12124060839414597,
0.14431865513324738,
0.12051686644554138,
0.13134652376174927,
-0.02974209189414978,
0.37323516607284546,
0.2956364154815674,
0.13039268553256989,
0.012015421874821186,
-0.11113229393959045,
-0.2592211961746216,
0.07543869316577911,
-0.2568589150905609,
0.2681078612804413,
-0.27613404393196106,
-0.10104145854711533,
-0.6988028287887573,
0.21244294941425323,
0.44369953870773315,
-0.23942376673221588,
0.6860299110412598,
0.7994811534881592,
-0.2548203468322754,
-0.0034114804584532976,
-0.48910507559776306,
-0.15024161338806152,
-0.4186893105506897,
0.039129819720983505,
-0.24596437811851501,
-0.6029064059257507,
0.9444100260734558,
0.19111856818199158,
0.05618510767817497,
0.6858989596366882,
0.4501413404941559,
-0.08497709035873413,
0.692020058631897,
0.3784867525100708,
-0.27180060744285583,
0.5029208660125732,
-0.694086492061615,
-0.24989871680736542,
-0.9071581959724426,
-0.42905235290527344,
-0.5137094855308533,
-0.510286808013916,
-0.8823229670524597,
-0.4294927418231964,
0.21737538278102875,
0.11802028119564056,
-0.27513694763183594,
0.4774859547615051,
-0.8993911147117615,
0.2889567017555237,
0.334695965051651,
0.261893093585968,
-0.12141621857881546,
0.09111064672470093,
0.08239035308361053,
0.1757310926914215,
-0.5498105883598328,
-0.2728639841079712,
1.185416340827942,
0.4933358132839203,
0.5379505157470703,
-0.07347540557384491,
0.820517897605896,
0.06621277332305908,
0.2651900351047516,
-0.49350279569625854,
0.4994138479232788,
0.06825029104948044,
-0.5443053245544434,
-0.16282422840595245,
-0.508145809173584,
-0.9297540187835693,
-0.1650809794664383,
-0.40133506059646606,
-0.756686806678772,
0.5075231790542603,
0.12160593271255493,
-0.26573750376701355,
0.38686639070510864,
-0.6087290048599243,
0.8596588969230652,
-0.012519986368715763,
-0.4758960008621216,
0.3139677941799164,
-1.025595784187317,
0.14770826697349548,
0.1830788105726242,
0.32313427329063416,
-0.4139445424079895,
0.024555588141083717,
1.0366878509521484,
-0.7952502965927124,
0.8527926206588745,
-0.36805957555770874,
0.14168208837509155,
0.5461453795433044,
-0.2995566427707672,
0.4856152832508087,
0.17022496461868286,
-0.27283045649528503,
0.29255160689353943,
0.033813513815402985,
-0.5220992565155029,
-0.39800265431404114,
0.6839367151260376,
-0.7745192050933838,
0.07137832790613174,
-0.3675336539745331,
-0.45693856477737427,
-0.0064689298160374165,
0.1743154674768448,
0.30417582392692566,
0.3783018887042999,
0.027062123641371727,
0.09666131436824799,
0.49117007851600647,
-0.1651451587677002,
0.30611488223075867,
0.04380013048648834,
-0.11091841757297516,
-0.8199338316917419,
0.9133633971214294,
0.15081121027469635,
0.052286457270383835,
0.0027095021214336157,
0.37508445978164673,
-0.2965771555900574,
-0.12038817256689072,
-0.6386463046073914,
0.478307843208313,
-0.3914545178413391,
-0.4079819619655609,
-0.5105063915252686,
-0.1249067485332489,
-0.6400819420814514,
-0.1872601956129074,
-0.248077392578125,
-0.5056565403938293,
-0.2977367043495178,
-0.21965597569942474,
1.0464727878570557,
0.45266273617744446,
-0.7126811146736145,
0.1460651308298111,
-0.519489049911499,
0.2579176127910614,
-0.016375863924622536,
0.6442005038261414,
-0.07828676700592041,
-0.31530043482780457,
-0.19409215450286865,
0.08316070586442947,
-0.1972200870513916,
-0.7101889848709106,
0.29068687558174133,
-0.014969811774790287,
0.32594746351242065,
0.15171410143375397,
0.09702436625957489,
0.6932427883148193,
-0.08440473675727844,
0.6022085547447205,
0.26108479499816895,
-0.7868274450302124,
0.672029435634613,
-0.5671396255493164,
0.19566130638122559,
0.7579693794250488,
0.4026484489440918,
-0.6126498579978943,
-0.11645865440368652,
-0.9470344185829163,
-0.853472113609314,
0.817598819732666,
0.45592251420021057,
0.0659143328666687,
0.21733222901821136,
0.5647761821746826,
-0.1943412870168686,
0.26113665103912354,
-0.672444224357605,
-0.8771061301231384,
-0.3687748908996582,
-0.33383703231811523,
-0.039826735854148865,
-0.048226747661828995,
-0.277278870344162,
-0.7028890252113342,
0.8006843328475952,
-0.12008881568908691,
0.3745132386684418,
0.43779534101486206,
0.44972896575927734,
-0.23485803604125977,
-0.02197849191725254,
0.2980286180973053,
0.3921886384487152,
-0.2823818027973175,
-0.2993168830871582,
-0.1574799120426178,
-0.6216464042663574,
-0.11694531887769699,
0.5293125510215759,
-0.3423959016799927,
-0.10974260419607162,
0.3611476421356201,
0.8690497875213623,
-0.07002541422843933,
-0.2524614930152893,
0.5828341841697693,
-0.06578859686851501,
-0.4325989782810211,
-0.42978939414024353,
-0.034578125923871994,
0.13251887261867523,
0.2110251784324646,
0.09677687287330627,
0.11581984162330627,
-0.1258488893508911,
-0.41210123896598816,
0.4269365668296814,
0.23718087375164032,
-0.41851744055747986,
-0.5154143571853638,
0.6420658826828003,
0.06023132801055908,
-0.10259860008955002,
0.49415767192840576,
-0.21591141819953918,
-0.5640863180160522,
0.7598158121109009,
0.09250054508447647,
0.8359743356704712,
-0.15025095641613007,
0.32465577125549316,
0.7498188614845276,
0.20205019414424896,
-0.04711378738284111,
0.5378672480583191,
-0.2071286290884018,
-0.6566280722618103,
-0.10145711898803711,
-0.5974218845367432,
-0.06369487196207047,
0.09611809998750687,
-0.821546196937561,
0.42642873525619507,
-0.45751139521598816,
-0.19301603734493256,
0.07387842983007431,
0.3662645220756531,
-0.7316946983337402,
0.18912866711616516,
-0.06677670031785965,
1.0533276796340942,
-1.053229570388794,
0.4984264671802521,
0.7033878564834595,
-0.6756498217582703,
-1.1838788986206055,
-0.13101260364055634,
0.20010095834732056,
-0.6231356263160706,
0.21907871961593628,
0.16726410388946533,
0.5275242924690247,
-0.01890576258301735,
-0.9424560070037842,
-0.6472253203392029,
1.185907006263733,
0.0627594143152237,
-0.2116052359342575,
0.36339491605758667,
0.11218234896659851,
0.6101533770561218,
-0.3676915466785431,
0.3300463855266571,
0.5980979204177856,
0.731192946434021,
0.3575288951396942,
-0.7206524014472961,
0.27143311500549316,
-0.6257556676864624,
-0.2558877468109131,
0.09869403392076492,
-1.0239982604980469,
0.6062381267547607,
-0.17423999309539795,
-0.02260158397257328,
0.019740084186196327,
0.6058310270309448,
0.44314637780189514,
0.4308728277683258,
0.42208415269851685,
0.8187741637229919,
0.7677373290061951,
-0.33298352360725403,
1.241318941116333,
-0.26551562547683716,
0.6252100467681885,
0.7495623826980591,
0.011631297878921032,
0.49336346983909607,
0.22543179988861084,
-0.3563830554485321,
0.5511178970336914,
0.6497281789779663,
-0.4297056198120117,
0.25006425380706787,
0.422554612159729,
-0.0841093510389328,
-0.09837798774242401,
-0.2010866105556488,
-0.5878543853759766,
0.27552932500839233,
0.18636125326156616,
-0.29588010907173157,
0.013924229890108109,
0.026006879284977913,
0.45519211888313293,
-0.04660631716251373,
-0.27252575755119324,
0.6373297572135925,
0.021358132362365723,
-0.3628057539463043,
0.510409951210022,
-0.17459212243556976,
0.6419340968132019,
-0.5847417712211609,
0.1317279040813446,
-0.12409649789333344,
0.12719674408435822,
-0.6102359294891357,
-1.0580823421478271,
0.3621745705604553,
-0.08559874445199966,
-0.22375015914440155,
-0.38120901584625244,
0.6908809542655945,
-0.4342522919178009,
-0.7793382406234741,
0.21633541584014893,
0.21053475141525269,
0.3471828103065491,
0.15617820620536804,
-1.2282931804656982,
0.5815605521202087,
0.14899444580078125,
-0.46248316764831543,
0.1387207955121994,
0.5192916393280029,
0.17589038610458374,
0.5485173463821411,
0.6652281284332275,
0.2706061899662018,
-0.27786916494369507,
0.03503241389989853,
1.0738383531570435,
-0.5183027982711792,
-0.40071648359298706,
-0.7546166777610779,
0.8826612234115601,
-0.3961867392063141,
-0.4128718674182892,
0.702321469783783,
0.8070273995399475,
0.9159992933273315,
0.003197611076757312,
0.8161986470222473,
-0.6731980443000793,
0.6545878648757935,
-0.1739208847284317,
0.9365065693855286,
-0.7165066599845886,
-0.019428439438343048,
-0.7453372478485107,
-0.5328329205513,
-0.4422755837440491,
0.6539497971534729,
-0.20027947425842285,
0.2517760992050171,
0.258783221244812,
0.8791145086288452,
0.05031581595540047,
0.07874403148889542,
-0.2385224997997284,
0.27469107508659363,
0.29496288299560547,
0.5390153527259827,
0.3578294813632965,
-0.9246390461921692,
0.3678969740867615,
-0.7174931168556213,
-0.3477160930633545,
0.061112917959690094,
-0.8263790607452393,
-0.8567851781845093,
-0.9690269827842712,
-0.7123687267303467,
-0.7884202003479004,
-0.262035995721817,
1.0349997282028198,
0.7331995368003845,
-0.7143639922142029,
-0.2698403298854828,
0.04486876353621483,
0.2632632553577423,
-0.07224176824092865,
-0.31960543990135193,
0.6880649924278259,
0.3894805312156677,
-0.6613110899925232,
-0.16685838997364044,
0.041857343167066574,
0.23592013120651245,
0.08764130622148514,
-0.09574250131845474,
-0.14774271845817566,
-0.23097890615463257,
0.3238341212272644,
0.5412098169326782,
-0.25955286622047424,
-0.144749253988266,
-0.24495798349380493,
0.06960222870111465,
0.17244501411914825,
0.44007357954978943,
-0.5591484308242798,
0.2205638587474823,
0.6417102217674255,
0.24585558474063873,
0.47063297033309937,
0.18916592001914978,
0.046720393002033234,
-0.5034193396568298,
0.05585338920354843,
-0.022627342492341995,
0.3176947832107544,
0.3845330774784088,
-0.3942326307296753,
0.8119983673095703,
0.5749861001968384,
-0.5670393109321594,
-0.8263181447982788,
-0.1342175304889679,
-1.3395839929580688,
0.12305053323507309,
1.0571116209030151,
0.013932309113442898,
-0.5271852016448975,
0.07235967367887497,
-0.205312117934227,
0.11585907638072968,
-0.5858246684074402,
0.44586053490638733,
0.538971483707428,
-0.15692850947380066,
0.12173790484666824,
-0.4249233305454254,
0.6592262387275696,
-0.040587056428194046,
-0.9840899109840393,
0.15583671629428864,
0.4281103312969208,
0.45772653818130493,
0.33286359906196594,
0.7794154286384583,
-0.28176140785217285,
0.054987795650959015,
-0.07475558668375015,
0.31656041741371155,
-0.24285858869552612,
0.06238173693418503,
-0.3194795548915863,
-0.107305146753788,
-0.49841004610061646,
-0.23897451162338257
]
|
huggingartists/architects | huggingartists | 2022-10-25T09:23:24Z | 260 | 1 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/architects"
## 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.189248 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('https://images.genius.com/d2cd8787bdf913fc1518987f971c6bd3.960x960x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/architects">
<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">Architects</div>
<a href="https://genius.com/artists/architects">
<div style="text-align: center; font-size: 14px;">@architects</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/architects).
### 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/architects")
```
## 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/architects")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6112050414085388,
-0.5212306976318359,
0.08760065585374832,
0.26741456985473633,
-0.22306936979293823,
0.0039080181159079075,
-0.27628228068351746,
-0.44281652569770813,
0.833424985408783,
0.33075469732284546,
-0.8688222169876099,
-0.8732846975326538,
-0.524980366230011,
0.11653482168912888,
-0.07141341269016266,
1.2096136808395386,
-0.19504821300506592,
-0.3661479949951172,
-0.3535105288028717,
-0.23825788497924805,
-0.3047482669353485,
-0.27820828557014465,
-0.29416126012802124,
-0.34288719296455383,
0.31285420060157776,
0.4874829351902008,
0.7476773858070374,
0.9426186084747314,
0.5154486894607544,
0.3447849154472351,
-0.101407490670681,
0.0036071348004043102,
-0.3263635039329529,
-0.1386370062828064,
0.18367157876491547,
-0.2834072709083557,
-0.7075875997543335,
0.22248858213424683,
0.5329856276512146,
0.4371049702167511,
-0.09268071502447128,
0.4964829683303833,
0.058769579976797104,
0.868683934211731,
-0.27205246686935425,
0.536834716796875,
-0.2326129823923111,
-0.16565963625907898,
-0.31649816036224365,
0.017510727047920227,
0.1971816122531891,
-0.5708315968513489,
-0.042672283947467804,
-0.7380222678184509,
0.05006890743970871,
0.029774827882647514,
0.9948407411575317,
0.10651235282421112,
0.15082579851150513,
-0.1887889951467514,
-0.1700776219367981,
0.4841401278972626,
-0.5939838886260986,
0.0006531757535412908,
0.560589611530304,
0.15073846280574799,
0.04648354649543762,
-0.6110660433769226,
-0.6112415790557861,
0.08522485196590424,
-0.17465947568416595,
0.29857760667800903,
-0.15025553107261658,
-0.30700209736824036,
0.5081985592842102,
0.5548207759857178,
-0.5530579686164856,
-0.24693253636360168,
-0.5548684000968933,
-0.09921728819608688,
1.185685634613037,
0.1775355190038681,
0.4027390480041504,
-0.5182806253433228,
-0.2298016995191574,
-0.40371257066726685,
-0.27501949667930603,
0.34529420733451843,
0.5659283995628357,
0.43371346592903137,
-1.0196057558059692,
0.607252299785614,
-0.1767941117286682,
0.5620324611663818,
0.10849884152412415,
-0.017278043553233147,
0.8095805048942566,
-0.39398160576820374,
-0.10749492794275284,
-0.12298936396837234,
1.0374460220336914,
0.6600619554519653,
0.1651238203048706,
0.09469675272703171,
-0.07181516289710999,
0.05380680412054062,
-0.12528742849826813,
-0.7942460775375366,
-0.43765491247177124,
0.6839838624000549,
-0.6104469895362854,
-0.577747106552124,
0.1459132581949234,
-0.9945183992385864,
-0.21902969479560852,
-0.30869728326797485,
0.23465895652770996,
-0.3487280309200287,
-0.5577074289321899,
0.19087396562099457,
-0.29816198348999023,
0.15919972956180573,
0.035837478935718536,
-0.592113196849823,
0.19761668145656586,
0.6079068779945374,
0.7674582004547119,
0.22216609120368958,
-0.307626873254776,
-0.23518095910549164,
-0.1858806610107422,
-0.13586825132369995,
0.6965133547782898,
-0.3243086338043213,
-0.3764688968658447,
-0.1437927782535553,
0.2769899368286133,
-0.07295882701873779,
-0.3037084639072418,
0.8977221250534058,
0.058288637548685074,
0.17685258388519287,
-0.5272955894470215,
-0.4183683395385742,
0.008228003978729248,
0.2912582755088806,
-0.7686458826065063,
1.078031301498413,
0.3469744622707367,
-1.0092939138412476,
0.15957370400428772,
-0.8352230191230774,
-0.3021995723247528,
0.06863436847925186,
0.031881824135780334,
-0.7963367700576782,
-0.1701720952987671,
0.18204975128173828,
0.7031776309013367,
-0.3128635883331299,
-0.011361462064087391,
-0.5838754773139954,
-0.11108297854661942,
0.31091174483299255,
0.2682851552963257,
1.1910213232040405,
0.13218528032302856,
-0.13756418228149414,
0.0846896767616272,
-0.9691932797431946,
0.12079332768917084,
0.4539479911327362,
-0.199614480137825,
-0.10761251300573349,
-0.1964254081249237,
0.39488622546195984,
0.2881421148777008,
0.08237041532993317,
-0.5885331034660339,
0.3937438726425171,
-0.21417783200740814,
0.44021016359329224,
0.7405378818511963,
-0.016289999708533287,
0.32487568259239197,
-0.6683555841445923,
0.4051535725593567,
0.061034493148326874,
0.3776874542236328,
-0.007126668468117714,
-0.5802467465400696,
-0.4536786675453186,
-0.2539607584476471,
0.28164470195770264,
0.47347351908683777,
-0.6838697791099548,
0.9825531244277954,
-0.37073418498039246,
-0.8690842986106873,
-0.6410783529281616,
0.13165010511875153,
0.19575023651123047,
0.5412256717681885,
0.3769191801548004,
-0.4257572293281555,
-0.5919344425201416,
-0.6430947184562683,
0.0817754790186882,
-0.2821969985961914,
0.1750679314136505,
0.46182212233543396,
0.8276379108428955,
-0.23930540680885315,
0.8372424244880676,
-0.7122635841369629,
-0.2761523425579071,
-0.2535908818244934,
-0.3165612816810608,
0.4075104892253876,
0.7884534001350403,
0.7005537152290344,
-0.8768343329429626,
-0.49029847979545593,
-0.2735157310962677,
-0.7049292325973511,
-0.09884466230869293,
-0.04936658963561058,
-0.26129236817359924,
0.005585266277194023,
0.14193806052207947,
-0.7460556626319885,
0.5437188744544983,
0.486735999584198,
-0.6700533032417297,
0.5888581275939941,
0.08514714241027832,
-0.04219900444149971,
-1.3052027225494385,
0.38259264826774597,
0.23064416646957397,
0.06370881199836731,
-0.5834407210350037,
-0.18061122298240662,
-0.06285888701677322,
-0.05162935331463814,
-0.11493322253227234,
0.6567338705062866,
-0.37487807869911194,
0.2869845926761627,
0.14955393970012665,
0.051834311336278915,
0.11466792225837708,
0.47115737199783325,
-0.045793648809194565,
0.26166653633117676,
1.014068365097046,
-0.3917172849178314,
0.6786824464797974,
0.648087739944458,
-0.26219359040260315,
0.8290748000144958,
-0.8055171370506287,
0.03527281805872917,
-0.27482524514198303,
0.39840471744537354,
-0.8458247780799866,
-0.531620979309082,
0.8193491101264954,
-0.696645975112915,
0.3839254677295685,
-0.22214357554912567,
-0.5533978343009949,
-0.8211848735809326,
-0.7050340175628662,
0.1439964920282364,
0.5129400491714478,
-0.37861257791519165,
0.4608878791332245,
0.5872822403907776,
0.08943156898021698,
-0.3714645504951477,
-0.7765040993690491,
-0.14349524676799774,
-0.36834442615509033,
-0.8507858514785767,
0.432280033826828,
-0.36255598068237305,
-0.14386723935604095,
0.18238434195518494,
0.09681101888418198,
0.11025568842887878,
0.03649480640888214,
0.4243016242980957,
0.3314862847328186,
0.06788569688796997,
-0.001331829815171659,
-0.1552216112613678,
-0.25155115127563477,
0.13242876529693604,
-0.1970764398574829,
0.27010127902030945,
-0.28219205141067505,
-0.14778800308704376,
-0.6354593634605408,
0.20213644206523895,
0.46733400225639343,
-0.28368183970451355,
0.6703814268112183,
0.7527536749839783,
-0.2528182566165924,
-0.025522978976368904,
-0.4854635000228882,
-0.10464803874492645,
-0.41419723629951477,
0.04993423447012901,
-0.2516879439353943,
-0.5693215131759644,
0.9646438360214233,
0.20248514413833618,
0.13747650384902954,
0.6961032152175903,
0.4710127115249634,
-0.0737830176949501,
0.6416841149330139,
0.35146400332450867,
-0.2876059114933014,
0.5004683136940002,
-0.6997367739677429,
-0.20836038887500763,
-0.9033701419830322,
-0.4634781777858734,
-0.5362851619720459,
-0.5087184309959412,
-0.851129949092865,
-0.45213305950164795,
0.18791817128658295,
0.11414729058742523,
-0.20900140702724457,
0.45333990454673767,
-0.9482579231262207,
0.26314741373062134,
0.3263797163963318,
0.27747437357902527,
-0.12566351890563965,
0.06231113150715828,
0.10351783037185669,
0.19984880089759827,
-0.5862944722175598,
-0.24166709184646606,
1.1592869758605957,
0.4940984845161438,
0.5689594149589539,
-0.08414577692747116,
0.8443264961242676,
0.027593910694122314,
0.21000094711780548,
-0.5263016223907471,
0.47893860936164856,
0.023298444226384163,
-0.5190707445144653,
-0.15353085100650787,
-0.49247753620147705,
-0.8932228088378906,
-0.14281250536441803,
-0.4099307358264923,
-0.6415659189224243,
0.5146961808204651,
0.10421530157327652,
-0.26955240964889526,
0.40892502665519714,
-0.6133216619491577,
0.8510894775390625,
-0.07755132764577866,
-0.44811150431632996,
0.2753487229347229,
-1.0200417041778564,
0.15584616363048553,
0.19556057453155518,
0.29685693979263306,
-0.3890117108821869,
0.044368479400873184,
0.961575448513031,
-0.7693535089492798,
0.9166542887687683,
-0.38035455346107483,
0.17080536484718323,
0.5932336449623108,
-0.3154875338077545,
0.47756659984588623,
0.09963461011648178,
-0.31164753437042236,
0.35663318634033203,
0.0007444395450875163,
-0.45547810196876526,
-0.42240893840789795,
0.6376544237136841,
-0.7320923209190369,
-0.0006614291341975331,
-0.34151726961135864,
-0.4521174728870392,
0.06157226115465164,
0.1500452160835266,
0.26547518372535706,
0.3873731195926666,
-0.01605948992073536,
0.15679046511650085,
0.4335557222366333,
-0.14712627232074738,
0.29776352643966675,
0.04630415141582489,
-0.051048196852207184,
-0.7519806623458862,
0.8924201726913452,
0.17357906699180603,
0.02496442012488842,
-0.005914922803640366,
0.4253236949443817,
-0.36800989508628845,
-0.16607578098773956,
-0.5967620015144348,
0.4440174400806427,
-0.3970547616481781,
-0.39152786135673523,
-0.4977938234806061,
-0.19710123538970947,
-0.6514529585838318,
-0.17553696036338806,
-0.23695039749145508,
-0.5115090608596802,
-0.32219070196151733,
-0.22991032898426056,
1.0037370920181274,
0.4573661983013153,
-0.6740580201148987,
0.09784628450870514,
-0.527946949005127,
0.25651487708091736,
-0.06974217295646667,
0.6491536498069763,
-0.07789887487888336,
-0.29392001032829285,
-0.2172781080007553,
0.08046016842126846,
-0.17079757153987885,
-0.6540058851242065,
0.25767782330513,
-0.04301085323095322,
0.4092359244823456,
0.10879343003034592,
0.13699355721473694,
0.6343053579330444,
-0.07730678468942642,
0.6633341908454895,
0.24940256774425507,
-0.7535696625709534,
0.6801044940948486,
-0.5171362161636353,
0.16925497353076935,
0.7252686619758606,
0.3571857213973999,
-0.5963046550750732,
-0.08856889605522156,
-0.980643630027771,
-0.878309428691864,
0.7877805829048157,
0.3879757821559906,
0.08903533220291138,
0.21214450895786285,
0.5673828721046448,
-0.21144355833530426,
0.2607855796813965,
-0.6209200024604797,
-0.8488221764564514,
-0.41941556334495544,
-0.3477579951286316,
-0.020514287054538727,
-0.09541966766119003,
-0.26776179671287537,
-0.6649292707443237,
0.7681695222854614,
-0.11642148345708847,
0.32824012637138367,
0.40245726704597473,
0.42360299825668335,
-0.20574243366718292,
-0.013908940367400646,
0.2878589332103729,
0.4004518389701843,
-0.25812748074531555,
-0.28524965047836304,
-0.16294050216674805,
-0.5980504751205444,
-0.1587068736553192,
0.49466991424560547,
-0.33923301100730896,
-0.0835493803024292,
0.336698979139328,
0.8860130906105042,
-0.04711541160941124,
-0.21645568311214447,
0.5838975310325623,
-0.04536084830760956,
-0.4311041831970215,
-0.41431668400764465,
0.003289361484348774,
0.16576433181762695,
0.23438768088817596,
0.055388640612363815,
0.12767894566059113,
-0.1223176047205925,
-0.4051116108894348,
0.3916398286819458,
0.2503298819065094,
-0.3435816466808319,
-0.48838603496551514,
0.6206359267234802,
0.11595643311738968,
-0.1754763275384903,
0.503634512424469,
-0.13614237308502197,
-0.6100399494171143,
0.7922862768173218,
0.098843514919281,
0.83994460105896,
-0.14826495945453644,
0.3158731758594513,
0.7367218136787415,
0.21038047969341278,
-0.06028877571225166,
0.543565034866333,
-0.23211412131786346,
-0.6469174027442932,
-0.030894597992300987,
-0.601372241973877,
-0.11019955575466156,
0.05270528048276901,
-0.8135342001914978,
0.4113369286060333,
-0.5071926712989807,
-0.20086196064949036,
0.026533188298344612,
0.39627784490585327,
-0.7309203147888184,
0.183277890086174,
-0.027212142944335938,
1.0914435386657715,
-1.0497171878814697,
0.4656485617160797,
0.7185606956481934,
-0.6755739450454712,
-1.1833175420761108,
-0.14291243255138397,
0.2104841023683548,
-0.6098883748054504,
0.21473127603530884,
0.16365815699100494,
0.48147061467170715,
-0.06593988090753555,
-0.9036059379577637,
-0.6524988412857056,
1.205824851989746,
0.006895008962601423,
-0.20070800185203552,
0.29989898204803467,
0.1369238644838333,
0.6227990984916687,
-0.3667426109313965,
0.2924147844314575,
0.6034296751022339,
0.7138028740882874,
0.29928717017173767,
-0.6950836181640625,
0.2778465747833252,
-0.6705973744392395,
-0.21535713970661163,
0.06821610778570175,
-1.024979829788208,
0.6373714804649353,
-0.15863224864006042,
-0.036334242671728134,
0.00879756174981594,
0.5909435749053955,
0.4185941815376282,
0.39824777841567993,
0.44535011053085327,
0.7893157005310059,
0.8134045004844666,
-0.327543705701828,
1.2320313453674316,
-0.3159227967262268,
0.599590003490448,
0.7937120795249939,
0.021404748782515526,
0.5386347770690918,
0.2207946926355362,
-0.3184690773487091,
0.5522928237915039,
0.6401194334030151,
-0.4598288834095001,
0.23868878185749054,
0.38655412197113037,
-0.03429058566689491,
-0.08232458680868149,
-0.23894424736499786,
-0.6121513247489929,
0.3421802818775177,
0.2288847714662552,
-0.30286747217178345,
0.006547882687300444,
-0.07252596318721771,
0.3403846025466919,
-0.03573776036500931,
-0.26994138956069946,
0.6408146023750305,
0.046681374311447144,
-0.3439766466617584,
0.5051000714302063,
-0.199249729514122,
0.6715644001960754,
-0.5913757681846619,
0.12721267342567444,
-0.10883919894695282,
0.1166277825832367,
-0.6554707288742065,
-1.1091238260269165,
0.4205581843852997,
-0.09884697198867798,
-0.2556750178337097,
-0.3719545304775238,
0.7171091437339783,
-0.41828596591949463,
-0.7661164402961731,
0.23149672150611877,
0.2270970642566681,
0.3125264048576355,
0.13532403111457825,
-1.2605266571044922,
0.5489707589149475,
0.14468929171562195,
-0.4678262174129486,
0.08840089291334152,
0.5072038173675537,
0.1563866138458252,
0.5249314308166504,
0.7154385447502136,
0.26683416962623596,
-0.24835091829299927,
0.05119699984788895,
1.1263275146484375,
-0.5437429547309875,
-0.45506659150123596,
-0.7416757941246033,
0.9258387684822083,
-0.3747525215148926,
-0.427949994802475,
0.6819084286689758,
0.8128740191459656,
0.8879220485687256,
0.008133557625114918,
0.7863972187042236,
-0.6459110379219055,
0.6606859564781189,
-0.20566636323928833,
0.952854573726654,
-0.6992297172546387,
-0.015950527042150497,
-0.694218099117279,
-0.5538321733474731,
-0.4307936728000641,
0.6448359489440918,
-0.1888720989227295,
0.1820584237575531,
0.26170167326927185,
0.9405990839004517,
0.0464351586997509,
0.11825531721115112,
-0.2226812094449997,
0.2929355204105377,
0.28413960337638855,
0.5339957475662231,
0.41336512565612793,
-0.8779592514038086,
0.36865466833114624,
-0.7440318465232849,
-0.3089195191860199,
0.030763540416955948,
-0.809332549571991,
-0.8793872594833374,
-0.948509693145752,
-0.672938883304596,
-0.7612718343734741,
-0.30136415362358093,
1.0514992475509644,
0.7233882546424866,
-0.7010000348091125,
-0.25842902064323425,
0.08191096782684326,
0.2747858762741089,
-0.09235191345214844,
-0.3164571523666382,
0.7123904228210449,
0.3814280927181244,
-0.5743120908737183,
-0.12137952446937561,
0.052909884601831436,
0.20691360533237457,
0.038876067847013474,
-0.10610534995794296,
-0.1228511855006218,
-0.2749735116958618,
0.3222053050994873,
0.49180567264556885,
-0.30436256527900696,
-0.0997142344713211,
-0.23560087382793427,
0.021070541813969612,
0.22662188112735748,
0.46721261739730835,
-0.5294583439826965,
0.20791099965572357,
0.699754536151886,
0.30664464831352234,
0.4209693372249603,
0.21232172846794128,
0.0054742139764130116,
-0.5068634152412415,
0.08353198319673538,
-0.006794275715947151,
0.3177708089351654,
0.4020368754863739,
-0.4813232421875,
0.8219202160835266,
0.556735634803772,
-0.4942997694015503,
-0.7841497659683228,
-0.14185012876987457,
-1.3139114379882812,
0.07317595928907394,
1.0251188278198242,
0.008635951206088066,
-0.575035035610199,
0.03267619386315346,
-0.19534246623516083,
0.10604288429021835,
-0.5513003468513489,
0.4894399046897888,
0.5177597403526306,
-0.12353407591581345,
0.13377270102500916,
-0.3343745768070221,
0.6308085322380066,
-0.04536176472902298,
-1.000177025794983,
0.18850257992744446,
0.4465472996234894,
0.4353506863117218,
0.36831188201904297,
0.7945185899734497,
-0.29104316234588623,
0.0659884661436081,
-0.02626015990972519,
0.28408417105674744,
-0.31940481066703796,
0.023118698969483376,
-0.3420976996421814,
-0.1104276180267334,
-0.48489686846733093,
-0.23575687408447266
]
|
huggingartists/as-i-lay-dying | huggingartists | 2022-10-25T09:23:54Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/as-i-lay-dying"
## 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.112142 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('https://images.genius.com/1584118378f9cfa83c281027ef8b2141.528x528x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/as-i-lay-dying">
<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">As I Lay Dying</div>
<a href="https://genius.com/artists/as-i-lay-dying">
<div style="text-align: center; font-size: 14px;">@as-i-lay-dying</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/as-i-lay-dying).
### 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/as-i-lay-dying")
```
## 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|
|------:|---------:|---:|
|102| -| -|
'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/as-i-lay-dying")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.5823246836662292,
-0.5085340142250061,
0.07290196418762207,
0.3345228433609009,
-0.245085671544075,
0.028509972617030144,
-0.3120635449886322,
-0.4355316758155823,
0.8417261242866516,
0.35191166400909424,
-0.9183219075202942,
-0.8377954959869385,
-0.5565582513809204,
0.13189519941806793,
-0.09913904964923859,
1.2249752283096313,
-0.21383582055568695,
-0.3230726420879364,
-0.335074782371521,
-0.22317861020565033,
-0.24923977255821228,
-0.2820701599121094,
-0.38745248317718506,
-0.367304265499115,
0.36025893688201904,
0.5072095394134521,
0.7066551446914673,
0.8788095712661743,
0.49604541063308716,
0.342805951833725,
-0.07436446845531464,
-0.052564892917871475,
-0.3601174056529999,
-0.11332160234451294,
0.22588728368282318,
-0.2736741304397583,
-0.6349406838417053,
0.2573229968547821,
0.5436326861381531,
0.46892669796943665,
-0.07176443934440613,
0.4535863399505615,
0.0584627166390419,
0.866040050983429,
-0.33179134130477905,
0.4270099103450775,
-0.18975484371185303,
-0.1417565494775772,
-0.30397287011146545,
0.03638111799955368,
0.13428625464439392,
-0.633600652217865,
-0.008934051729738712,
-0.7569366693496704,
0.04556865245103836,
-0.020144037902355194,
1.001198172569275,
0.11345452070236206,
0.08887868374586105,
-0.2288101464509964,
-0.13538804650306702,
0.49967196583747864,
-0.6251376271247864,
-0.06044675409793854,
0.5977790951728821,
0.14914610981941223,
0.046738434582948685,
-0.6213564276695251,
-0.5861335396766663,
0.04227864742279053,
-0.14783409237861633,
0.3407909572124481,
-0.13521626591682434,
-0.2426282912492752,
0.5359843373298645,
0.5357666015625,
-0.5196161866188049,
-0.23343299329280853,
-0.5661197304725647,
-0.12613026797771454,
1.2011117935180664,
0.1302453726530075,
0.44614771008491516,
-0.5035576820373535,
-0.21251070499420166,
-0.37997791171073914,
-0.2405366748571396,
0.3373340964317322,
0.5953618288040161,
0.3955976068973541,
-1.049870491027832,
0.6488394737243652,
-0.21428421139717102,
0.5248343348503113,
0.09041842073202133,
0.0018757717916741967,
0.7802221775054932,
-0.3344225585460663,
-0.12304756790399551,
-0.10486675798892975,
1.0727399587631226,
0.7175731062889099,
0.18205326795578003,
0.09401003271341324,
-0.0013450093101710081,
0.13224168121814728,
-0.1274953931570053,
-0.8440449833869934,
-0.4612841308116913,
0.6813929677009583,
-0.6266492009162903,
-0.5867622494697571,
0.11391617357730865,
-0.963663637638092,
-0.19265681505203247,
-0.27773815393447876,
0.2827111780643463,
-0.4416908025741577,
-0.4854229688644409,
0.17637857794761658,
-0.33195632696151733,
0.08353545516729355,
0.06647185981273651,
-0.5551110506057739,
0.18492022156715393,
0.5494380593299866,
0.7931984663009644,
0.16294659674167633,
-0.3050633370876312,
-0.2842751741409302,
-0.15116378664970398,
-0.12183006852865219,
0.70250004529953,
-0.3096455931663513,
-0.3701972961425781,
-0.11622464656829834,
0.3396790623664856,
-0.073150634765625,
-0.271423876285553,
0.9338318705558777,
0.08408878743648529,
0.18425190448760986,
-0.5748845934867859,
-0.4165627956390381,
-0.0041956789791584015,
0.2330540269613266,
-0.7478370070457458,
1.0427944660186768,
0.2438672035932541,
-0.9767564535140991,
0.17364299297332764,
-0.8429029583930969,
-0.3659015893936157,
0.02705802582204342,
0.05328710749745369,
-0.8107633590698242,
-0.1552557349205017,
0.12561310827732086,
0.7364862561225891,
-0.33965396881103516,
-0.04526706412434578,
-0.605990469455719,
-0.13908959925174713,
0.3470989763736725,
0.2605527639389038,
1.2297818660736084,
0.11354362964630127,
-0.16936250030994415,
0.06415963172912598,
-0.9316327571868896,
0.17667554318904877,
0.4257087707519531,
-0.21871894598007202,
-0.09864591807126999,
-0.17472605407238007,
0.4120745360851288,
0.272612065076828,
0.04279111325740814,
-0.5680585503578186,
0.39037439227104187,
-0.16393133997917175,
0.4629221558570862,
0.7205252647399902,
0.0361267626285553,
0.3089970648288727,
-0.666070282459259,
0.4149717688560486,
0.06300218403339386,
0.37807366251945496,
0.04379858076572418,
-0.5525824427604675,
-0.5248066782951355,
-0.2210775464773178,
0.29100802540779114,
0.4324398338794708,
-0.7240834832191467,
0.9431296586990356,
-0.3080790340900421,
-0.8188042640686035,
-0.6272127628326416,
0.03808331489562988,
0.23939622938632965,
0.49621155858039856,
0.419849157333374,
-0.42224639654159546,
-0.5932000875473022,
-0.6449102759361267,
0.0815458670258522,
-0.25895822048187256,
0.16254805028438568,
0.3832588791847229,
0.7740021347999573,
-0.3305227756500244,
0.7916094064712524,
-0.7110969424247742,
-0.2549692690372467,
-0.2142888456583023,
-0.2528751790523529,
0.3184208273887634,
0.8013331294059753,
0.5857895612716675,
-0.8432047367095947,
-0.5316869616508484,
-0.2682976722717285,
-0.7275331616401672,
-0.16431525349617004,
-0.056111376732587814,
-0.2539377510547638,
0.037840187549591064,
0.1701560765504837,
-0.6879791021347046,
0.5520479679107666,
0.4870612323284149,
-0.6779574155807495,
0.6034963726997375,
0.06558798253536224,
0.016021979972720146,
-1.2429895401000977,
0.3793324828147888,
0.21595211327075958,
0.059877026826143265,
-0.6502198576927185,
-0.1740356683731079,
-0.04585496336221695,
-0.03259395807981491,
-0.074416883289814,
0.5902816653251648,
-0.3990011215209961,
0.28123196959495544,
0.11600320041179657,
0.0222979374229908,
0.09516434371471405,
0.4264216423034668,
-0.05539221316576004,
0.26245787739753723,
1.0083320140838623,
-0.3937537670135498,
0.6169483661651611,
0.6418482065200806,
-0.1839081346988678,
0.8265475630760193,
-0.7885783910751343,
0.0001561455283081159,
-0.2947358787059784,
0.41369929909706116,
-0.7624091506004333,
-0.5291211605072021,
0.8105402588844299,
-0.7142936587333679,
0.37873244285583496,
-0.27520936727523804,
-0.5136464238166809,
-0.7899742126464844,
-0.6751517653465271,
0.15582270920276642,
0.5478984713554382,
-0.2603936791419983,
0.44385457038879395,
0.5690808296203613,
0.06833018362522125,
-0.366119384765625,
-0.7858001589775085,
-0.14198507368564606,
-0.3770460784435272,
-0.8156139850616455,
0.41523462533950806,
-0.3910403251647949,
-0.13030454516410828,
0.1335761845111847,
0.10831954330205917,
0.116135373711586,
0.00593790877610445,
0.4566495418548584,
0.25772625207901,
0.06672356277704239,
0.00770990876480937,
-0.061090800911188126,
-0.3203262388706207,
0.11563863605260849,
-0.15190313756465912,
0.30937832593917847,
-0.22156943380832672,
-0.18931634724140167,
-0.6591078042984009,
0.2916305661201477,
0.4311971068382263,
-0.23004232347011566,
0.6284657120704651,
0.744540274143219,
-0.27219489216804504,
-0.055090442299842834,
-0.5177417993545532,
-0.09950168430805206,
-0.41904544830322266,
-0.02080952562391758,
-0.21879279613494873,
-0.5496638417243958,
0.9630904793739319,
0.1665826439857483,
0.07835215330123901,
0.6979526877403259,
0.4630579352378845,
-0.15399841964244843,
0.6277308464050293,
0.38432496786117554,
-0.25695163011550903,
0.4692005515098572,
-0.7375454902648926,
-0.2558651864528656,
-0.8703909516334534,
-0.43266621232032776,
-0.4795835316181183,
-0.5320456624031067,
-0.8229387402534485,
-0.5345146059989929,
0.25135746598243713,
0.16546140611171722,
-0.23728691041469574,
0.38166168332099915,
-0.9327758550643921,
0.24267446994781494,
0.33411258459091187,
0.28848519921302795,
-0.10007105767726898,
0.05941573157906532,
0.08807380497455597,
0.18393553793430328,
-0.5245309472084045,
-0.22759076952934265,
1.1031692028045654,
0.4980694353580475,
0.5793182849884033,
-0.10428992658853531,
0.8356168270111084,
0.05698462575674057,
0.2078040987253189,
-0.5097407102584839,
0.488375723361969,
-0.047926269471645355,
-0.4632396996021271,
-0.193017840385437,
-0.508524477481842,
-0.8845183849334717,
-0.17841899394989014,
-0.3710939884185791,
-0.633966326713562,
0.4921434223651886,
0.09119072556495667,
-0.2722395062446594,
0.3194390535354614,
-0.617548942565918,
0.8319299221038818,
-0.08637607097625732,
-0.38242483139038086,
0.26940056681632996,
-1.0556524991989136,
0.12868213653564453,
0.22619697451591492,
0.21575835347175598,
-0.449442058801651,
0.004234129097312689,
1.004069209098816,
-0.8501124978065491,
0.9240193963050842,
-0.379993200302124,
0.21625038981437683,
0.586584210395813,
-0.3271729052066803,
0.4582478702068329,
0.10753335803747177,
-0.32883355021476746,
0.3514837324619293,
0.004837326239794493,
-0.4766624867916107,
-0.39932647347450256,
0.6399937868118286,
-0.753341794013977,
0.07751970738172531,
-0.3672597408294678,
-0.41114985942840576,
0.05907243490219116,
0.16432882845401764,
0.3622988760471344,
0.4191941022872925,
0.048359859734773636,
0.1035822331905365,
0.4677402079105377,
-0.1613771766424179,
0.3252996504306793,
0.056004129350185394,
-0.03577163815498352,
-0.7702720761299133,
0.9212417602539062,
0.21945185959339142,
0.12613320350646973,
-0.05079183354973793,
0.4091334640979767,
-0.32430174946784973,
-0.1618928164243698,
-0.6545738577842712,
0.4706195294857025,
-0.41694778203964233,
-0.4097472131252289,
-0.5895635485649109,
-0.2213674932718277,
-0.60330730676651,
-0.25258615612983704,
-0.21995943784713745,
-0.4717496931552887,
-0.34819385409355164,
-0.22410862147808075,
1.0797380208969116,
0.4435088634490967,
-0.6742770075798035,
0.13875867426395416,
-0.46622565388679504,
0.3259742856025696,
-0.08291400969028473,
0.657329797744751,
-0.10360508412122726,
-0.25073328614234924,
-0.1801060438156128,
0.11614225059747696,
-0.1787632703781128,
-0.7172555923461914,
0.24759739637374878,
0.005859164986759424,
0.3533446490764618,
0.12200724333524704,
0.15314804017543793,
0.7421715259552002,
-0.10129782557487488,
0.6374232769012451,
0.30248352885246277,
-0.803604781627655,
0.6749863624572754,
-0.5251460671424866,
0.16077856719493866,
0.8024592399597168,
0.411548912525177,
-0.6589372754096985,
-0.13581371307373047,
-0.9540515542030334,
-0.8872470259666443,
0.8047274351119995,
0.42416468262672424,
0.03362961858510971,
0.2466413676738739,
0.5708286762237549,
-0.179109126329422,
0.26392707228660583,
-0.6950560808181763,
-0.9258074760437012,
-0.3903658986091614,
-0.345005065202713,
-0.04138123244047165,
-0.13901148736476898,
-0.24086153507232666,
-0.6620848774909973,
0.7857877612113953,
-0.17942538857460022,
0.4015962779521942,
0.4039531350135803,
0.39981740713119507,
-0.2648874819278717,
-0.09139338880777359,
0.24728520214557648,
0.31758350133895874,
-0.2095622718334198,
-0.26773130893707275,
-0.1559886336326599,
-0.6038450598716736,
-0.0871758982539177,
0.5093139410018921,
-0.3816450238227844,
-0.08411987870931625,
0.33381131291389465,
0.8513948917388916,
-0.004244216252118349,
-0.26589542627334595,
0.615234375,
-0.060466594994068146,
-0.37548303604125977,
-0.4513510465621948,
0.02486496977508068,
0.18433181941509247,
0.2006944715976715,
0.09099896997213364,
0.07242362946271896,
-0.06274387985467911,
-0.43294963240623474,
0.4449792206287384,
0.2535911202430725,
-0.41103264689445496,
-0.452485054731369,
0.5756816267967224,
0.06437031179666519,
-0.1545957773923874,
0.48082441091537476,
-0.1541559100151062,
-0.632468581199646,
0.778556227684021,
0.1355321854352951,
0.8515383005142212,
-0.17090870440006256,
0.3706757426261902,
0.6773228049278259,
0.20543907582759857,
-0.06360305845737457,
0.5789598226547241,
-0.19268658757209778,
-0.6021234393119812,
-0.06238233298063278,
-0.6410973072052002,
-0.12041820585727692,
0.030679140239953995,
-0.843416154384613,
0.47786951065063477,
-0.4955475330352783,
-0.1611136794090271,
0.020473556593060493,
0.41634154319763184,
-0.6799273490905762,
0.23565684258937836,
-0.05729060247540474,
1.0681335926055908,
-1.0976710319519043,
0.44493669271469116,
0.6917787790298462,
-0.6830430030822754,
-1.1530030965805054,
-0.05457112193107605,
0.13649578392505646,
-0.6086831092834473,
0.1572609841823578,
0.2174982875585556,
0.5146284103393555,
-0.0416889451444149,
-0.8883492350578308,
-0.6973943114280701,
1.1940937042236328,
0.03689092770218849,
-0.14558134973049164,
0.30626145005226135,
0.14269763231277466,
0.6285661458969116,
-0.3185183107852936,
0.3463996648788452,
0.603627622127533,
0.6913414597511292,
0.31532785296440125,
-0.7046133279800415,
0.2948090434074402,
-0.6517950892448425,
-0.24964168667793274,
0.07436902076005936,
-1.0579769611358643,
0.6422487497329712,
-0.16010650992393494,
-0.08960773795843124,
-0.008514080196619034,
0.5946853756904602,
0.4321584105491638,
0.4510834217071533,
0.4350684881210327,
0.7800070643424988,
0.7584593892097473,
-0.29835671186447144,
1.2110573053359985,
-0.20796065032482147,
0.563395082950592,
0.7543560266494751,
0.03923368453979492,
0.5298458933830261,
0.17351870238780975,
-0.30852192640304565,
0.5748395919799805,
0.6797165870666504,
-0.39440014958381653,
0.2447250634431839,
0.40843990445137024,
-0.0741950199007988,
-0.08936743438243866,
-0.23680776357650757,
-0.5691642761230469,
0.2796304225921631,
0.2571687698364258,
-0.30724620819091797,
0.0025300108827650547,
0.001765104359947145,
0.3703880310058594,
-0.06769323348999023,
-0.2675763964653015,
0.6768430471420288,
0.08553780615329742,
-0.3430611789226532,
0.5463753938674927,
-0.1798187494277954,
0.6922476887702942,
-0.5861616134643555,
0.1473730206489563,
-0.05459015816450119,
0.06139552220702171,
-0.6311028599739075,
-1.0459070205688477,
0.4122345447540283,
-0.0882355123758316,
-0.2984570562839508,
-0.35551559925079346,
0.7039198875427246,
-0.4446370005607605,
-0.8175934553146362,
0.2647790312767029,
0.1771591454744339,
0.3479158282279968,
0.13627904653549194,
-1.2813444137573242,
0.6372350454330444,
0.19480624794960022,
-0.42612382769584656,
0.11590278148651123,
0.5045926570892334,
0.12038423120975494,
0.5910661220550537,
0.7137464284896851,
0.27246397733688354,
-0.20168127119541168,
0.062485650181770325,
1.1053637266159058,
-0.5612973570823669,
-0.46554580330848694,
-0.7160893678665161,
0.9743040204048157,
-0.39622238278388977,
-0.4162012040615082,
0.6521056294441223,
0.7776705026626587,
0.8191710710525513,
0.026216503232717514,
0.8384839296340942,
-0.6611489057540894,
0.6630290746688843,
-0.22485975921154022,
0.997138500213623,
-0.6862301826477051,
-0.12545715272426605,
-0.7101141214370728,
-0.4843657910823822,
-0.42403414845466614,
0.6623346209526062,
-0.2030356526374817,
0.15993209183216095,
0.3073347806930542,
0.8630630970001221,
0.04582971706986427,
0.09373044222593307,
-0.20643538236618042,
0.34349894523620605,
0.2736862897872925,
0.5184234976768494,
0.43119341135025024,
-0.9192510843276978,
0.30468782782554626,
-0.7638816833496094,
-0.320002019405365,
-0.012272336520254612,
-0.8358758687973022,
-0.876470685005188,
-0.9984515309333801,
-0.7147251963615417,
-0.760068416595459,
-0.27948734164237976,
1.049238681793213,
0.6801286935806274,
-0.7131326794624329,
-0.24596582353115082,
0.08982766419649124,
0.2251264601945877,
-0.07354000955820084,
-0.30900314450263977,
0.6772240400314331,
0.37619224190711975,
-0.5570682287216187,
-0.10978468507528305,
0.05324004217982292,
0.22534392774105072,
0.06567781418561935,
-0.09918870776891708,
-0.11398206651210785,
-0.2811668813228607,
0.3365024924278259,
0.4847087562084198,
-0.3368609845638275,
-0.1016535684466362,
-0.32657626271247864,
0.015523136593401432,
0.13012053072452545,
0.5038986802101135,
-0.5262094140052795,
0.21099191904067993,
0.6376468539237976,
0.2634633779525757,
0.4097899794578552,
0.23422051966190338,
0.055620260536670685,
-0.46332430839538574,
0.051867686212062836,
0.060331206768751144,
0.31012162566185,
0.39411112666130066,
-0.510234534740448,
0.7929326891899109,
0.5270882248878479,
-0.5264503359794617,
-0.8643404245376587,
-0.14477992057800293,
-1.3337349891662598,
0.11217491328716278,
1.0767738819122314,
0.03873101621866226,
-0.5312768220901489,
0.029976826161146164,
-0.20481455326080322,
0.16066908836364746,
-0.5500601530075073,
0.45966434478759766,
0.44171980023384094,
-0.13476206362247467,
0.1517384797334671,
-0.3797689378261566,
0.686533510684967,
-0.019415754824876785,
-0.9933124780654907,
0.22180631756782532,
0.4429037570953369,
0.4617644250392914,
0.34629347920417786,
0.8405722975730896,
-0.21806366741657257,
0.07818520814180374,
-0.06367664784193039,
0.3289950489997864,
-0.23658984899520874,
0.0391940213739872,
-0.3901568651199341,
-0.08963757753372192,
-0.5066711902618408,
-0.20594802498817444
]
|
huggingartists/big-russian-boss | huggingartists | 2022-10-25T09:24:34Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/big-russian-boss"
## 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.52183 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('https://images.genius.com/d66eeeef006738708df1e52b84c34c14.403x403x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/big-russian-boss">
<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">Big Russian Boss</div>
<a href="https://genius.com/artists/big-russian-boss">
<div style="text-align: center; font-size: 14px;">@big-russian-boss</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/big-russian-boss).
### 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/big-russian-boss")
```
## 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|
|------:|---------:|---:|
|151| -| -|
'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/big-russian-boss")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6026453375816345,
-0.5170121192932129,
0.09726380556821823,
0.2518289089202881,
-0.29032090306282043,
0.029642539098858833,
-0.35896947979927063,
-0.4470975697040558,
0.8572718501091003,
0.30606919527053833,
-0.8857460618019104,
-0.8695753216743469,
-0.5716369152069092,
0.13027724623680115,
-0.04267759993672371,
1.3055826425552368,
-0.19442595541477203,
-0.305679053068161,
-0.3111550509929657,
-0.18972693383693695,
-0.29879191517829895,
-0.3270595073699951,
-0.3075708746910095,
-0.3951108753681183,
0.3682423532009125,
0.5194292068481445,
0.7373940348625183,
0.904734194278717,
0.5192711353302002,
0.3517647087574005,
-0.1214529499411583,
-0.047695692628622055,
-0.367417573928833,
-0.09102790802717209,
0.14179471135139465,
-0.29748502373695374,
-0.6927055716514587,
0.20502518117427826,
0.586475670337677,
0.3730470836162567,
-0.09961949288845062,
0.47455111145973206,
0.04258143529295921,
0.8049302101135254,
-0.26161670684814453,
0.5076305866241455,
-0.24058757722377777,
-0.1409502625465393,
-0.2956067621707916,
0.08373497426509857,
0.196653351187706,
-0.554894208908081,
-0.04007676616311073,
-0.7454317212104797,
0.011343089863657951,
-0.004797050729393959,
1.0341124534606934,
0.016487235203385353,
0.12441325187683105,
-0.17684423923492432,
-0.18058006465435028,
0.5547463893890381,
-0.5775308012962341,
-0.019405564293265343,
0.5747667551040649,
0.18135520815849304,
0.009109816513955593,
-0.6238797903060913,
-0.6263076066970825,
0.08953636884689331,
-0.18063142895698547,
0.2761429250240326,
-0.20817303657531738,
-0.3288138806819916,
0.5155833959579468,
0.5238177180290222,
-0.5145153403282166,
-0.1776386797428131,
-0.5277318954467773,
-0.14020995795726776,
1.1535779237747192,
0.18226277828216553,
0.38827815651893616,
-0.4809131920337677,
-0.18222656846046448,
-0.4089408218860626,
-0.2784653902053833,
0.321638822555542,
0.5918641090393066,
0.4395897686481476,
-1.0217177867889404,
0.6255689263343811,
-0.2179783135652542,
0.5588223934173584,
0.14583411812782288,
-0.05749845877289772,
0.7814770340919495,
-0.41842857003211975,
-0.12306391447782516,
-0.13782350718975067,
1.0864588022232056,
0.6469901204109192,
0.1952308863401413,
0.08884603530168533,
-0.0598955936729908,
0.055737048387527466,
-0.14275385439395905,
-0.8835880756378174,
-0.40667498111724854,
0.6536932587623596,
-0.5692943334579468,
-0.6012700200080872,
0.11262700706720352,
-1.046836256980896,
-0.21291323006153107,
-0.31573569774627686,
0.27887770533561707,
-0.3705841898918152,
-0.5564964413642883,
0.15012545883655548,
-0.2799474000930786,
0.16464689373970032,
0.06196106970310211,
-0.6186906695365906,
0.18419292569160461,
0.6371738910675049,
0.777452290058136,
0.18993975222110748,
-0.3153853714466095,
-0.32653123140335083,
-0.22340428829193115,
-0.1852128654718399,
0.6439921259880066,
-0.32760360836982727,
-0.3145987093448639,
-0.13488568365573883,
0.32770511507987976,
-0.021760838106274605,
-0.29352080821990967,
0.8781291842460632,
0.0503498874604702,
0.1813114583492279,
-0.5521325469017029,
-0.3725801110267639,
0.021342402324080467,
0.3082646429538727,
-0.7199071049690247,
1.035117506980896,
0.29749464988708496,
-0.9986197352409363,
0.21217316389083862,
-0.7954525947570801,
-0.30176815390586853,
0.06778513640165329,
0.06756015866994858,
-0.825642466545105,
-0.1962677240371704,
0.15567860007286072,
0.7854644656181335,
-0.33092695474624634,
0.040919266641139984,
-0.5936442613601685,
-0.08999717980623245,
0.3724011182785034,
0.328551709651947,
1.1764075756072998,
0.12484760582447052,
-0.16802237927913666,
0.10416772216558456,
-0.9361006021499634,
0.12695622444152832,
0.4365215003490448,
-0.16612476110458374,
-0.10259485244750977,
-0.23368266224861145,
0.4047676920890808,
0.3231178820133209,
0.07723838090896606,
-0.6098766326904297,
0.43321067094802856,
-0.1760973185300827,
0.4566613435745239,
0.7425951957702637,
-0.025630878284573555,
0.2900990843772888,
-0.6269460916519165,
0.4366292357444763,
0.10523675382137299,
0.34011560678482056,
-0.006778298411518335,
-0.5342397689819336,
-0.4564807116985321,
-0.29212459921836853,
0.3350085914134979,
0.45321565866470337,
-0.7147284746170044,
1.0039507150650024,
-0.374338299036026,
-0.8895173072814941,
-0.6060549020767212,
0.11766697466373444,
0.2273782640695572,
0.4713899493217468,
0.3334852457046509,
-0.4120572507381439,
-0.6146113872528076,
-0.7026640176773071,
0.06289485096931458,
-0.23561424016952515,
0.17544251680374146,
0.3675461709499359,
0.9136621952056885,
-0.21085162460803986,
0.8041941523551941,
-0.6842344999313354,
-0.2728123664855957,
-0.2840895652770996,
-0.324771523475647,
0.402545303106308,
0.8074252605438232,
0.6578105092048645,
-0.8641718626022339,
-0.5277767181396484,
-0.18789580464363098,
-0.6923338770866394,
-0.053503189235925674,
-0.012115736491978168,
-0.2854573726654053,
0.0441289097070694,
0.11104093492031097,
-0.7432506084442139,
0.5217283368110657,
0.49490442872047424,
-0.7086204290390015,
0.6482117772102356,
0.09109022468328476,
0.014799883589148521,
-1.3256537914276123,
0.4230346083641052,
0.2494821697473526,
0.005077862646430731,
-0.6579799056053162,
-0.1999681293964386,
-0.04432434216141701,
-0.06707253307104111,
-0.10355401039123535,
0.5987077951431274,
-0.34844332933425903,
0.25784555077552795,
0.16229137778282166,
0.07072270661592484,
0.05594922974705696,
0.4633842706680298,
-0.04941711947321892,
0.2817656695842743,
1.0807249546051025,
-0.37460440397262573,
0.7352219223976135,
0.6165223717689514,
-0.29611271619796753,
0.9058160781860352,
-0.801189124584198,
0.019221913069486618,
-0.2563951313495636,
0.3943261206150055,
-0.8373559713363647,
-0.554733395576477,
0.8153512477874756,
-0.7228682637214661,
0.42985135316848755,
-0.28168755769729614,
-0.6231498122215271,
-0.781397819519043,
-0.6458555459976196,
0.1040717214345932,
0.5617070198059082,
-0.37966033816337585,
0.39178434014320374,
0.5889507532119751,
0.0696137472987175,
-0.40946879982948303,
-0.787760853767395,
-0.09869246929883957,
-0.419674277305603,
-0.8367905020713806,
0.4073479473590851,
-0.33023929595947266,
-0.12478769570589066,
0.13474905490875244,
0.11371941864490509,
0.09478733688592911,
0.004838341847062111,
0.3580150604248047,
0.31868547201156616,
0.09971297532320023,
0.004797857720404863,
-0.15706057846546173,
-0.24300263822078705,
0.12303401529788971,
-0.21730883419513702,
0.27994054555892944,
-0.2970220148563385,
-0.03993808478116989,
-0.6572712063789368,
0.20048655569553375,
0.491945743560791,
-0.27485930919647217,
0.7083804607391357,
0.8238869309425354,
-0.24490180611610413,
-0.02994748391211033,
-0.46459531784057617,
-0.15765738487243652,
-0.41359788179397583,
0.0879318118095398,
-0.23713406920433044,
-0.5847926139831543,
0.960071325302124,
0.2321673333644867,
0.06879851222038269,
0.6556901335716248,
0.5172731876373291,
-0.022205136716365814,
0.6812905073165894,
0.3482823371887207,
-0.28955167531967163,
0.48699313402175903,
-0.6979662775993347,
-0.23480412364006042,
-0.8455918431282043,
-0.47296303510665894,
-0.535555362701416,
-0.5073911547660828,
-0.8623993992805481,
-0.4218848943710327,
0.1933554857969284,
0.09113491326570511,
-0.21906954050064087,
0.43970340490341187,
-0.903947114944458,
0.276964008808136,
0.3134330213069916,
0.2266395092010498,
-0.14242400228977203,
0.11152779310941696,
0.06397102028131485,
0.1297917366027832,
-0.5893370509147644,
-0.1915755271911621,
1.1134378910064697,
0.4806443154811859,
0.5897889733314514,
-0.08381481468677521,
0.7955214381217957,
-0.0029613403603434563,
0.1670471578836441,
-0.5616263747215271,
0.498476505279541,
0.03946865350008011,
-0.5374158620834351,
-0.1695426106452942,
-0.5230313539505005,
-0.919154167175293,
-0.07971850037574768,
-0.47089436650276184,
-0.7334660887718201,
0.4524310529232025,
0.10688914358615875,
-0.19965144991874695,
0.4138915240764618,
-0.5901280641555786,
0.9024883508682251,
-0.025350075215101242,
-0.4881642460823059,
0.24438507854938507,
-1.0156161785125732,
0.17257411777973175,
0.1854952573776245,
0.2788144052028656,
-0.3631118834018707,
0.02723868004977703,
1.0237213373184204,
-0.7749713063240051,
0.9238365292549133,
-0.3786362111568451,
0.1447085589170456,
0.517187774181366,
-0.29209843277931213,
0.5185406804084778,
0.07817550003528595,
-0.270990252494812,
0.3448599874973297,
0.014421041123569012,
-0.4522637724876404,
-0.43146225810050964,
0.6914412379264832,
-0.7332713007926941,
0.015073356218636036,
-0.39858466386795044,
-0.4297116696834564,
0.07686038315296173,
0.2104841023683548,
0.29263684153556824,
0.3968818783760071,
0.003275968600064516,
0.20978078246116638,
0.4085279703140259,
-0.12700098752975464,
0.2827453315258026,
0.06335955858230591,
-0.08254693448543549,
-0.7918307781219482,
0.8929699659347534,
0.18455439805984497,
0.051511138677597046,
-0.043915919959545135,
0.44190382957458496,
-0.3593309223651886,
-0.15707024931907654,
-0.6220110058784485,
0.48712587356567383,
-0.3982740640640259,
-0.424439013004303,
-0.47306883335113525,
-0.12586849927902222,
-0.642661988735199,
-0.15363547205924988,
-0.25694793462753296,
-0.47565916180610657,
-0.30057772994041443,
-0.189542755484581,
1.029398798942566,
0.4457038938999176,
-0.6725702881813049,
0.13140596449375153,
-0.46789950132369995,
0.27951642870903015,
-0.08046652376651764,
0.7001982927322388,
-0.11522303521633148,
-0.32241079211235046,
-0.2725042700767517,
0.08879202604293823,
-0.20442189276218414,
-0.6998983025550842,
0.3111932873725891,
-0.04943527281284332,
0.36904633045196533,
0.0812142863869667,
0.11010527610778809,
0.6458897590637207,
-0.08196674287319183,
0.6662017703056335,
0.3184606432914734,
-0.8169187903404236,
0.6324478983879089,
-0.541653037071228,
0.20525962114334106,
0.6947293877601624,
0.3876451253890991,
-0.6488107442855835,
-0.13033083081245422,
-0.9449963569641113,
-0.8207842111587524,
0.8818801641464233,
0.4549500048160553,
0.05003518983721733,
0.2641076445579529,
0.527736246585846,
-0.1929297000169754,
0.2832290530204773,
-0.6601709723472595,
-0.8696621060371399,
-0.39303991198539734,
-0.32584258913993835,
-0.08009787648916245,
-0.08463788777589798,
-0.26916658878326416,
-0.6685001254081726,
0.7948973178863525,
-0.10646558552980423,
0.3248596787452698,
0.39455369114875793,
0.4370291531085968,
-0.22770509123802185,
0.02173602022230625,
0.30154678225517273,
0.44108879566192627,
-0.2049659639596939,
-0.2923775911331177,
-0.13508322834968567,
-0.6478366255760193,
-0.10062804073095322,
0.47358912229537964,
-0.32606276869773865,
-0.06548473984003067,
0.2724856734275818,
0.930590033531189,
-0.05908668413758278,
-0.23552419245243073,
0.6156463623046875,
-0.05788489058613777,
-0.4495771527290344,
-0.4367856979370117,
-0.017550578340888023,
0.15999329090118408,
0.2284393161535263,
0.07767798006534576,
0.03977306932210922,
-0.14559338986873627,
-0.43567124009132385,
0.38098272681236267,
0.2820788621902466,
-0.3663142919540405,
-0.526828408241272,
0.5440323352813721,
0.061393726617097855,
-0.16817191243171692,
0.43867769837379456,
-0.16805613040924072,
-0.6364973187446594,
0.7929621934890747,
0.14317776262760162,
0.8107049465179443,
-0.19269058108329773,
0.341595321893692,
0.7535079121589661,
0.22035230696201324,
-0.0697706863284111,
0.5093063712120056,
-0.1832551658153534,
-0.6025298833847046,
-0.12182870507240295,
-0.575056791305542,
-0.08718405663967133,
0.13305707275867462,
-0.8127023577690125,
0.4886614978313446,
-0.4875963628292084,
-0.20482619106769562,
0.0626227855682373,
0.42619284987449646,
-0.7115810513496399,
0.19224810600280762,
-0.0640876442193985,
0.9836440682411194,
-1.0464986562728882,
0.48946434259414673,
0.7257586121559143,
-0.5789228677749634,
-1.121999979019165,
-0.16892841458320618,
0.18102377653121948,
-0.5673437714576721,
0.24804602563381195,
0.18752118945121765,
0.522430956363678,
-0.08201104402542114,
-0.9220038056373596,
-0.6822718977928162,
1.1481742858886719,
0.025702426210045815,
-0.2141714096069336,
0.35351836681365967,
0.09608554095029831,
0.6426299214363098,
-0.37124869227409363,
0.28563183546066284,
0.6397887468338013,
0.7333550453186035,
0.2961159944534302,
-0.740339994430542,
0.299435019493103,
-0.6359760761260986,
-0.2504771649837494,
0.12016166001558304,
-1.0161731243133545,
0.6322371959686279,
-0.15352249145507812,
-0.023080354556441307,
-0.0063137151300907135,
0.5837804079055786,
0.41430217027664185,
0.3780195713043213,
0.44431549310684204,
0.7598263025283813,
0.7451828718185425,
-0.3248724341392517,
1.2036141157150269,
-0.23885436356067657,
0.6057679653167725,
0.756234347820282,
0.06484520435333252,
0.49418705701828003,
0.22399717569351196,
-0.3229673206806183,
0.5673924088478088,
0.608487069606781,
-0.503071129322052,
0.23368948698043823,
0.4204687178134918,
-0.019238054752349854,
-0.10916832089424133,
-0.21938952803611755,
-0.5646525025367737,
0.3621687889099121,
0.23135361075401306,
-0.28869327902793884,
0.008164924569427967,
-0.020293161273002625,
0.4377255439758301,
-0.046041764318943024,
-0.3018769919872284,
0.676355242729187,
0.020660407841205597,
-0.4185708165168762,
0.5818709135055542,
-0.15756304562091827,
0.6883695125579834,
-0.6472659707069397,
0.150109201669693,
-0.07776670157909393,
0.12119442224502563,
-0.6164480447769165,
-1.096423625946045,
0.3827262818813324,
-0.03157744184136391,
-0.22729149460792542,
-0.3204216957092285,
0.7228063941001892,
-0.5019726753234863,
-0.7598597407341003,
0.19908840954303741,
0.15584206581115723,
0.34311699867248535,
0.13419118523597717,
-1.2370915412902832,
0.571142852306366,
0.14655734598636627,
-0.46461567282676697,
0.14986959099769592,
0.5217971801757812,
0.19202150404453278,
0.5297759175300598,
0.7004353404045105,
0.29258257150650024,
-0.2997363209724426,
-0.03608003258705139,
1.0991607904434204,
-0.5559605956077576,
-0.5193678736686707,
-0.7938541769981384,
0.9154112339019775,
-0.3961094319820404,
-0.4215203821659088,
0.710246205329895,
0.775650143623352,
0.8449183702468872,
-0.015233328565955162,
0.798149824142456,
-0.6606946587562561,
0.6477376222610474,
-0.22802186012268066,
0.9685111045837402,
-0.7332701086997986,
-0.13556478917598724,
-0.7336209416389465,
-0.5305333733558655,
-0.4274974465370178,
0.6368201971054077,
-0.20437322556972504,
0.17393510043621063,
0.29756274819374084,
0.9012251496315002,
0.00040417371201328933,
0.06870648264884949,
-0.1810637265443802,
0.350459486246109,
0.29204991459846497,
0.5460144877433777,
0.39714309573173523,
-0.8527035117149353,
0.41123053431510925,
-0.7598110437393188,
-0.29046136140823364,
0.002786236582323909,
-0.8625715374946594,
-0.913641631603241,
-0.9850148558616638,
-0.6769158244132996,
-0.8023601174354553,
-0.29932916164398193,
1.051810383796692,
0.7503259181976318,
-0.6725940704345703,
-0.2890012264251709,
0.10818944126367569,
0.2825027108192444,
-0.07868929207324982,
-0.3084932267665863,
0.6496921181678772,
0.34874337911605835,
-0.6192152500152588,
-0.17436626553535461,
-0.009581171907484531,
0.21343384683132172,
0.04068097844719887,
-0.08627954125404358,
-0.10189630836248398,
-0.3334723114967346,
0.3481847047805786,
0.47490110993385315,
-0.3140350878238678,
-0.0974930003285408,
-0.2497735172510147,
0.04317532107234001,
0.18657824397087097,
0.4793618321418762,
-0.4858592450618744,
0.23737646639347076,
0.668664813041687,
0.25997260212898254,
0.4868296980857849,
0.17068804800510406,
0.051687706261873245,
-0.49397608637809753,
0.1296451836824417,
-0.005306934006512165,
0.31189143657684326,
0.421330064535141,
-0.46785518527030945,
0.7496891021728516,
0.5557591915130615,
-0.5246493220329285,
-0.8545334935188293,
-0.11101327836513519,
-1.3057527542114258,
0.08048222213983536,
1.1023344993591309,
-0.023468339815735817,
-0.5858851075172424,
0.054691117256879807,
-0.20895643532276154,
0.12845323979854584,
-0.5921153426170349,
0.4713267683982849,
0.5891968607902527,
-0.03493914008140564,
0.15328727662563324,
-0.3445475399494171,
0.6777804493904114,
-0.015659645199775696,
-0.9904428720474243,
0.24883872270584106,
0.4690748453140259,
0.4631132483482361,
0.3563409447669983,
0.7323499321937561,
-0.27736353874206543,
0.08805061876773834,
-0.050643887370824814,
0.3174704909324646,
-0.2924230396747589,
0.003595838090404868,
-0.40202319622039795,
-0.12942947447299957,
-0.511959433555603,
-0.2070702463388443
]
|
huggingartists/billy-talent | huggingartists | 2022-10-25T09:24:52Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/billy-talent"
## 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.222716 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('https://images.genius.com/66f0650a5d8acadaed4292d6e3df6b9b.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/billy-talent">
<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">Billy Talent</div>
<a href="https://genius.com/artists/billy-talent">
<div style="text-align: center; font-size: 14px;">@billy-talent</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/billy-talent).
### 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/billy-talent")
```
## 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/billy-talent")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6167138814926147,
-0.5451270937919617,
0.03445097431540489,
0.2543858289718628,
-0.20059676468372345,
0.07219243794679642,
-0.3506002426147461,
-0.463409423828125,
0.9058546423912048,
0.3948742151260376,
-0.9630606174468994,
-0.8310754299163818,
-0.5878159999847412,
0.11948840320110321,
-0.13998334109783173,
1.307543158531189,
-0.1714901328086853,
-0.41564202308654785,
-0.327749103307724,
-0.21667079627513885,
-0.3770690858364105,
-0.26191166043281555,
-0.3528139889240265,
-0.27224647998809814,
0.4042941629886627,
0.4997611343860626,
0.7045264840126038,
0.8533234000205994,
0.506790280342102,
0.36333712935447693,
-0.09739793092012405,
0.03721730783581734,
-0.3955789804458618,
-0.09502753615379333,
0.11408744752407074,
-0.2849482595920563,
-0.6808136701583862,
0.22655530273914337,
0.567411482334137,
0.45493510365486145,
-0.08344303071498871,
0.4872262477874756,
0.024850159883499146,
0.8245288729667664,
-0.24838396906852722,
0.4939615726470947,
-0.3514128029346466,
-0.1662362664937973,
-0.3512110412120819,
0.013173920102417469,
0.20924729108810425,
-0.6012266874313354,
-0.029492778703570366,
-0.7644658088684082,
0.09525877982378006,
-0.005207845009863377,
1.0206793546676636,
0.04325953125953674,
0.07993577420711517,
-0.20378008484840393,
-0.18268470466136932,
0.5768585801124573,
-0.58362877368927,
-0.029327429831027985,
0.5670932531356812,
0.17713674902915955,
0.03056105226278305,
-0.6199686527252197,
-0.6485487222671509,
0.10187488794326782,
-0.1265079379081726,
0.2812633812427521,
-0.14995181560516357,
-0.3296065032482147,
0.5346354246139526,
0.5056175589561462,
-0.48546889424324036,
-0.2438303530216217,
-0.5812505483627319,
-0.14119330048561096,
1.1856672763824463,
0.16334261000156403,
0.42081916332244873,
-0.4525704085826874,
-0.22745180130004883,
-0.38344576954841614,
-0.2816098630428314,
0.3772127032279968,
0.6001785397529602,
0.47147589921951294,
-0.9603410959243774,
0.6487142443656921,
-0.18613030016422272,
0.5846390128135681,
0.16232267022132874,
-0.08388221263885498,
0.7985860705375671,
-0.43427574634552,
-0.047243088483810425,
-0.1156657338142395,
1.0584840774536133,
0.653487503528595,
0.17388637363910675,
0.09519354999065399,
-0.08224578946828842,
0.04222835227847099,
-0.1331070512533188,
-0.799429714679718,
-0.40840351581573486,
0.6426753401756287,
-0.5698251128196716,
-0.5966162085533142,
0.1653943955898285,
-0.9461619257926941,
-0.1962827444076538,
-0.3113725781440735,
0.3300185203552246,
-0.38654908537864685,
-0.5732117891311646,
0.16214118897914886,
-0.32151126861572266,
0.08291898667812347,
0.02545219287276268,
-0.6427767276763916,
0.18957090377807617,
0.5750367641448975,
0.6812465786933899,
0.18655644357204437,
-0.31917017698287964,
-0.2854863703250885,
-0.16777272522449493,
-0.16079746186733246,
0.6905670762062073,
-0.26423510909080505,
-0.2912096083164215,
-0.15298205614089966,
0.32853108644485474,
-0.10025327652692795,
-0.31643855571746826,
0.8766154646873474,
0.009664702229201794,
0.184099480509758,
-0.556166410446167,
-0.43811026215553284,
0.03859594091773033,
0.2206646353006363,
-0.766320526599884,
1.0597896575927734,
0.3521996736526489,
-0.9846450090408325,
0.22885921597480774,
-0.801379382610321,
-0.29946190118789673,
0.04644791781902313,
0.0885603129863739,
-0.7631289958953857,
-0.1612280011177063,
0.16703738272190094,
0.7101645469665527,
-0.2680484652519226,
0.022940928116440773,
-0.611488938331604,
-0.17063675820827484,
0.45292070508003235,
0.18909570574760437,
1.2182157039642334,
0.07647737115621567,
-0.13363753259181976,
0.057320162653923035,
-0.9471365809440613,
0.16793404519557953,
0.429890900850296,
-0.1678333431482315,
-0.07651533931493759,
-0.22503159940242767,
0.3912818133831024,
0.2872333526611328,
0.09455474466085434,
-0.6147627830505371,
0.3727709949016571,
-0.2288900911808014,
0.4191204607486725,
0.7146562337875366,
-0.020747143775224686,
0.2715293765068054,
-0.6582757234573364,
0.4043647050857544,
0.058414340019226074,
0.38515016436576843,
0.04340137168765068,
-0.558834433555603,
-0.43088260293006897,
-0.2534842789173126,
0.34777092933654785,
0.46050524711608887,
-0.7223730087280273,
1.0336401462554932,
-0.32811322808265686,
-0.814275324344635,
-0.6653597950935364,
0.17947542667388916,
0.19492056965827942,
0.5177697539329529,
0.40199100971221924,
-0.4719836711883545,
-0.5493013858795166,
-0.6589013934135437,
0.06857627630233765,
-0.26169565320014954,
0.16144432127475739,
0.3883901834487915,
0.7411368489265442,
-0.19384369254112244,
0.8667579889297485,
-0.6571863293647766,
-0.320599764585495,
-0.2974868714809418,
-0.35300907492637634,
0.43193531036376953,
0.786778450012207,
0.722453236579895,
-0.8507472276687622,
-0.5026468634605408,
-0.2722882330417633,
-0.6594302654266357,
-0.1740778684616089,
-0.029838325455784798,
-0.30315685272216797,
0.03852581977844238,
0.0882025808095932,
-0.7332659363746643,
0.5401881337165833,
0.5258625745773315,
-0.7176287174224854,
0.6029561161994934,
0.12812672555446625,
0.03697929531335831,
-1.186530351638794,
0.32899612188339233,
0.20862874388694763,
0.06556219607591629,
-0.5769888758659363,
-0.254215806722641,
-0.0695895254611969,
-0.002462363801896572,
-0.10956530272960663,
0.5858829617500305,
-0.3086409866809845,
0.26721251010894775,
0.14414310455322266,
0.13430792093276978,
0.14183634519577026,
0.4242498278617859,
-0.08340755105018616,
0.2717325687408447,
1.0331002473831177,
-0.3663126826286316,
0.7221412658691406,
0.5773230195045471,
-0.21447822451591492,
0.8944482207298279,
-0.7834610342979431,
-0.01509401760995388,
-0.2416381537914276,
0.36896535754203796,
-0.8323946595191956,
-0.5371569395065308,
0.8078241348266602,
-0.7329002022743225,
0.45015525817871094,
-0.2537292242050171,
-0.5429510474205017,
-0.8187358975410461,
-0.6778464317321777,
0.12298757582902908,
0.5400276780128479,
-0.38806048035621643,
0.38744866847991943,
0.6022781729698181,
0.07259853929281235,
-0.3928278088569641,
-0.7763418555259705,
-0.11235018819570541,
-0.40491360425949097,
-0.8361492156982422,
0.4746513366699219,
-0.3786906898021698,
-0.08794613182544708,
0.1941194087266922,
0.08702678978443146,
0.056666288524866104,
0.01003919169306755,
0.3323064148426056,
0.3362225592136383,
0.09223756939172745,
0.02667194791138172,
-0.041521523147821426,
-0.24497348070144653,
0.158643901348114,
-0.21716800332069397,
0.211703360080719,
-0.20418766140937805,
-0.13284531235694885,
-0.6601922512054443,
0.19502566754817963,
0.3699832558631897,
-0.2632470428943634,
0.6793702244758606,
0.8541813492774963,
-0.18475393950939178,
-0.10566649585962296,
-0.5008733868598938,
-0.12967050075531006,
-0.4254330098628998,
0.04880603030323982,
-0.2188740074634552,
-0.5800586938858032,
0.8929034471511841,
0.2610907256603241,
0.08385682106018066,
0.685475766658783,
0.4735036790370941,
-0.1305619776248932,
0.6622732281684875,
0.3070830702781677,
-0.19094164669513702,
0.5469312071800232,
-0.7082706689834595,
-0.2290954291820526,
-0.8513815999031067,
-0.43141794204711914,
-0.4797276556491852,
-0.5183447003364563,
-0.8472833037376404,
-0.4506111145019531,
0.20765192806720734,
0.1470508575439453,
-0.17203962802886963,
0.48187845945358276,
-0.9583730697631836,
0.3099129796028137,
0.3684370219707489,
0.28492677211761475,
-0.12100160866975784,
0.06601444631814957,
0.10956896096467972,
0.13194018602371216,
-0.5739219784736633,
-0.22379013895988464,
1.1807076930999756,
0.4799689054489136,
0.5594053268432617,
-0.04447562247514725,
0.8716795444488525,
0.01531465258449316,
0.2047962248325348,
-0.5544373393058777,
0.4899004399776459,
-0.015704168006777763,
-0.5732620358467102,
-0.20893418788909912,
-0.5097815990447998,
-0.9135823249816895,
-0.14924170076847076,
-0.4634416401386261,
-0.6739133596420288,
0.4542818069458008,
0.09706412255764008,
-0.20401440560817719,
0.3864080607891083,
-0.6279733777046204,
0.8428594470024109,
-0.060501571744680405,
-0.4685554504394531,
0.26597893238067627,
-1.010830283164978,
0.2023170441389084,
0.14517419040203094,
0.2976318597793579,
-0.43356719613075256,
0.02130298689007759,
1.0140477418899536,
-0.8160236477851868,
0.9548128247261047,
-0.39800208806991577,
0.1339363306760788,
0.6406368017196655,
-0.31050777435302734,
0.40457358956336975,
0.1132284626364708,
-0.2580563426017761,
0.3332054018974304,
0.08786459267139435,
-0.47367119789123535,
-0.4594453275203705,
0.6898748874664307,
-0.7188881039619446,
0.044849883764982224,
-0.2841796278953552,
-0.4308394193649292,
0.03780040144920349,
0.1611076146364212,
0.24463072419166565,
0.46861666440963745,
0.07726218551397324,
0.1517808586359024,
0.47659775614738464,
-0.1618051528930664,
0.2979522943496704,
0.027751412242650986,
-0.08331835269927979,
-0.7870455384254456,
0.9346190690994263,
0.21719613671302795,
0.07816695421934128,
-0.03760962188243866,
0.426921546459198,
-0.4026346504688263,
-0.16727270185947418,
-0.6012100577354431,
0.46584856510162354,
-0.4265226721763611,
-0.4163171947002411,
-0.48829877376556396,
-0.1613098382949829,
-0.6346536874771118,
-0.13008974492549896,
-0.24198871850967407,
-0.5641947388648987,
-0.3120087683200836,
-0.17012746632099152,
1.0421981811523438,
0.4619504511356354,
-0.6854944825172424,
0.08352586627006531,
-0.514976978302002,
0.27529916167259216,
-0.0441252700984478,
0.6933730840682983,
-0.08755426108837128,
-0.3269326090812683,
-0.23615004122257233,
0.06112147122621536,
-0.2326536774635315,
-0.6544440388679504,
0.24869957566261292,
-0.016212008893489838,
0.4129931926727295,
0.08064199239015579,
0.15928199887275696,
0.6687139868736267,
-0.04336792603135109,
0.6900909543037415,
0.30845004320144653,
-0.8042075634002686,
0.6896909475326538,
-0.5224614143371582,
0.08847124129533768,
0.7596179246902466,
0.32579103112220764,
-0.5797334909439087,
-0.18613110482692719,
-0.9840988516807556,
-0.8261805772781372,
0.80016028881073,
0.40215983986854553,
0.13034337759017944,
0.16994830965995789,
0.5122913122177124,
-0.14515450596809387,
0.28069841861724854,
-0.646835446357727,
-0.8327566981315613,
-0.4218270778656006,
-0.38052478432655334,
-0.01827256940305233,
-0.03407233953475952,
-0.26315829157829285,
-0.6903300285339355,
0.7596527934074402,
-0.14925533533096313,
0.3359319865703583,
0.3825613558292389,
0.443317711353302,
-0.23434674739837646,
-0.029182206839323044,
0.22119708359241486,
0.4009416699409485,
-0.2399890124797821,
-0.323339581489563,
-0.15466715395450592,
-0.6204751133918762,
-0.1447075754404068,
0.4803011417388916,
-0.319293349981308,
-0.062660813331604,
0.38445010781288147,
0.8797469139099121,
0.01042850874364376,
-0.29162153601646423,
0.6462666392326355,
-0.05430502071976662,
-0.4361592233181,
-0.4182811379432678,
0.09079760313034058,
0.1487571746110916,
0.2456446886062622,
0.07401812821626663,
0.07695139944553375,
-0.11642185598611832,
-0.39409545063972473,
0.4091191589832306,
0.27320194244384766,
-0.38064879179000854,
-0.49243590235710144,
0.6262860894203186,
0.05062558874487877,
-0.14577677845954895,
0.4265441298484802,
-0.16782936453819275,
-0.5758062601089478,
0.8029423952102661,
0.1360916942358017,
0.7850156426429749,
-0.08025740832090378,
0.3494497835636139,
0.6935219764709473,
0.14957234263420105,
-0.026331119239330292,
0.5404999256134033,
-0.20468713343143463,
-0.6438206434249878,
-0.12054342776536942,
-0.5859265923500061,
-0.09688349813222885,
0.022750018164515495,
-0.7984609603881836,
0.4582057297229767,
-0.47120365500450134,
-0.27073392271995544,
0.04802067205309868,
0.42333534359931946,
-0.7683157324790955,
0.19584853947162628,
-0.055708546191453934,
1.016331434249878,
-1.0156071186065674,
0.5001646280288696,
0.6559865474700928,
-0.6821787357330322,
-1.2345234155654907,
-0.13619689643383026,
0.19239230453968048,
-0.5664664506912231,
0.2960297167301178,
0.15655294060707092,
0.5040076971054077,
-0.024155357852578163,
-0.903683066368103,
-0.7073267698287964,
1.2083147764205933,
-0.013412480242550373,
-0.16810297966003418,
0.36657577753067017,
0.07193166017532349,
0.6279016733169556,
-0.3624250888824463,
0.3539225459098816,
0.6388984322547913,
0.6718736886978149,
0.32979634404182434,
-0.7603008151054382,
0.25372761487960815,
-0.5659993886947632,
-0.21663977205753326,
0.0719354897737503,
-1.001487135887146,
0.6391890048980713,
-0.17131651937961578,
-0.042483191937208176,
0.0004148431762587279,
0.5844613909721375,
0.46929046511650085,
0.41250932216644287,
0.47423937916755676,
0.7129401564598083,
0.7883654236793518,
-0.3399576246738434,
1.1772996187210083,
-0.2648680806159973,
0.611150860786438,
0.7177060842514038,
0.045008450746536255,
0.5099976658821106,
0.20750997960567474,
-0.39227232336997986,
0.5960611701011658,
0.6005523204803467,
-0.4427364468574524,
0.2583923935890198,
0.4200078547000885,
-0.06867571920156479,
-0.06330335885286331,
-0.24463409185409546,
-0.5527547597885132,
0.34158340096473694,
0.23111827671527863,
-0.3008464276790619,
0.061506643891334534,
-0.047307997941970825,
0.35503554344177246,
0.0027499054558575153,
-0.2832867205142975,
0.6394832134246826,
-0.0021493851672858,
-0.3637642562389374,
0.5489531755447388,
-0.20257656276226044,
0.7571131587028503,
-0.6057320833206177,
0.131153404712677,
-0.08579660207033157,
0.09249995648860931,
-0.641539454460144,
-1.1573714017868042,
0.4071686863899231,
-0.1124885305762291,
-0.24054767191410065,
-0.34087467193603516,
0.7699523568153381,
-0.49507248401641846,
-0.7924187183380127,
0.23675718903541565,
0.1990978866815567,
0.3270042836666107,
0.21822665631771088,
-1.2689107656478882,
0.6042898297309875,
0.12400493025779724,
-0.4556660056114197,
0.13330614566802979,
0.5802351236343384,
0.18419727683067322,
0.5178918838500977,
0.7126903533935547,
0.34848472476005554,
-0.23131036758422852,
0.10364239662885666,
1.09714937210083,
-0.547558605670929,
-0.4175913333892822,
-0.6903542876243591,
0.9068697094917297,
-0.3979814648628235,
-0.4014571011066437,
0.6622058749198914,
0.7208647131919861,
0.9263665080070496,
0.004592557437717915,
0.7763004899024963,
-0.6679918766021729,
0.7603980302810669,
-0.2453029602766037,
0.9609609842300415,
-0.7103662490844727,
-0.024780582636594772,
-0.7412517070770264,
-0.5292091369628906,
-0.4028084874153137,
0.6199056506156921,
-0.17908264696598053,
0.22204391658306122,
0.27543362975120544,
0.9415067434310913,
0.03976898267865181,
0.06370872259140015,
-0.23372241854667664,
0.24353888630867004,
0.2795427441596985,
0.557628333568573,
0.43542245030403137,
-0.8791659474372864,
0.4082663953304291,
-0.8031373620033264,
-0.3354039192199707,
0.06095338612794876,
-0.8444727063179016,
-0.9302635192871094,
-0.9291757345199585,
-0.7008728384971619,
-0.79912269115448,
-0.3252229690551758,
1.094712257385254,
0.705712616443634,
-0.6990095973014832,
-0.25629332661628723,
0.16003373265266418,
0.31439530849456787,
-0.1466807723045349,
-0.33978086709976196,
0.6429185271263123,
0.32199740409851074,
-0.6163679957389832,
-0.1106102466583252,
-0.022567344829440117,
0.19929175078868866,
-0.001812137896195054,
-0.057862069457769394,
-0.04223887249827385,
-0.26475948095321655,
0.3714590072631836,
0.43698573112487793,
-0.35327818989753723,
-0.13682426512241364,
-0.25087013840675354,
0.059753626585006714,
0.12216006219387054,
0.4260116219520569,
-0.5806949138641357,
0.2056257575750351,
0.6365470886230469,
0.2659670114517212,
0.4136655926704407,
0.20438896119594574,
-0.04306231439113617,
-0.5391911864280701,
0.01347755640745163,
-0.020025253295898438,
0.23514904081821442,
0.3938744366168976,
-0.4695613980293274,
0.7709163427352905,
0.6437323093414307,
-0.5105934143066406,
-0.8436607718467712,
-0.16042043268680573,
-1.3104559183120728,
0.08234946429729462,
1.0302783250808716,
0.035360049456357956,
-0.5556392073631287,
0.0439763180911541,
-0.21590600907802582,
0.12150755524635315,
-0.5738722085952759,
0.46581393480300903,
0.5100932717323303,
-0.1382959634065628,
0.1241658627986908,
-0.4273117184638977,
0.6294894218444824,
-0.07875833660364151,
-0.9297019839286804,
0.18183590471744537,
0.4373745620250702,
0.5180800557136536,
0.3068670928478241,
0.8314325213432312,
-0.29945752024650574,
0.04123030975461006,
-0.011600948870182037,
0.2888375222682953,
-0.2919045388698578,
0.016198474913835526,
-0.31372711062431335,
-0.12741772830486298,
-0.46857187151908875,
-0.18901897966861725
]
|
huggingartists/bob-dylan | huggingartists | 2022-10-25T09:25:08Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/bob-dylan"
## 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.91167 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('https://images.genius.com/22306423b6ad8777d1ed5b33ad8b0d0b.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/bob-dylan">
<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">Bob Dylan</div>
<a href="https://genius.com/artists/bob-dylan">
<div style="text-align: center; font-size: 14px;">@bob-dylan</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/bob-dylan).
### 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/bob-dylan")
```
## 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|
|------:|---------:|---:|
|2241| -| -|
'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/bob-dylan")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.624934196472168,
-0.5501499176025391,
0.08119816333055496,
0.32588744163513184,
-0.22517336905002594,
0.08977271616458893,
-0.3550274670124054,
-0.4465200901031494,
0.9013018012046814,
0.3198186159133911,
-0.9233723282814026,
-0.8198443055152893,
-0.5253574252128601,
0.11354903131723404,
-0.1143784373998642,
1.3110017776489258,
-0.18088188767433167,
-0.4022999405860901,
-0.33146676421165466,
-0.24029651284217834,
-0.3576735556125641,
-0.32006776332855225,
-0.3738965094089508,
-0.3178940415382385,
0.4627178907394409,
0.4411051869392395,
0.732257604598999,
0.830618679523468,
0.5576945543289185,
0.3362703025341034,
-0.17079097032546997,
0.006367853377014399,
-0.41637223958969116,
-0.10275127738714218,
0.14733964204788208,
-0.2709822356700897,
-0.6766327023506165,
0.25599294900894165,
0.5692768096923828,
0.3725492060184479,
-0.06779645383358002,
0.5242993235588074,
0.03705158457159996,
0.8241968154907227,
-0.22571851313114166,
0.4475943446159363,
-0.31694868206977844,
-0.1827062964439392,
-0.28875163197517395,
0.03594626113772392,
0.14370188117027283,
-0.5806649327278137,
-0.03870828077197075,
-0.7223032712936401,
0.08882535248994827,
0.03988005593419075,
1.0771631002426147,
0.05085793510079384,
0.0915689691901207,
-0.19660043716430664,
-0.1925792396068573,
0.5400474667549133,
-0.584761917591095,
-0.01511955726891756,
0.5313807129859924,
0.14894121885299683,
0.0068342494778335094,
-0.617307722568512,
-0.6755527257919312,
0.07462029904127121,
-0.21059392392635345,
0.30388161540031433,
-0.18633879721164703,
-0.3166494071483612,
0.516938328742981,
0.516613781452179,
-0.5571441054344177,
-0.26575276255607605,
-0.5647439360618591,
-0.059224773198366165,
1.1935786008834839,
0.14147591590881348,
0.3956662118434906,
-0.5420703291893005,
-0.2560789883136749,
-0.42688116431236267,
-0.20336760580539703,
0.37796953320503235,
0.5420944094657898,
0.46922311186790466,
-0.9865791201591492,
0.587311863899231,
-0.08590757846832275,
0.5311273336410522,
0.148170605301857,
-0.02740185149013996,
0.8472906947135925,
-0.3942619562149048,
-0.09448492527008057,
-0.14828738570213318,
1.0516979694366455,
0.6484132409095764,
0.14020705223083496,
0.07836402952671051,
-0.0879291296005249,
0.028119103983044624,
-0.10809880495071411,
-0.7379282116889954,
-0.41834524273872375,
0.6529746651649475,
-0.5852005481719971,
-0.556907594203949,
0.1817522495985031,
-0.9418420791625977,
-0.15073814988136292,
-0.3288351893424988,
0.3009122908115387,
-0.37339991331100464,
-0.5259677171707153,
0.14517924189567566,
-0.34899526834487915,
0.10699847340583801,
0.025789573788642883,
-0.5188307762145996,
0.12884753942489624,
0.5837689638137817,
0.7705092430114746,
0.1629439890384674,
-0.2895503342151642,
-0.20634853839874268,
-0.10966818779706955,
-0.11203271895647049,
0.6889552474021912,
-0.27115121483802795,
-0.2927301824092865,
-0.2263239622116089,
0.3841903507709503,
-0.048996105790138245,
-0.2348562330007553,
0.8869438767433167,
0.03479348495602608,
0.15291929244995117,
-0.5582868456840515,
-0.38326597213745117,
-0.028471408411860466,
0.24244603514671326,
-0.7920756340026855,
1.074776291847229,
0.3444735109806061,
-0.9802210927009583,
0.16557817161083221,
-0.8423991799354553,
-0.31810465455055237,
0.05613461136817932,
0.08160760253667831,
-0.7862679362297058,
-0.16618569195270538,
0.14323586225509644,
0.7200236320495605,
-0.2906692326068878,
0.09973320364952087,
-0.6233358383178711,
-0.1352238953113556,
0.3605622351169586,
0.20827484130859375,
1.2357170581817627,
0.11910885572433472,
-0.11474332958459854,
0.05816398188471794,
-0.9333101511001587,
0.17508786916732788,
0.4703781306743622,
-0.17278362810611725,
-0.12314347177743912,
-0.2430964708328247,
0.4480507969856262,
0.25911998748779297,
0.07965315133333206,
-0.5815868973731995,
0.3504660129547119,
-0.14040939509868622,
0.45725807547569275,
0.7558584809303284,
0.016895508393645287,
0.2551387846469879,
-0.6454086303710938,
0.41260072588920593,
0.08819610625505447,
0.3693801164627075,
-0.026621919125318527,
-0.5493685603141785,
-0.42197421193122864,
-0.2827918529510498,
0.33508408069610596,
0.4749610424041748,
-0.664070725440979,
1.0397448539733887,
-0.34339234232902527,
-0.8450570702552795,
-0.5919117331504822,
0.1594875007867813,
0.18947766721248627,
0.47894027829170227,
0.39438754320144653,
-0.4623419940471649,
-0.6085149049758911,
-0.6743081212043762,
0.06856805086135864,
-0.30299583077430725,
0.15839357674121857,
0.4413069784641266,
0.7733579277992249,
-0.27153918147087097,
0.857199490070343,
-0.7270421385765076,
-0.29922205209732056,
-0.270420640707016,
-0.28756240010261536,
0.41453447937965393,
0.8470225930213928,
0.7241535782814026,
-0.868577778339386,
-0.4765843152999878,
-0.2849462330341339,
-0.6834871768951416,
-0.091643787920475,
-0.11112336069345474,
-0.32071343064308167,
0.0071642170660197735,
0.12975147366523743,
-0.7105463147163391,
0.5561491250991821,
0.5199684500694275,
-0.6457245945930481,
0.4884949326515198,
0.09789968281984329,
-0.023067479953169823,
-1.219218134880066,
0.34564197063446045,
0.23421621322631836,
0.022881079465150833,
-0.5849043130874634,
-0.2438126653432846,
-0.08175303786993027,
0.00949007086455822,
-0.05472767725586891,
0.5319475531578064,
-0.3022427558898926,
0.30576449632644653,
0.16562071442604065,
0.07655349373817444,
0.16004012525081635,
0.463257372379303,
-0.11664466559886932,
0.2715301811695099,
0.933577299118042,
-0.32417798042297363,
0.6570601463317871,
0.6292991042137146,
-0.16138742864131927,
0.8541732430458069,
-0.8224827647209167,
0.04963858425617218,
-0.34381821751594543,
0.47874900698661804,
-0.897614598274231,
-0.5377413034439087,
0.7724684476852417,
-0.7112274765968323,
0.42553940415382385,
-0.18486963212490082,
-0.5383607149124146,
-0.835277795791626,
-0.629087507724762,
0.14168603718280792,
0.5192185044288635,
-0.38795262575149536,
0.4474363327026367,
0.6049824953079224,
0.08190236985683441,
-0.30371320247650146,
-0.8194389939308167,
-0.08150840550661087,
-0.38681817054748535,
-0.8044946193695068,
0.44719088077545166,
-0.3832953870296478,
-0.09443627297878265,
0.17421694099903107,
0.08543200045824051,
0.07537616789340973,
0.010133104398846626,
0.3987414836883545,
0.3280497193336487,
0.07750473916530609,
0.07206238061189651,
-0.08069656789302826,
-0.20468983054161072,
0.14194487035274506,
-0.19068491458892822,
0.23957499861717224,
-0.30836915969848633,
-0.08121545612812042,
-0.6402316093444824,
0.23570378124713898,
0.351299524307251,
-0.22789117693901062,
0.6577094197273254,
0.8192222118377686,
-0.19319719076156616,
-0.05428149551153183,
-0.48942071199417114,
-0.09746234118938446,
-0.41906553506851196,
0.0031165792606770992,
-0.20445400476455688,
-0.6162077784538269,
0.8924840688705444,
0.24105271697044373,
0.10620511323213577,
0.6850208044052124,
0.4102828800678253,
-0.17067396640777588,
0.6567621827125549,
0.3394134044647217,
-0.2243018001317978,
0.5321817994117737,
-0.6866799592971802,
-0.17717407643795013,
-0.8583794236183167,
-0.41616612672805786,
-0.48933133482933044,
-0.5734075903892517,
-0.8772103786468506,
-0.4464672803878784,
0.1999838501214981,
0.13223132491111755,
-0.23259714245796204,
0.5312706828117371,
-0.9762159585952759,
0.32508209347724915,
0.3637898862361908,
0.3199065327644348,
-0.12711110711097717,
0.07897786796092987,
0.13790850341320038,
0.18163460493087769,
-0.5550835728645325,
-0.2551223039627075,
1.1178698539733887,
0.47929924726486206,
0.5305371284484863,
-0.0832681879401207,
0.820281445980072,
0.07174918055534363,
0.21249304711818695,
-0.48590055108070374,
0.4894702732563019,
-0.022416070103645325,
-0.5703907608985901,
-0.16026441752910614,
-0.4977882504463196,
-0.8816595673561096,
-0.1880018562078476,
-0.4080420434474945,
-0.6646150946617126,
0.4736722707748413,
0.11711125820875168,
-0.2299656867980957,
0.367699533700943,
-0.6612350344657898,
0.8162891864776611,
-0.10441825538873672,
-0.405276894569397,
0.30476152896881104,
-1.0774707794189453,
0.18493689596652985,
0.1449795961380005,
0.2554587721824646,
-0.4077242612838745,
0.05418948456645012,
0.9974084496498108,
-0.6722593307495117,
0.9115525484085083,
-0.3657914698123932,
0.13887879252433777,
0.6031522750854492,
-0.3634086549282074,
0.45916929841041565,
0.13776171207427979,
-0.23705631494522095,
0.39460989832878113,
0.048017144203186035,
-0.45418158173561096,
-0.47167572379112244,
0.6743455529212952,
-0.7044331431388855,
0.015293356962502003,
-0.34009262919425964,
-0.47010931372642517,
0.06316544115543365,
0.13193279504776,
0.20904475450515747,
0.3204532563686371,
0.07143580168485641,
0.1727445125579834,
0.4380768835544586,
-0.174600288271904,
0.31126588582992554,
0.004758364055305719,
-0.11203241348266602,
-0.813081681728363,
0.9023339748382568,
0.19453255832195282,
0.06586644053459167,
-0.06120946258306503,
0.40325674414634705,
-0.31445324420928955,
-0.0978163629770279,
-0.5338631868362427,
0.4603008031845093,
-0.4335753321647644,
-0.4225809872150421,
-0.5312608480453491,
-0.20204667747020721,
-0.6109020113945007,
-0.19234278798103333,
-0.19406749308109283,
-0.546872079372406,
-0.32858365774154663,
-0.22143182158470154,
1.0857133865356445,
0.4575819969177246,
-0.6848899126052856,
0.1775449514389038,
-0.4935099184513092,
0.31220951676368713,
-0.09944441169500351,
0.678284227848053,
-0.05864729732275009,
-0.3085617423057556,
-0.1989586502313614,
0.0851411446928978,
-0.23199988901615143,
-0.6271643042564392,
0.23390419781208038,
-0.014387381263077259,
0.3571416139602661,
0.088690385222435,
0.15179386734962463,
0.7834610939025879,
-0.08106813579797745,
0.6795958876609802,
0.3118668496608734,
-0.8017932772636414,
0.677765965461731,
-0.46582794189453125,
0.11722440272569656,
0.7715185880661011,
0.3602988123893738,
-0.599453866481781,
-0.19525538384914398,
-1.0126988887786865,
-0.9010465145111084,
0.8041808009147644,
0.42091038823127747,
0.12110908329486847,
0.19326108694076538,
0.5570211410522461,
-0.1872427612543106,
0.2791787087917328,
-0.6998142004013062,
-0.8582885265350342,
-0.43351876735687256,
-0.36192330718040466,
-0.10787133872509003,
-0.037612974643707275,
-0.2416473925113678,
-0.7411272525787354,
0.771976888179779,
-0.13473936915397644,
0.3609035313129425,
0.4122485816478729,
0.44759601354599,
-0.21404777467250824,
-0.050309885293245316,
0.2853133976459503,
0.35000547766685486,
-0.2761319875717163,
-0.2766910791397095,
-0.15204349160194397,
-0.6316567659378052,
-0.1294310986995697,
0.42589637637138367,
-0.3889612555503845,
-0.0006108383531682193,
0.32384151220321655,
0.9099371433258057,
-0.04556983336806297,
-0.2559826076030731,
0.578454315662384,
-0.07471852004528046,
-0.381687194108963,
-0.4697350263595581,
0.04471569135785103,
0.14413633942604065,
0.25801584124565125,
0.0917719379067421,
0.11976006627082825,
-0.16047701239585876,
-0.3678290843963623,
0.42420002818107605,
0.3021915555000305,
-0.3895277976989746,
-0.5003443956375122,
0.5984249711036682,
0.015976838767528534,
-0.17040574550628662,
0.41985589265823364,
-0.16506581008434296,
-0.6184481382369995,
0.7849135398864746,
0.16997689008712769,
0.8446254134178162,
-0.0642898678779602,
0.3404668867588043,
0.7358689904212952,
0.2335951030254364,
-0.016448739916086197,
0.567037045955658,
-0.1979946345090866,
-0.5544911026954651,
-0.0546695850789547,
-0.5791621208190918,
-0.06038736179471016,
0.08739995956420898,
-0.8319365978240967,
0.4297464191913605,
-0.51920485496521,
-0.2738191783428192,
0.07557495683431625,
0.34227439761161804,
-0.7428085207939148,
0.18891078233718872,
-0.08004193007946014,
1.024926781654358,
-1.021472454071045,
0.4516100287437439,
0.6438022255897522,
-0.6910423636436462,
-1.2289234399795532,
-0.07514311373233795,
0.17979887127876282,
-0.5640908479690552,
0.2976222634315491,
0.21382734179496765,
0.5103684663772583,
-0.0333651639521122,
-0.9858388900756836,
-0.7040408849716187,
1.203957438468933,
-0.005024095997214317,
-0.21188049018383026,
0.32349443435668945,
0.09480638802051544,
0.6459828019142151,
-0.3797798454761505,
0.3320794105529785,
0.6333686113357544,
0.7069306969642639,
0.33043769001960754,
-0.6859574317932129,
0.28667983412742615,
-0.567247211933136,
-0.14390477538108826,
0.0819692388176918,
-1.0478087663650513,
0.6554352641105652,
-0.1306784451007843,
-0.06339304149150848,
-0.04660636931657791,
0.6449019908905029,
0.413476824760437,
0.4457894265651703,
0.5127454996109009,
0.7424895763397217,
0.8123173117637634,
-0.32528895139694214,
1.133294939994812,
-0.25099000334739685,
0.6317388415336609,
0.7898332476615906,
-0.003821114543825388,
0.538893461227417,
0.28197070956230164,
-0.35649365186691284,
0.5797232389450073,
0.5905267596244812,
-0.4971998333930969,
0.23069718480110168,
0.41188809275627136,
-0.02415352128446102,
-0.05602257698774338,
-0.2458290308713913,
-0.5427045822143555,
0.32313621044158936,
0.19083566963672638,
-0.3451893925666809,
0.04749869927763939,
-0.039248574525117874,
0.3533377945423126,
-0.04696104675531387,
-0.2514582574367523,
0.6688297986984253,
0.023046836256980896,
-0.38205841183662415,
0.5612890124320984,
-0.2226376086473465,
0.6878874897956848,
-0.5824403166770935,
0.14358380436897278,
-0.07892387360334396,
0.09518665820360184,
-0.6350804567337036,
-1.1300069093704224,
0.43648120760917664,
-0.055984534323215485,
-0.28740108013153076,
-0.3804364502429962,
0.7043136954307556,
-0.45376306772232056,
-0.8144512176513672,
0.23871874809265137,
0.1369296759366989,
0.3170684278011322,
0.22260215878486633,
-1.2551934719085693,
0.5809354782104492,
0.1661280244588852,
-0.46767544746398926,
0.0818016305565834,
0.5177885293960571,
0.165027916431427,
0.48638254404067993,
0.7586291432380676,
0.266648530960083,
-0.25239768624305725,
0.04081409052014351,
1.1037980318069458,
-0.602903425693512,
-0.42070963978767395,
-0.7193886637687683,
0.8904272317886353,
-0.39480045437812805,
-0.39241650700569153,
0.6895087957382202,
0.7652475833892822,
0.930869460105896,
0.028485054150223732,
0.7807572484016418,
-0.6799360513687134,
0.7106959223747253,
-0.18328900635242462,
0.9348635673522949,
-0.7222455739974976,
-0.03901173174381256,
-0.7511441111564636,
-0.498796671628952,
-0.43560990691185,
0.6509628891944885,
-0.1320023238658905,
0.19518335163593292,
0.2698744833469391,
0.9136897325515747,
0.041965510696172714,
0.15680301189422607,
-0.2994477152824402,
0.27043232321739197,
0.303956001996994,
0.526222825050354,
0.39897945523262024,
-0.8901864290237427,
0.3798140585422516,
-0.7530722618103027,
-0.2863377034664154,
0.09410323947668076,
-0.8733924031257629,
-0.9137750864028931,
-0.9560444951057434,
-0.663958728313446,
-0.7914227247238159,
-0.3054327070713043,
1.1142216920852661,
0.6520940065383911,
-0.707034170627594,
-0.2354450523853302,
0.10652220249176025,
0.2750995457172394,
-0.09963799268007278,
-0.3285546898841858,
0.6490048170089722,
0.33473289012908936,
-0.5549294352531433,
-0.15659518539905548,
0.021185969933867455,
0.2514350414276123,
0.027347750961780548,
-0.05878736078739166,
-0.14157819747924805,
-0.26074036955833435,
0.3670220673084259,
0.4156370759010315,
-0.36090272665023804,
-0.14140500128269196,
-0.24064065515995026,
0.058717258274555206,
0.21933592855930328,
0.45241987705230713,
-0.5696888566017151,
0.1517593115568161,
0.6427304148674011,
0.29109036922454834,
0.4147370755672455,
0.2557886838912964,
-0.042828500270843506,
-0.5431448221206665,
0.04092898592352867,
-0.0032418142072856426,
0.22716501355171204,
0.3673821687698364,
-0.4995580315589905,
0.7908753752708435,
0.5683718323707581,
-0.5394068956375122,
-0.9119259119033813,
-0.1707027703523636,
-1.3606359958648682,
0.10016284883022308,
1.038177251815796,
-0.015548045746982098,
-0.5836326479911804,
0.07288451492786407,
-0.20846711099147797,
0.12841668725013733,
-0.5859932899475098,
0.4431479275226593,
0.5185104608535767,
-0.09953223913908005,
0.13496442139148712,
-0.38755205273628235,
0.5832459330558777,
-0.05529080331325531,
-0.9270069599151611,
0.18478594720363617,
0.4164734184741974,
0.4254835546016693,
0.38114601373672485,
0.7223292589187622,
-0.21089604496955872,
0.012557249516248703,
-0.08189158141613007,
0.2881855070590973,
-0.26109081506729126,
-0.0037591056898236275,
-0.36360427737236023,
-0.1432395726442337,
-0.5354741811752319,
-0.1571430265903473
]
|
huggingartists/bryan-adams | huggingartists | 2022-10-25T09:25:51Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/bryan-adams"
## 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.542578 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('https://images.genius.com/2cb27a7f3f50142f45cd18fae968738c.750x750x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/bryan-adams">
<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">Bryan Adams</div>
<a href="https://genius.com/artists/bryan-adams">
<div style="text-align: center; font-size: 14px;">@bryan-adams</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/bryan-adams).
### 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/bryan-adams")
```
## 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|
|------:|---------:|---:|
|456| -| -|
'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/bryan-adams")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6080479025840759,
-0.48974961042404175,
0.12205728143453598,
0.23346304893493652,
-0.259851336479187,
0.08204735070466995,
-0.3129662275314331,
-0.47698119282722473,
0.8904082775115967,
0.26136845350265503,
-0.8694350123405457,
-0.8677222728729248,
-0.5869238376617432,
0.2016615867614746,
-0.09610249102115631,
1.2332580089569092,
-0.24319876730442047,
-0.36077064275741577,
-0.33266231417655945,
-0.27367252111434937,
-0.24179187417030334,
-0.2757551670074463,
-0.37613537907600403,
-0.27935150265693665,
0.36401936411857605,
0.43429064750671387,
0.6889647841453552,
0.9570223689079285,
0.5349486470222473,
0.3587733507156372,
-0.12158294022083282,
-0.017933662980794907,
-0.3433713912963867,
-0.11510153859853745,
0.15780527889728546,
-0.2836836278438568,
-0.6832628846168518,
0.2497827261686325,
0.6161727905273438,
0.44918200373649597,
-0.06389004737138748,
0.5010313987731934,
0.06912454217672348,
0.85065758228302,
-0.25071099400520325,
0.45351070165634155,
-0.2656388580799103,
-0.1510036140680313,
-0.2475806176662445,
0.008840007707476616,
0.2070574313402176,
-0.6114177703857422,
-0.021076738834381104,
-0.7705808281898499,
0.02913583256304264,
-0.0018456679536029696,
1.015086054801941,
0.05741308256983757,
0.0729968324303627,
-0.24238768219947815,
-0.18516843020915985,
0.5633258819580078,
-0.5951380729675293,
0.03151583671569824,
0.5939310789108276,
0.1475859135389328,
0.040488190948963165,
-0.6047678589820862,
-0.6041367650032043,
0.07514876872301102,
-0.1792490929365158,
0.28323525190353394,
-0.21933281421661377,
-0.30077147483825684,
0.475028395652771,
0.5430071949958801,
-0.5043326616287231,
-0.27954337000846863,
-0.5326447486877441,
-0.17192408442497253,
1.2339284420013428,
0.13735680282115936,
0.36950698494911194,
-0.39578747749328613,
-0.16816818714141846,
-0.33796730637550354,
-0.24031180143356323,
0.3638441264629364,
0.6031630635261536,
0.5143358707427979,
-1.0011889934539795,
0.6285369992256165,
-0.17166732251644135,
0.5585665106773376,
0.12805460393428802,
-0.06278915703296661,
0.7980851531028748,
-0.3886178731918335,
-0.10821151733398438,
-0.13045834004878998,
1.0251505374908447,
0.6421676874160767,
0.15917150676250458,
0.023091956973075867,
-0.030709004029631615,
0.1353529542684555,
-0.15588976442813873,
-0.8379974365234375,
-0.391089528799057,
0.6815871596336365,
-0.6165825128555298,
-0.5691722631454468,
0.09784043580293655,
-0.9902090430259705,
-0.2239394634962082,
-0.3767201602458954,
0.26207947731018066,
-0.36567047238349915,
-0.47254082560539246,
0.0896163210272789,
-0.2648141384124756,
0.03682186082005501,
0.036123547703027725,
-0.5202662348747253,
0.2113034427165985,
0.5492466688156128,
0.7339593768119812,
0.22033283114433289,
-0.3037874102592468,
-0.2989445626735687,
-0.1769990622997284,
-0.15068502724170685,
0.672389805316925,
-0.38416779041290283,
-0.3102487027645111,
-0.10301689058542252,
0.41062524914741516,
-0.0058845640160143375,
-0.27890637516975403,
0.8988421559333801,
0.040247682482004166,
0.10624928772449493,
-0.6576023101806641,
-0.5006188750267029,
0.03977067023515701,
0.2612278163433075,
-0.7325834631919861,
0.9733837842941284,
0.27848705649375916,
-0.9132503867149353,
0.24717237055301666,
-0.7928301095962524,
-0.3545510768890381,
0.030624156817793846,
0.01811050996184349,
-0.789484977722168,
-0.23631471395492554,
0.15889450907707214,
0.7004309296607971,
-0.21611501276493073,
-0.07071100920438766,
-0.6448176503181458,
-0.11252599209547043,
0.3153650462627411,
0.2938036024570465,
1.08589506149292,
0.14570748805999756,
-0.10753289610147476,
0.06331325322389603,
-1.01250422000885,
0.09692375361919403,
0.4659886956214905,
-0.2634188234806061,
-0.08439308404922485,
-0.17489935457706451,
0.3563123047351837,
0.2545180320739746,
0.05542054772377014,
-0.6246159076690674,
0.3933079242706299,
-0.13273268938064575,
0.46046900749206543,
0.7531892657279968,
0.013244383037090302,
0.3824770152568817,
-0.6349834203720093,
0.451223760843277,
0.10335507988929749,
0.27091774344444275,
-0.03517613932490349,
-0.5280426740646362,
-0.40830931067466736,
-0.24239692091941833,
0.3164469599723816,
0.45723456144332886,
-0.5527555346488953,
1.0177949666976929,
-0.26917701959609985,
-0.8135175704956055,
-0.6788257360458374,
0.1647273302078247,
0.1725139170885086,
0.5075945854187012,
0.42082521319389343,
-0.4290771484375,
-0.6132272481918335,
-0.631488561630249,
0.012921242043375969,
-0.23039332032203674,
0.21441882848739624,
0.48613059520721436,
0.7620752453804016,
-0.23278740048408508,
0.8242607712745667,
-0.6540585160255432,
-0.28005823493003845,
-0.19902829825878143,
-0.32765987515449524,
0.3375924825668335,
0.806659996509552,
0.6683438420295715,
-0.7508285641670227,
-0.4537198841571808,
-0.24257329106330872,
-0.6913570165634155,
-0.08800648152828217,
-0.08778160065412521,
-0.26693978905677795,
0.03678344935178757,
0.18193940818309784,
-0.6837159395217896,
0.5859184861183167,
0.4661112427711487,
-0.675175666809082,
0.57078617811203,
0.15267017483711243,
0.03231175243854523,
-1.306757926940918,
0.3669833242893219,
0.27653101086616516,
-0.0166011992841959,
-0.5054826140403748,
-0.25845468044281006,
-0.09578804671764374,
-0.023290418088436127,
-0.0175367072224617,
0.5454300045967102,
-0.3494478762149811,
0.23962387442588806,
0.13896821439266205,
0.08426830172538757,
0.10609789937734604,
0.40697038173675537,
-0.10549216717481613,
0.2935497760772705,
1.0011731386184692,
-0.3951041102409363,
0.6259400844573975,
0.6253736615180969,
-0.20579874515533447,
0.8951050639152527,
-0.7855003476142883,
0.034288983792066574,
-0.30244147777557373,
0.45571818947792053,
-0.9002182483673096,
-0.5218522548675537,
0.75688636302948,
-0.7011627554893494,
0.40480726957321167,
-0.3124781847000122,
-0.4856342673301697,
-0.8140189051628113,
-0.6084545254707336,
0.13297125697135925,
0.5252653956413269,
-0.3660638630390167,
0.407716304063797,
0.5660142302513123,
0.06685380637645721,
-0.39884528517723083,
-0.7944378852844238,
-0.12090077251195908,
-0.3720562756061554,
-0.7773256897926331,
0.41386979818344116,
-0.3641830384731293,
-0.10463538020849228,
0.204848051071167,
0.03396988660097122,
0.1502864807844162,
-0.052397556602954865,
0.3565286695957184,
0.2470715343952179,
0.1033979207277298,
0.07280246913433075,
-0.03259144350886345,
-0.21967555582523346,
0.11126678436994553,
-0.21510609984397888,
0.26804661750793457,
-0.3257957398891449,
-0.0983031615614891,
-0.7592296004295349,
0.24993009865283966,
0.41509759426116943,
-0.22627325356006622,
0.6440072655677795,
0.7854015827178955,
-0.21740806102752686,
-0.01731080561876297,
-0.4330675005912781,
-0.21427851915359497,
-0.4111337959766388,
0.051530227065086365,
-0.22197262942790985,
-0.6376783847808838,
0.9861458539962769,
0.14852654933929443,
0.12945552170276642,
0.6526323556900024,
0.4302181601524353,
-0.15455186367034912,
0.6806606650352478,
0.2844277024269104,
-0.27220743894577026,
0.4617948830127716,
-0.7006257772445679,
-0.20688574016094208,
-0.8842434883117676,
-0.3837870657444,
-0.4911501407623291,
-0.6271469593048096,
-0.8403158783912659,
-0.34096089005470276,
0.13881957530975342,
0.1556980013847351,
-0.22109420597553253,
0.5237959027290344,
-0.9611013531684875,
0.32674089074134827,
0.3351030647754669,
0.26139408349990845,
-0.10274992138147354,
0.06839125603437424,
0.07979445904493332,
0.20646807551383972,
-0.5113296508789062,
-0.3016175925731659,
1.2031224966049194,
0.49810731410980225,
0.5651007890701294,
-0.08586165308952332,
0.8419470191001892,
0.06406910717487335,
0.14031419157981873,
-0.5610214471817017,
0.5256273150444031,
0.07525663822889328,
-0.5379008650779724,
-0.14777114987373352,
-0.49864596128463745,
-0.9640494585037231,
-0.20353159308433533,
-0.4244639277458191,
-0.699445903301239,
0.500889778137207,
0.1699773520231247,
-0.29917147755622864,
0.3910369873046875,
-0.6583972573280334,
0.8145274519920349,
0.023578714579343796,
-0.45077869296073914,
0.27647697925567627,
-1.0905380249023438,
0.10162476450204849,
0.21317069232463837,
0.2875683903694153,
-0.3952314853668213,
0.005355572793632746,
1.0240916013717651,
-0.784846842288971,
0.8984900712966919,
-0.37047162652015686,
0.12280921638011932,
0.5856301188468933,
-0.2574828863143921,
0.5255851149559021,
0.15021535754203796,
-0.24579188227653503,
0.32539212703704834,
0.05579732730984688,
-0.4853915870189667,
-0.38267695903778076,
0.7018723487854004,
-0.7374931573867798,
0.12112627178430557,
-0.3251587450504303,
-0.45529085397720337,
0.029599882662296295,
0.1489832103252411,
0.2800579369068146,
0.3698619306087494,
0.04846004769206047,
0.08942220360040665,
0.3642902076244354,
-0.07967571169137955,
0.3852725028991699,
-0.006922172848135233,
-0.07427802681922913,
-0.8030341863632202,
0.8542197346687317,
0.19947098195552826,
0.057793501764535904,
-0.11088339239358902,
0.396275132894516,
-0.3623409867286682,
-0.14774172008037567,
-0.5801373720169067,
0.4560684859752655,
-0.42900049686431885,
-0.4175432622432709,
-0.49218514561653137,
-0.10639917850494385,
-0.663882851600647,
-0.24150319397449493,
-0.2606063783168793,
-0.51329106092453,
-0.3530985414981842,
-0.23139916360378265,
1.0419882535934448,
0.4399183392524719,
-0.7152302861213684,
0.1821669191122055,
-0.5009293556213379,
0.24237483739852905,
-0.033482346683740616,
0.6803945899009705,
-0.09571798145771027,
-0.29787394404411316,
-0.20523786544799805,
0.0680755153298378,
-0.24368518590927124,
-0.6921912431716919,
0.18683671951293945,
-0.0052769798785448074,
0.3376035690307617,
0.17381097376346588,
0.07505683600902557,
0.7084439396858215,
-0.10298845916986465,
0.6636365056037903,
0.2557627260684967,
-0.7784362435340881,
0.6665225028991699,
-0.5076261162757874,
0.13458457589149475,
0.8346605896949768,
0.3616580367088318,
-0.5811579823493958,
-0.08280616998672485,
-0.9527572989463806,
-0.8353332877159119,
0.7982859015464783,
0.44088801741600037,
0.06175694614648819,
0.21859341859817505,
0.5425307154655457,
-0.1632545441389084,
0.3132745325565338,
-0.6471347808837891,
-0.8319804668426514,
-0.3449288606643677,
-0.3317023813724518,
-0.03626945614814758,
-0.012122142128646374,
-0.3188815414905548,
-0.7493435144424438,
0.8160794973373413,
-0.11664963513612747,
0.3890623152256012,
0.4763543903827667,
0.4314538538455963,
-0.30023324489593506,
0.00013251790369395167,
0.2901460528373718,
0.40248367190361023,
-0.26921358704566956,
-0.27262476086616516,
-0.17094656825065613,
-0.6271663904190063,
-0.1097230538725853,
0.5286970734596252,
-0.3104867935180664,
-0.07970413565635681,
0.33100271224975586,
0.8646053075790405,
-0.12311219424009323,
-0.20029278099536896,
0.553878903388977,
-0.0480416975915432,
-0.42394766211509705,
-0.4113154709339142,
-0.06876673549413681,
0.16076594591140747,
0.24110834300518036,
0.06913330405950546,
0.16194838285446167,
-0.10981988906860352,
-0.4347101151943207,
0.4521549344062805,
0.2912442088127136,
-0.4034397304058075,
-0.5403563976287842,
0.5836195349693298,
0.08127675950527191,
-0.18094836175441742,
0.40320542454719543,
-0.2756555676460266,
-0.5694900155067444,
0.754342257976532,
0.16014999151229858,
0.8162193894386292,
-0.18375690281391144,
0.299780935049057,
0.7540258765220642,
0.24570491909980774,
0.04954041168093681,
0.6026274561882019,
-0.24173526465892792,
-0.6210681796073914,
-0.10339237004518509,
-0.6207516193389893,
-0.052915796637535095,
0.11825605481863022,
-0.790095329284668,
0.40433645248413086,
-0.49293628334999084,
-0.24845121800899506,
0.09510466456413269,
0.3539903163909912,
-0.7192224264144897,
0.21044480800628662,
-0.06500673294067383,
1.0222817659378052,
-1.0831019878387451,
0.37280091643333435,
0.714934766292572,
-0.6352899670600891,
-1.200937271118164,
-0.12148711085319519,
0.21033869683742523,
-0.5988757610321045,
0.10849664360284805,
0.17725633084774017,
0.5323079824447632,
-0.009928218089044094,
-0.9582033157348633,
-0.6709069609642029,
1.1674978733062744,
0.02385449968278408,
-0.2777057886123657,
0.3811946213245392,
0.12145881354808807,
0.5881803035736084,
-0.3789686858654022,
0.2786427438259125,
0.6783301830291748,
0.6662601828575134,
0.35845163464546204,
-0.6729037165641785,
0.297580361366272,
-0.59417325258255,
-0.28363317251205444,
0.13676103949546814,
-0.9932670593261719,
0.5531773567199707,
-0.19425660371780396,
-0.01708545722067356,
0.010748680680990219,
0.6015511155128479,
0.45491719245910645,
0.4935595989227295,
0.4818270802497864,
0.873400866985321,
0.8255170583724976,
-0.31755802035331726,
1.1707255840301514,
-0.276904821395874,
0.6099708080291748,
0.7947690486907959,
0.004047961439937353,
0.5044683218002319,
0.28989848494529724,
-0.42113688588142395,
0.5764841437339783,
0.6851310133934021,
-0.4353311359882355,
0.255663126707077,
0.4242704510688782,
-0.09882361441850662,
-0.06980733573436737,
-0.20324115455150604,
-0.6345660090446472,
0.29834669828414917,
0.167622372508049,
-0.4069821238517761,
-0.005760719068348408,
-0.07424154132604599,
0.4436190724372864,
-0.029484771192073822,
-0.294588565826416,
0.6807482242584229,
0.033656030893325806,
-0.3373856246471405,
0.47583889961242676,
-0.25976645946502686,
0.6411845684051514,
-0.5600229501724243,
0.15714722871780396,
-0.07010810077190399,
0.10005602985620499,
-0.6426799297332764,
-1.06087064743042,
0.4255060851573944,
-0.0998728796839714,
-0.2179296761751175,
-0.250142902135849,
0.7191976308822632,
-0.48481982946395874,
-0.8362592458724976,
0.1988266408443451,
0.1071850135922432,
0.3892793357372284,
0.15971340239048004,
-1.247035026550293,
0.592657744884491,
0.11063435673713684,
-0.43636059761047363,
0.07670710980892181,
0.44705310463905334,
0.25099077820777893,
0.4381161332130432,
0.7542113661766052,
0.27345016598701477,
-0.24075207114219666,
0.03956472501158714,
1.0697723627090454,
-0.51784348487854,
-0.4819653034210205,
-0.7690322995185852,
0.9157812595367432,
-0.4165480136871338,
-0.41412386298179626,
0.6764769554138184,
0.8383194804191589,
0.8687261343002319,
0.05440385267138481,
0.8427196741104126,
-0.6293473243713379,
0.707772970199585,
-0.12746404111385345,
0.9623052477836609,
-0.7508872151374817,
-0.08422983437776566,
-0.7683232426643372,
-0.5879501700401306,
-0.40265148878097534,
0.6502432227134705,
-0.16772069036960602,
0.2560279369354248,
0.29631316661834717,
0.8640112280845642,
-0.000028219621526659466,
0.16237619519233704,
-0.2806290090084076,
0.2999318540096283,
0.2835058271884918,
0.4921581745147705,
0.36641043424606323,
-0.9320999383926392,
0.3703162372112274,
-0.7396604418754578,
-0.33585497736930847,
0.09137707203626633,
-0.8695533275604248,
-0.8769650459289551,
-0.9827094674110413,
-0.7135366797447205,
-0.8550750613212585,
-0.33897125720977783,
1.1065490245819092,
0.7691029906272888,
-0.7431646585464478,
-0.21090605854988098,
-0.013465173542499542,
0.21279145777225494,
-0.10070166736841202,
-0.3070993721485138,
0.6888968348503113,
0.3261244595050812,
-0.5782673358917236,
-0.0744827538728714,
-0.0018733293982222676,
0.27683624625205994,
0.11223751306533813,
-0.08426685631275177,
-0.13251864910125732,
-0.21569329500198364,
0.3777748942375183,
0.4924468994140625,
-0.326162725687027,
-0.10931137204170227,
-0.24244624376296997,
0.12153006345033646,
0.18492059409618378,
0.4388173222541809,
-0.5410835146903992,
0.1944185495376587,
0.6059355139732361,
0.331624835729599,
0.39914795756340027,
0.2570422291755676,
-0.04960620403289795,
-0.5492792129516602,
0.02155299484729767,
0.05118907243013382,
0.3157021105289459,
0.35980409383773804,
-0.4911223351955414,
0.7768090963363647,
0.6090235114097595,
-0.6079075336456299,
-0.8795109987258911,
-0.1207316517829895,
-1.3992106914520264,
0.11918937414884567,
1.103625774383545,
0.05988774448633194,
-0.5033334493637085,
0.05388651788234711,
-0.20569834113121033,
0.1671663373708725,
-0.6244919896125793,
0.4854718744754791,
0.5526316165924072,
-0.10138387233018875,
0.16576580703258514,
-0.30671462416648865,
0.6671554446220398,
-0.01968196965754032,
-0.9794898629188538,
0.19710811972618103,
0.39928972721099854,
0.44132447242736816,
0.37699228525161743,
0.7332262396812439,
-0.2504931092262268,
0.023101216182112694,
-0.07147988677024841,
0.29207926988601685,
-0.2403673529624939,
0.02134648524224758,
-0.36586230993270874,
-0.1499405801296234,
-0.5515763163566589,
-0.27894526720046997
]
|
huggingartists/burzum | huggingartists | 2022-10-25T09:25:58Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/burzum"
## 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.089297 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('https://images.genius.com/62edc981d303447265d23a3862abce43.589x589x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/burzum">
<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">Burzum</div>
<a href="https://genius.com/artists/burzum">
<div style="text-align: center; font-size: 14px;">@burzum</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/burzum).
### 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/burzum")
```
## 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|
|------:|---------:|---:|
|96| -| -|
'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/burzum")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.640019416809082,
-0.5238223671913147,
0.058821700513362885,
0.3185650706291199,
-0.2391490638256073,
0.005775999743491411,
-0.36201971769332886,
-0.4651166796684265,
0.7978945374488831,
0.32562100887298584,
-0.8903197646141052,
-0.8479124307632446,
-0.5328978300094604,
0.14459723234176636,
-0.062186311930418015,
1.327674150466919,
-0.18888910114765167,
-0.35741540789604187,
-0.3074203133583069,
-0.24408404529094696,
-0.29226478934288025,
-0.3105185329914093,
-0.28734973073005676,
-0.39671146869659424,
0.33574938774108887,
0.527152955532074,
0.7179497480392456,
0.8415798544883728,
0.523561954498291,
0.34442418813705444,
-0.15830513834953308,
-0.024557318538427353,
-0.39140862226486206,
-0.11550506949424744,
0.15118508040905,
-0.29594093561172485,
-0.6697124242782593,
0.21181602776050568,
0.5563557744026184,
0.44636330008506775,
-0.11484341323375702,
0.4863000214099884,
0.07319522649049759,
0.8659131526947021,
-0.2598775625228882,
0.4723581075668335,
-0.21028709411621094,
-0.15147586166858673,
-0.31318145990371704,
0.056473370641469955,
0.17416594922542572,
-0.6064276099205017,
0.009829016402363777,
-0.7171649932861328,
0.09477187693119049,
0.017118429765105247,
1.0578843355178833,
0.04777330905199051,
0.1454675942659378,
-0.19694259762763977,
-0.19564232230186462,
0.5023869276046753,
-0.6072290539741516,
0.000408742023864761,
0.5842832326889038,
0.1496887356042862,
0.0024250505957752466,
-0.6434755325317383,
-0.6258113384246826,
0.09996039420366287,
-0.16143536567687988,
0.2916899025440216,
-0.2037094682455063,
-0.31649327278137207,
0.5259697437286377,
0.5824898481369019,
-0.5691586136817932,
-0.25066983699798584,
-0.5429204106330872,
-0.11398836970329285,
1.165241003036499,
0.1533893644809723,
0.4037967920303345,
-0.5002132654190063,
-0.23464880883693695,
-0.41542887687683105,
-0.27760231494903564,
0.3723991811275482,
0.5350491404533386,
0.4518168568611145,
-1.0497289896011353,
0.6190720796585083,
-0.1953658014535904,
0.5310087203979492,
0.1605595499277115,
0.01987375319004059,
0.810847818851471,
-0.43829312920570374,
-0.1454521119594574,
-0.0919836014509201,
1.06351637840271,
0.6539604663848877,
0.1782151460647583,
0.0685168206691742,
-0.047488983720541,
0.04239273816347122,
-0.1380820870399475,
-0.8697643280029297,
-0.43104350566864014,
0.6427618265151978,
-0.591697096824646,
-0.5689597129821777,
0.17162440717220306,
-1.03286612033844,
-0.19351904094219208,
-0.2658173441886902,
0.2290506213903427,
-0.3974190950393677,
-0.52717125415802,
0.1962803453207016,
-0.29230770468711853,
0.12713059782981873,
0.02332010492682457,
-0.6047992706298828,
0.19107002019882202,
0.5662119388580322,
0.7749364376068115,
0.23069624602794647,
-0.3131679892539978,
-0.2716376781463623,
-0.170810729265213,
-0.15726301074028015,
0.6725226640701294,
-0.3080870509147644,
-0.3630708158016205,
-0.14337258040905,
0.35444721579551697,
-0.03594061732292175,
-0.30458590388298035,
0.8945117592811584,
0.03239937126636505,
0.2092241793870926,
-0.5653039813041687,
-0.42238345742225647,
-0.03326147794723511,
0.266856849193573,
-0.750801146030426,
1.1145304441452026,
0.3219597041606903,
-1.003772497177124,
0.19011074304580688,
-0.8124086260795593,
-0.3294031023979187,
0.05114100128412247,
0.12518161535263062,
-0.8129003643989563,
-0.1654341071844101,
0.15900647640228271,
0.7414774298667908,
-0.31315770745277405,
0.013975180685520172,
-0.6060971617698669,
-0.1281638741493225,
0.392198771238327,
0.2783395051956177,
1.197306513786316,
0.10008719563484192,
-0.16678448021411896,
0.11438591778278351,
-0.935735285282135,
0.11850421130657196,
0.43098536133766174,
-0.1963728815317154,
-0.12513123452663422,
-0.25616487860679626,
0.4117887616157532,
0.27885347604751587,
0.09854473173618317,
-0.6084078550338745,
0.37842893600463867,
-0.23622432351112366,
0.44159451127052307,
0.7246748208999634,
-0.001161992666311562,
0.3145761787891388,
-0.6584917306900024,
0.392488032579422,
0.0744224563241005,
0.3456503450870514,
0.01697470061480999,
-0.5449424386024475,
-0.4545536935329437,
-0.2757752537727356,
0.3352390229701996,
0.448583722114563,
-0.6569929122924805,
1.0283610820770264,
-0.34926754236221313,
-0.8723625540733337,
-0.6190569400787354,
0.14543189108371735,
0.22796854376792908,
0.4842628836631775,
0.3822830319404602,
-0.4293617904186249,
-0.6144208908081055,
-0.6361920237541199,
0.11515367776155472,
-0.24046039581298828,
0.17076076567173004,
0.3637460768222809,
0.8281140327453613,
-0.25690096616744995,
0.8300450444221497,
-0.6568475365638733,
-0.26054877042770386,
-0.2821015417575836,
-0.2862701117992401,
0.3926658630371094,
0.7749144434928894,
0.6825674176216125,
-0.845806360244751,
-0.49891555309295654,
-0.21778135001659393,
-0.7139267921447754,
-0.09263287484645844,
-0.007743536494672298,
-0.2913108468055725,
0.05251706764101982,
0.09617455303668976,
-0.7293053865432739,
0.5568550229072571,
0.5137844681739807,
-0.6980566382408142,
0.5900307297706604,
0.051297567784786224,
-0.012879067100584507,
-1.2750970125198364,
0.3824390470981598,
0.2706868648529053,
0.02243356592953205,
-0.618201494216919,
-0.20786654949188232,
-0.06283123046159744,
-0.04008762910962105,
-0.07733598351478577,
0.5903790593147278,
-0.35114264488220215,
0.26851698756217957,
0.14290641248226166,
0.051054392009973526,
0.0891215056180954,
0.47547778487205505,
-0.051607683300971985,
0.28276771306991577,
1.0108972787857056,
-0.38670915365219116,
0.6789316534996033,
0.6306292414665222,
-0.24450767040252686,
0.8616393208503723,
-0.8243998289108276,
0.02459484338760376,
-0.24481695890426636,
0.38040849566459656,
-0.846052348613739,
-0.5304909944534302,
0.830499529838562,
-0.6993264555931091,
0.4033656120300293,
-0.224321186542511,
-0.5778300166130066,
-0.7904859185218811,
-0.6898746490478516,
0.11558719724416733,
0.5421051979064941,
-0.3873530328273773,
0.37760084867477417,
0.5710428357124329,
0.04245112091302872,
-0.33444368839263916,
-0.7857191562652588,
-0.13884910941123962,
-0.38141581416130066,
-0.8239941000938416,
0.43447384238243103,
-0.35587289929389954,
-0.08046573400497437,
0.1753174066543579,
0.0978906899690628,
0.13175813853740692,
-0.0029392798896878958,
0.4127633571624756,
0.3281607925891876,
0.08636511117219925,
-0.0025956020690500736,
-0.07860291004180908,
-0.24556228518486023,
0.10916050523519516,
-0.1860835999250412,
0.28748756647109985,
-0.3403148055076599,
-0.08512894064188004,
-0.6560003757476807,
0.19914521276950836,
0.41980475187301636,
-0.28874751925468445,
0.6590675711631775,
0.7827123403549194,
-0.25763973593711853,
-0.04112733155488968,
-0.47054094076156616,
-0.13583195209503174,
-0.4119972586631775,
0.032653458416461945,
-0.20586521923542023,
-0.6221866607666016,
0.9351892471313477,
0.2199583202600479,
0.08936038613319397,
0.615828812122345,
0.5268514752388,
-0.1010097786784172,
0.6405662298202515,
0.3711869716644287,
-0.26014137268066406,
0.5000357627868652,
-0.7002143263816833,
-0.24049164354801178,
-0.868140459060669,
-0.46463438868522644,
-0.517501175403595,
-0.518153727054596,
-0.8541691899299622,
-0.45364999771118164,
0.1883680522441864,
0.13614560663700104,
-0.23334814608097076,
0.45069366693496704,
-0.9527854919433594,
0.22831766307353973,
0.3563399910926819,
0.27764156460762024,
-0.11340848356485367,
0.11355126649141312,
0.08861095458269119,
0.15551383793354034,
-0.6023359298706055,
-0.25130966305732727,
1.1362762451171875,
0.49607211351394653,
0.5527600049972534,
-0.0846417099237442,
0.8246701955795288,
0.04033853858709335,
0.24484117329120636,
-0.4828759729862213,
0.49912121891975403,
0.04669862240552902,
-0.5514364242553711,
-0.18909859657287598,
-0.5061528086662292,
-0.9428285956382751,
-0.13162945210933685,
-0.42431503534317017,
-0.6977115273475647,
0.5111579298973083,
0.07535997033119202,
-0.22775381803512573,
0.3823498785495758,
-0.5953629016876221,
0.8922870755195618,
-0.05719355121254921,
-0.4516027271747589,
0.2647884786128998,
-1.0540722608566284,
0.15732991695404053,
0.21312688291072845,
0.2747539281845093,
-0.3882148861885071,
0.047069206833839417,
1.0012532472610474,
-0.7898511290550232,
0.9466690421104431,
-0.3474554717540741,
0.17393673956394196,
0.5576515197753906,
-0.30437636375427246,
0.43994641304016113,
0.06701657921075821,
-0.27259618043899536,
0.3704487383365631,
0.06219369173049927,
-0.46930131316185,
-0.42778369784355164,
0.6375800967216492,
-0.7114972472190857,
0.06990797072649002,
-0.37047260999679565,
-0.4585200846195221,
0.05722298100590706,
0.1755882352590561,
0.28659215569496155,
0.3959449529647827,
-0.016977490857243538,
0.15232835710048676,
0.44322267174720764,
-0.12465233355760574,
0.3046834468841553,
0.05211421847343445,
-0.10440908372402191,
-0.7864897847175598,
0.9338444471359253,
0.15538515150547028,
0.015906808897852898,
-0.0607755072414875,
0.4405614137649536,
-0.3847620189189911,
-0.1467294991016388,
-0.6256728172302246,
0.516085684299469,
-0.37306445837020874,
-0.4002876877784729,
-0.43786293268203735,
-0.14802764356136322,
-0.6216496825218201,
-0.16521042585372925,
-0.21494312584400177,
-0.46213558316230774,
-0.30190524458885193,
-0.2475084513425827,
1.0385830402374268,
0.4376293122768402,
-0.7104578614234924,
0.1137586385011673,
-0.5356937050819397,
0.26145222783088684,
-0.09608776122331619,
0.6734327673912048,
-0.09531975537538528,
-0.3100218176841736,
-0.24651485681533813,
0.10948186367750168,
-0.19762541353702545,
-0.7113454937934875,
0.256062388420105,
-0.04664408788084984,
0.36215779185295105,
0.11893098056316376,
0.1445373147726059,
0.6684286594390869,
-0.041780535131692886,
0.6305996775627136,
0.30680954456329346,
-0.7993570566177368,
0.6607922315597534,
-0.4871505796909332,
0.1477348953485489,
0.7454020380973816,
0.3846791386604309,
-0.6259756684303284,
-0.14640231430530548,
-0.9653201103210449,
-0.8178662657737732,
0.8232916593551636,
0.43332988023757935,
0.07663188129663467,
0.21661871671676636,
0.5317027568817139,
-0.1900002807378769,
0.3000156879425049,
-0.6420918107032776,
-0.8462040424346924,
-0.43011194467544556,
-0.3576696813106537,
-0.07121967524290085,
-0.11165555566549301,
-0.26444050669670105,
-0.6828204393386841,
0.7735530734062195,
-0.09204476326704025,
0.30506500601768494,
0.43437808752059937,
0.42073529958724976,
-0.25465092062950134,
0.0062268986366689205,
0.2791103720664978,
0.369246244430542,
-0.257289856672287,
-0.27832913398742676,
-0.1467161476612091,
-0.5995780229568481,
-0.10306233167648315,
0.5258607864379883,
-0.3752000331878662,
-0.05757560208439827,
0.3096010386943817,
0.908701479434967,
0.02219882793724537,
-0.27132877707481384,
0.5734987258911133,
-0.03484542667865753,
-0.4096837043762207,
-0.39215824007987976,
-0.010479963384568691,
0.16075339913368225,
0.24902422726154327,
0.04089142382144928,
0.07304863631725311,
-0.11896100640296936,
-0.4339660704135895,
0.40588194131851196,
0.2526240050792694,
-0.40210461616516113,
-0.5219063758850098,
0.5722201466560364,
0.07127410918474197,
-0.15679001808166504,
0.4722180664539337,
-0.1825750321149826,
-0.6158179640769958,
0.7515897154808044,
0.13019615411758423,
0.7826140522956848,
-0.1672201156616211,
0.3542437255382538,
0.7167088389396667,
0.2211412638425827,
-0.06294959038496017,
0.5396336913108826,
-0.2087908685207367,
-0.6610357761383057,
-0.04711889103055,
-0.5832006335258484,
-0.1018383577466011,
0.05940336734056473,
-0.85268634557724,
0.3994368612766266,
-0.4925327003002167,
-0.23853567242622375,
0.011909347027540207,
0.40281710028648376,
-0.7038021683692932,
0.1761169284582138,
-0.04616176709532738,
1.0502005815505981,
-1.0221127271652222,
0.4473249316215515,
0.7487783432006836,
-0.69088214635849,
-1.1837998628616333,
-0.14402338862419128,
0.1537828892469406,
-0.5461091995239258,
0.19589555263519287,
0.19008232653141022,
0.49285000562667847,
-0.05452609807252884,
-0.8886820673942566,
-0.6033409237861633,
1.1534360647201538,
0.020130282267928123,
-0.2013739049434662,
0.31690531969070435,
0.11086323857307434,
0.6655768752098083,
-0.3227897882461548,
0.2719927430152893,
0.6538807153701782,
0.7253558039665222,
0.2954356074333191,
-0.7081639766693115,
0.310310423374176,
-0.6340557932853699,
-0.21017009019851685,
0.08068136125802994,
-1.000044584274292,
0.5825135707855225,
-0.17052248120307922,
-0.06928052753210068,
0.011066211387515068,
0.6506838202476501,
0.46652814745903015,
0.45299065113067627,
0.42357897758483887,
0.7859554886817932,
0.8179377913475037,
-0.32590436935424805,
1.228327989578247,
-0.25433939695358276,
0.6447781324386597,
0.7516768574714661,
-0.0012680704239755869,
0.5061991810798645,
0.21700850129127502,
-0.3481907546520233,
0.5898309946060181,
0.6631067991256714,
-0.47480612993240356,
0.23561570048332214,
0.377296507358551,
-0.03478409722447395,
-0.09229087829589844,
-0.22433584928512573,
-0.5891435146331787,
0.2943800985813141,
0.2154209017753601,
-0.26542234420776367,
-0.016276663169264793,
-0.018535954877734184,
0.38597986102104187,
-0.018879448994994164,
-0.2645644247531891,
0.6452478766441345,
0.04045502468943596,
-0.35567381978034973,
0.5528464317321777,
-0.17097517848014832,
0.692307710647583,
-0.6003328561782837,
0.15568943321704865,
-0.11167895048856735,
0.10135626792907715,
-0.6261774301528931,
-1.114314079284668,
0.3946123421192169,
-0.046268247067928314,
-0.2570217251777649,
-0.3209300637245178,
0.7187572717666626,
-0.4873390197753906,
-0.7968448400497437,
0.24468541145324707,
0.19532227516174316,
0.34131863713264465,
0.15534240007400513,
-1.2619982957839966,
0.5738705992698669,
0.14054472744464874,
-0.46398651599884033,
0.12147555500268936,
0.5372687578201294,
0.17331700026988983,
0.5453119277954102,
0.7362489104270935,
0.27571210265159607,
-0.2312607616186142,
0.03238886967301369,
1.1046762466430664,
-0.5505890250205994,
-0.4638587236404419,
-0.7342492938041687,
0.9014529585838318,
-0.37942108511924744,
-0.4083292782306671,
0.7109361290931702,
0.8046985864639282,
0.8925350308418274,
0.010271365754306316,
0.8053059577941895,
-0.6423022747039795,
0.6885595321655273,
-0.20892047882080078,
0.9523828625679016,
-0.7018955945968628,
-0.10246333479881287,
-0.7220562100410461,
-0.5147803425788879,
-0.40686070919036865,
0.6704756021499634,
-0.22135759890079498,
0.18651814758777618,
0.2680545449256897,
0.9358965158462524,
0.030145112425088882,
0.14278347790241241,
-0.23499147593975067,
0.29879501461982727,
0.24530509114265442,
0.5461696982383728,
0.4402729868888855,
-0.8482855558395386,
0.3729906380176544,
-0.79327392578125,
-0.3143202066421509,
0.0008053206838667393,
-0.8130456805229187,
-0.9119961857795715,
-0.9519692063331604,
-0.6655973792076111,
-0.7876279950141907,
-0.286428302526474,
1.0489429235458374,
0.7177676558494568,
-0.7091464400291443,
-0.3007880449295044,
0.09312156587839127,
0.2769453823566437,
-0.10887870192527771,
-0.32311204075813293,
0.6632493734359741,
0.35704270005226135,
-0.5915263295173645,
-0.14854148030281067,
0.045010101050138474,
0.22292090952396393,
0.06292130798101425,
-0.11769478023052216,
-0.11095476150512695,
-0.2912558913230896,
0.34343528747558594,
0.4939427077770233,
-0.30205807089805603,
-0.10532773286104202,
-0.25764259696006775,
0.013940593227744102,
0.191931813955307,
0.4821554124355316,
-0.49685928225517273,
0.20353274047374725,
0.6526862382888794,
0.27732738852500916,
0.484365314245224,
0.22207987308502197,
-0.0003515777934808284,
-0.48699355125427246,
0.10418998450040817,
-0.020881598815321922,
0.3116194009780884,
0.4062141478061676,
-0.43994542956352234,
0.7846176028251648,
0.5810663104057312,
-0.5049013495445251,
-0.8616315126419067,
-0.1489303559064865,
-1.3480515480041504,
0.07909270375967026,
1.02821946144104,
-0.006483525037765503,
-0.5718562006950378,
0.05016877502202988,
-0.21958553791046143,
0.16132275760173798,
-0.5639327764511108,
0.4813820421695709,
0.5335245132446289,
-0.09813978523015976,
0.12746764719486237,
-0.31629517674446106,
0.6224819421768188,
-0.010115106590092182,
-0.9973365068435669,
0.2149885892868042,
0.45240360498428345,
0.4752276539802551,
0.3214992880821228,
0.7779253721237183,
-0.2762686312198639,
0.09600482136011124,
-0.08427733182907104,
0.3481997549533844,
-0.29525840282440186,
0.018067315220832825,
-0.38072237372398376,
-0.11929378658533096,
-0.5029835104942322,
-0.21279677748680115
]
|
huggingartists/chester-bennington | huggingartists | 2022-10-25T09:26:18Z | 260 | 1 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/chester-bennington"
## 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.519451 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('https://images.genius.com/3853f38429e3cd0278c2b5b6307b9e92.752x752x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/chester-bennington">
<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">Chester Bennington</div>
<a href="https://genius.com/artists/chester-bennington">
<div style="text-align: center; font-size: 14px;">@chester-bennington</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/chester-bennington).
### 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/chester-bennington")
```
## 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|
|------:|---------:|---:|
|391| -| -|
'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/chester-bennington")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6574762463569641,
-0.5295483469963074,
0.12189052253961563,
0.277424693107605,
-0.238688662648201,
-0.029341895133256912,
-0.3100108504295349,
-0.5061793923377991,
0.8684385418891907,
0.311208039522171,
-0.933099627494812,
-0.8404192328453064,
-0.559099018573761,
0.15294647216796875,
-0.13178002834320068,
1.2287182807922363,
-0.17725273966789246,
-0.35709112882614136,
-0.27102595567703247,
-0.23837412893772125,
-0.26202064752578735,
-0.30854520201683044,
-0.3676861822605133,
-0.3394601345062256,
0.42088693380355835,
0.4607163667678833,
0.7171327471733093,
0.9073119163513184,
0.5057682394981384,
0.35017654299736023,
-0.12248094379901886,
-0.009096633642911911,
-0.38571155071258545,
-0.1571606993675232,
0.15892301499843597,
-0.23376944661140442,
-0.645432710647583,
0.23782040178775787,
0.5218775868415833,
0.44499471783638,
-0.08496525138616562,
0.4121674597263336,
0.06216999143362045,
0.8373655080795288,
-0.27225905656814575,
0.4796826243400574,
-0.25911733508110046,
-0.188594788312912,
-0.28339558839797974,
0.060879990458488464,
0.20741426944732666,
-0.6401467323303223,
0.030410803854465485,
-0.749347448348999,
0.09191527217626572,
0.02472591958940029,
1.0194029808044434,
0.038664285093545914,
0.084322489798069,
-0.23359408974647522,
-0.13196741044521332,
0.5137975215911865,
-0.5994678735733032,
-0.019711632281541824,
0.6079692244529724,
0.15648719668388367,
0.0068262782879173756,
-0.5865761041641235,
-0.6566987037658691,
0.07044999301433563,
-0.19104784727096558,
0.28348878026008606,
-0.16371609270572662,
-0.3081304132938385,
0.45667287707328796,
0.5870451927185059,
-0.5113654732704163,
-0.21723370254039764,
-0.51967853307724,
-0.11352107673883438,
1.1662673950195312,
0.1522815227508545,
0.3827945291996002,
-0.4902913272380829,
-0.21455830335617065,
-0.4367164969444275,
-0.1862049549818039,
0.32555851340293884,
0.5257624387741089,
0.5112966299057007,
-1.0481306314468384,
0.6021687388420105,
-0.19169992208480835,
0.5372676253318787,
0.18091507256031036,
0.04561450332403183,
0.7827983498573303,
-0.37712523341178894,
-0.12092504650354385,
-0.07079996168613434,
1.0405664443969727,
0.6561048030853271,
0.17005901038646698,
0.06951369345188141,
-0.03752874955534935,
0.04433466121554375,
-0.1997520625591278,
-0.7761103510856628,
-0.40710633993148804,
0.6822927594184875,
-0.5960969924926758,
-0.5848150253295898,
0.1662825644016266,
-0.9850952625274658,
-0.2814961373806,
-0.32207971811294556,
0.235798180103302,
-0.4227532148361206,
-0.5187591910362244,
0.16844019293785095,
-0.3103783130645752,
0.14754070341587067,
0.07001525163650513,
-0.6022517085075378,
0.1627330482006073,
0.5808088779449463,
0.7325354218482971,
0.20098939538002014,
-0.33824422955513,
-0.24592314660549164,
-0.11363232880830765,
-0.09487812966108322,
0.7024277448654175,
-0.2857188284397125,
-0.36501073837280273,
-0.1140253096818924,
0.3564993143081665,
-0.027215896174311638,
-0.2802796959877014,
0.8802667856216431,
0.06501266360282898,
0.18615847826004028,
-0.6522828340530396,
-0.42525359988212585,
0.013056149706244469,
0.30058592557907104,
-0.8350465297698975,
1.0830522775650024,
0.33766981959342957,
-1.000564694404602,
0.19608356058597565,
-0.7757415771484375,
-0.34184905886650085,
-0.012214849703013897,
0.07630876451730728,
-0.753190279006958,
-0.1380920708179474,
0.1927579939365387,
0.6990059018135071,
-0.3627491593360901,
-0.010543212294578552,
-0.623787522315979,
-0.12169153988361359,
0.36807820200920105,
0.2201186567544937,
1.18734610080719,
0.06977041065692902,
-0.14542096853256226,
0.06885772198438644,
-0.9912364482879639,
0.11792130023241043,
0.42067500948905945,
-0.22645573318004608,
-0.10371681302785873,
-0.24402299523353577,
0.45351913571357727,
0.3161982297897339,
0.08827237784862518,
-0.6172816753387451,
0.3509572148323059,
-0.2021542638540268,
0.41608062386512756,
0.8014101386070251,
0.004059494473040104,
0.2862781882286072,
-0.6849091649055481,
0.33919522166252136,
0.08560013771057129,
0.38341811299324036,
0.08117886632680893,
-0.5113911628723145,
-0.4865965247154236,
-0.28363242745399475,
0.28107360005378723,
0.44197961688041687,
-0.6493417620658875,
1.0435380935668945,
-0.3297244906425476,
-0.8223800659179688,
-0.6061968803405762,
0.10606101155281067,
0.15142837166786194,
0.5178955793380737,
0.40624624490737915,
-0.4492008090019226,
-0.5655819773674011,
-0.6861444711685181,
0.08986331522464752,
-0.2882416248321533,
0.17987266182899475,
0.4302201271057129,
0.7687343955039978,
-0.23920148611068726,
0.8357164859771729,
-0.6598725318908691,
-0.28118643164634705,
-0.24227477610111237,
-0.29849883913993835,
0.3754386603832245,
0.7972270250320435,
0.6592922806739807,
-0.8253802061080933,
-0.4881456792354584,
-0.26524099707603455,
-0.6791008710861206,
-0.11625542491674423,
-0.04544821009039879,
-0.3200204074382782,
0.03015783615410328,
0.11267928034067154,
-0.7017316818237305,
0.5422926545143127,
0.49773460626602173,
-0.6865621209144592,
0.54543137550354,
0.08910548686981201,
0.029499506577849388,
-1.274918556213379,
0.37728360295295715,
0.25456660985946655,
0.05143583565950394,
-0.5521572232246399,
-0.2782302498817444,
-0.0896134153008461,
-0.010212879627943039,
-0.10758740454912186,
0.5861304998397827,
-0.32632172107696533,
0.31394901871681213,
0.1626441925764084,
0.06879513710737228,
0.08882412314414978,
0.4378296136856079,
-0.06039134040474892,
0.24829593300819397,
0.9883033633232117,
-0.35536015033721924,
0.6638436913490295,
0.6026052832603455,
-0.18782147765159607,
0.8960012793540955,
-0.7800068259239197,
0.012468487955629826,
-0.2750828266143799,
0.4062778353691101,
-0.8487825989723206,
-0.5433939099311829,
0.7719911336898804,
-0.6333185434341431,
0.39140573143959045,
-0.15584266185760498,
-0.5910379886627197,
-0.793152928352356,
-0.6916061043739319,
0.13374070823192596,
0.5002403259277344,
-0.40520980954170227,
0.4344813823699951,
0.5523362159729004,
0.13661649823188782,
-0.3179973065853119,
-0.8241082429885864,
-0.16974426805973053,
-0.3741550147533417,
-0.809751570224762,
0.4035502076148987,
-0.3348614275455475,
-0.07238567620515823,
0.17646779119968414,
0.0687454417347908,
0.0462169423699379,
-0.03278316557407379,
0.3822011649608612,
0.2842450737953186,
0.11918865144252777,
0.03440228849649429,
-0.10064007341861725,
-0.2536506950855255,
0.12618939578533173,
-0.19093261659145355,
0.26327818632125854,
-0.2776018977165222,
-0.12268985062837601,
-0.7048754096031189,
0.2796837091445923,
0.4659014940261841,
-0.22969631850719452,
0.6999641060829163,
0.7859184741973877,
-0.2369512915611267,
-0.031072145327925682,
-0.5074907541275024,
-0.1962624341249466,
-0.4173744320869446,
0.031023846939206123,
-0.20538240671157837,
-0.6187142133712769,
0.9405565857887268,
0.19413436949253082,
0.06755463033914566,
0.6853172779083252,
0.4681898355484009,
-0.11944624781608582,
0.65225750207901,
0.37208643555641174,
-0.28024324774742126,
0.49544665217399597,
-0.6521452069282532,
-0.21986249089241028,
-0.8421335220336914,
-0.43190035223960876,
-0.5238102078437805,
-0.5364831686019897,
-0.8458641171455383,
-0.4268742799758911,
0.20782414078712463,
0.11977249383926392,
-0.23597948253154755,
0.45414239168167114,
-0.9644055366516113,
0.26495495438575745,
0.3694586157798767,
0.3347460925579071,
-0.12594620883464813,
0.1060231477022171,
0.08293338865041733,
0.17409417033195496,
-0.5638498663902283,
-0.21160189807415009,
1.1113507747650146,
0.4586097300052643,
0.549341082572937,
-0.034032899886369705,
0.8367394208908081,
0.06399371474981308,
0.2242717146873474,
-0.49458104372024536,
0.5067949295043945,
-0.005521552637219429,
-0.5232357382774353,
-0.1596089005470276,
-0.4965935945510864,
-0.9260416626930237,
-0.1881066858768463,
-0.4211365878582001,
-0.7051591873168945,
0.522558331489563,
0.11133608967065811,
-0.2233637422323227,
0.37134286761283875,
-0.6048691868782043,
0.8358983397483826,
-0.07463249564170837,
-0.4549734592437744,
0.25088736414909363,
-1.0411319732666016,
0.16345906257629395,
0.14605893194675446,
0.25491365790367126,
-0.42949336767196655,
0.04807319492101669,
0.9793976545333862,
-0.8383750915527344,
0.9355207681655884,
-0.3164796829223633,
0.13030043244361877,
0.5628479719161987,
-0.33200860023498535,
0.4706535041332245,
0.061519600450992584,
-0.31447285413742065,
0.32643112540245056,
0.05123442783951759,
-0.47557082772254944,
-0.43416106700897217,
0.7164000868797302,
-0.7376123070716858,
0.05574861541390419,
-0.39247673749923706,
-0.4817146360874176,
0.020648309960961342,
0.16091109812259674,
0.2501046657562256,
0.39202550053596497,
0.040623828768730164,
0.1117006242275238,
0.415702760219574,
-0.13818274438381195,
0.3313165605068207,
0.054903674870729446,
-0.027469301596283913,
-0.7963031530380249,
0.865779459476471,
0.16714398562908173,
0.06610614061355591,
-0.040392108261585236,
0.4488452672958374,
-0.41199791431427,
-0.08202045410871506,
-0.5210673213005066,
0.5215899348258972,
-0.44703108072280884,
-0.3505144417285919,
-0.4598452150821686,
-0.1358572393655777,
-0.6399243474006653,
-0.22600185871124268,
-0.22593319416046143,
-0.5238401889801025,
-0.31640625,
-0.2126661241054535,
1.067069411277771,
0.44857949018478394,
-0.7309902906417847,
0.1332622617483139,
-0.49953988194465637,
0.25346049666404724,
-0.03553580492734909,
0.6717797517776489,
-0.05891964212059975,
-0.23601093888282776,
-0.19309072196483612,
0.04695732891559601,
-0.18069076538085938,
-0.7307652831077576,
0.2102256864309311,
-0.05260403826832771,
0.36543479561805725,
0.10335410386323929,
0.16258078813552856,
0.7043482661247253,
-0.02914288267493248,
0.6707155704498291,
0.3358348608016968,
-0.8052366971969604,
0.684468150138855,
-0.49139514565467834,
0.17122943699359894,
0.8088852763175964,
0.3594195544719696,
-0.5866433382034302,
-0.11880124360322952,
-0.9515267610549927,
-0.8497197031974792,
0.8002896308898926,
0.4238864481449127,
0.039651934057474136,
0.17085298895835876,
0.5439130663871765,
-0.22090089321136475,
0.2821463942527771,
-0.6246199607849121,
-0.8750132322311401,
-0.3993937373161316,
-0.4004869759082794,
-0.0319635383784771,
-0.056400399655103683,
-0.2721727192401886,
-0.69997239112854,
0.7957905530929565,
-0.11896885931491852,
0.3162863850593567,
0.458408921957016,
0.4585598409175873,
-0.21256178617477417,
-0.022590789943933487,
0.24669811129570007,
0.36694249510765076,
-0.27182403206825256,
-0.26658037304878235,
-0.15223868191242218,
-0.6073856949806213,
-0.1229826956987381,
0.5422703623771667,
-0.3219643235206604,
-0.08383674174547195,
0.3263663649559021,
0.8261023163795471,
0.007353737484663725,
-0.2526107728481293,
0.558089554309845,
-0.07249805331230164,
-0.38092657923698425,
-0.3792029619216919,
-0.02204037457704544,
0.11332868039608002,
0.23675885796546936,
0.04410089552402496,
0.05077743157744408,
-0.11503282189369202,
-0.42883628606796265,
0.42054885625839233,
0.2502078413963318,
-0.4266909062862396,
-0.4649917483329773,
0.58396315574646,
0.09608345478773117,
-0.10544655472040176,
0.5005807280540466,
-0.14377731084823608,
-0.5951106548309326,
0.7664306163787842,
0.12266580015420914,
0.8451663255691528,
-0.13150374591350555,
0.30130961537361145,
0.7106884121894836,
0.23312245309352875,
-0.0011483284179121256,
0.5538805723190308,
-0.2140938639640808,
-0.6091833710670471,
-0.016684995964169502,
-0.5825824737548828,
-0.07218531519174576,
0.0997338816523552,
-0.8328876495361328,
0.4341343641281128,
-0.499868243932724,
-0.2595985531806946,
0.026797642931342125,
0.3943292498588562,
-0.7293680310249329,
0.20145826041698456,
-0.04658421128988266,
1.1034598350524902,
-1.0685957670211792,
0.48530638217926025,
0.6776118874549866,
-0.6801037788391113,
-1.2262486219406128,
-0.10609506070613861,
0.22844330966472626,
-0.5585165619850159,
0.18831785023212433,
0.192871555685997,
0.4964194595813751,
-0.03649698942899704,
-0.875345766544342,
-0.6664535999298096,
1.1848275661468506,
0.014313864521682262,
-0.21304139494895935,
0.33937376737594604,
0.1463896632194519,
0.5994901657104492,
-0.31213077902793884,
0.3121870160102844,
0.6741753816604614,
0.7283056974411011,
0.33679112792015076,
-0.7325352430343628,
0.3239723742008209,
-0.5959271192550659,
-0.204829141497612,
0.07252437621355057,
-1.0238213539123535,
0.6275109648704529,
-0.10467156767845154,
-0.02523198164999485,
0.022226745262742043,
0.6058290004730225,
0.47148993611335754,
0.40096336603164673,
0.4832961857318878,
0.7859359383583069,
0.8263759613037109,
-0.350775808095932,
1.2529568672180176,
-0.26947903633117676,
0.6292905807495117,
0.7818236947059631,
0.00744409067556262,
0.5047496557235718,
0.2866561710834503,
-0.32755810022354126,
0.5617172122001648,
0.6618530750274658,
-0.4278014898300171,
0.26913729310035706,
0.40362849831581116,
-0.09665889292955399,
-0.0900345891714096,
-0.2667195796966553,
-0.581890881061554,
0.29246747493743896,
0.19006815552711487,
-0.33205312490463257,
-0.04505571350455284,
-0.08065878599882126,
0.3817962110042572,
-0.05054095759987831,
-0.27062106132507324,
0.6268683075904846,
0.0026961390394717455,
-0.33992069959640503,
0.5197824239730835,
-0.2002684324979782,
0.6511523127555847,
-0.6195461750030518,
0.1415078341960907,
-0.09126610308885574,
0.12288723140954971,
-0.6037881374359131,
-1.0798217058181763,
0.3807232677936554,
-0.09963122010231018,
-0.28984835743904114,
-0.290271520614624,
0.6844354271888733,
-0.44547829031944275,
-0.8028131127357483,
0.2469843029975891,
0.17906048893928528,
0.3229496479034424,
0.17692336440086365,
-1.2909592390060425,
0.6203267574310303,
0.14179165661334991,
-0.4422144889831543,
0.09173659235239029,
0.526839017868042,
0.17267905175685883,
0.4697180688381195,
0.7407566905021667,
0.2769891321659088,
-0.22281701862812042,
0.08984757959842682,
1.1281906366348267,
-0.5620113015174866,
-0.4708622694015503,
-0.7287166118621826,
0.9071030020713806,
-0.43437257409095764,
-0.4264819622039795,
0.7074393630027771,
0.785966694355011,
0.8458703756332397,
0.0457414835691452,
0.8102056980133057,
-0.6729336977005005,
0.6776614785194397,
-0.1880980283021927,
0.9307957291603088,
-0.6883924603462219,
-0.055539414286613464,
-0.7129266262054443,
-0.5265058875083923,
-0.4225568473339081,
0.6668720245361328,
-0.1985252946615219,
0.22175809741020203,
0.31309738755226135,
0.9327747821807861,
0.01379681471735239,
0.1697913557291031,
-0.2839180529117584,
0.2975483536720276,
0.3137979507446289,
0.5995787978172302,
0.39441752433776855,
-0.8864769339561462,
0.335781991481781,
-0.7917618751525879,
-0.32861214876174927,
0.06905122846364975,
-0.8706563711166382,
-0.9032397866249084,
-0.9562603235244751,
-0.6862142086029053,
-0.8071553111076355,
-0.2958182394504547,
1.0630098581314087,
0.7383338212966919,
-0.7233827114105225,
-0.26222944259643555,
0.04271257296204567,
0.23674459755420685,
-0.08452951908111572,
-0.3259694576263428,
0.7308617234230042,
0.38305291533470154,
-0.5926293134689331,
-0.1514301896095276,
-0.00013777529238723218,
0.2636590301990509,
0.04973257705569267,
-0.0875922217965126,
-0.15353745222091675,
-0.24557174742221832,
0.345004677772522,
0.48934268951416016,
-0.36052405834198,
-0.14406631886959076,
-0.29170867800712585,
0.015902921557426453,
0.13915924727916718,
0.4680893123149872,
-0.5545323491096497,
0.19482217729091644,
0.6315080523490906,
0.30050498247146606,
0.42619386315345764,
0.23911307752132416,
-0.0036349960137158632,
-0.5049973130226135,
0.0761476531624794,
-0.02456861175596714,
0.27257040143013,
0.4014418423175812,
-0.46138104796409607,
0.7695968151092529,
0.5815468430519104,
-0.5065535306930542,
-0.8167988061904907,
-0.15984991192817688,
-1.3699796199798584,
0.07822869718074799,
1.0287845134735107,
0.07016699016094208,
-0.5634386539459229,
0.045179519802331924,
-0.18835225701332092,
0.1465461105108261,
-0.5844672918319702,
0.4913281798362732,
0.5313653349876404,
-0.14605547487735748,
0.11144006997346878,
-0.3046715259552002,
0.6198205947875977,
-0.033352941274642944,
-0.9802365899085999,
0.18692414462566376,
0.4557337462902069,
0.4259043335914612,
0.3198934495449066,
0.7715826034545898,
-0.24373076856136322,
0.06260596960783005,
-0.07355492562055588,
0.2687413990497589,
-0.26126906275749207,
0.07246857136487961,
-0.3595835566520691,
-0.12048658728599548,
-0.5164762735366821,
-0.20829139649868011
]
|
huggingartists/coin | huggingartists | 2022-10-25T09:26:45Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/coin"
## 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.090433 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('https://images.genius.com/51dfcc02520ba079e46bee158ffab75a.400x400x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/coin">
<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">COIN</div>
<a href="https://genius.com/artists/coin">
<div style="text-align: center; font-size: 14px;">@coin</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/coin).
### 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/coin")
```
## 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|
|------:|---------:|---:|
|83| -| -|
'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/coin")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6180711984634399,
-0.5307728052139282,
0.07820066064596176,
0.21774929761886597,
-0.2893868088722229,
0.04646088555455208,
-0.3385355770587921,
-0.48016104102134705,
0.8943045735359192,
0.38655248284339905,
-0.8321138620376587,
-0.8217782974243164,
-0.5782214999198914,
0.13684551417827606,
-0.0713687539100647,
1.2900177240371704,
-0.19266285002231598,
-0.4130783975124359,
-0.32470279932022095,
-0.2335924208164215,
-0.27281448245048523,
-0.33260011672973633,
-0.32764026522636414,
-0.3798588216304779,
0.29627519845962524,
0.548861026763916,
0.7131759524345398,
0.8966008424758911,
0.5293400883674622,
0.374465674161911,
-0.0933583527803421,
0.008532456122338772,
-0.34818798303604126,
-0.1368400752544403,
0.16079841554164886,
-0.3106032907962799,
-0.6577391028404236,
0.2765800952911377,
0.47143667936325073,
0.39680156111717224,
-0.06616784632205963,
0.47113755345344543,
0.02201564610004425,
0.8676759600639343,
-0.3178739547729492,
0.5440636873245239,
-0.2443351149559021,
-0.21567082405090332,
-0.32264190912246704,
0.030782101675868034,
0.2057451456785202,
-0.5525909066200256,
0.0003126382071059197,
-0.8125908374786377,
0.04756402596831322,
0.03343928977847099,
1.0262296199798584,
-0.03898174688220024,
0.15409383177757263,
-0.29743337631225586,
-0.16589362919330597,
0.531619131565094,
-0.5992703437805176,
-0.03079201653599739,
0.5785447955131531,
0.1438085287809372,
0.087563656270504,
-0.6492747664451599,
-0.6385912895202637,
0.07139938324689865,
-0.11349944770336151,
0.2836737036705017,
-0.1795496940612793,
-0.3436078727245331,
0.5304467082023621,
0.5575529336929321,
-0.4395715892314911,
-0.29773667454719543,
-0.5228479504585266,
-0.1300429403781891,
1.1513259410858154,
0.15370461344718933,
0.35798904299736023,
-0.5158364772796631,
-0.2545398473739624,
-0.45448771119117737,
-0.24291634559631348,
0.37866243720054626,
0.6358402967453003,
0.46405574679374695,
-1.0583579540252686,
0.6217573881149292,
-0.22065484523773193,
0.5526440739631653,
0.19722624123096466,
-0.03652646392583847,
0.8121861815452576,
-0.4009881317615509,
-0.0778438001871109,
-0.09337899088859558,
1.0662468671798706,
0.6661592721939087,
0.1839340478181839,
0.11833697557449341,
-0.12558026611804962,
0.024089736863970757,
-0.17756016552448273,
-0.8006813526153564,
-0.4091886878013611,
0.6438053250312805,
-0.5992892980575562,
-0.6553643345832825,
0.17621824145317078,
-0.938237726688385,
-0.2295045256614685,
-0.29946190118789673,
0.31088846921920776,
-0.3706129789352417,
-0.5608887076377869,
0.21196866035461426,
-0.34226909279823303,
0.09344501793384552,
0.01675506681203842,
-0.6352381706237793,
0.21857203543186188,
0.6592016816139221,
0.7441809177398682,
0.23025965690612793,
-0.25403717160224915,
-0.3194946050643921,
-0.1842346489429474,
-0.1246262714266777,
0.6885508298873901,
-0.2621299922466278,
-0.3555240035057068,
-0.12520577013492584,
0.31769171357154846,
-0.01245819590985775,
-0.282358855009079,
0.8675324320793152,
-0.002568211406469345,
0.13019973039627075,
-0.6035443544387817,
-0.4213484227657318,
0.01743987947702408,
0.3353103697299957,
-0.7981177568435669,
0.989276647567749,
0.32920730113983154,
-1.1053951978683472,
0.18923498690128326,
-0.7905029654502869,
-0.33684641122817993,
0.05865447223186493,
0.08732245117425919,
-0.7948606610298157,
-0.1792544722557068,
0.19765886664390564,
0.6657377481460571,
-0.32968756556510925,
-0.03470008447766304,
-0.6374155879020691,
-0.15079373121261597,
0.450568288564682,
0.22668682038784027,
1.1806551218032837,
0.09889072179794312,
-0.13944807648658752,
0.06928499788045883,
-0.9693732261657715,
0.09096688777208328,
0.43868544697761536,
-0.1073741689324379,
-0.1540645956993103,
-0.23071090877056122,
0.47639575600624084,
0.23563316464424133,
0.13447824120521545,
-0.5977667570114136,
0.4139866828918457,
-0.23622417449951172,
0.5237933397293091,
0.7752931118011475,
-0.01176470797508955,
0.32606494426727295,
-0.653516411781311,
0.3767056167125702,
0.12626847624778748,
0.3876968026161194,
0.02236923947930336,
-0.5308150053024292,
-0.4936705231666565,
-0.23818327486515045,
0.35444051027297974,
0.4925433099269867,
-0.7015910744667053,
0.982301652431488,
-0.3171747922897339,
-0.808637797832489,
-0.6187224388122559,
0.09661813080310822,
0.11918438225984573,
0.5479720830917358,
0.3323569893836975,
-0.466643750667572,
-0.6030416488647461,
-0.675903856754303,
0.08795024454593658,
-0.304443895816803,
0.1927735060453415,
0.4285764694213867,
0.8473368883132935,
-0.251636266708374,
0.8471225500106812,
-0.6397064924240112,
-0.2464272379875183,
-0.23123964667320251,
-0.2353663444519043,
0.4337340295314789,
0.76568603515625,
0.6259941458702087,
-0.834217369556427,
-0.43786606192588806,
-0.22942416369915009,
-0.6400668025016785,
-0.05111229792237282,
-0.07466745376586914,
-0.2533060610294342,
0.05877064913511276,
0.11789921671152115,
-0.6950666904449463,
0.5413098931312561,
0.4844026565551758,
-0.6367706060409546,
0.5931056141853333,
0.03138355910778046,
0.01628003641963005,
-1.2753424644470215,
0.3999031186103821,
0.1963406205177307,
0.01422823779284954,
-0.5374985337257385,
-0.2698614299297333,
-0.013502129353582859,
-0.005002641584724188,
-0.06667295843362808,
0.5985987782478333,
-0.33385780453681946,
0.27897998690605164,
0.10851360857486725,
0.1132722944021225,
0.08700074255466461,
0.385505348443985,
-0.04585981369018555,
0.2773383855819702,
1.0199168920516968,
-0.34899020195007324,
0.6706827282905579,
0.580379843711853,
-0.26267674565315247,
0.8441327214241028,
-0.8245173096656799,
0.041888076812028885,
-0.215612530708313,
0.34435057640075684,
-0.8339877128601074,
-0.4769309461116791,
0.8401161432266235,
-0.7054731845855713,
0.4643266797065735,
-0.21089819073677063,
-0.5427870154380798,
-0.8017919063568115,
-0.7082768082618713,
0.1600649505853653,
0.4912842810153961,
-0.34708988666534424,
0.3992263078689575,
0.5825002789497375,
0.12294050306081772,
-0.4223896265029907,
-0.7851715683937073,
-0.10602273046970367,
-0.3691340982913971,
-0.815153956413269,
0.4093136191368103,
-0.3766734302043915,
-0.13905033469200134,
0.14854341745376587,
0.084504134953022,
0.17239326238632202,
0.012545178644359112,
0.3899911046028137,
0.3695168197154999,
0.11783141642808914,
-0.01549973338842392,
-0.1465613692998886,
-0.3227163851261139,
0.1313433051109314,
-0.2310454398393631,
0.24335242807865143,
-0.30250394344329834,
-0.08169916272163391,
-0.6541930437088013,
0.1865909993648529,
0.4169481694698334,
-0.28618815541267395,
0.6418860554695129,
0.7889689207077026,
-0.21152205765247345,
0.005476733669638634,
-0.5046156644821167,
-0.13816086947917938,
-0.43272340297698975,
0.03504543751478195,
-0.2658717930316925,
-0.6437771916389465,
0.9905595779418945,
0.23145203292369843,
0.08092311769723892,
0.7102109789848328,
0.4925203025341034,
-0.06203489378094673,
0.660899817943573,
0.36226212978363037,
-0.3173781931400299,
0.5165827870368958,
-0.7073338627815247,
-0.18672508001327515,
-0.8845968246459961,
-0.39649853110313416,
-0.5103186964988708,
-0.45771104097366333,
-0.9631553888320923,
-0.46006330847740173,
0.20196664333343506,
0.1585085541009903,
-0.22771690785884857,
0.4257221221923828,
-0.9356245398521423,
0.21740339696407318,
0.36200442910194397,
0.26813986897468567,
-0.11888621747493744,
0.09168508648872375,
0.09926360845565796,
0.17587321996688843,
-0.5645084381103516,
-0.23851917684078217,
1.1983273029327393,
0.4847748279571533,
0.5712689161300659,
-0.17013444006443024,
0.8999069929122925,
0.054726891219615936,
0.2281186580657959,
-0.5030472278594971,
0.40967899560928345,
0.059854090213775635,
-0.5097120404243469,
-0.13242711126804352,
-0.5035513639450073,
-0.8793789148330688,
-0.201971173286438,
-0.43132856488227844,
-0.6423141360282898,
0.5062191486358643,
0.05636313930153847,
-0.24744123220443726,
0.3958723843097687,
-0.5606647729873657,
0.8623021245002747,
-0.0861717239022255,
-0.4466785192489624,
0.27910590171813965,
-1.0194286108016968,
0.1761181354522705,
0.21091780066490173,
0.3606271743774414,
-0.38606783747673035,
-0.015993423759937286,
0.9840002655982971,
-0.8202543258666992,
0.8907787799835205,
-0.32062962651252747,
0.1446552872657776,
0.6373323798179626,
-0.32693248987197876,
0.5291348695755005,
0.16678082942962646,
-0.25606223940849304,
0.3773006498813629,
0.0162959061563015,
-0.4621706008911133,
-0.37051671743392944,
0.6747167110443115,
-0.7787392139434814,
0.02716195024549961,
-0.39755818247795105,
-0.47380325198173523,
0.11010004580020905,
0.1559184342622757,
0.2828716039657593,
0.3874383568763733,
0.026411356404423714,
0.10646744072437286,
0.4341542422771454,
-0.11712518334388733,
0.28734585642814636,
0.007659237831830978,
-0.03882688656449318,
-0.8715167045593262,
0.9212769269943237,
0.14427076280117035,
0.05405481159687042,
-0.012918485328555107,
0.4395030438899994,
-0.3880702555179596,
-0.10434521734714508,
-0.6197501420974731,
0.4767773747444153,
-0.3947146236896515,
-0.41298994421958923,
-0.4772503972053528,
-0.10891112685203552,
-0.7040194869041443,
-0.1915341466665268,
-0.2860530912876129,
-0.5528225302696228,
-0.3545079529285431,
-0.19896510243415833,
1.0844570398330688,
0.4381273686885834,
-0.7803001403808594,
0.08991845697164536,
-0.501266598701477,
0.2756473422050476,
-0.04321496933698654,
0.6478947401046753,
-0.10860101878643036,
-0.28389307856559753,
-0.23730716109275818,
0.10786131024360657,
-0.16326956450939178,
-0.6918250322341919,
0.24996986985206604,
-0.1081809252500534,
0.30200687050819397,
0.17891685664653778,
0.17803843319416046,
0.6956572532653809,
-0.03555436432361603,
0.6336574554443359,
0.34170517325401306,
-0.8587558269500732,
0.6219753623008728,
-0.47228822112083435,
0.121943898499012,
0.7245737314224243,
0.3038783669471741,
-0.6678445339202881,
-0.14598825573921204,
-0.9995293021202087,
-0.8951932787895203,
0.8143408894538879,
0.42253416776657104,
0.02608587220311165,
0.16639098525047302,
0.5521017909049988,
-0.17150458693504333,
0.28534767031669617,
-0.5919555425643921,
-0.8776645064353943,
-0.4467056691646576,
-0.34026095271110535,
-0.07792055606842041,
-0.08487314730882645,
-0.250101238489151,
-0.6464855670928955,
0.7739543318748474,
-0.12176869064569473,
0.32668784260749817,
0.41274335980415344,
0.43577897548675537,
-0.25777164101600647,
-0.029961450025439262,
0.2516178786754608,
0.42368200421333313,
-0.25298815965652466,
-0.277338445186615,
-0.20007844269275665,
-0.587830662727356,
-0.15791729092597961,
0.5540971159934998,
-0.3684399127960205,
-0.12311725318431854,
0.3166623115539551,
0.873285174369812,
-0.012689011171460152,
-0.27737414836883545,
0.5884044170379639,
-0.06329143047332764,
-0.40183693170547485,
-0.44791117310523987,
-0.025675322860479355,
0.20649324357509613,
0.266405314207077,
0.05316122621297836,
0.0965111032128334,
-0.08349438011646271,
-0.4377572238445282,
0.3990524709224701,
0.2855621874332428,
-0.38356634974479675,
-0.47470366954803467,
0.618855357170105,
0.0679369866847992,
-0.13496620953083038,
0.5250550508499146,
-0.18901191651821136,
-0.628668487071991,
0.7933768630027771,
0.1152060404419899,
0.8394365310668945,
-0.07123438268899918,
0.3435981571674347,
0.7554281949996948,
0.25132906436920166,
-0.04394054412841797,
0.5679846405982971,
-0.23374561965465546,
-0.6330916285514832,
-0.04687261953949928,
-0.5556983351707458,
-0.11736411601305008,
0.036474503576755524,
-0.8341637253761292,
0.4297593832015991,
-0.4753339886665344,
-0.24773383140563965,
0.04155284911394119,
0.47684505581855774,
-0.7456498146057129,
0.14725321531295776,
-0.015012032352387905,
1.0171889066696167,
-1.0283311605453491,
0.43848440051078796,
0.6820772290229797,
-0.6905421614646912,
-1.1324520111083984,
-0.24990101158618927,
0.12134968489408493,
-0.6109194159507751,
0.22094795107841492,
0.18559828400611877,
0.5448561906814575,
-0.10919564962387085,
-0.9471262097358704,
-0.6640727519989014,
1.1589447259902954,
-0.042080629616975784,
-0.2499053180217743,
0.3805200755596161,
0.16906775534152985,
0.5328298807144165,
-0.3680005371570587,
0.36145079135894775,
0.6086280941963196,
0.7129594087600708,
0.2803230583667755,
-0.6894112229347229,
0.2843242585659027,
-0.5993396043777466,
-0.2335350662469864,
0.10300442576408386,
-1.030948281288147,
0.6653830409049988,
-0.16907036304473877,
0.00656916806474328,
0.007675422355532646,
0.6384536027908325,
0.4805540442466736,
0.4232606589794159,
0.5152793526649475,
0.8009592294692993,
0.8177891373634338,
-0.31977909803390503,
1.1888716220855713,
-0.300907701253891,
0.6524544954299927,
0.7355533242225647,
0.007249900605529547,
0.5014251470565796,
0.26071855425834656,
-0.31115588545799255,
0.5777379274368286,
0.6515673995018005,
-0.4058251678943634,
0.20872673392295837,
0.40890344977378845,
-0.024246804416179657,
-0.15244998037815094,
-0.19630300998687744,
-0.5837763547897339,
0.29993584752082825,
0.24516968429088593,
-0.28219932317733765,
0.05342438444495201,
-0.031138703227043152,
0.3295080363750458,
-0.070885568857193,
-0.27421310544013977,
0.6209228038787842,
0.0329597182571888,
-0.29163748025894165,
0.4958265721797943,
-0.13622353971004486,
0.7176051139831543,
-0.5982715487480164,
0.1376161277294159,
-0.09662332385778427,
0.16039137542247772,
-0.5477577447891235,
-1.035423994064331,
0.3239157199859619,
-0.09841129183769226,
-0.27453139424324036,
-0.30878743529319763,
0.7588729858398438,
-0.42607781291007996,
-0.8185959458351135,
0.1537727564573288,
0.14606887102127075,
0.3083840012550354,
0.12984956800937653,
-1.3082267045974731,
0.5927299857139587,
0.12897101044654846,
-0.49920734763145447,
0.11503901332616806,
0.5903732776641846,
0.1449892669916153,
0.45850083231925964,
0.7507314085960388,
0.26919645071029663,
-0.30672699213027954,
0.04227715730667114,
1.0922857522964478,
-0.6021166443824768,
-0.5181010365486145,
-0.6948287487030029,
0.87431800365448,
-0.4045998454093933,
-0.4085352420806885,
0.679000973701477,
0.8205059766769409,
0.9123995900154114,
0.03435729444026947,
0.8184905052185059,
-0.6420845985412598,
0.6652250289916992,
-0.1458044946193695,
0.9549067616462708,
-0.6942043304443359,
-0.07962464541196823,
-0.7182794809341431,
-0.44631749391555786,
-0.3466302156448364,
0.7041886448860168,
-0.17288337647914886,
0.16843143105506897,
0.25408828258514404,
0.8705869317054749,
0.04392695054411888,
0.15459121763706207,
-0.27909302711486816,
0.2804017961025238,
0.2789784073829651,
0.541940450668335,
0.3965352773666382,
-0.9611505270004272,
0.35520148277282715,
-0.8317862153053284,
-0.33071669936180115,
-0.002443942939862609,
-0.8745624423027039,
-0.8728387951850891,
-0.9204735159873962,
-0.7094323039054871,
-0.8192915320396423,
-0.33329883217811584,
1.0491564273834229,
0.6851549744606018,
-0.7000894546508789,
-0.3235883414745331,
0.09245139360427856,
0.28414058685302734,
-0.12095889449119568,
-0.32883206009864807,
0.7225856184959412,
0.333130806684494,
-0.6021336913108826,
-0.17644540965557098,
0.026514463126659393,
0.19744470715522766,
0.04772034287452698,
-0.08464391529560089,
-0.10173133760690689,
-0.29179999232292175,
0.33346474170684814,
0.47231525182724,
-0.29644954204559326,
-0.13378427922725677,
-0.2242482453584671,
0.05054490268230438,
0.15408845245838165,
0.5385340452194214,
-0.5528981685638428,
0.28567931056022644,
0.6892647743225098,
0.23303283751010895,
0.4907574951648712,
0.1906711310148239,
-0.024533331394195557,
-0.4306392967700958,
0.11921864002943039,
-0.017108043655753136,
0.2783600986003876,
0.3996499180793762,
-0.4556417763233185,
0.724370539188385,
0.6326767802238464,
-0.5175973773002625,
-0.7804588675498962,
-0.17053192853927612,
-1.369583010673523,
0.0844590812921524,
1.0016989707946777,
0.01962325908243656,
-0.6444288492202759,
0.07452106475830078,
-0.17432212829589844,
0.188579261302948,
-0.5773853659629822,
0.48704227805137634,
0.540049135684967,
-0.05601867288351059,
0.18363606929779053,
-0.3528229892253876,
0.6148324012756348,
-0.06821771711111069,
-0.925044059753418,
0.23916484415531158,
0.42254704236984253,
0.4880031943321228,
0.34438496828079224,
0.8052764534950256,
-0.27939486503601074,
0.06893003731966019,
-0.010120154358446598,
0.3282024562358856,
-0.3095739185810089,
0.0993436723947525,
-0.31253698468208313,
-0.13546337187290192,
-0.501496434211731,
-0.25096774101257324
]
|
huggingartists/dermot-kennedy | huggingartists | 2022-10-25T09:27:42Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/dermot-kennedy"
## 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.150085 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('https://images.genius.com/c315a70b46158903a9878b1d70901405.800x800x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/dermot-kennedy">
<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">Dermot Kennedy</div>
<a href="https://genius.com/artists/dermot-kennedy">
<div style="text-align: center; font-size: 14px;">@dermot-kennedy</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/dermot-kennedy).
### 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/dermot-kennedy")
```
## 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|
|------:|---------:|---:|
|77| -| -|
'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/dermot-kennedy")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.5937773585319519,
-0.5204526782035828,
0.09204398095607758,
0.23728591203689575,
-0.2442270964384079,
0.055399339646101,
-0.24577400088310242,
-0.4354633390903473,
0.8898468017578125,
0.35476386547088623,
-0.9257274270057678,
-0.8484382629394531,
-0.5579878687858582,
0.16121236979961395,
-0.09979385882616043,
1.217071533203125,
-0.21639160811901093,
-0.38692671060562134,
-0.30280911922454834,
-0.22266478836536407,
-0.27393192052841187,
-0.31551089882850647,
-0.2846164405345917,
-0.34333598613739014,
0.38091060519218445,
0.5303403735160828,
0.6925673484802246,
0.9021612405776978,
0.5585224628448486,
0.3579757511615753,
-0.1259467601776123,
0.0028568690177053213,
-0.3631070852279663,
-0.09474600851535797,
0.19272688031196594,
-0.2824855446815491,
-0.7185054421424866,
0.2397639900445938,
0.5698463916778564,
0.44700899720191956,
-0.08664404600858688,
0.4682124853134155,
0.02799053303897381,
0.9061346650123596,
-0.2888575792312622,
0.5006561279296875,
-0.23235666751861572,
-0.12531650066375732,
-0.2667522430419922,
0.06782543659210205,
0.17665624618530273,
-0.5762742757797241,
-0.01705145835876465,
-0.740847647190094,
0.019147615879774094,
-0.024723660200834274,
0.9856297969818115,
0.048409510403871536,
0.08507850021123886,
-0.17249137163162231,
-0.1570766270160675,
0.524545431137085,
-0.5805127620697021,
-0.01032294798642397,
0.5489435791969299,
0.16051286458969116,
0.0097669567912817,
-0.6145356297492981,
-0.6367051005363464,
0.08378861099481583,
-0.17359164357185364,
0.31564369797706604,
-0.17834557592868805,
-0.27862977981567383,
0.5253702402114868,
0.5174476504325867,
-0.49714112281799316,
-0.25592169165611267,
-0.5150126814842224,
-0.09581263363361359,
1.1694656610488892,
0.1623174250125885,
0.388406902551651,
-0.522132158279419,
-0.20807944238185883,
-0.41259267926216125,
-0.22550414502620697,
0.3537364602088928,
0.5805695056915283,
0.48090600967407227,
-1.0259767770767212,
0.6281670331954956,
-0.21983341872692108,
0.5676419138908386,
0.1457291692495346,
-0.015798483043909073,
0.8076239228248596,
-0.39003270864486694,
-0.12629994750022888,
-0.135311096906662,
1.0451947450637817,
0.679328203201294,
0.21793662011623383,
0.13552595674991608,
-0.05666433647274971,
0.02499431185424328,
-0.14946572482585907,
-0.8308798670768738,
-0.39836275577545166,
0.6504369974136353,
-0.5933516621589661,
-0.6322232484817505,
0.16300739347934723,
-1.0226014852523804,
-0.1843622773885727,
-0.32310613989830017,
0.23920629918575287,
-0.350384920835495,
-0.5434377789497375,
0.16615252196788788,
-0.2937406599521637,
0.07803239673376083,
0.04371972382068634,
-0.6069089770317078,
0.18815764784812927,
0.565924346446991,
0.773932695388794,
0.23284468054771423,
-0.2759331464767456,
-0.29091131687164307,
-0.16332224011421204,
-0.12162478268146515,
0.6543858647346497,
-0.36370059847831726,
-0.3517228662967682,
-0.08268439769744873,
0.34549400210380554,
-0.08533523976802826,
-0.2714191675186157,
0.872940719127655,
0.05502067878842354,
0.15836071968078613,
-0.6009989380836487,
-0.4160914123058319,
0.012708872556686401,
0.27982568740844727,
-0.7537732124328613,
1.0123528242111206,
0.34774935245513916,
-1.0089852809906006,
0.19271428883075714,
-0.8224664926528931,
-0.2934853136539459,
0.003997528925538063,
0.0774235874414444,
-0.7879172563552856,
-0.18530522286891937,
0.16543537378311157,
0.7398900389671326,
-0.27755728363990784,
0.011775476858019829,
-0.6329679489135742,
-0.10571242868900299,
0.3810126483440399,
0.2572239637374878,
1.1661903858184814,
0.11664728820323944,
-0.11831970512866974,
0.04912815988063812,
-0.9975980520248413,
0.12234233319759369,
0.45771318674087524,
-0.15971530973911285,
-0.11036251485347748,
-0.2497214823961258,
0.38726162910461426,
0.28558349609375,
0.049560509622097015,
-0.6118727326393127,
0.43665459752082825,
-0.18345433473587036,
0.47666382789611816,
0.7485169172286987,
-0.010495862923562527,
0.30561280250549316,
-0.6732333302497864,
0.43319883942604065,
0.1254105120897293,
0.3743608891963959,
-0.013802696019411087,
-0.5303401350975037,
-0.48787879943847656,
-0.2661381959915161,
0.3239476680755615,
0.4428521394729614,
-0.6632223725318909,
0.9802830219268799,
-0.33819302916526794,
-0.8059910535812378,
-0.6050049662590027,
0.1162395030260086,
0.17974357306957245,
0.5261967182159424,
0.38396787643432617,
-0.44894716143608093,
-0.5727499127388,
-0.6688279509544373,
0.09497841447591782,
-0.2903275489807129,
0.2066144496202469,
0.45101767778396606,
0.8375421166419983,
-0.26831740140914917,
0.836359977722168,
-0.7003188729286194,
-0.2746601402759552,
-0.26085323095321655,
-0.32251158356666565,
0.37790563702583313,
0.7949725389480591,
0.6794157028198242,
-0.8335011601448059,
-0.5003376007080078,
-0.27876052260398865,
-0.6846441626548767,
-0.12547272443771362,
-0.03931451961398125,
-0.2600040137767792,
0.033491041511297226,
0.11518217623233795,
-0.726312518119812,
0.5293593406677246,
0.48531270027160645,
-0.6641709804534912,
0.554803192615509,
0.09373262524604797,
0.018916955217719078,
-1.2737305164337158,
0.38391825556755066,
0.21846215426921844,
0.03961305692791939,
-0.6058945059776306,
-0.2544649541378021,
-0.058655694127082825,
-0.01473403349518776,
-0.08565440028905869,
0.6011593341827393,
-0.3241303265094757,
0.3058578670024872,
0.19366960227489471,
0.07979805767536163,
0.13007138669490814,
0.42715516686439514,
-0.09054077416658401,
0.2209995836019516,
0.9889587759971619,
-0.349883496761322,
0.6653112769126892,
0.6287446022033691,
-0.19124837219715118,
0.8524414300918579,
-0.7909146547317505,
0.030997848138213158,
-0.2830616533756256,
0.41263413429260254,
-0.8627023696899414,
-0.5572789907455444,
0.8296493887901306,
-0.6567030549049377,
0.451640248298645,
-0.2520846128463745,
-0.539604902267456,
-0.819365918636322,
-0.6808815598487854,
0.14739805459976196,
0.5381209254264832,
-0.3675200343132019,
0.38546040654182434,
0.5837514996528625,
0.08100715279579163,
-0.4059601426124573,
-0.7879472970962524,
-0.1330367475748062,
-0.38758334517478943,
-0.811488687992096,
0.4215719699859619,
-0.3462490737438202,
-0.13392947614192963,
0.12339350581169128,
0.09068815410137177,
0.07453581690788269,
-0.007826166227459908,
0.40273526310920715,
0.27880600094795227,
0.12727463245391846,
0.040040142834186554,
-0.0602225698530674,
-0.2660441994667053,
0.11661585420370102,
-0.2055739313364029,
0.22169937193393707,
-0.24456924200057983,
-0.1336837112903595,
-0.6908249855041504,
0.21399016678333282,
0.4710746109485626,
-0.21940720081329346,
0.6398177146911621,
0.7732966542243958,
-0.2021407037973404,
-0.03657650575041771,
-0.4910997152328491,
-0.17129512131214142,
-0.41354531049728394,
0.024475978687405586,
-0.25094306468963623,
-0.5941159129142761,
0.960299015045166,
0.2083388715982437,
0.05434916913509369,
0.6769909262657166,
0.43598997592926025,
-0.07515343278646469,
0.6561747193336487,
0.36549291014671326,
-0.26701489090919495,
0.5125886797904968,
-0.70948725938797,
-0.2461889386177063,
-0.8551383018493652,
-0.4501495957374573,
-0.47958511114120483,
-0.551715612411499,
-0.8743832111358643,
-0.44646352529525757,
0.14161761105060577,
0.09740153700113297,
-0.2159387171268463,
0.4620114266872406,
-0.9736429452896118,
0.24735373258590698,
0.343975305557251,
0.25570932030677795,
-0.08015793561935425,
0.08770132064819336,
0.020922672003507614,
0.13762646913528442,
-0.5752164125442505,
-0.24246162176132202,
1.156339406967163,
0.5141107439994812,
0.5777671337127686,
-0.09172431379556656,
0.8663063645362854,
0.0428885854780674,
0.19501085579395294,
-0.49713966250419617,
0.4957602918148041,
0.010629924945533276,
-0.5188543200492859,
-0.12989838421344757,
-0.513584554195404,
-0.8825882077217102,
-0.14646469056606293,
-0.39103275537490845,
-0.6784361600875854,
0.5171291828155518,
0.08668070286512375,
-0.23271730542182922,
0.3710476756095886,
-0.6156769394874573,
0.8310908079147339,
-0.04636342450976372,
-0.45131397247314453,
0.2850520610809326,
-1.0505365133285522,
0.16292956471443176,
0.17323212325572968,
0.2625686228275299,
-0.43410536646842957,
0.03543727472424507,
1.018319845199585,
-0.7887868285179138,
0.9584624767303467,
-0.39788392186164856,
0.14568392932415009,
0.5796394348144531,
-0.31179967522621155,
0.4576328694820404,
0.13473588228225708,
-0.2661653459072113,
0.34756961464881897,
0.06960872560739517,
-0.4451523423194885,
-0.4190315306186676,
0.6765695214271545,
-0.7307347655296326,
0.04510733112692833,
-0.37887877225875854,
-0.4651698172092438,
0.07667755335569382,
0.1677665263414383,
0.21729402244091034,
0.39027032256126404,
0.018029822036623955,
0.12263058871030807,
0.3925154209136963,
-0.13232973217964172,
0.29702040553092957,
0.08475030958652496,
-0.08836241811513901,
-0.7828404903411865,
0.867060661315918,
0.2178945541381836,
0.07103092968463898,
0.02329111099243164,
0.4111149311065674,
-0.3582744002342224,
-0.12377656251192093,
-0.5761144757270813,
0.4728609025478363,
-0.4063268303871155,
-0.40721869468688965,
-0.5290333032608032,
-0.16093137860298157,
-0.6332318186759949,
-0.18274003267288208,
-0.24782361090183258,
-0.5587669610977173,
-0.3321835398674011,
-0.21870827674865723,
1.0410058498382568,
0.47381094098091125,
-0.7087069749832153,
0.13325339555740356,
-0.5208683609962463,
0.25809815526008606,
-0.02917490154504776,
0.6574020981788635,
-0.11631334573030472,
-0.31374502182006836,
-0.17366071045398712,
0.12590950727462769,
-0.20836877822875977,
-0.661092221736908,
0.26048365235328674,
-0.04007861763238907,
0.34902098774909973,
0.1185326874256134,
0.16148677468299866,
0.6889829039573669,
-0.0772397369146347,
0.6258187294006348,
0.2922725975513458,
-0.795490562915802,
0.6847324967384338,
-0.5283593535423279,
0.1509421467781067,
0.7510735392570496,
0.35828521847724915,
-0.6023364067077637,
-0.1297859102487564,
-0.9701857566833496,
-0.8148466944694519,
0.797842264175415,
0.4376886188983917,
0.07931478321552277,
0.21005700528621674,
0.5960022211074829,
-0.20089782774448395,
0.29937025904655457,
-0.6232596635818481,
-0.8592609167098999,
-0.4029827117919922,
-0.37597259879112244,
-0.051153700798749924,
-0.12298862636089325,
-0.28257811069488525,
-0.6927040219306946,
0.7247130274772644,
-0.14613009989261627,
0.3470890522003174,
0.453535258769989,
0.4330582916736603,
-0.2665582597255707,
-0.021056775003671646,
0.3054109215736389,
0.38808417320251465,
-0.30025413632392883,
-0.2972242534160614,
-0.18028144538402557,
-0.6181291937828064,
-0.07728417962789536,
0.5452702045440674,
-0.3396435081958771,
-0.05637787654995918,
0.34575122594833374,
0.8369911909103394,
-0.010316227562725544,
-0.24662578105926514,
0.5880143642425537,
-0.07822509855031967,
-0.4609452784061432,
-0.40407904982566833,
0.025156941264867783,
0.13906225562095642,
0.24804267287254333,
0.053527526557445526,
0.0813101977109909,
-0.13707329332828522,
-0.37762075662612915,
0.43644052743911743,
0.28748971223831177,
-0.4394950568675995,
-0.5274024605751038,
0.5848757028579712,
0.10691110789775848,
-0.13616518676280975,
0.4660539925098419,
-0.14780038595199585,
-0.6061348915100098,
0.7841379642486572,
0.10272863507270813,
0.8270298838615417,
-0.1504639834165573,
0.3670303225517273,
0.7313481569290161,
0.19083774089813232,
-0.013851380906999111,
0.5562540292739868,
-0.19970107078552246,
-0.631270170211792,
-0.049032505601644516,
-0.5995720624923706,
-0.1125396266579628,
0.06392978876829147,
-0.810187816619873,
0.42516839504241943,
-0.4843527376651764,
-0.24789218604564667,
0.044613178819417953,
0.4286823272705078,
-0.7233662605285645,
0.1630600094795227,
-0.07340063154697418,
1.0522105693817139,
-1.0540833473205566,
0.4575504958629608,
0.6792574524879456,
-0.6637358665466309,
-1.1406400203704834,
-0.1561708301305771,
0.21465207636356354,
-0.6039867401123047,
0.2864219844341278,
0.22278164327144623,
0.5188955664634705,
-0.03959812596440315,
-0.8749204874038696,
-0.6476553678512573,
1.2077198028564453,
0.033772435039281845,
-0.2683764398097992,
0.3406459093093872,
0.14448615908622742,
0.6016550064086914,
-0.4107394516468048,
0.3366279900074005,
0.632455587387085,
0.710073709487915,
0.3307465612888336,
-0.7077786922454834,
0.2886480391025543,
-0.5924318432807922,
-0.25401169061660767,
0.07687371224164963,
-1.0445712804794312,
0.6305932998657227,
-0.19641607999801636,
-0.009590630419552326,
-0.004498849157243967,
0.5520073175430298,
0.40621379017829895,
0.41311660408973694,
0.45787808299064636,
0.7817015051841736,
0.7932873964309692,
-0.31742244958877563,
1.1768637895584106,
-0.27520552277565,
0.6301787495613098,
0.7342486381530762,
-0.01644829846918583,
0.5023467540740967,
0.24589751660823822,
-0.35863804817199707,
0.5825721025466919,
0.632027268409729,
-0.4380398392677307,
0.24633876979351044,
0.4114297330379486,
-0.046554967761039734,
-0.07448887825012207,
-0.27089056372642517,
-0.5958487391471863,
0.34103941917419434,
0.19157375395298004,
-0.36237627267837524,
0.027652740478515625,
-0.06599216163158417,
0.3653055727481842,
-0.056054841727018356,
-0.21999409794807434,
0.6508306860923767,
0.06489291042089462,
-0.34065836668014526,
0.5300639271736145,
-0.23820754885673523,
0.617996096611023,
-0.5764943957328796,
0.12483727931976318,
-0.11387836933135986,
0.1535673886537552,
-0.5826482176780701,
-1.0694855451583862,
0.37304389476776123,
-0.09243851155042648,
-0.26526278257369995,
-0.35148632526397705,
0.7285592555999756,
-0.46910786628723145,
-0.8295196294784546,
0.2605624198913574,
0.2260931432247162,
0.2935953736305237,
0.1928890198469162,
-1.3013712167739868,
0.5850242972373962,
0.14863696694374084,
-0.46706464886665344,
0.1217302456498146,
0.5006940364837646,
0.2399573177099228,
0.5534144043922424,
0.7066842317581177,
0.2644101679325104,
-0.3019462823867798,
0.09410934150218964,
1.123895287513733,
-0.56636643409729,
-0.43338701128959656,
-0.7666141986846924,
0.9373602271080017,
-0.39903905987739563,
-0.38092392683029175,
0.6741092205047607,
0.7341741323471069,
0.8538293242454529,
0.023749321699142456,
0.7976818084716797,
-0.6280332803726196,
0.6899172067642212,
-0.20679526031017303,
0.9407128691673279,
-0.7166221737861633,
-0.07247763872146606,
-0.7665237188339233,
-0.538776159286499,
-0.4410601556301117,
0.6593607664108276,
-0.17640221118927002,
0.2202320247888565,
0.27976933121681213,
0.9058228731155396,
0.03411276638507843,
0.09559952467679977,
-0.21892456710338593,
0.30554521083831787,
0.3193356692790985,
0.5377448201179504,
0.42297157645225525,
-0.8926470875740051,
0.3476870059967041,
-0.7899327874183655,
-0.3117922246456146,
0.007335822097957134,
-0.8635140657424927,
-0.929270327091217,
-0.9636101722717285,
-0.7071918845176697,
-0.753426194190979,
-0.26910293102264404,
1.0455422401428223,
0.726609468460083,
-0.6908584237098694,
-0.2393978238105774,
0.06497170776128769,
0.2855446934700012,
-0.0676044300198555,
-0.3182145059108734,
0.6570906043052673,
0.3485044836997986,
-0.6043024063110352,
-0.16282178461551666,
0.0385543629527092,
0.2837708592414856,
0.05069325119256973,
-0.07433003932237625,
-0.13321256637573242,
-0.298359751701355,
0.3352099061012268,
0.43398940563201904,
-0.32545873522758484,
-0.13410547375679016,
-0.2349872589111328,
0.06030910462141037,
0.16451050341129303,
0.46242889761924744,
-0.5460705757141113,
0.25182387232780457,
0.6559064388275146,
0.25226476788520813,
0.4108011722564697,
0.23909658193588257,
0.011862460523843765,
-0.4908352196216583,
0.08867590129375458,
-0.01198885589838028,
0.2975161075592041,
0.3915266990661621,
-0.4355437457561493,
0.7842395305633545,
0.6018736362457275,
-0.5367483496665955,
-0.8517107367515564,
-0.12890495359897614,
-1.3412683010101318,
0.10851333290338516,
1.0557798147201538,
0.01733233779668808,
-0.5403640866279602,
0.058793049305677414,
-0.18200024962425232,
0.131083145737648,
-0.6022491455078125,
0.47502559423446655,
0.523125946521759,
-0.09292073547840118,
0.13628637790679932,
-0.37606188654899597,
0.6396048069000244,
-0.028806360438466072,
-0.9406863451004028,
0.21931785345077515,
0.41476717591285706,
0.4153953194618225,
0.34728917479515076,
0.7744513750076294,
-0.22336237132549286,
0.005780886858701706,
-0.04618675634264946,
0.24651387333869934,
-0.29465609788894653,
0.02192564122378826,
-0.3534841537475586,
-0.1387837529182434,
-0.5058708786964417,
-0.22339984774589539
]
|
huggingartists/duran-duran | huggingartists | 2022-10-25T09:28:15Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/duran-duran"
## 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.414706 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('https://images.genius.com/95697394e4f58c9aa507e408f51008db.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/duran-duran">
<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">Duran Duran</div>
<a href="https://genius.com/artists/duran-duran">
<div style="text-align: center; font-size: 14px;">@duran-duran</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/duran-duran).
### 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/duran-duran")
```
## 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|
|------:|---------:|---:|
|360| -| -|
'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/duran-duran")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6117350459098816,
-0.5300161838531494,
0.0997081771492958,
0.3462061583995819,
-0.21837793290615082,
0.06545853614807129,
-0.280148983001709,
-0.4383164346218109,
0.8670253157615662,
0.33303749561309814,
-0.9143808484077454,
-0.8319041132926941,
-0.556441068649292,
0.16070643067359924,
-0.11972308903932571,
1.2791844606399536,
-0.21620601415634155,
-0.3557107746601105,
-0.2920761704444885,
-0.2094336301088333,
-0.3285507261753082,
-0.2647472023963928,
-0.3485645651817322,
-0.33243539929389954,
0.36158210039138794,
0.46486225724220276,
0.6915404200553894,
0.8467039465904236,
0.4623550474643707,
0.3551190495491028,
-0.11242710053920746,
0.002138932468369603,
-0.4310661256313324,
-0.07218456268310547,
0.1808127760887146,
-0.30127501487731934,
-0.7332477569580078,
0.23770493268966675,
0.5986335277557373,
0.3729264736175537,
-0.10313165187835693,
0.38817325234413147,
0.08128101378679276,
0.8926610946655273,
-0.29906514286994934,
0.4707910120487213,
-0.24683640897274017,
-0.15166977047920227,
-0.27182990312576294,
0.04466899484395981,
0.17236965894699097,
-0.6225878596305847,
-0.009267301298677921,
-0.823318362236023,
0.04163553565740585,
-0.02492874301970005,
1.0179945230484009,
0.07690370827913284,
0.05680669844150543,
-0.25644126534461975,
-0.2147037535905838,
0.5528246164321899,
-0.5234048962593079,
0.09344501048326492,
0.5754278898239136,
0.11488480865955353,
0.021035125479102135,
-0.5772945284843445,
-0.648615300655365,
0.09378623217344284,
-0.1574677973985672,
0.31865137815475464,
-0.21617388725280762,
-0.3712506592273712,
0.48328426480293274,
0.5384590029716492,
-0.5157848596572876,
-0.2640697956085205,
-0.571170449256897,
-0.13935653865337372,
1.1930662393569946,
0.15114948153495789,
0.4111775755882263,
-0.45638495683670044,
-0.247965008020401,
-0.4071503281593323,
-0.3198828399181366,
0.32246628403663635,
0.5436659455299377,
0.399344265460968,
-1.0313198566436768,
0.603952169418335,
-0.23323552310466766,
0.5333826541900635,
0.15580366551876068,
-0.06435835361480713,
0.8099358677864075,
-0.4467831254005432,
-0.1277744323015213,
-0.12200044095516205,
1.1296535730361938,
0.7144923210144043,
0.1802099198102951,
0.03815135359764099,
-0.04815990477800369,
-0.023921528831124306,
-0.16790558397769928,
-0.830514132976532,
-0.4058292508125305,
0.6248031854629517,
-0.5340805649757385,
-0.6142815351486206,
0.09823378175497055,
-1.0726183652877808,
-0.2466937154531479,
-0.2766523063182831,
0.2596175968647003,
-0.33459240198135376,
-0.5179572105407715,
0.15252205729484558,
-0.2516157925128937,
0.12564335763454437,
0.1239112839102745,
-0.5650485157966614,
0.19156071543693542,
0.5200832486152649,
0.7876965403556824,
0.17343305051326752,
-0.29619506001472473,
-0.3197616934776306,
-0.169973686337471,
-0.176519975066185,
0.6785129308700562,
-0.2796681225299835,
-0.41620922088623047,
-0.17576105892658234,
0.367363303899765,
-0.08388052135705948,
-0.24691100418567657,
0.9183729887008667,
-0.0021515111438930035,
0.21565696597099304,
-0.6004527807235718,
-0.37686291337013245,
0.0010848712408915162,
0.28376835584640503,
-0.7818004488945007,
1.042873740196228,
0.3183981478214264,
-0.934989869594574,
0.19561336934566498,
-0.7705512642860413,
-0.2394183725118637,
0.005870589055120945,
0.1062709242105484,
-0.7513282299041748,
-0.22119395434856415,
0.19998204708099365,
0.6986000537872314,
-0.401492178440094,
-0.02158343233168125,
-0.5494438409805298,
-0.07044313102960587,
0.3367387056350708,
0.25789645314216614,
1.1683037281036377,
0.12033792585134506,
-0.10036203265190125,
0.07126880437135696,
-0.949995756149292,
0.1433955878019333,
0.45162031054496765,
-0.16497883200645447,
-0.1416332721710205,
-0.2278684824705124,
0.38429126143455505,
0.284579336643219,
0.06293938308954239,
-0.5848100185394287,
0.4094923436641693,
-0.20834101736545563,
0.45864665508270264,
0.7545932531356812,
-0.002616352867335081,
0.40659454464912415,
-0.6143696308135986,
0.44665396213531494,
0.050894904881715775,
0.3470366895198822,
0.03086042031645775,
-0.5502530336380005,
-0.45215851068496704,
-0.26261106133461,
0.35492005944252014,
0.482300728559494,
-0.7200191020965576,
0.9392574429512024,
-0.3718903064727783,
-0.8863905072212219,
-0.6076132655143738,
0.15383675694465637,
0.21544063091278076,
0.549706757068634,
0.35534730553627014,
-0.44000324606895447,
-0.552892804145813,
-0.6714717149734497,
0.10803420096635818,
-0.25424209237098694,
0.19450750946998596,
0.39094895124435425,
0.8573101162910461,
-0.2651304602622986,
0.8442394733428955,
-0.6950771808624268,
-0.28239020705223083,
-0.19343413412570953,
-0.34566107392311096,
0.3583369553089142,
0.7889423370361328,
0.6682398915290833,
-0.879027783870697,
-0.5503331422805786,
-0.22324931621551514,
-0.7140566110610962,
-0.13251018524169922,
-0.015478817746043205,
-0.29253897070884705,
0.012050390243530273,
0.12648537755012512,
-0.6603172421455383,
0.5204540491104126,
0.5276124477386475,
-0.7146943211555481,
0.546262264251709,
0.08368835598230362,
0.06271720677614212,
-1.2702453136444092,
0.2922753393650055,
0.2570357024669647,
0.02322450466454029,
-0.6280291080474854,
-0.253360778093338,
-0.03534698858857155,
0.00832479726523161,
-0.10680895298719406,
0.6640109419822693,
-0.30969417095184326,
0.35064923763275146,
0.1172662228345871,
0.04803867265582085,
0.1497536450624466,
0.445028156042099,
-0.026485217735171318,
0.31610167026519775,
1.0305489301681519,
-0.408638060092926,
0.7084882259368896,
0.5896128416061401,
-0.19212085008621216,
0.8970559239387512,
-0.8798936009407043,
0.0353943295776844,
-0.27088987827301025,
0.4173445403575897,
-0.7704555988311768,
-0.5503003001213074,
0.8571463227272034,
-0.6741311550140381,
0.3762942850589752,
-0.26792535185813904,
-0.5549208521842957,
-0.7414203882217407,
-0.6896649599075317,
0.16075707972049713,
0.5397648215293884,
-0.363420695066452,
0.4068259298801422,
0.6207783222198486,
0.08333081752061844,
-0.3508591055870056,
-0.7214541435241699,
-0.17359282076358795,
-0.4372391104698181,
-0.8272000551223755,
0.4397580921649933,
-0.36188602447509766,
-0.11092598736286163,
0.14131760597229004,
0.09093491733074188,
0.07516542822122574,
-0.001304351957514882,
0.40931451320648193,
0.30400633811950684,
0.11992132663726807,
0.029423657804727554,
-0.06347373127937317,
-0.2454446703195572,
0.08970210701227188,
-0.1844690591096878,
0.29009610414505005,
-0.3232804238796234,
-0.06795859336853027,
-0.6448095440864563,
0.216703400015831,
0.4774298667907715,
-0.24532470107078552,
0.6837971806526184,
0.7614784240722656,
-0.2428767830133438,
-0.02578023448586464,
-0.4750816822052002,
-0.08537545055150986,
-0.41435864567756653,
0.029081029817461967,
-0.251529723405838,
-0.5996496081352234,
0.9439167976379395,
0.22380605340003967,
0.019563211128115654,
0.7026083469390869,
0.5333219170570374,
-0.07814380526542664,
0.667550265789032,
0.38113856315612793,
-0.23835866153240204,
0.48054367303848267,
-0.7010331749916077,
-0.23376509547233582,
-0.915412962436676,
-0.49937158823013306,
-0.5131209492683411,
-0.458877295255661,
-0.8735032081604004,
-0.49027854204177856,
0.2416568398475647,
0.22027736902236938,
-0.24493946135044098,
0.49640384316444397,
-0.9460328817367554,
0.3289411962032318,
0.33631277084350586,
0.24026267230510712,
-0.06375247985124588,
0.0574396513402462,
0.13357478380203247,
0.15144944190979004,
-0.5563919544219971,
-0.2535669803619385,
1.1625112295150757,
0.5121126770973206,
0.6136271953582764,
-0.08250163495540619,
0.8235163688659668,
0.026355570182204247,
0.1621864289045334,
-0.5042387247085571,
0.447116881608963,
0.09688553959131241,
-0.4750342071056366,
-0.14843882620334625,
-0.5103824138641357,
-0.9001527428627014,
-0.14859436452388763,
-0.44024693965911865,
-0.719487190246582,
0.5807005763053894,
0.08203745633363724,
-0.2500905990600586,
0.33601805567741394,
-0.6637959480285645,
0.8466472029685974,
-0.04968675598502159,
-0.49000659584999084,
0.3275357484817505,
-0.9507813453674316,
0.184165358543396,
0.11182039976119995,
0.29787570238113403,
-0.39706647396087646,
-0.00637426320463419,
1.0516072511672974,
-0.7877570986747742,
0.8918074369430542,
-0.312552809715271,
0.062412045896053314,
0.553949773311615,
-0.27243146300315857,
0.5012128949165344,
0.1837974339723587,
-0.2674972414970398,
0.33640527725219727,
0.03627306595444679,
-0.4361013174057007,
-0.45338931679725647,
0.7556217908859253,
-0.7344637513160706,
0.0641149953007698,
-0.3809084892272949,
-0.4690607190132141,
0.03850372135639191,
0.14792019128799438,
0.30612707138061523,
0.33992478251457214,
0.011716160923242569,
0.12124848365783691,
0.45732414722442627,
-0.13567544519901276,
0.2721937298774719,
0.06719698011875153,
-0.09692643582820892,
-0.7899505496025085,
0.9286273121833801,
0.1657344549894333,
0.06270546466112137,
-0.05841585993766785,
0.41220182180404663,
-0.3902549147605896,
-0.10219535231590271,
-0.6439786553382874,
0.4607813358306885,
-0.3984934091567993,
-0.390525758266449,
-0.5110334157943726,
-0.15136782824993134,
-0.6208865642547607,
-0.1996147781610489,
-0.29435795545578003,
-0.5096118450164795,
-0.2651807963848114,
-0.16326230764389038,
1.076660394668579,
0.48746538162231445,
-0.6806684136390686,
0.13428427278995514,
-0.5349995493888855,
0.2735947370529175,
0.013278517872095108,
0.6546849012374878,
-0.08971350640058517,
-0.28189757466316223,
-0.2029828131198883,
0.1270480453968048,
-0.22508390247821808,
-0.755105197429657,
0.3077273964881897,
-0.038878314197063446,
0.3527665436267853,
0.061833012849092484,
0.10851473361253738,
0.6616166830062866,
-0.09630374610424042,
0.6430131196975708,
0.3194996416568756,
-0.8082025051116943,
0.732893705368042,
-0.5180654525756836,
0.09829151630401611,
0.7196912169456482,
0.3891470432281494,
-0.6247705817222595,
-0.12247922271490097,
-0.9370895624160767,
-0.8221020698547363,
0.84995037317276,
0.4899080693721771,
0.061401255428791046,
0.22798965871334076,
0.49939727783203125,
-0.19466814398765564,
0.2769699990749359,
-0.7044009566307068,
-0.8524883389472961,
-0.4060671925544739,
-0.2836700975894928,
-0.056108586490154266,
-0.046993982046842575,
-0.2776450216770172,
-0.6810032725334167,
0.7894898653030396,
-0.0915450006723404,
0.3172677457332611,
0.45123547315597534,
0.41936346888542175,
-0.23437397181987762,
0.0009405072778463364,
0.3117993175983429,
0.36736926436424255,
-0.22075632214546204,
-0.3293455243110657,
-0.12125337868928909,
-0.6087729334831238,
-0.07712745666503906,
0.45768842101097107,
-0.39231449365615845,
-0.09573386609554291,
0.30303579568862915,
0.9086158275604248,
-0.07180900871753693,
-0.26423731446266174,
0.574702799320221,
-0.07217976450920105,
-0.4110434651374817,
-0.3581627309322357,
0.030268030241131783,
0.15215659141540527,
0.28113478422164917,
0.051050979644060135,
0.07625025510787964,
-0.1073620393872261,
-0.4307667911052704,
0.3373362123966217,
0.2523437738418579,
-0.43997347354888916,
-0.5134637951850891,
0.6354649066925049,
0.08959716558456421,
-0.1582372486591339,
0.4287221133708954,
-0.2120041847229004,
-0.6580688953399658,
0.7791253328323364,
0.1084405928850174,
0.8195804953575134,
-0.14204053580760956,
0.3584556579589844,
0.776788592338562,
0.21440815925598145,
-0.07499461621046066,
0.48077303171157837,
-0.2169000506401062,
-0.6459479331970215,
-0.07801418751478195,
-0.6157547831535339,
-0.07161089777946472,
0.02602006122469902,
-0.7779733538627625,
0.43370234966278076,
-0.3891330361366272,
-0.17400725185871124,
-0.008844767697155476,
0.3740004599094391,
-0.729154646396637,
0.1866270899772644,
-0.0753229632973671,
0.9936580061912537,
-1.076062560081482,
0.520251989364624,
0.6232041120529175,
-0.6647849082946777,
-1.164039969444275,
-0.1380770057439804,
0.2109346091747284,
-0.5805180072784424,
0.2913895845413208,
0.0941634476184845,
0.48118510842323303,
-0.05365685001015663,
-0.8754603862762451,
-0.6762441396713257,
1.2056398391723633,
0.004233448766171932,
-0.23811684548854828,
0.2983962893486023,
0.07676900923252106,
0.6196523308753967,
-0.36071348190307617,
0.307759165763855,
0.6420575976371765,
0.66813063621521,
0.3277266323566437,
-0.7917873859405518,
0.2711430490016937,
-0.6410576105117798,
-0.22142577171325684,
0.11354100704193115,
-1.0253612995147705,
0.6536157727241516,
-0.13629262149333954,
-0.022098874673247337,
-0.03765025734901428,
0.5908536911010742,
0.45581719279289246,
0.4280776083469391,
0.4906327426433563,
0.7781088948249817,
0.8324243426322937,
-0.3629128038883209,
1.2426005601882935,
-0.21979452669620514,
0.6546753644943237,
0.7819056510925293,
0.017595652490854263,
0.46568986773490906,
0.23860134184360504,
-0.3401966989040375,
0.53401118516922,
0.6253013014793396,
-0.4317172169685364,
0.3087512254714966,
0.37501049041748047,
-0.08814292401075363,
-0.07151304185390472,
-0.24993325769901276,
-0.6413895487785339,
0.30474478006362915,
0.21504426002502441,
-0.3188340663909912,
-0.029969405382871628,
0.026343200355768204,
0.3743516504764557,
-0.03766006976366043,
-0.3042278289794922,
0.6475022435188293,
0.00821519736200571,
-0.353368878364563,
0.5504840016365051,
-0.20416158437728882,
0.7036920189857483,
-0.5683286190032959,
0.13219930231571198,
-0.08745064586400986,
0.05625716596841812,
-0.6059138178825378,
-1.102533221244812,
0.39141783118247986,
-0.009634466841816902,
-0.2893122732639313,
-0.3961247503757477,
0.7111322283744812,
-0.4675474166870117,
-0.8041681051254272,
0.24052126705646515,
0.23271170258522034,
0.3115321695804596,
0.13898219168186188,
-1.247196912765503,
0.5920276045799255,
0.171290323138237,
-0.45903530716896057,
0.11953741312026978,
0.5389971137046814,
0.12464001774787903,
0.5302661657333374,
0.6933708190917969,
0.2838503122329712,
-0.20872455835342407,
0.023679032921791077,
1.1211614608764648,
-0.5075240731239319,
-0.4059843420982361,
-0.7505000233650208,
0.89497309923172,
-0.3826928734779358,
-0.42160266637802124,
0.7100206613540649,
0.78966224193573,
0.8888661861419678,
0.010183739475905895,
0.7721242904663086,
-0.6736488342285156,
0.6692496538162231,
-0.24163541197776794,
0.9708929061889648,
-0.7400048971176147,
-0.02996399812400341,
-0.7344682812690735,
-0.5535250902175903,
-0.38033774495124817,
0.6804926991462708,
-0.21925999224185944,
0.16476118564605713,
0.2787369191646576,
0.9509664177894592,
0.05242855101823807,
0.08810876309871674,
-0.2587911784648895,
0.2894328832626343,
0.2850617468357086,
0.5905286073684692,
0.4374437928199768,
-0.9566361904144287,
0.3679727017879486,
-0.8338906764984131,
-0.28341031074523926,
0.0901489108800888,
-0.840086817741394,
-0.8701138496398926,
-1.0260591506958008,
-0.7274506092071533,
-0.818313717842102,
-0.31068795919418335,
1.0325932502746582,
0.7218010425567627,
-0.6922307014465332,
-0.240337073802948,
0.0329986996948719,
0.3646078109741211,
-0.00392206571996212,
-0.3190661370754242,
0.667815625667572,
0.3673362731933594,
-0.7211480140686035,
-0.09565136581659317,
0.005238527897745371,
0.24064891040325165,
0.10086239874362946,
-0.16005557775497437,
-0.07210314273834229,
-0.31839799880981445,
0.36540907621383667,
0.47554171085357666,
-0.31576234102249146,
-0.07917527109384537,
-0.1824418604373932,
0.03955041244626045,
0.16753700375556946,
0.4210529625415802,
-0.5749983787536621,
0.2515953481197357,
0.6828297972679138,
0.2190455049276352,
0.4274071455001831,
0.16615596413612366,
0.058524586260318756,
-0.4630392789840698,
0.07410222291946411,
0.007464101538062096,
0.28013789653778076,
0.3317277729511261,
-0.4415811598300934,
0.8254221081733704,
0.5594298839569092,
-0.5351215600967407,
-0.8885864019393921,
-0.1656639128923416,
-1.35356867313385,
0.12511755526065826,
1.0614112615585327,
0.06804996728897095,
-0.5491325259208679,
0.069337397813797,
-0.2251066118478775,
0.11619798839092255,
-0.5958441495895386,
0.42305997014045715,
0.5675776600837708,
-0.0733320489525795,
0.11581580340862274,
-0.4029558300971985,
0.6584124565124512,
-0.0920366421341896,
-0.9837837815284729,
0.1568169891834259,
0.4170004725456238,
0.4435606598854065,
0.3799813687801361,
0.8289828896522522,
-0.2757689356803894,
0.09492883086204529,
-0.08498870581388474,
0.2922745943069458,
-0.2284366488456726,
0.006750615779310465,
-0.3496692180633545,
-0.12316862493753433,
-0.5451354384422302,
-0.19702644646167755
]
|
huggingartists/dzhizus | huggingartists | 2022-10-25T09:28:21Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/dzhizus"
## 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.455898 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('https://images.genius.com/a96a6042b4c0a4c0bdae647768c5e42b.668x668x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/dzhizus">
<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">Джизус (Dzhizus)</div>
<a href="https://genius.com/artists/dzhizus">
<div style="text-align: center; font-size: 14px;">@dzhizus</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/dzhizus).
### 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/dzhizus")
```
## 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|
|------:|---------:|---:|
|280| -| -|
'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/dzhizus")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.5749590396881104,
-0.5000175833702087,
0.08843298256397247,
0.32829204201698303,
-0.3153303563594818,
0.011733345687389374,
-0.31166887283325195,
-0.43269434571266174,
0.8499014973640442,
0.29096996784210205,
-0.9030576944351196,
-0.8206424713134766,
-0.5573352575302124,
0.13536499440670013,
-0.05415236949920654,
1.2419573068618774,
-0.2307155430316925,
-0.3222338557243347,
-0.28609150648117065,
-0.20073987543582916,
-0.31905004382133484,
-0.2459055483341217,
-0.31507977843284607,
-0.3774663507938385,
0.31715887784957886,
0.5458916425704956,
0.6790453791618347,
0.8731224536895752,
0.507554292678833,
0.3668918013572693,
-0.09828170388936996,
0.028205631300807,
-0.3555527627468109,
-0.09788599610328674,
0.19808530807495117,
-0.32339346408843994,
-0.7235054969787598,
0.25018393993377686,
0.5943853259086609,
0.37110984325408936,
-0.10716193914413452,
0.4760718047618866,
0.10254660248756409,
0.8531216382980347,
-0.24611161649227142,
0.5038862228393555,
-0.21683533489704132,
-0.12454802542924881,
-0.31963956356048584,
0.044991910457611084,
0.18570342659950256,
-0.6407893896102905,
-0.04303905367851257,
-0.7620252370834351,
0.002493535401299596,
-0.02482704631984234,
1.026793360710144,
0.024732835590839386,
0.1101803258061409,
-0.1764475554227829,
-0.17557938396930695,
0.5719258189201355,
-0.5991047024726868,
-0.053426336497068405,
0.5990939140319824,
0.17721758782863617,
-0.027478190138936043,
-0.6110861897468567,
-0.6497447490692139,
0.07990996539592743,
-0.16812747716903687,
0.31810012459754944,
-0.14339680969715118,
-0.31956660747528076,
0.5255219340324402,
0.5827254056930542,
-0.48830169439315796,
-0.23791511356830597,
-0.5274038910865784,
-0.12073695659637451,
1.2140346765518188,
0.18670804798603058,
0.4645240604877472,
-0.510279655456543,
-0.23329083621501923,
-0.35932767391204834,
-0.26646190881729126,
0.33866557478904724,
0.5646748542785645,
0.4085069000720978,
-1.0146147012710571,
0.5885394215583801,
-0.23018833994865417,
0.5708986520767212,
0.15171530842781067,
-0.08909229189157486,
0.7739673256874084,
-0.39674249291419983,
-0.11452992260456085,
-0.11131931096315384,
1.085790753364563,
0.6886340975761414,
0.1955578774213791,
0.1398608535528183,
-0.053942885249853134,
-0.000183299693162553,
-0.19453668594360352,
-0.8594626188278198,
-0.3906712830066681,
0.637912929058075,
-0.6015862226486206,
-0.632620632648468,
0.13309422135353088,
-1.037721872329712,
-0.21677981317043304,
-0.28048595786094666,
0.25110021233558655,
-0.3961317539215088,
-0.5813803672790527,
0.14491073787212372,
-0.24048832058906555,
0.10939803719520569,
0.12108734250068665,
-0.6383811235427856,
0.1987825185060501,
0.5613314509391785,
0.8209154605865479,
0.22723248600959778,
-0.3341520428657532,
-0.281863808631897,
-0.21810974180698395,
-0.14465093612670898,
0.6374849677085876,
-0.2784396708011627,
-0.359150230884552,
-0.1662333756685257,
0.3011558949947357,
-0.08293816447257996,
-0.26216188073158264,
0.8866406679153442,
0.05679260566830635,
0.14933890104293823,
-0.5700228810310364,
-0.4006412923336029,
-0.0014201654121279716,
0.2673659920692444,
-0.7441220879554749,
1.0629382133483887,
0.3105950355529785,
-1.0312821865081787,
0.1796407401561737,
-0.7515079379081726,
-0.30292290449142456,
0.047081537544727325,
0.050805896520614624,
-0.7844387888908386,
-0.1822059005498886,
0.16447937488555908,
0.744168758392334,
-0.32369935512542725,
0.019664272665977478,
-0.6029188632965088,
-0.14271017909049988,
0.39570364356040955,
0.23346155881881714,
1.2142635583877563,
0.15815836191177368,
-0.15418151021003723,
0.07418867945671082,
-0.9341927170753479,
0.1254568099975586,
0.484390527009964,
-0.16506890952587128,
-0.12541991472244263,
-0.2191651612520218,
0.4059809148311615,
0.3044727146625519,
0.07901770621538162,
-0.6525309681892395,
0.4630695581436157,
-0.22163079679012299,
0.49523693323135376,
0.7775463461875916,
-0.043384406715631485,
0.29904645681381226,
-0.6545250415802002,
0.4243236780166626,
0.1254677027463913,
0.37596946954727173,
-0.016068745404481888,
-0.5683243274688721,
-0.47979944944381714,
-0.2704794108867645,
0.3196748197078705,
0.46144431829452515,
-0.7331755757331848,
0.9571241140365601,
-0.3468988835811615,
-0.8880404233932495,
-0.6433512568473816,
0.11101453751325607,
0.15597209334373474,
0.5266131162643433,
0.34131965041160583,
-0.3778337240219116,
-0.5884019136428833,
-0.650897741317749,
0.10974434018135071,
-0.2573636770248413,
0.21088996529579163,
0.38757550716400146,
0.8500304818153381,
-0.18888038396835327,
0.8056277632713318,
-0.7083919048309326,
-0.277790367603302,
-0.2796035408973694,
-0.36444494128227234,
0.380899041891098,
0.7838748693466187,
0.6806461215019226,
-0.8795322179794312,
-0.5602837204933167,
-0.2207755446434021,
-0.7259048819541931,
-0.0817718654870987,
-0.004388777539134026,
-0.2713567614555359,
0.014702371321618557,
0.09175024926662445,
-0.7334995865821838,
0.5485925078392029,
0.48501065373420715,
-0.6461101770401001,
0.5810958743095398,
0.08809888362884521,
0.0397961363196373,
-1.3561655282974243,
0.35967516899108887,
0.22422099113464355,
0.04049035906791687,
-0.6333884000778198,
-0.2164565920829773,
-0.04012530297040939,
-0.043212663382291794,
-0.09518838673830032,
0.6219693422317505,
-0.35124701261520386,
0.3291410505771637,
0.10835758596658707,
0.12055181711912155,
0.07939506322145462,
0.4226880669593811,
-0.06514742225408554,
0.2962876558303833,
1.0580403804779053,
-0.3868805170059204,
0.7497864365577698,
0.6455445289611816,
-0.26685890555381775,
0.8410009145736694,
-0.817608118057251,
0.004558026324957609,
-0.24320746958255768,
0.39345669746398926,
-0.8529959917068481,
-0.5487608313560486,
0.8719976544380188,
-0.7049077749252319,
0.42603543400764465,
-0.24967068433761597,
-0.5496910810470581,
-0.7965078949928284,
-0.6988145709037781,
0.1408328413963318,
0.5546972751617432,
-0.393886536359787,
0.3728373348712921,
0.5734544992446899,
0.07584161311388016,
-0.41235265135765076,
-0.8063223958015442,
-0.13433369994163513,
-0.4143048822879791,
-0.830061137676239,
0.4272824227809906,
-0.32918521761894226,
-0.11117592453956604,
0.14241454005241394,
0.11290163546800613,
0.07971266657114029,
0.036076080054044724,
0.37251245975494385,
0.32347941398620605,
0.08128967881202698,
0.026696279644966125,
-0.08759443461894989,
-0.2492666095495224,
0.08267311751842499,
-0.20305737853050232,
0.2697964310646057,
-0.27819034457206726,
-0.10907651484012604,
-0.6828758120536804,
0.19040434062480927,
0.4507477879524231,
-0.2711782157421112,
0.6650165319442749,
0.8060484528541565,
-0.2683124542236328,
-0.020103376358747482,
-0.473250150680542,
-0.12137062102556229,
-0.42237406969070435,
0.06049920618534088,
-0.25088441371917725,
-0.5730007886886597,
0.9483932852745056,
0.22225427627563477,
0.05159619450569153,
0.6812213659286499,
0.47762879729270935,
-0.02344212494790554,
0.6706329584121704,
0.3658469021320343,
-0.31596165895462036,
0.5028548836708069,
-0.6703890562057495,
-0.22734466195106506,
-0.9036905765533447,
-0.4590134024620056,
-0.47201764583587646,
-0.4876483678817749,
-0.9011304378509521,
-0.43974512815475464,
0.16117505729198456,
0.13761165738105774,
-0.14552509784698486,
0.42768505215644836,
-0.9231917262077332,
0.2372477501630783,
0.30068379640579224,
0.3052028715610504,
-0.0948711410164833,
0.09271343797445297,
0.09380603581666946,
0.12042625993490219,
-0.5907584428787231,
-0.2435913383960724,
1.1147396564483643,
0.48238784074783325,
0.5912848711013794,
-0.08461054414510727,
0.8649585843086243,
-0.004791739862412214,
0.20016415417194366,
-0.5410606861114502,
0.5124892592430115,
0.033903345465660095,
-0.4630722105503082,
-0.16791442036628723,
-0.5224794745445251,
-0.9165732264518738,
-0.10880639404058456,
-0.4006577432155609,
-0.7272972464561462,
0.4789128601551056,
0.08502624928951263,
-0.24018006026744843,
0.41502833366394043,
-0.5534185171127319,
0.8103088736534119,
-0.06501884758472443,
-0.4889887273311615,
0.2380533218383789,
-0.9709150195121765,
0.20184631645679474,
0.19690032303333282,
0.24947792291641235,
-0.4358799159526825,
0.041787561029195786,
0.983975887298584,
-0.8043887615203857,
0.9275228381156921,
-0.3881402313709259,
0.13751980662345886,
0.579669177532196,
-0.31516095995903015,
0.42823362350463867,
0.1536663919687271,
-0.29526999592781067,
0.33527520298957825,
0.013859009370207787,
-0.4689427316188812,
-0.4242095351219177,
0.7317440509796143,
-0.7272009253501892,
-0.008767558261752129,
-0.41039520502090454,
-0.45155489444732666,
0.10557330399751663,
0.21269124746322632,
0.3000392019748688,
0.39918410778045654,
0.00867518037557602,
0.09910790622234344,
0.4487497806549072,
-0.14317160844802856,
0.29124417901039124,
0.052090276032686234,
-0.10607186704874039,
-0.7660273313522339,
0.9210847020149231,
0.22282007336616516,
0.028892748057842255,
-0.04125365987420082,
0.4521605670452118,
-0.3253496289253235,
-0.14527177810668945,
-0.6714643239974976,
0.4699184000492096,
-0.3951910734176636,
-0.4056662917137146,
-0.4516914188861847,
-0.17921888828277588,
-0.6428726315498352,
-0.09334347397089005,
-0.2463526576757431,
-0.5102453827857971,
-0.31241610646247864,
-0.20245999097824097,
1.0589078664779663,
0.48621484637260437,
-0.6745730638504028,
0.07931216806173325,
-0.5484274625778198,
0.2504565715789795,
-0.0720222145318985,
0.6795123219490051,
-0.047294165939092636,
-0.31836172938346863,
-0.2567203640937805,
0.13699857890605927,
-0.20838035643100739,
-0.7226571440696716,
0.27254343032836914,
-0.03991959989070892,
0.3960792124271393,
0.09897274523973465,
0.12247786670923233,
0.6707529425621033,
-0.0785546526312828,
0.6447687745094299,
0.263076514005661,
-0.8194997906684875,
0.7092440128326416,
-0.527705192565918,
0.14165225625038147,
0.7013053894042969,
0.4011012315750122,
-0.6275011897087097,
-0.09487120807170868,
-0.9109109044075012,
-0.8072195053100586,
0.8676876425743103,
0.45500051975250244,
0.0827767625451088,
0.24507543444633484,
0.5897325873374939,
-0.19810466468334198,
0.26792415976524353,
-0.6239665150642395,
-0.8546417355537415,
-0.42325690388679504,
-0.3702886402606964,
-0.039559461176395416,
-0.10256622731685638,
-0.22362878918647766,
-0.688252329826355,
0.7717252969741821,
-0.08801869302988052,
0.316745787858963,
0.4612172842025757,
0.40827009081840515,
-0.2272946834564209,
-0.03369809314608574,
0.33615779876708984,
0.3792474567890167,
-0.1918525993824005,
-0.3185635507106781,
-0.13892824947834015,
-0.6799001693725586,
-0.046898551285266876,
0.5014909505844116,
-0.35790035128593445,
-0.08263865113258362,
0.2887170612812042,
0.9136447310447693,
-0.05684246867895126,
-0.20700682699680328,
0.5756620764732361,
-0.07209531962871552,
-0.37494269013404846,
-0.411722868680954,
0.008143034763634205,
0.15391889214515686,
0.22066597640514374,
0.05090177059173584,
0.04999607056379318,
-0.09991148859262466,
-0.3873901963233948,
0.3771378695964813,
0.21261723339557648,
-0.38384848833084106,
-0.5295437574386597,
0.5697970390319824,
0.10182967782020569,
-0.10911551862955093,
0.5178905725479126,
-0.16144536435604095,
-0.6239511966705322,
0.7823868989944458,
0.1248662918806076,
0.824104368686676,
-0.25579559803009033,
0.3677491843700409,
0.7709723711013794,
0.22142377495765686,
-0.08572834730148315,
0.540978193283081,
-0.19884277880191803,
-0.6319586634635925,
-0.05029279738664627,
-0.5850250720977783,
-0.0631941631436348,
0.07296852767467499,
-0.8244844675064087,
0.4591345191001892,
-0.47187334299087524,
-0.22658683359622955,
0.0052168662659823895,
0.42880383133888245,
-0.6570202112197876,
0.18370269238948822,
-0.05423738434910774,
1.0094289779663086,
-1.0490902662277222,
0.518256664276123,
0.7140976190567017,
-0.6719919443130493,
-1.1637208461761475,
-0.12591895461082458,
0.17057718336582184,
-0.5994656682014465,
0.2616766095161438,
0.21028204262256622,
0.48691001534461975,
-0.0528363436460495,
-0.8539167046546936,
-0.6688539385795593,
1.2221843004226685,
0.028113948181271553,
-0.22128601372241974,
0.36967429518699646,
0.11932387948036194,
0.6253074407577515,
-0.34995532035827637,
0.2994791269302368,
0.6005327105522156,
0.6904560923576355,
0.26114535331726074,
-0.7414066195487976,
0.32782113552093506,
-0.6808122396469116,
-0.21579375863075256,
0.07900422066450119,
-1.0884983539581299,
0.6893004775047302,
-0.16622082889080048,
-0.04841470345854759,
0.02835715375840664,
0.6031847596168518,
0.4237341582775116,
0.4160217046737671,
0.425900936126709,
0.7385314106941223,
0.7934387922286987,
-0.3242236077785492,
1.197070598602295,
-0.2497836798429489,
0.6149399280548096,
0.7303644418716431,
0.01792317070066929,
0.48617833852767944,
0.21167181432247162,
-0.35277801752090454,
0.5585763454437256,
0.667898416519165,
-0.45958706736564636,
0.23252974450588226,
0.3937983512878418,
-0.06888847798109055,
-0.08363524824380875,
-0.2603065073490143,
-0.5778705477714539,
0.3494085967540741,
0.22490756213665009,
-0.2817627191543579,
0.009285097010433674,
-0.003890525083988905,
0.38236525654792786,
-0.027130136266350746,
-0.26859164237976074,
0.6347094774246216,
0.07556500285863876,
-0.3644826412200928,
0.5378537178039551,
-0.17296794056892395,
0.671964168548584,
-0.6110267043113708,
0.10413901507854462,
-0.11769921332597733,
0.1435643434524536,
-0.6365100741386414,
-1.1123589277267456,
0.368740051984787,
-0.08732923865318298,
-0.22435975074768066,
-0.3136675953865051,
0.7973328828811646,
-0.4910845458507538,
-0.7825930118560791,
0.21587404608726501,
0.17477130889892578,
0.31590351462364197,
0.15836702287197113,
-1.2663702964782715,
0.5581173896789551,
0.1621636152267456,
-0.49221497774124146,
0.1504509299993515,
0.5039424896240234,
0.14814408123493195,
0.5482935905456543,
0.6559643149375916,
0.28444382548332214,
-0.28740546107292175,
0.018511727452278137,
1.1092984676361084,
-0.5280657410621643,
-0.46030423045158386,
-0.8097430467605591,
0.8961901068687439,
-0.4068130552768707,
-0.3875434100627899,
0.7689042687416077,
0.7319444417953491,
0.8433314561843872,
0.011203309521079063,
0.8311381340026855,
-0.6341034173965454,
0.6319943070411682,
-0.24629807472229004,
0.9968737363815308,
-0.7235010266304016,
-0.10522820055484772,
-0.7147939205169678,
-0.5003336071968079,
-0.36896833777427673,
0.6812422871589661,
-0.18553049862384796,
0.2024708241224289,
0.24651938676834106,
0.8755984306335449,
0.026185905560851097,
0.0970398336648941,
-0.21424640715122223,
0.31387612223625183,
0.26235395669937134,
0.5644736289978027,
0.4552169442176819,
-0.933266282081604,
0.32076743245124817,
-0.823966920375824,
-0.3354620635509491,
-0.0024109461810439825,
-0.8340862393379211,
-0.906787633895874,
-0.9698034524917603,
-0.6659858822822571,
-0.7609546184539795,
-0.32663223147392273,
1.055125117301941,
0.6866689324378967,
-0.6740251183509827,
-0.2946566045284271,
0.09624668955802917,
0.2973175644874573,
-0.08497502654790878,
-0.31226271390914917,
0.6619211435317993,
0.36353766918182373,
-0.6607739329338074,
-0.16336369514465332,
0.03614446148276329,
0.2625158131122589,
0.040327638387680054,
-0.08832994848489761,
-0.1277579814195633,
-0.29172128438949585,
0.34408533573150635,
0.42452526092529297,
-0.31960347294807434,
-0.07549343258142471,
-0.227918803691864,
0.01655326411128044,
0.1717069149017334,
0.45986324548721313,
-0.45457789301872253,
0.2532438039779663,
0.7055982351303101,
0.2051844596862793,
0.4292617738246918,
0.16431878507137299,
0.03945345804095268,
-0.44511139392852783,
0.14768697321414948,
-0.03740125894546509,
0.3208425045013428,
0.4028582274913788,
-0.4729330837726593,
0.7497571110725403,
0.5845510959625244,
-0.5020337104797363,
-0.8546619415283203,
-0.11803320050239563,
-1.2853760719299316,
0.11329282820224762,
1.038981556892395,
-0.057383377104997635,
-0.5749483108520508,
0.07885555922985077,
-0.2524230182170868,
0.18403317034244537,
-0.5432546734809875,
0.4990380108356476,
0.5604363083839417,
-0.06602877378463745,
0.16112637519836426,
-0.367879718542099,
0.6554084420204163,
-0.021520599722862244,
-0.9796851277351379,
0.2205376923084259,
0.4036265015602112,
0.47558578848838806,
0.30946314334869385,
0.826964795589447,
-0.26561588048934937,
0.08832895755767822,
-0.03753920644521713,
0.2698633074760437,
-0.2902091443538666,
0.04719628021121025,
-0.3859391510486603,
-0.20449714362621307,
-0.46618029475212097,
-0.23618479073047638
]
|
huggingartists/egor-kreed | huggingartists | 2022-10-25T09:28:35Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/egor-kreed"
## 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.321207 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('https://images.genius.com/f52808edb2078f52ddab162623f0c6e3.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/egor-kreed">
<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">ЕГОР КРИД (EGOR KREED)</div>
<a href="https://genius.com/artists/egor-kreed">
<div style="text-align: center; font-size: 14px;">@egor-kreed</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/egor-kreed).
### 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/egor-kreed")
```
## 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|
|------:|---------:|---:|
|103| -| -|
'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/egor-kreed")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6494977474212646,
-0.5431709289550781,
0.08522623032331467,
0.27733179926872253,
-0.2215663641691208,
0.02447405271232128,
-0.3007889986038208,
-0.456917941570282,
0.8584631085395813,
0.2961484491825104,
-0.8952968120574951,
-0.8039397597312927,
-0.5657649636268616,
0.11190947145223618,
-0.06310192495584488,
1.279232144355774,
-0.2001306563615799,
-0.37623292207717896,
-0.3028733432292938,
-0.2850012481212616,
-0.28759801387786865,
-0.3685169816017151,
-0.29403558373451233,
-0.34531891345977783,
0.3787728548049927,
0.5554561614990234,
0.709875226020813,
0.8990364074707031,
0.5196314454078674,
0.3486153185367584,
-0.08451426029205322,
-0.030947290360927582,
-0.3464384377002716,
-0.07311885803937912,
0.19063226878643036,
-0.2516671419143677,
-0.7098166346549988,
0.2153676599264145,
0.5707361698150635,
0.3837199807167053,
-0.10724875330924988,
0.5050365328788757,
0.10510040819644928,
0.8743598461151123,
-0.30764102935791016,
0.48793888092041016,
-0.20336808264255524,
-0.15528713166713715,
-0.29638436436653137,
0.05613728612661362,
0.19466324150562286,
-0.6149863004684448,
0.01213417574763298,
-0.724965512752533,
0.007959725335240364,
0.015582958236336708,
1.0535449981689453,
0.0830685943365097,
0.11697420477867126,
-0.22302603721618652,
-0.19547800719738007,
0.496697336435318,
-0.5661998987197876,
0.058961935341358185,
0.5720521211624146,
0.14003218710422516,
0.04551198333501816,
-0.6194584369659424,
-0.6418060064315796,
0.07496918737888336,
-0.16314300894737244,
0.3006789982318878,
-0.18781189620494843,
-0.30899661779403687,
0.48349300026893616,
0.5550377368927002,
-0.5060217380523682,
-0.25675320625305176,
-0.5273177623748779,
-0.09013281762599945,
1.1447538137435913,
0.13895545899868011,
0.40807396173477173,
-0.4827267825603485,
-0.1981905996799469,
-0.44290387630462646,
-0.23613595962524414,
0.3647450804710388,
0.5649541616439819,
0.40273529291152954,
-0.9944369792938232,
0.6388217210769653,
-0.15973779559135437,
0.5198959112167358,
0.21624214947223663,
-0.0202653706073761,
0.7905635833740234,
-0.370704710483551,
-0.13336077332496643,
-0.12179138511419296,
1.0468159914016724,
0.6874619722366333,
0.19192181527614594,
0.10031497478485107,
-0.027490871027112007,
0.01387943048030138,
-0.15430781245231628,
-0.8638522028923035,
-0.4517318904399872,
0.6763225793838501,
-0.6024396419525146,
-0.5820958614349365,
0.1385030746459961,
-0.9885796308517456,
-0.16969606280326843,
-0.29501354694366455,
0.2462432086467743,
-0.41681113839149475,
-0.5530120134353638,
0.14645037055015564,
-0.2611767649650574,
0.14398659765720367,
0.008158019743859768,
-0.5711943507194519,
0.2269158512353897,
0.5573288798332214,
0.7663211822509766,
0.24956586956977844,
-0.3108554184436798,
-0.2852974236011505,
-0.18531043827533722,
-0.1269332319498062,
0.6654842495918274,
-0.29496529698371887,
-0.3434368669986725,
-0.19020526111125946,
0.34695911407470703,
-0.07852578908205032,
-0.2734777331352234,
0.9160894751548767,
0.03446117416024208,
0.17613647878170013,
-0.5770335793495178,
-0.47223812341690063,
-0.0388440378010273,
0.27414023876190186,
-0.7386446595191956,
1.0509902238845825,
0.3409501314163208,
-0.9896312355995178,
0.21216782927513123,
-0.8003660440444946,
-0.2820742726325989,
0.05805448442697525,
0.0913216844201088,
-0.8105546236038208,
-0.21014702320098877,
0.19033515453338623,
0.7575041651725769,
-0.2667788863182068,
-0.00584393972530961,
-0.613629937171936,
-0.05413395166397095,
0.35657551884651184,
0.2887628972530365,
1.1482911109924316,
0.11290489882230759,
-0.128703773021698,
0.07402156293392181,
-0.9127277135848999,
0.19090169668197632,
0.441881388425827,
-0.16627390682697296,
-0.12431605905294418,
-0.21793708205223083,
0.4273548722267151,
0.31390658020973206,
0.057342808693647385,
-0.5974730849266052,
0.3815461993217468,
-0.20142196118831635,
0.4297712445259094,
0.7554875016212463,
0.009170386008918285,
0.32582053542137146,
-0.6687857508659363,
0.44597703218460083,
0.05642925575375557,
0.3478394150733948,
-0.02578163892030716,
-0.5285949110984802,
-0.45250648260116577,
-0.28999826312065125,
0.33731213212013245,
0.465570330619812,
-0.6286680102348328,
1.0292556285858154,
-0.3195970356464386,
-0.8582846522331238,
-0.6500664949417114,
0.11827504634857178,
0.23538562655448914,
0.5061770081520081,
0.3661552965641022,
-0.43194568157196045,
-0.5991088151931763,
-0.6593151092529297,
0.04997139051556587,
-0.281483918428421,
0.20102597773075104,
0.4689406752586365,
0.8150916695594788,
-0.2348022758960724,
0.8327463865280151,
-0.6637595891952515,
-0.3081003427505493,
-0.24017012119293213,
-0.3654504716396332,
0.3528342545032501,
0.8082624673843384,
0.6988013982772827,
-0.8201337456703186,
-0.5549883246421814,
-0.21963074803352356,
-0.7035581469535828,
-0.10807187110185623,
-0.018602676689624786,
-0.2727521061897278,
0.04060593992471695,
0.1824648529291153,
-0.704119086265564,
0.5436164736747742,
0.5024238228797913,
-0.68976229429245,
0.6047511100769043,
0.05947577580809593,
0.016367532312870026,
-1.2533230781555176,
0.3859032392501831,
0.2533177435398102,
-0.010694499127566814,
-0.5889029502868652,
-0.15015211701393127,
-0.03294467553496361,
0.00037468012305907905,
-0.06704028695821762,
0.6339284777641296,
-0.3561919927597046,
0.3062393367290497,
0.1445218026638031,
0.034714989364147186,
0.07709643989801407,
0.44491901993751526,
-0.08192981034517288,
0.2309984564781189,
1.022128701210022,
-0.40680092573165894,
0.6458428502082825,
0.608256459236145,
-0.19681209325790405,
0.8847457766532898,
-0.8323489427566528,
0.045370135456323624,
-0.27957460284233093,
0.42791780829429626,
-0.8158048391342163,
-0.5767701864242554,
0.8704985976219177,
-0.6952824592590332,
0.40647122263908386,
-0.2398293912410736,
-0.5561703443527222,
-0.8198763132095337,
-0.6643627285957336,
0.16205598413944244,
0.5522321462631226,
-0.3949205279350281,
0.43347153067588806,
0.5952993631362915,
0.05402868241071701,
-0.35152485966682434,
-0.714181125164032,
-0.14075210690498352,
-0.40956035256385803,
-0.8196016550064087,
0.42719727754592896,
-0.38127630949020386,
-0.11960826069116592,
0.19293706119060516,
0.10637331753969193,
0.11743884533643723,
-0.01314800325781107,
0.4058470129966736,
0.2806468904018402,
0.07413309812545776,
0.0012256281916052103,
-0.09887214004993439,
-0.2334957867860794,
0.11867967993021011,
-0.2160830944776535,
0.27654388546943665,
-0.32567310333251953,
-0.13667725026607513,
-0.6745755076408386,
0.20627224445343018,
0.463509738445282,
-0.2668344974517822,
0.6792733669281006,
0.7922565340995789,
-0.23793070018291473,
-0.005736516788601875,
-0.5092434883117676,
-0.13995198905467987,
-0.4194692373275757,
0.053923945873975754,
-0.2614997625350952,
-0.5939037203788757,
0.943565309047699,
0.21985554695129395,
0.06382536888122559,
0.6640995740890503,
0.49582499265670776,
-0.07326341420412064,
0.6934368014335632,
0.39400729537010193,
-0.2850039303302765,
0.5056179761886597,
-0.667453408241272,
-0.2181669920682907,
-0.900830090045929,
-0.4523315131664276,
-0.461366206407547,
-0.5150389671325684,
-0.8338651657104492,
-0.43387937545776367,
0.2147916555404663,
0.17011797428131104,
-0.24295559525489807,
0.43197885155677795,
-0.9614138007164001,
0.30951127409935,
0.3405593931674957,
0.27173587679862976,
-0.1417953222990036,
0.07062673568725586,
0.08006468415260315,
0.15028439462184906,
-0.5964033603668213,
-0.23963214457035065,
1.155194878578186,
0.5102501511573792,
0.5304942727088928,
-0.08724386990070343,
0.8275545239448547,
0.02468249574303627,
0.22331678867340088,
-0.5274792313575745,
0.4666345715522766,
0.07039275020360947,
-0.4794086515903473,
-0.1484999656677246,
-0.45109260082244873,
-0.9029095768928528,
-0.13905631005764008,
-0.37409067153930664,
-0.7083309292793274,
0.515449047088623,
0.11797677725553513,
-0.2553313672542572,
0.38115450739860535,
-0.6238301396369934,
0.839236319065094,
-0.0446966327726841,
-0.4170590043067932,
0.2683262228965759,
-1.0455571413040161,
0.1926799863576889,
0.1804424673318863,
0.26663029193878174,
-0.3706912100315094,
0.0409962460398674,
0.9786909222602844,
-0.8399711847305298,
0.868027925491333,
-0.3688492774963379,
0.1524238884449005,
0.580572783946991,
-0.26822781562805176,
0.4678422808647156,
0.0890364870429039,
-0.25278711318969727,
0.3200967013835907,
0.04165339469909668,
-0.43289223313331604,
-0.41528403759002686,
0.671576976776123,
-0.7203336358070374,
0.05724884197115898,
-0.3703150451183319,
-0.4482833743095398,
0.08783020824193954,
0.13866472244262695,
0.27278074622154236,
0.3803534209728241,
-0.025752859190106392,
0.13383813202381134,
0.4023663401603699,
-0.13472311198711395,
0.28149858117103577,
0.04951230064034462,
-0.11665043979883194,
-0.7668768763542175,
0.9313871264457703,
0.18307240307331085,
0.06185350567102432,
-0.10352642089128494,
0.43089041113853455,
-0.3623863756656647,
-0.06932233273983002,
-0.6249610185623169,
0.44743338227272034,
-0.4033508896827698,
-0.39800184965133667,
-0.5653437376022339,
-0.19934117794036865,
-0.6254415512084961,
-0.17880326509475708,
-0.22912126779556274,
-0.4884493052959442,
-0.2930477559566498,
-0.21562571823596954,
1.0587459802627563,
0.4579458236694336,
-0.7350149750709534,
0.12099435180425644,
-0.514179527759552,
0.2803792357444763,
-0.08413898199796677,
0.6532663702964783,
-0.03268962725996971,
-0.3054753839969635,
-0.22796708345413208,
0.09773432463407516,
-0.21275949478149414,
-0.6746256947517395,
0.30032220482826233,
0.01845473423600197,
0.3519231379032135,
0.11282356083393097,
0.11499965190887451,
0.6871429085731506,
-0.10864001512527466,
0.6107601523399353,
0.26364925503730774,
-0.7888064384460449,
0.663578450679779,
-0.508621096611023,
0.1651778519153595,
0.7012609243392944,
0.3804679811000824,
-0.6508081555366516,
-0.16773854196071625,
-1.0039247274398804,
-0.8725623488426208,
0.8193506598472595,
0.4196784198284149,
0.04274682700634003,
0.19965049624443054,
0.5726480484008789,
-0.19950944185256958,
0.24435798823833466,
-0.628608763217926,
-0.8970738053321838,
-0.41001567244529724,
-0.3513607680797577,
-0.040748078376054764,
-0.08217208087444305,
-0.21022410690784454,
-0.7232441306114197,
0.7938321828842163,
-0.11037640273571014,
0.32236266136169434,
0.4700573980808258,
0.40770429372787476,
-0.24841125309467316,
-0.042926788330078125,
0.2544448673725128,
0.33964648842811584,
-0.26272356510162354,
-0.3215906322002411,
-0.16946302354335785,
-0.6258983612060547,
-0.08249408006668091,
0.49704092741012573,
-0.3187001943588257,
-0.08588629215955734,
0.2648996412754059,
0.8408916592597961,
-0.04441309720277786,
-0.24994902312755585,
0.5805502533912659,
-0.06901724636554718,
-0.41515812277793884,
-0.41619744896888733,
-0.013825722970068455,
0.1558171957731247,
0.2628425359725952,
0.06139177083969116,
0.12560220062732697,
-0.12424910813570023,
-0.39234471321105957,
0.4326101243495941,
0.25136688351631165,
-0.3960893750190735,
-0.5314550995826721,
0.6231945157051086,
0.03652964532375336,
-0.1653861105442047,
0.4551640450954437,
-0.20621751248836517,
-0.656770646572113,
0.8067903518676758,
0.12134405225515366,
0.8315456509590149,
-0.2046625018119812,
0.32419347763061523,
0.7446957230567932,
0.20231133699417114,
-0.06185013800859451,
0.535556435585022,
-0.2031669169664383,
-0.6559529304504395,
-0.05761747807264328,
-0.5632599592208862,
-0.08752196282148361,
0.07437637448310852,
-0.8357162475585938,
0.4235706031322479,
-0.4985164403915405,
-0.2135821431875229,
0.048886291682720184,
0.35578593611717224,
-0.7526808977127075,
0.17293556034564972,
-0.06183845177292824,
0.9865220785140991,
-0.9938942790031433,
0.43597400188446045,
0.6858630776405334,
-0.6430757641792297,
-1.2095403671264648,
-0.11195410043001175,
0.19993047416210175,
-0.569919228553772,
0.2572905719280243,
0.17242217063903809,
0.4944325387477875,
-0.009758293628692627,
-0.9046766757965088,
-0.6880576610565186,
1.1656309366226196,
0.002251432044431567,
-0.21991655230522156,
0.36096036434173584,
0.058275461196899414,
0.6167363524436951,
-0.3636655807495117,
0.31217876076698303,
0.6393536925315857,
0.7056068181991577,
0.27006158232688904,
-0.7347226738929749,
0.30246663093566895,
-0.6345402002334595,
-0.27116331458091736,
0.0868937149643898,
-1.0367324352264404,
0.6420942544937134,
-0.17684434354305267,
-0.06347626447677612,
0.014132999815046787,
0.6151813268661499,
0.4312974810600281,
0.3890707790851593,
0.4492124021053314,
0.7841673493385315,
0.8227502107620239,
-0.26353034377098083,
1.2523882389068604,
-0.31137728691101074,
0.6163542866706848,
0.7850126028060913,
-0.002159511437639594,
0.5061205625534058,
0.20273332297801971,
-0.3139655888080597,
0.5722956657409668,
0.6379495859146118,
-0.4299802780151367,
0.23552732169628143,
0.3901151418685913,
-0.05022813379764557,
-0.06324184685945511,
-0.24755805730819702,
-0.6039432883262634,
0.32017403841018677,
0.22773517668247223,
-0.3047288954257965,
0.01823767088353634,
-0.008269289508461952,
0.37422147393226624,
-0.05203955993056297,
-0.2795659005641937,
0.6509695053100586,
0.04636351764202118,
-0.3576579988002777,
0.525678277015686,
-0.17647357285022736,
0.6915420293807983,
-0.5501293540000916,
0.1610078662633896,
-0.05400044843554497,
0.1538051962852478,
-0.6067999005317688,
-1.0855462551116943,
0.3941420614719391,
-0.09166364371776581,
-0.2651088237762451,
-0.34842583537101746,
0.7725144028663635,
-0.4683056175708771,
-0.8164584636688232,
0.23300296068191528,
0.2676835358142853,
0.34772762656211853,
0.1169140636920929,
-1.2693649530410767,
0.524627685546875,
0.11781422793865204,
-0.47154340147972107,
0.119472436606884,
0.53316330909729,
0.17168393731117249,
0.5561144351959229,
0.7145566940307617,
0.2533475160598755,
-0.25135818123817444,
0.0344729945063591,
1.1036832332611084,
-0.5242690443992615,
-0.46612846851348877,
-0.7901707291603088,
0.866286039352417,
-0.35635408759117126,
-0.4074960947036743,
0.738056480884552,
0.7716783285140991,
0.8735854625701904,
0.01764553040266037,
0.8009656071662903,
-0.6847409605979919,
0.6965836882591248,
-0.16931253671646118,
0.9822894930839539,
-0.6885289549827576,
-0.11722633242607117,
-0.7606788277626038,
-0.5393205881118774,
-0.3923438489437103,
0.6731685400009155,
-0.16206486523151398,
0.22160987555980682,
0.27557307481765747,
0.8961078524589539,
-0.0062318528071045876,
0.08885174989700317,
-0.26044076681137085,
0.32516732811927795,
0.26564502716064453,
0.5063114762306213,
0.42720529437065125,
-0.8971011638641357,
0.329167902469635,
-0.7569242119789124,
-0.29355549812316895,
0.02639688551425934,
-0.831093430519104,
-0.8734779357910156,
-0.9737221598625183,
-0.7019739747047424,
-0.8031377196311951,
-0.286548376083374,
1.0938441753387451,
0.7364991307258606,
-0.6785932779312134,
-0.2645590901374817,
0.07227835804224014,
0.27298498153686523,
-0.09655853360891342,
-0.32919490337371826,
0.6884931921958923,
0.3683868944644928,
-0.5889832973480225,
-0.1727849692106247,
0.020308850333094597,
0.22971849143505096,
0.06282618641853333,
-0.1314062923192978,
-0.11693471670150757,
-0.2722625434398651,
0.3560483157634735,
0.5036181807518005,
-0.32869914174079895,
-0.14441268146038055,
-0.22180233895778656,
0.05594890937209129,
0.18503648042678833,
0.4521643817424774,
-0.5707432627677917,
0.17558173835277557,
0.6070596575737,
0.2666442096233368,
0.4282715916633606,
0.22768545150756836,
0.02974724769592285,
-0.4999823570251465,
0.07427020370960236,
-0.004872421268373728,
0.2788972854614258,
0.38129594922065735,
-0.4750761091709137,
0.7827123999595642,
0.5291102528572083,
-0.5708364248275757,
-0.8455847501754761,
-0.15059393644332886,
-1.2912640571594238,
0.10490623861551285,
1.0571472644805908,
0.005606456659734249,
-0.5759538412094116,
0.05486851558089256,
-0.2425350546836853,
0.12445783615112305,
-0.5703139305114746,
0.44034692645072937,
0.5529423356056213,
-0.0959525853395462,
0.12942010164260864,
-0.3533115088939667,
0.6510310769081116,
-0.019193384796380997,
-0.9631479978561401,
0.2076304405927658,
0.43266427516937256,
0.47285765409469604,
0.29137030243873596,
0.8389826416969299,
-0.2509672939777374,
0.06090451776981354,
-0.07850135117769241,
0.32790130376815796,
-0.25438329577445984,
0.021421819925308228,
-0.36819902062416077,
-0.16820165514945984,
-0.4953717589378357,
-0.21136482059955597
]
|
huggingartists/elton-john | huggingartists | 2022-10-25T09:29:00Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/elton-john"
## 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.422945 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('https://images.genius.com/ec76d346c4c8b057169194c1781021fd.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/elton-john">
<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">Elton John</div>
<a href="https://genius.com/artists/elton-john">
<div style="text-align: center; font-size: 14px;">@elton-john</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/elton-john).
### 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/elton-john")
```
## 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|
|------:|---------:|---:|
|1311| -| -|
'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/elton-john")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6579463481903076,
-0.5436968803405762,
0.03751927614212036,
0.27140092849731445,
-0.24158860743045807,
0.010199762880802155,
-0.3218138515949249,
-0.4711293578147888,
0.8576675653457642,
0.3234962522983551,
-0.8813778758049011,
-0.8085670471191406,
-0.5854087471961975,
0.16555438935756683,
-0.14613249897956848,
1.2594763040542603,
-0.1550338715314865,
-0.40694981813430786,
-0.2925664782524109,
-0.27067601680755615,
-0.21611806750297546,
-0.2571553885936737,
-0.3412882387638092,
-0.28137874603271484,
0.38090595602989197,
0.49664506316185,
0.7335312962532043,
0.933569073677063,
0.5189370512962341,
0.3564161956310272,
-0.1415991336107254,
0.00958103034645319,
-0.3927629292011261,
-0.1396162360906601,
0.16049088537693024,
-0.19575820863246918,
-0.6687928438186646,
0.22687888145446777,
0.5787213444709778,
0.4435182511806488,
-0.07154181599617004,
0.4888160228729248,
0.057428840547800064,
0.8963460326194763,
-0.2561689615249634,
0.44555312395095825,
-0.2909682095050812,
-0.17522946000099182,
-0.30091550946235657,
0.06886852532625198,
0.24673423171043396,
-0.633366048336029,
0.049825698137283325,
-0.7775722742080688,
-0.0076180435717105865,
0.040239367634058,
1.0206176042556763,
0.0419551357626915,
0.07535835355520248,
-0.2586311399936676,
-0.16502484679222107,
0.5855857729911804,
-0.6056281924247742,
0.04746754840016365,
0.5919229388237,
0.15026675164699554,
0.05928218364715576,
-0.5404775142669678,
-0.6153983473777771,
0.025152795016765594,
-0.17384986579418182,
0.28764450550079346,
-0.1698952615261078,
-0.366313636302948,
0.45578107237815857,
0.5324103236198425,
-0.5447807908058167,
-0.24625539779663086,
-0.547073245048523,
-0.042749423533678055,
1.179821491241455,
0.04808536916971207,
0.3805754482746124,
-0.5038408637046814,
-0.22364984452724457,
-0.3992021977901459,
-0.3127342462539673,
0.33716675639152527,
0.5099278092384338,
0.4081958830356598,
-1.0370060205459595,
0.61672043800354,
-0.1941521018743515,
0.5575029253959656,
0.16230668127536774,
-0.09341388940811157,
0.7890815138816833,
-0.3945317268371582,
-0.13233187794685364,
-0.08312130719423294,
1.0745590925216675,
0.6398199200630188,
0.2033294439315796,
0.13030552864074707,
-0.018596243113279343,
-0.008031724020838737,
-0.1787705272436142,
-0.7807125449180603,
-0.399908185005188,
0.6699907183647156,
-0.5857312679290771,
-0.5469646453857422,
0.16336365044116974,
-0.956864058971405,
-0.19624312222003937,
-0.28342488408088684,
0.25649330019950867,
-0.38830292224884033,
-0.5265086889266968,
0.1489989012479782,
-0.27777132391929626,
0.05927886441349983,
0.035510145127773285,
-0.5496448874473572,
0.16512298583984375,
0.5619415640830994,
0.6793602705001831,
0.2759612798690796,
-0.29745927453041077,
-0.2709289789199829,
-0.03887459263205528,
-0.09635378420352936,
0.6366148591041565,
-0.2962993383407593,
-0.373540997505188,
-0.13566726446151733,
0.2879973351955414,
-0.017742400988936424,
-0.30202677845954895,
0.8843387961387634,
0.050908565521240234,
0.22502709925174713,
-0.5614849925041199,
-0.4437556266784668,
0.02455870434641838,
0.3136472702026367,
-0.7781354784965515,
1.0482014417648315,
0.29003629088401794,
-0.9367842078208923,
0.21761707961559296,
-0.8389200568199158,
-0.339524507522583,
-0.005316377617418766,
0.05451682582497597,
-0.8355781435966492,
-0.19133366644382477,
0.24545878171920776,
0.7047468423843384,
-0.3163052201271057,
-0.005135448649525642,
-0.6039854288101196,
-0.07744897156953812,
0.4388143718242645,
0.22836078703403473,
1.1043498516082764,
0.11272082477807999,
-0.18608076870441437,
0.0549437440931797,
-0.9877914190292358,
0.11193935573101044,
0.4064998924732208,
-0.20149864256381989,
-0.10970383882522583,
-0.19871076941490173,
0.38951918482780457,
0.27225297689437866,
0.09832428395748138,
-0.5827817320823669,
0.36479076743125916,
-0.23339374363422394,
0.41035953164100647,
0.7508215308189392,
-0.026017483323812485,
0.29854461550712585,
-0.654448926448822,
0.36639899015426636,
0.07098519802093506,
0.40369725227355957,
0.051918089389801025,
-0.581430971622467,
-0.4837815463542938,
-0.24107927083969116,
0.2713003158569336,
0.4613127112388611,
-0.6460608243942261,
0.9684359431266785,
-0.35001254081726074,
-0.7982524037361145,
-0.639080286026001,
0.205085888504982,
0.27767202258110046,
0.5072742700576782,
0.39058783650398254,
-0.42707371711730957,
-0.6086345314979553,
-0.7272815108299255,
0.012288721278309822,
-0.3058001697063446,
0.18802334368228912,
0.5250610709190369,
0.7690128087997437,
-0.20761360228061676,
0.7986395955085754,
-0.6275134086608887,
-0.27782174944877625,
-0.2239222228527069,
-0.3198385536670685,
0.423881858587265,
0.8345531225204468,
0.6439956426620483,
-0.9034225344657898,
-0.5073705911636353,
-0.194710373878479,
-0.7083821296691895,
-0.10314350575208664,
-0.057441454380750656,
-0.24216802418231964,
-0.008836999535560608,
0.1275254189968109,
-0.6736645102500916,
0.545405387878418,
0.5054218769073486,
-0.6356121301651001,
0.5419830083847046,
0.12556608021259308,
0.08082570880651474,
-1.2633339166641235,
0.3863227367401123,
0.2749749720096588,
0.02910449355840683,
-0.5658704042434692,
-0.2789182960987091,
-0.08068902045488358,
0.007699081674218178,
-0.13301996886730194,
0.5911185145378113,
-0.32574114203453064,
0.2515060305595398,
0.18908359110355377,
0.08922893553972244,
0.09197353571653366,
0.3703160285949707,
-0.12633860111236572,
0.3060797452926636,
0.9809361696243286,
-0.4085536599159241,
0.6376618146896362,
0.5898211002349854,
-0.21599183976650238,
0.9059302806854248,
-0.8331415057182312,
-0.0024133797269314528,
-0.24647459387779236,
0.40137508511543274,
-0.8179686069488525,
-0.5481839776039124,
0.7888458371162415,
-0.7150334715843201,
0.39359113574028015,
-0.24204103648662567,
-0.5392633676528931,
-0.8145562410354614,
-0.6842261552810669,
0.15438412129878998,
0.5498054623603821,
-0.39788487553596497,
0.3684746325016022,
0.6065964102745056,
0.09277669340372086,
-0.36359190940856934,
-0.7333051562309265,
-0.1194872334599495,
-0.4334430992603302,
-0.7965407967567444,
0.4362894892692566,
-0.3203943371772766,
-0.1157827153801918,
0.18227680027484894,
0.09943123906850815,
0.09578222036361694,
0.0007134738261811435,
0.41621023416519165,
0.27944087982177734,
0.09655308723449707,
0.007955910637974739,
-0.10236774384975433,
-0.23532983660697937,
0.09336882084608078,
-0.26344966888427734,
0.20043259859085083,
-0.2712098956108093,
-0.13399210572242737,
-0.7428954839706421,
0.2596094012260437,
0.4299768805503845,
-0.2272951602935791,
0.6365442872047424,
0.8120262026786804,
-0.19345390796661377,
0.006718526128679514,
-0.5107390880584717,
-0.14314407110214233,
-0.4211067855358124,
0.040361955761909485,
-0.2385554015636444,
-0.6472724080085754,
0.8495780229568481,
0.19380661845207214,
0.09727006405591965,
0.6870099306106567,
0.4802114963531494,
-0.13049322366714478,
0.7301839590072632,
0.3200557231903076,
-0.294283002614975,
0.4925210773944855,
-0.6685898900032043,
-0.23038414120674133,
-0.8955268263816833,
-0.4270160496234894,
-0.5333108305931091,
-0.5371218919754028,
-0.8584585189819336,
-0.4219638705253601,
0.2886444330215454,
0.17562003433704376,
-0.26382359862327576,
0.43790486454963684,
-0.9555718898773193,
0.2966299057006836,
0.3983563184738159,
0.24455568194389343,
-0.13185395300388336,
0.09507095813751221,
0.11822262406349182,
0.1835516393184662,
-0.5591347217559814,
-0.24218681454658508,
1.1737034320831299,
0.45585009455680847,
0.565026044845581,
0.03125638887286186,
0.8102965950965881,
0.013003955595195293,
0.25990980863571167,
-0.4322572350502014,
0.4879750907421112,
-0.012354747392237186,
-0.5339999794960022,
-0.13989554345607758,
-0.5006935000419617,
-0.9469906687736511,
-0.2084335833787918,
-0.3844507932662964,
-0.7246137857437134,
0.42820316553115845,
0.14546410739421844,
-0.18348264694213867,
0.35133206844329834,
-0.6061899065971375,
0.8088741898536682,
-0.0858040526509285,
-0.4228443205356598,
0.269943505525589,
-1.0538417100906372,
0.1927746832370758,
0.21691833436489105,
0.33916017413139343,
-0.3987930715084076,
0.022107090801000595,
1.0297366380691528,
-0.7781790494918823,
0.9120709896087646,
-0.336579293012619,
0.1281217485666275,
0.5334774255752563,
-0.3222009241580963,
0.4799179136753082,
0.18418121337890625,
-0.25298964977264404,
0.29058945178985596,
0.014014209620654583,
-0.49031856656074524,
-0.430229127407074,
0.7570804953575134,
-0.7676820755004883,
0.0077368346974253654,
-0.3450910747051239,
-0.4248652756214142,
0.01064387522637844,
0.11738318204879761,
0.21212171018123627,
0.36654752492904663,
0.012865214608609676,
0.13995836675167084,
0.43130823969841003,
-0.14080019295215607,
0.3083163797855377,
0.04598662257194519,
-0.09887882322072983,
-0.8573358058929443,
0.9007900357246399,
0.12052786350250244,
0.06417921185493469,
-0.021473614498972893,
0.45802924036979675,
-0.4332594573497772,
-0.15438126027584076,
-0.6484882831573486,
0.48887506127357483,
-0.3681734502315521,
-0.357455313205719,
-0.4598454236984253,
-0.11255431920289993,
-0.6459456086158752,
-0.20007967948913574,
-0.23833048343658447,
-0.5394045114517212,
-0.35484224557876587,
-0.16314822435379028,
1.0760250091552734,
0.5115292072296143,
-0.6869571208953857,
0.12201286107301712,
-0.5277305841445923,
0.2742503881454468,
-0.02185758575797081,
0.624636173248291,
-0.10628733783960342,
-0.28486546874046326,
-0.23091641068458557,
0.05743861570954323,
-0.20601513981819153,
-0.6888728141784668,
0.232212632894516,
0.0583549328148365,
0.32997363805770874,
0.15588831901550293,
0.061943188309669495,
0.7554283142089844,
-0.07233883440494537,
0.6964507699012756,
0.35516831278800964,
-0.8170074224472046,
0.743314266204834,
-0.4910849630832672,
0.17685653269290924,
0.7555647492408752,
0.3743288516998291,
-0.6071838736534119,
-0.16934531927108765,
-0.988058865070343,
-0.8320010900497437,
0.7555047869682312,
0.4619360864162445,
0.02523709647357464,
0.19648019969463348,
0.5119513273239136,
-0.1710434854030609,
0.30235275626182556,
-0.6436230540275574,
-0.8976616859436035,
-0.39676839113235474,
-0.3657401204109192,
-0.10051143914461136,
-0.05574927106499672,
-0.31146106123924255,
-0.6917380094528198,
0.8155579566955566,
-0.10462885349988937,
0.28865647315979004,
0.45902109146118164,
0.42481526732444763,
-0.23272636532783508,
0.02953408658504486,
0.3157862424850464,
0.4089907705783844,
-0.2816120982170105,
-0.2806266248226166,
-0.18629278242588043,
-0.5976772904396057,
-0.11444808542728424,
0.52634596824646,
-0.32827430963516235,
-0.0591946542263031,
0.3287126421928406,
0.8548927307128906,
0.036470927298069,
-0.2861790657043457,
0.5508522987365723,
-0.06858651340007782,
-0.3930039405822754,
-0.41084104776382446,
-0.01378402579575777,
0.1570751667022705,
0.2139146625995636,
0.11378706246614456,
0.057458359748125076,
-0.11327383667230606,
-0.39573991298675537,
0.4303525686264038,
0.3046606183052063,
-0.41760435700416565,
-0.5070627927780151,
0.6220626831054688,
0.08782218396663666,
-0.161356121301651,
0.3877469599246979,
-0.20248401165008545,
-0.624082088470459,
0.7525599598884583,
0.14376673102378845,
0.7853501439094543,
-0.13554008305072784,
0.31464332342147827,
0.6847593188285828,
0.2010887712240219,
0.04699831083416939,
0.5759809017181396,
-0.21522977948188782,
-0.5663217306137085,
-0.08775708079338074,
-0.6174843907356262,
-0.08504929393529892,
0.09288807958364487,
-0.7910365462303162,
0.32894787192344666,
-0.48728764057159424,
-0.1942891627550125,
0.05277854949235916,
0.3976254463195801,
-0.7336764931678772,
0.2132546752691269,
-0.08356621861457825,
0.9999567270278931,
-1.0088708400726318,
0.4925721287727356,
0.7301598787307739,
-0.5991353988647461,
-1.2258981466293335,
-0.17929907143115997,
0.258360356092453,
-0.610801100730896,
0.2897452414035797,
0.17145201563835144,
0.5489655137062073,
-0.03869111090898514,
-0.8583231568336487,
-0.7227976322174072,
1.16403067111969,
-0.04469016566872597,
-0.23789790272712708,
0.4184371531009674,
0.13956166803836823,
0.5559138059616089,
-0.37546950578689575,
0.3183372914791107,
0.6164838671684265,
0.7222294211387634,
0.3179130256175995,
-0.800970196723938,
0.2655543088912964,
-0.5958207845687866,
-0.21641916036605835,
0.13967373967170715,
-0.9627094268798828,
0.6416862607002258,
-0.1133735254406929,
0.009415100328624249,
0.04207912087440491,
0.5992650389671326,
0.4937780499458313,
0.4506640136241913,
0.48804131150245667,
0.8318647146224976,
0.7764540314674377,
-0.2949907183647156,
1.2322943210601807,
-0.26795661449432373,
0.6313120722770691,
0.7413097023963928,
0.028836362063884735,
0.5137255191802979,
0.30286991596221924,
-0.40954145789146423,
0.5444427728652954,
0.6047400236129761,
-0.3631943166255951,
0.24911095201969147,
0.3784084618091583,
-0.08591601252555847,
-0.012506031431257725,
-0.3017657995223999,
-0.6517090201377869,
0.3140849471092224,
0.2375657707452774,
-0.36226686835289,
0.04256586730480194,
-0.06603797525167465,
0.3854411542415619,
-0.06528826802968979,
-0.28743648529052734,
0.6729770302772522,
0.013159617781639099,
-0.3645544946193695,
0.5754081606864929,
-0.23133014142513275,
0.682576060295105,
-0.5771040916442871,
0.16313017904758453,
-0.06571825593709946,
0.11188258230686188,
-0.5832167863845825,
-1.0768346786499023,
0.3406648635864258,
-0.0617043636739254,
-0.23468664288520813,
-0.3279518783092499,
0.6969566941261292,
-0.4763815402984619,
-0.8393124938011169,
0.16106651723384857,
0.21450644731521606,
0.3623419404029846,
0.2043853998184204,
-1.3485068082809448,
0.6001937389373779,
0.18698330223560333,
-0.4566592574119568,
0.12282620370388031,
0.5089737772941589,
0.22095228731632233,
0.512168288230896,
0.8084300756454468,
0.31197142601013184,
-0.24791154265403748,
0.08187573403120041,
1.096278190612793,
-0.5761997103691101,
-0.4475187659263611,
-0.7627286911010742,
0.8914051651954651,
-0.45927226543426514,
-0.46629127860069275,
0.7551995515823364,
0.7835835218429565,
0.8777523040771484,
0.04653163626790047,
0.7744320631027222,
-0.6440184116363525,
0.7343393564224243,
-0.21552810072898865,
0.920843243598938,
-0.7516059279441833,
-0.0003450312651693821,
-0.7486006617546082,
-0.5040890574455261,
-0.4311528205871582,
0.6420409083366394,
-0.1808214634656906,
0.21673762798309326,
0.24312862753868103,
0.9188753962516785,
0.01497868075966835,
0.11455468088388443,
-0.2794516980648041,
0.31084391474723816,
0.33977100253105164,
0.5927278399467468,
0.413292795419693,
-0.8991717100143433,
0.372088760137558,
-0.7910366654396057,
-0.3297068178653717,
-0.014622424729168415,
-0.8474144339561462,
-0.866188108921051,
-0.9512147307395935,
-0.6977987289428711,
-0.769578218460083,
-0.23832784593105316,
1.0361669063568115,
0.7959081530570984,
-0.7066699862480164,
-0.28204894065856934,
0.07416242361068726,
0.3139476180076599,
-0.08212719857692719,
-0.32175347208976746,
0.6967750191688538,
0.43394312262535095,
-0.5816736221313477,
-0.08330971747636795,
0.09044317156076431,
0.2474725991487503,
0.02779446169734001,
-0.11845878511667252,
-0.16506974399089813,
-0.2874964475631714,
0.35685455799102783,
0.5271296501159668,
-0.4046235978603363,
-0.15390866994857788,
-0.2826991379261017,
0.0815819576382637,
0.1672990471124649,
0.4415774643421173,
-0.6121773719787598,
0.1637910008430481,
0.5405950546264648,
0.293440043926239,
0.42001965641975403,
0.2469291090965271,
-0.02359960414469242,
-0.5587052702903748,
0.059926580637693405,
0.01904444955289364,
0.23636576533317566,
0.419179230928421,
-0.4487640857696533,
0.7430287599563599,
0.5504291653633118,
-0.5717469453811646,
-0.8532097339630127,
-0.0938027948141098,
-1.3571966886520386,
0.08891870081424713,
1.0322723388671875,
0.05607767775654793,
-0.5702791213989258,
0.06772654503583908,
-0.17793753743171692,
0.10394245386123657,
-0.6205059885978699,
0.47656866908073425,
0.47200942039489746,
-0.13628873229026794,
0.1086902990937233,
-0.3153822720050812,
0.65656578540802,
0.029734408482909203,
-0.9859791398048401,
0.10880948603153229,
0.40855711698532104,
0.4180520474910736,
0.3411317467689514,
0.7357807755470276,
-0.22674643993377686,
0.08638652414083481,
-0.1178760677576065,
0.1797505021095276,
-0.24424581229686737,
0.07031148672103882,
-0.2948451638221741,
-0.09917306154966354,
-0.47868943214416504,
-0.2096259593963623
]
|
huggingartists/hyuna | huggingartists | 2022-10-25T09:31:34Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/hyuna"
## 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.25468 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('https://images.genius.com/e802afac5a0100ca75e520f954182f73.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/hyuna">
<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">HyunA (현아)</div>
<a href="https://genius.com/artists/hyuna">
<div style="text-align: center; font-size: 14px;">@hyuna</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/hyuna).
### 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/hyuna")
```
## 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|
|------:|---------:|---:|
|106| -| -|
'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/hyuna")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6111553311347961,
-0.5203465819358826,
0.11972901970148087,
0.3166813254356384,
-0.2721068561077118,
-0.01848296821117401,
-0.2900541126728058,
-0.43889671564102173,
0.8507109880447388,
0.33195123076438904,
-0.8951815366744995,
-0.8686342835426331,
-0.5620535016059875,
0.12828262150287628,
-0.05417971312999725,
1.235091209411621,
-0.2039797157049179,
-0.3557371497154236,
-0.3111916184425354,
-0.2478693574666977,
-0.36778801679611206,
-0.28011417388916016,
-0.3297928273677826,
-0.36222270131111145,
0.351459801197052,
0.5436165928840637,
0.7356085181236267,
0.908149003982544,
0.4721027910709381,
0.3523220121860504,
-0.10253328830003738,
-0.03521505370736122,
-0.37781763076782227,
-0.09903793781995773,
0.17570610344409943,
-0.31510624289512634,
-0.6960009932518005,
0.2336466908454895,
0.5470296740531921,
0.39034098386764526,
-0.07495363801717758,
0.5012146830558777,
0.04687180370092392,
0.8596829175949097,
-0.2799917161464691,
0.5147398114204407,
-0.22438275814056396,
-0.14797453582286835,
-0.3008265793323517,
0.0978347510099411,
0.2062595784664154,
-0.6323474049568176,
-0.00023817432520445436,
-0.7593871355056763,
-0.005533022340387106,
0.008915715850889683,
1.0614569187164307,
0.06401851773262024,
0.07020410150289536,
-0.17702633142471313,
-0.1616060435771942,
0.5577848553657532,
-0.5914333462715149,
-0.00891114305704832,
0.5825811624526978,
0.15009738504886627,
0.033753540366888046,
-0.613544225692749,
-0.6233729720115662,
0.07297860831022263,
-0.1495736986398697,
0.3071100413799286,
-0.14548373222351074,
-0.3032887876033783,
0.5243107080459595,
0.549079418182373,
-0.5104125142097473,
-0.24129080772399902,
-0.5050475597381592,
-0.08253572136163712,
1.1926333904266357,
0.17008250951766968,
0.4705910086631775,
-0.5259228944778442,
-0.19592438638210297,
-0.4083797335624695,
-0.2588837742805481,
0.34201139211654663,
0.5761598348617554,
0.40158578753471375,
-1.0383998155593872,
0.6547941565513611,
-0.2068817913532257,
0.524036705493927,
0.1648256778717041,
-0.06524575501680374,
0.7818018794059753,
-0.39984065294265747,
-0.15331193804740906,
-0.11009380221366882,
1.0532869100570679,
0.668327271938324,
0.18519900739192963,
0.1200026422739029,
-0.0409729965031147,
0.05152459442615509,
-0.15958921611309052,
-0.8209604620933533,
-0.4156164824962616,
0.6555863618850708,
-0.6690585017204285,
-0.613269567489624,
0.1639738231897354,
-1.0111998319625854,
-0.2379133254289627,
-0.3262985944747925,
0.2666414976119995,
-0.32781460881233215,
-0.5713425874710083,
0.20912526547908783,
-0.24736271798610687,
0.14953802525997162,
0.04538111388683319,
-0.5539623498916626,
0.1878403276205063,
0.5622902512550354,
0.7445411682128906,
0.2096511870622635,
-0.2868499457836151,
-0.21077220141887665,
-0.22223882377147675,
-0.13202594220638275,
0.6310072541236877,
-0.27550584077835083,
-0.3615622818470001,
-0.1794261336326599,
0.3350938856601715,
-0.11349564790725708,
-0.29467278718948364,
0.9230853915214539,
0.03993312641978264,
0.1544661670923233,
-0.5526937246322632,
-0.4370631277561188,
-0.021789109334349632,
0.2550750970840454,
-0.7717718482017517,
1.0733802318572998,
0.325361967086792,
-1.0162711143493652,
0.16573470830917358,
-0.7795907258987427,
-0.2848648726940155,
0.02293298952281475,
0.10552271455526352,
-0.8155317902565002,
-0.174251988530159,
0.1933821439743042,
0.7594463229179382,
-0.3055891692638397,
0.047240324318408966,
-0.6038582921028137,
-0.10870013386011124,
0.38113632798194885,
0.28113850951194763,
1.159739375114441,
0.1432667076587677,
-0.11646011471748352,
0.08991483598947525,
-0.9694840908050537,
0.1753440946340561,
0.49550187587738037,
-0.16940703988075256,
-0.14019489288330078,
-0.2653297483921051,
0.4042007625102997,
0.31624820828437805,
0.07548734545707703,
-0.6021440625190735,
0.4032154381275177,
-0.19596366584300995,
0.38602739572525024,
0.7067680358886719,
0.020062418654561043,
0.33364731073379517,
-0.6646074056625366,
0.4493049383163452,
0.0761205181479454,
0.364483505487442,
-0.03523434326052666,
-0.5860980153083801,
-0.49157044291496277,
-0.2374134212732315,
0.3259274363517761,
0.4553269147872925,
-0.6976970434188843,
0.9949711561203003,
-0.3334644138813019,
-0.8855822086334229,
-0.669533908367157,
0.10518009215593338,
0.22873568534851074,
0.5125786066055298,
0.3570229411125183,
-0.41723114252090454,
-0.6460169553756714,
-0.6505398750305176,
0.06343406438827515,
-0.2586834132671356,
0.17605426907539368,
0.43759414553642273,
0.8251500129699707,
-0.23031938076019287,
0.8006523847579956,
-0.6934826970100403,
-0.27533918619155884,
-0.305841863155365,
-0.3223153352737427,
0.4050891697406769,
0.7944468259811401,
0.6745623350143433,
-0.8527911305427551,
-0.5504493117332458,
-0.23106811940670013,
-0.7271766066551208,
-0.12246792018413544,
-0.05056017264723778,
-0.2710148096084595,
0.011943225748836994,
0.15203139185905457,
-0.6926266551017761,
0.5680277943611145,
0.527227520942688,
-0.7271557450294495,
0.6044878363609314,
0.1136678084731102,
0.03252367675304413,
-1.2961481809616089,
0.3745952844619751,
0.24963320791721344,
0.0263826884329319,
-0.6431660056114197,
-0.18634600937366486,
-0.03424568474292755,
-0.023725230246782303,
-0.10060187429189682,
0.6351125240325928,
-0.3274296820163727,
0.3124808371067047,
0.09648053348064423,
0.04187510907649994,
0.09502734988927841,
0.45303335785865784,
-0.04285681992769241,
0.24877843260765076,
1.0123894214630127,
-0.3992587625980377,
0.6595422029495239,
0.629664957523346,
-0.23885925114154816,
0.8583981394767761,
-0.8269126415252686,
0.03947404399514198,
-0.27083903551101685,
0.3953079581260681,
-0.8234539031982422,
-0.5599096417427063,
0.8290049433708191,
-0.6998052597045898,
0.41008803248405457,
-0.27512964606285095,
-0.5226318836212158,
-0.7955750823020935,
-0.6770296692848206,
0.16404218971729279,
0.5414944291114807,
-0.39618417620658875,
0.4118407368659973,
0.6114867329597473,
0.06536637246608734,
-0.3617967665195465,
-0.7295700311660767,
-0.14300347864627838,
-0.41104602813720703,
-0.8434894680976868,
0.4302220344543457,
-0.2996635138988495,
-0.09572890400886536,
0.16485629975795746,
0.08567268401384354,
0.09681233018636703,
0.01492139883339405,
0.40272456407546997,
0.341929167509079,
0.05375222489237785,
-0.021580105647444725,
-0.09938225150108337,
-0.24329286813735962,
0.1140148714184761,
-0.20310078561306,
0.27672839164733887,
-0.27898117899894714,
-0.12375181913375854,
-0.6945618391036987,
0.19600848853588104,
0.4408123195171356,
-0.21742069721221924,
0.705160915851593,
0.8066231608390808,
-0.25737059116363525,
0.014489886350929737,
-0.5063204765319824,
-0.1045311987400055,
-0.4144384562969208,
0.07496814429759979,
-0.26704588532447815,
-0.5880919098854065,
0.941535234451294,
0.2119714915752411,
0.03526619076728821,
0.667155385017395,
0.46395549178123474,
-0.05314468964934349,
0.7150154709815979,
0.3676851689815521,
-0.3003411591053009,
0.49572572112083435,
-0.6708275675773621,
-0.2132098376750946,
-0.8981279730796814,
-0.4875616133213043,
-0.5250876545906067,
-0.5003231763839722,
-0.8522331714630127,
-0.45114684104919434,
0.19133985042572021,
0.13227294385433197,
-0.2134440392255783,
0.4653610289096832,
-0.8890665769577026,
0.2967071235179901,
0.3337531089782715,
0.2873278260231018,
-0.11643287539482117,
0.025416972115635872,
0.090842105448246,
0.11229846626520157,
-0.5926074981689453,
-0.22669920325279236,
1.1495558023452759,
0.5292906165122986,
0.5955599546432495,
-0.12532450258731842,
0.8387972116470337,
-0.0031139322090893984,
0.17946085333824158,
-0.5318494439125061,
0.49498623609542847,
0.05088377743959427,
-0.43649226427078247,
-0.1492166668176651,
-0.4965280294418335,
-0.9154269695281982,
-0.13091176748275757,
-0.418752521276474,
-0.6928595900535583,
0.4855461120605469,
0.06785599142313004,
-0.20773863792419434,
0.37187060713768005,
-0.6050790548324585,
0.8559960126876831,
-0.03920141980051994,
-0.42987552285194397,
0.29383137822151184,
-1.0224024057388306,
0.23195980489253998,
0.19294793903827667,
0.23578336834907532,
-0.41523611545562744,
0.04998350515961647,
1.0158774852752686,
-0.777157723903656,
0.9048680663108826,
-0.38892385363578796,
0.14219887554645538,
0.5813554525375366,
-0.3060745298862457,
0.47430095076560974,
0.1432042121887207,
-0.22977328300476074,
0.3363519310951233,
0.020431770011782646,
-0.42833778262138367,
-0.43796029686927795,
0.6936606764793396,
-0.7372291088104248,
0.041013333946466446,
-0.34794867038726807,
-0.46338871121406555,
0.04373030364513397,
0.18445734679698944,
0.26803499460220337,
0.3277021646499634,
0.02637283131480217,
0.140649676322937,
0.4650202691555023,
-0.19195593893527985,
0.23591957986354828,
0.012818200513720512,
-0.12333695590496063,
-0.7741620540618896,
0.9149861335754395,
0.14874733984470367,
0.05177845433354378,
-0.08381783217191696,
0.4289054274559021,
-0.40486499667167664,
-0.12988561391830444,
-0.583745539188385,
0.4954299330711365,
-0.4070338010787964,
-0.3974936306476593,
-0.5254145264625549,
-0.2045673131942749,
-0.6379077434539795,
-0.15216024219989777,
-0.2831365168094635,
-0.5204335451126099,
-0.3170117437839508,
-0.21170441806316376,
0.9787194728851318,
0.4831903576850891,
-0.6309546232223511,
0.12003801017999649,
-0.553117573261261,
0.3154100477695465,
-0.07925822585821152,
0.6592121124267578,
-0.050259221345186234,
-0.3222798705101013,
-0.2195712924003601,
0.08298967033624649,
-0.1879161298274994,
-0.7056227326393127,
0.2799821197986603,
-0.05050288885831833,
0.37675607204437256,
0.11267348378896713,
0.10697437822818756,
0.6873173117637634,
-0.014269104227423668,
0.6453374028205872,
0.28887486457824707,
-0.8054794073104858,
0.6757442951202393,
-0.5243127942085266,
0.20175699889659882,
0.7031590342521667,
0.36404719948768616,
-0.6706114411354065,
-0.13596521317958832,
-0.957166314125061,
-0.8494146466255188,
0.8250772953033447,
0.4311026632785797,
0.08351977914571762,
0.24721811711788177,
0.5729449987411499,
-0.20691081881523132,
0.24590326845645905,
-0.6677784323692322,
-0.8838298320770264,
-0.4189433455467224,
-0.3776605427265167,
0.017292778939008713,
-0.11988785862922668,
-0.178183913230896,
-0.6757837533950806,
0.7993727326393127,
-0.1221843734383583,
0.31345391273498535,
0.4099043905735016,
0.42778101563453674,
-0.23159849643707275,
-0.02239755354821682,
0.24258100986480713,
0.33352914452552795,
-0.21826989948749542,
-0.33132901787757874,
-0.15444141626358032,
-0.6450791954994202,
-0.07644754648208618,
0.47151973843574524,
-0.3816351890563965,
-0.09187473356723785,
0.2747364640235901,
0.8972815871238708,
0.013257734477519989,
-0.22923333942890167,
0.5720469951629639,
-0.1049795150756836,
-0.4157218933105469,
-0.36432841420173645,
0.007271732669323683,
0.18183889985084534,
0.22561058402061462,
0.023328863084316254,
0.07222452014684677,
-0.13099421560764313,
-0.3596752882003784,
0.3884607255458832,
0.2075626105070114,
-0.373868852853775,
-0.521672785282135,
0.6314489841461182,
0.06866369396448135,
-0.07632101327180862,
0.4858647286891937,
-0.16950766742229462,
-0.6192681789398193,
0.8167566657066345,
0.15895460546016693,
0.8416622877120972,
-0.19473384320735931,
0.37248820066452026,
0.8018670678138733,
0.16561298072338104,
-0.1151924729347229,
0.5602328181266785,
-0.14718815684318542,
-0.6453199982643127,
-0.05776047706604004,
-0.5881426930427551,
-0.06486599892377853,
0.12307096272706985,
-0.8479612469673157,
0.4577721059322357,
-0.454289048910141,
-0.225962296128273,
0.0035427971743047237,
0.40808430314064026,
-0.7226109504699707,
0.18257556855678558,
-0.041161082684993744,
1.0424472093582153,
-1.054007887840271,
0.4826222062110901,
0.7021678686141968,
-0.6348847150802612,
-1.2216012477874756,
-0.13774624466896057,
0.20425496995449066,
-0.5681177973747253,
0.20012620091438293,
0.18390901386737823,
0.527978777885437,
-0.056398823857307434,
-0.8986732363700867,
-0.7049552202224731,
1.195284128189087,
-0.011463156901299953,
-0.18425385653972626,
0.3573271930217743,
0.12873762845993042,
0.6235262751579285,
-0.3679061532020569,
0.26340070366859436,
0.6519796848297119,
0.7107681632041931,
0.2886562645435333,
-0.7296683192253113,
0.32080182433128357,
-0.6348846554756165,
-0.18829026818275452,
0.040737807750701904,
-1.0043129920959473,
0.6287146210670471,
-0.19342529773712158,
-0.07558842748403549,
0.05385871231555939,
0.634259819984436,
0.46730974316596985,
0.43823084235191345,
0.44099974632263184,
0.7637915015220642,
0.7926732301712036,
-0.307595819234848,
1.2059372663497925,
-0.22446493804454803,
0.6029089093208313,
0.7988215684890747,
0.011924246326088905,
0.45559319853782654,
0.208736851811409,
-0.33034956455230713,
0.5204983949661255,
0.6298851370811462,
-0.4460945129394531,
0.2496851235628128,
0.38452857732772827,
-0.03149062395095825,
-0.07166819274425507,
-0.2929786741733551,
-0.5668009519577026,
0.3294171988964081,
0.215547576546669,
-0.300333172082901,
0.02479458600282669,
-0.019897237420082092,
0.42231249809265137,
-0.025270041078329086,
-0.2888985276222229,
0.6592753529548645,
0.0665941834449768,
-0.3996737003326416,
0.4993380010128021,
-0.1535087376832962,
0.6797740459442139,
-0.5878837704658508,
0.14058475196361542,
-0.09142512828111649,
0.10996507853269577,
-0.6281580328941345,
-1.099741816520691,
0.37757590413093567,
-0.06885957717895508,
-0.22419822216033936,
-0.3244567811489105,
0.8215745091438293,
-0.48695245385169983,
-0.7787414193153381,
0.21113193035125732,
0.22820007801055908,
0.2775565981864929,
0.12517094612121582,
-1.288257122039795,
0.5726144313812256,
0.17370282113552094,
-0.4819720983505249,
0.14327071607112885,
0.4701213538646698,
0.1337449550628662,
0.5533332824707031,
0.7072872519493103,
0.2541877329349518,
-0.2290046364068985,
0.0936686173081398,
1.092060923576355,
-0.542626142501831,
-0.4690217673778534,
-0.7506619691848755,
0.8979983329772949,
-0.37102648615837097,
-0.39189985394477844,
0.7397449016571045,
0.7495405077934265,
0.8897268176078796,
-0.02709890529513359,
0.8306164145469666,
-0.657987117767334,
0.6709488034248352,
-0.2424122542142868,
0.9598767757415771,
-0.6810904145240784,
-0.0735345333814621,
-0.7498863339424133,
-0.5208312273025513,
-0.4259013235569,
0.6387338042259216,
-0.14581213891506195,
0.20530377328395844,
0.2735573649406433,
0.8982661962509155,
0.020335426554083824,
0.13067364692687988,
-0.21712246537208557,
0.3028627634048462,
0.2787533104419708,
0.5503974556922913,
0.4512242078781128,
-0.9173426628112793,
0.33608800172805786,
-0.8000737428665161,
-0.27795490622520447,
0.04839048907160759,
-0.8318338394165039,
-0.9121677875518799,
-0.9556571841239929,
-0.69688880443573,
-0.7905543446540833,
-0.3320850133895874,
1.0734572410583496,
0.6915123462677002,
-0.7080755829811096,
-0.25467532873153687,
0.09379515051841736,
0.30331557989120483,
-0.09013871103525162,
-0.3194371461868286,
0.6842662692070007,
0.35281798243522644,
-0.6353887915611267,
-0.14846426248550415,
-0.007470955140888691,
0.262380987405777,
0.08909529447555542,
-0.13132710754871368,
-0.1107892319560051,
-0.2835315763950348,
0.31688401103019714,
0.46803581714630127,
-0.2915600538253784,
-0.0993434488773346,
-0.19971349835395813,
0.024860955774784088,
0.1638016402721405,
0.47127315402030945,
-0.5233169198036194,
0.2176244705915451,
0.6785787343978882,
0.2786436378955841,
0.43132445216178894,
0.23012299835681915,
0.02420356683433056,
-0.496439129114151,
0.07929288595914841,
-0.015993744134902954,
0.3091050386428833,
0.37549126148223877,
-0.46113067865371704,
0.7996621131896973,
0.5564058423042297,
-0.5312848091125488,
-0.8167392611503601,
-0.13603422045707703,
-1.3136335611343384,
0.1151236742734909,
1.069714903831482,
-0.03294117748737335,
-0.5845514535903931,
0.01317090168595314,
-0.265942245721817,
0.1574404239654541,
-0.5327245593070984,
0.499956339597702,
0.531638503074646,
-0.07966312766075134,
0.1429804563522339,
-0.3498573899269104,
0.6561694145202637,
-0.035053666681051254,
-1.0060663223266602,
0.18323777616024017,
0.40411272644996643,
0.467624694108963,
0.2787112295627594,
0.8165829181671143,
-0.29804566502571106,
0.0980183482170105,
-0.0669005811214447,
0.2761109471321106,
-0.28528183698654175,
0.0186696145683527,
-0.39029234647750854,
-0.18473587930202484,
-0.520308792591095,
-0.23266391456127167
]
|
huggingartists/i-dont-know-how-but-they-found-me | huggingartists | 2022-10-25T09:31:41Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/i-dont-know-how-but-they-found-me"
## 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.064932 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('https://images.genius.com/4683327bb3a8906b18e9af8207c36dc9.645x645x1.png')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/i-dont-know-how-but-they-found-me">
<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">I DONT KNOW HOW BUT THEY FOUND ME</div>
<a href="https://genius.com/artists/i-dont-know-how-but-they-found-me">
<div style="text-align: center; font-size: 14px;">@i-dont-know-how-but-they-found-me</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/i-dont-know-how-but-they-found-me).
### 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/i-dont-know-how-but-they-found-me")
```
## 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|
|------:|---------:|---:|
|37| -| -|
'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/i-dont-know-how-but-they-found-me")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6516481637954712,
-0.5331404209136963,
0.13484950363636017,
0.24042995274066925,
-0.20567810535430908,
0.009837793186306953,
-0.28458866477012634,
-0.4010796844959259,
0.8522977232933044,
0.30119648575782776,
-0.9116940498352051,
-0.854325532913208,
-0.5683754086494446,
0.1320439577102661,
-0.09483584761619568,
1.232378602027893,
-0.1868518590927124,
-0.3678699731826782,
-0.2952590882778168,
-0.22065092623233795,
-0.28633010387420654,
-0.3099595308303833,
-0.2879798114299774,
-0.32040566205978394,
0.3274087905883789,
0.517385721206665,
0.6859503388404846,
0.908932626247406,
0.5072614550590515,
0.3405283987522125,
-0.15144820511341095,
0.0322476401925087,
-0.36562642455101013,
-0.12265752255916595,
0.1251140683889389,
-0.28392696380615234,
-0.6535404920578003,
0.2552925646305084,
0.5217544436454773,
0.44439882040023804,
-0.07583390921354294,
0.4750678837299347,
0.04489172250032425,
0.7999451160430908,
-0.2865343689918518,
0.4929393529891968,
-0.24229241907596588,
-0.16209003329277039,
-0.3300638794898987,
0.005108133424073458,
0.18986386060714722,
-0.5661293268203735,
0.00875455979257822,
-0.7488611340522766,
0.1014394760131836,
0.023843824863433838,
0.9643353819847107,
0.06619841605424881,
0.0890999436378479,
-0.23801174759864807,
-0.14897862076759338,
0.5561107993125916,
-0.6140264868736267,
-0.051481422036886215,
0.5944521427154541,
0.13443584740161896,
-0.0660000815987587,
-0.6027398705482483,
-0.6141662001609802,
0.08603023737668991,
-0.20805960893630981,
0.2659779191017151,
-0.12008558958768845,
-0.32663142681121826,
0.5358350276947021,
0.5381243824958801,
-0.5256385803222656,
-0.2660081088542938,
-0.5175378918647766,
-0.13569079339504242,
1.161813735961914,
0.13380354642868042,
0.39944446086883545,
-0.5240523219108582,
-0.20441965758800507,
-0.3867536187171936,
-0.23721499741077423,
0.33105605840682983,
0.5589011311531067,
0.4683504104614258,
-0.9917369484901428,
0.6518006920814514,
-0.18846935033798218,
0.5474187731742859,
0.13018664717674255,
-0.05964238941669464,
0.768728494644165,
-0.4205971360206604,
-0.06819336116313934,
-0.12585744261741638,
1.0533454418182373,
0.646591305732727,
0.20332688093185425,
0.08237703144550323,
-0.05825737491250038,
0.03420809656381607,
-0.16572245955467224,
-0.7899975776672363,
-0.43049538135528564,
0.6136404871940613,
-0.6299293041229248,
-0.5883579850196838,
0.0934869721531868,
-0.9698384404182434,
-0.23198705911636353,
-0.28484612703323364,
0.282888799905777,
-0.40900948643684387,
-0.5499293208122253,
0.15727762877941132,
-0.33605632185935974,
0.137249156832695,
0.05629974603652954,
-0.5937692523002625,
0.2056489735841751,
0.5895299315452576,
0.7886993288993835,
0.22952885925769806,
-0.27642491459846497,
-0.28818920254707336,
-0.21990108489990234,
-0.12360864877700806,
0.6838008165359497,
-0.3331332504749298,
-0.3517041802406311,
-0.17210714519023895,
0.3252435624599457,
-0.10167904198169708,
-0.30164727568626404,
0.8900963068008423,
0.055907584726810455,
0.18854059278964996,
-0.6097332239151001,
-0.45829451084136963,
-0.01936219073832035,
0.27995365858078003,
-0.7372169494628906,
1.0625128746032715,
0.28778573870658875,
-1.0200278759002686,
0.1369316130876541,
-0.8047542572021484,
-0.31197428703308105,
0.047859203070402145,
0.06671170890331268,
-0.7614092826843262,
-0.19265183806419373,
0.183650404214859,
0.7333241105079651,
-0.3044129014015198,
0.00006392748036887497,
-0.6348289251327515,
-0.1584094762802124,
0.36625760793685913,
0.2843417525291443,
1.1753320693969727,
0.060483984649181366,
-0.17992500960826874,
0.034448038786649704,
-0.917259156703949,
0.13546577095985413,
0.4652932286262512,
-0.1841413527727127,
-0.16163311898708344,
-0.1992063969373703,
0.3911297619342804,
0.28410571813583374,
0.07837063819169998,
-0.5737479329109192,
0.41779348254203796,
-0.2014182060956955,
0.46626731753349304,
0.7385621666908264,
0.008908065967261791,
0.32937055826187134,
-0.6466700434684753,
0.392996609210968,
0.07669338583946228,
0.32816049456596375,
-0.009678144939243793,
-0.5676313042640686,
-0.4696958661079407,
-0.2046598345041275,
0.2832125127315521,
0.4760953187942505,
-0.7048874497413635,
0.967886745929718,
-0.27326273918151855,
-0.836257815361023,
-0.6724915504455566,
0.14351233839988708,
0.22208204865455627,
0.564440906047821,
0.4179612994194031,
-0.40150320529937744,
-0.5850456953048706,
-0.65780109167099,
0.03147301822900772,
-0.2288387268781662,
0.16884469985961914,
0.42807134985923767,
0.8373806476593018,
-0.26255154609680176,
0.8475203514099121,
-0.6717827320098877,
-0.2959493398666382,
-0.25000467896461487,
-0.2940687835216522,
0.3767547905445099,
0.7789899706840515,
0.6752481460571289,
-0.8650748133659363,
-0.4492338299751282,
-0.2555994987487793,
-0.754869282245636,
-0.0743393674492836,
-0.005251598544418812,
-0.252913236618042,
-0.0160935427993536,
0.1676277369260788,
-0.7028536200523376,
0.5633267760276794,
0.4648497700691223,
-0.6839050054550171,
0.5743752121925354,
0.08274413645267487,
-0.027346603572368622,
-1.2845357656478882,
0.38243937492370605,
0.29153478145599365,
0.03796420246362686,
-0.5933032035827637,
-0.2011416107416153,
-0.052037425339221954,
0.004842518828809261,
-0.07564131915569305,
0.6236240267753601,
-0.3746705651283264,
0.2849733233451843,
0.13609018921852112,
0.12185143679380417,
0.06636667251586914,
0.47770845890045166,
-0.09984298050403595,
0.28857553005218506,
1.0051912069320679,
-0.40970510244369507,
0.6168657541275024,
0.6244107484817505,
-0.22302137315273285,
0.858786404132843,
-0.7635971903800964,
0.04657961055636406,
-0.3006318509578705,
0.3660065531730652,
-0.8448002934455872,
-0.5444388389587402,
0.809822678565979,
-0.6973253488540649,
0.403874009847641,
-0.29010477662086487,
-0.5401700139045715,
-0.8195180296897888,
-0.6576135158538818,
0.1578100323677063,
0.507220447063446,
-0.3912142515182495,
0.41759824752807617,
0.5943193435668945,
0.08136365562677383,
-0.4063730537891388,
-0.7502728700637817,
-0.11582458764314651,
-0.38883066177368164,
-0.8191671967506409,
0.4106141924858093,
-0.37451767921447754,
-0.13515523076057434,
0.14363041520118713,
0.09012782573699951,
0.08541344106197357,
0.07336557656526566,
0.3806946277618408,
0.25724488496780396,
0.07569464296102524,
0.03594426438212395,
-0.07983767241239548,
-0.26072388887405396,
0.13450288772583008,
-0.20882438123226166,
0.27121707797050476,
-0.30726516246795654,
-0.1362084150314331,
-0.6104304790496826,
0.22216638922691345,
0.41654443740844727,
-0.2558128535747528,
0.6586541533470154,
0.7909702658653259,
-0.2614801824092865,
-0.04138403758406639,
-0.5235550403594971,
-0.1630440652370453,
-0.4190542697906494,
0.04537481442093849,
-0.22630734741687775,
-0.6115432381629944,
0.9483627676963806,
0.1674966663122177,
0.056617025285959244,
0.6554274559020996,
0.46206265687942505,
-0.107132688164711,
0.6590748429298401,
0.3757721483707428,
-0.24059158563613892,
0.46070095896720886,
-0.6814569234848022,
-0.1729881912469864,
-0.8620548248291016,
-0.4744015634059906,
-0.4765608608722687,
-0.5238690376281738,
-0.9057062864303589,
-0.44290950894355774,
0.2225651890039444,
0.14138807356357574,
-0.1589435636997223,
0.4637550115585327,
-0.9305564165115356,
0.25874093174934387,
0.40529412031173706,
0.3060130774974823,
-0.1067238599061966,
0.02447989583015442,
0.0593283511698246,
0.13078667223453522,
-0.6095717549324036,
-0.24009057879447937,
1.1484121084213257,
0.47148919105529785,
0.5834901928901672,
-0.08809449523687363,
0.8842973113059998,
0.06605568528175354,
0.18609166145324707,
-0.5643556714057922,
0.496429979801178,
0.03177063167095184,
-0.4741969406604767,
-0.1605958193540573,
-0.501568615436554,
-0.8976302146911621,
-0.16326817870140076,
-0.3988151550292969,
-0.6680572628974915,
0.48112887144088745,
0.09404684603214264,
-0.2038399577140808,
0.37857332825660706,
-0.6328370571136475,
0.8533578515052795,
-0.058445945382118225,
-0.42622262239456177,
0.29515865445137024,
-1.029039978981018,
0.18607962131500244,
0.17296841740608215,
0.30443423986434937,
-0.40659859776496887,
0.0463402159512043,
1.019296646118164,
-0.8232020139694214,
0.9164333939552307,
-0.37021371722221375,
0.16720420122146606,
0.6068758368492126,
-0.2858516275882721,
0.45247817039489746,
0.09081491082906723,
-0.2700440287590027,
0.3356539309024811,
0.03218642249703407,
-0.44034937024116516,
-0.42717695236206055,
0.6689578294754028,
-0.6815703511238098,
0.020784609019756317,
-0.33065149188041687,
-0.4418654441833496,
0.10397748649120331,
0.23449209332466125,
0.2940976023674011,
0.36040791869163513,
0.017242813482880592,
0.11366146057844162,
0.489274263381958,
-0.1453208476305008,
0.3355414569377899,
0.04566977918148041,
-0.0351727195084095,
-0.723999559879303,
0.9042490720748901,
0.1960635930299759,
0.009251303970813751,
-0.023526782169938087,
0.4263717234134674,
-0.35825294256210327,
-0.10315287858247757,
-0.5722006559371948,
0.4988264739513397,
-0.4125954508781433,
-0.3990926146507263,
-0.5230738520622253,
-0.16051314771175385,
-0.6306661367416382,
-0.1347074955701828,
-0.26144346594810486,
-0.4848189353942871,
-0.3356623649597168,
-0.23103098571300507,
1.0521290302276611,
0.4663971960544586,
-0.6959252953529358,
0.11951997131109238,
-0.48117595911026,
0.2785543203353882,
-0.07885371148586273,
0.6584391593933105,
-0.07311753928661346,
-0.29371294379234314,
-0.2196175754070282,
0.11684445291757584,
-0.1755542755126953,
-0.7234106063842773,
0.28527724742889404,
-0.058587174862623215,
0.3783554136753082,
0.06720399856567383,
0.1663646697998047,
0.6566407680511475,
-0.04440351948142052,
0.5795055627822876,
0.21778647601604462,
-0.8058422207832336,
0.6888564229011536,
-0.5025202631950378,
0.12862996757030487,
0.6941748261451721,
0.37134867906570435,
-0.6024529337882996,
-0.10964690148830414,
-0.9605361223220825,
-0.8220688700675964,
0.8109846115112305,
0.4236017167568207,
0.04268974810838699,
0.15904565155506134,
0.5925769209861755,
-0.22396254539489746,
0.26240456104278564,
-0.6393454074859619,
-0.8931512236595154,
-0.3744676113128662,
-0.34782686829566956,
-0.011665001511573792,
-0.10495961457490921,
-0.25353214144706726,
-0.6473948955535889,
0.7458617687225342,
-0.16444361209869385,
0.34232935309410095,
0.42323219776153564,
0.4167443811893463,
-0.2128085196018219,
-0.02031036652624607,
0.22779235243797302,
0.3390628695487976,
-0.2521447539329529,
-0.2694898545742035,
-0.1769467443227768,
-0.5786672830581665,
-0.1069311872124672,
0.515320897102356,
-0.331551194190979,
-0.06922173500061035,
0.3268641531467438,
0.8441697359085083,
-0.0022895759902894497,
-0.2845863699913025,
0.6250325441360474,
-0.06624036282300949,
-0.4040873646736145,
-0.4199877083301544,
0.02211964689195156,
0.17051734030246735,
0.2561851441860199,
0.08447679132223129,
0.08556769788265228,
-0.0972926914691925,
-0.3906007409095764,
0.42122864723205566,
0.29992029070854187,
-0.3401043117046356,
-0.4941994547843933,
0.5980581045150757,
0.041031308472156525,
-0.1797451227903366,
0.5112208127975464,
-0.1918341964483261,
-0.6168329119682312,
0.7719427347183228,
0.10731200873851776,
0.802262008190155,
-0.15761177241802216,
0.33473384380340576,
0.7178225517272949,
0.21563121676445007,
-0.09578201174736023,
0.5528658032417297,
-0.2180321365594864,
-0.6480783820152283,
-0.05061712488532066,
-0.5510208606719971,
-0.09432326257228851,
0.07067224383354187,
-0.8402475714683533,
0.44778648018836975,
-0.4932310879230499,
-0.2377849966287613,
0.015453973785042763,
0.39724060893058777,
-0.7702231407165527,
0.1777108758687973,
-0.07945134490728378,
1.0491383075714111,
-1.0568480491638184,
0.43324026465415955,
0.6753316521644592,
-0.6587332487106323,
-1.1803309917449951,
-0.11381753534078598,
0.1810731440782547,
-0.6067113876342773,
0.18120813369750977,
0.2047382891178131,
0.5214931964874268,
-0.052176669239997864,
-0.9331005811691284,
-0.7128781080245972,
1.2005445957183838,
-0.0017920531099662185,
-0.20525933802127838,
0.29280632734298706,
0.07411810010671616,
0.6383262872695923,
-0.32437771558761597,
0.3411974012851715,
0.6556862592697144,
0.695756733417511,
0.3033127784729004,
-0.7316286563873291,
0.3056214451789856,
-0.6470603942871094,
-0.2564992904663086,
0.07167622447013855,
-1.005514144897461,
0.6434966921806335,
-0.2342240810394287,
-0.04398396238684654,
0.006703666877001524,
0.5671148300170898,
0.42568981647491455,
0.4754450023174286,
0.37345829606056213,
0.7763755321502686,
0.8431318402290344,
-0.2908337116241455,
1.200429916381836,
-0.24177151918411255,
0.6380067467689514,
0.7811629176139832,
0.07418971508741379,
0.5116424560546875,
0.24165917932987213,
-0.28158220648765564,
0.5571686029434204,
0.6730620265007019,
-0.45015978813171387,
0.24409005045890808,
0.37834280729293823,
-0.03081260249018669,
-0.10277299582958221,
-0.24983850121498108,
-0.5746250748634338,
0.30694425106048584,
0.2705061137676239,
-0.3404826521873474,
-0.007934695109724998,
-0.07678702473640442,
0.37867510318756104,
-0.027065899223089218,
-0.24724572896957397,
0.6679744124412537,
0.05861660838127136,
-0.3508201837539673,
0.5555022358894348,
-0.1775730699300766,
0.6914455890655518,
-0.5449930429458618,
0.1226101666688919,
-0.11149577051401138,
0.11959218978881836,
-0.6388704180717468,
-1.100037693977356,
0.36539164185523987,
-0.11658041179180145,
-0.28479528427124023,
-0.3195706605911255,
0.7345830202102661,
-0.4487231969833374,
-0.7725856304168701,
0.28497105836868286,
0.27528634667396545,
0.3175066411495209,
0.1225464791059494,
-1.2417141199111938,
0.5099923014640808,
0.16597634553909302,
-0.45354899764060974,
0.11237366497516632,
0.5335303544998169,
0.12831248342990875,
0.5687392950057983,
0.7093228697776794,
0.19802844524383545,
-0.23445795476436615,
0.023793254047632217,
1.0955002307891846,
-0.5859174132347107,
-0.41798317432403564,
-0.7542723417282104,
0.8679789304733276,
-0.35727840662002563,
-0.3728312849998474,
0.7033263444900513,
0.7645902633666992,
0.8900457620620728,
0.014226953499019146,
0.849182665348053,
-0.6476460695266724,
0.7372878193855286,
-0.179246187210083,
0.915237307548523,
-0.7233347296714783,
-0.03801355138421059,
-0.7319803237915039,
-0.5318170189857483,
-0.40108731389045715,
0.6740067005157471,
-0.21135789155960083,
0.22083215415477753,
0.26762521266937256,
0.9363757967948914,
0.0019605858251452446,
0.06921523064374924,
-0.27346980571746826,
0.32694199681282043,
0.2873525619506836,
0.5411440134048462,
0.3966861069202423,
-0.9101225137710571,
0.3765367567539215,
-0.7631211876869202,
-0.3306284248828888,
0.022753985598683357,
-0.8235458731651306,
-0.9155064821243286,
-0.9648720026016235,
-0.6598813533782959,
-0.8073229193687439,
-0.3243233263492584,
1.0418343544006348,
0.7010878920555115,
-0.6801469922065735,
-0.25468209385871887,
0.05623578280210495,
0.3126111328601837,
-0.0674041286110878,
-0.3266591727733612,
0.6530317068099976,
0.35985758900642395,
-0.5721409916877747,
-0.08012446761131287,
0.010496878996491432,
0.24767948687076569,
0.053364355117082596,
-0.09971369802951813,
-0.14755268394947052,
-0.29178372025489807,
0.30581435561180115,
0.505349338054657,
-0.33555203676223755,
-0.06639072299003601,
-0.2028345763683319,
0.02942710742354393,
0.14145299792289734,
0.4643156826496124,
-0.5511369109153748,
0.2392425686120987,
0.631164014339447,
0.26697176694869995,
0.46578094363212585,
0.21250970661640167,
0.019364172592759132,
-0.5017846822738647,
0.06093278527259827,
-0.008185744285583496,
0.31663140654563904,
0.41867581009864807,
-0.45993638038635254,
0.7956875562667847,
0.605823278427124,
-0.48434507846832275,
-0.8075481653213501,
-0.14981471002101898,
-1.2848604917526245,
0.10483294725418091,
1.0416572093963623,
0.007195584010332823,
-0.541795015335083,
0.056224897503852844,
-0.20753340423107147,
0.1559121459722519,
-0.5630336403846741,
0.5185166001319885,
0.49180516600608826,
-0.09403466433286667,
0.13518676161766052,
-0.3100298345088959,
0.6450797319412231,
-0.02198801562190056,
-0.9458116888999939,
0.15742084383964539,
0.3911723494529724,
0.4893552362918854,
0.35217583179473877,
0.7727749943733215,
-0.20711636543273926,
0.03893308341503143,
-0.07787322252988815,
0.2526263892650604,
-0.2598715126514435,
0.05184106528759003,
-0.32023516297340393,
-0.1385839879512787,
-0.5063921213150024,
-0.19980312883853912
]
|
huggingartists/idktime | huggingartists | 2022-10-25T09:31:47Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/idktime"
## 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.027776 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('https://assets.genius.com/images/default_avatar_300.png?1631807796')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/idktime">
<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">Idktime</div>
<a href="https://genius.com/artists/idktime">
<div style="text-align: center; font-size: 14px;">@idktime</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/idktime).
### 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/idktime")
```
## 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|
|------:|---------:|---:|
|2| -| -|
'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/idktime")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6491159796714783,
-0.5127497315406799,
0.0740392878651619,
0.2998036742210388,
-0.2685118615627289,
0.02329886332154274,
-0.32558101415634155,
-0.4025328755378723,
0.8503771424293518,
0.30134817957878113,
-0.9118297696113586,
-0.8337518572807312,
-0.5682227611541748,
0.12815019488334656,
-0.11003639549016953,
1.2818580865859985,
-0.18960091471672058,
-0.32147547602653503,
-0.34929126501083374,
-0.2522132694721222,
-0.3107164800167084,
-0.2879352569580078,
-0.3064497709274292,
-0.37476223707199097,
0.32594478130340576,
0.5467309951782227,
0.6994282603263855,
0.8693241477012634,
0.5247031450271606,
0.34657514095306396,
-0.13450828194618225,
-0.012557665817439556,
-0.35766226053237915,
-0.1203586608171463,
0.1345430314540863,
-0.30066514015197754,
-0.6707062721252441,
0.24679462611675262,
0.5900006890296936,
0.39471882581710815,
-0.06110496446490288,
0.493217408657074,
0.09546387940645218,
0.8565327525138855,
-0.2743571698665619,
0.49920517206192017,
-0.24252961575984955,
-0.18356990814208984,
-0.29568904638290405,
0.060903117060661316,
0.18875189125537872,
-0.6026791930198669,
-0.015964791178703308,
-0.7446398735046387,
0.024330513551831245,
-0.012039442546665668,
1.0165653228759766,
0.08881372958421707,
0.10594039410352707,
-0.21316924691200256,
-0.1525118499994278,
0.5209148526191711,
-0.6425046920776367,
-0.05266342684626579,
0.5981771349906921,
0.15244726836681366,
-0.0029107513837516308,
-0.6196914911270142,
-0.658187747001648,
0.08894725143909454,
-0.1686391681432724,
0.2717333436012268,
-0.14563332498073578,
-0.3133164048194885,
0.5287333130836487,
0.5738828778266907,
-0.48950353264808655,
-0.22500191628932953,
-0.5309435725212097,
-0.07919210940599442,
1.1693296432495117,
0.1638880968093872,
0.4230758547782898,
-0.506560206413269,
-0.22901616990566254,
-0.41470208764076233,
-0.2605339586734772,
0.34408262372016907,
0.5918580293655396,
0.4284191131591797,
-1.0349209308624268,
0.6202794909477234,
-0.19759146869182587,
0.5286654829978943,
0.15329009294509888,
-0.045978184789419174,
0.7700510025024414,
-0.4093572199344635,
-0.08923535794019699,
-0.1150505542755127,
1.0620088577270508,
0.6658248901367188,
0.173455610871315,
0.11306281387805939,
-0.04242001846432686,
0.048120394349098206,
-0.14758926630020142,
-0.8532376289367676,
-0.41653206944465637,
0.6621456146240234,
-0.590695858001709,
-0.599347710609436,
0.1480766087770462,
-1.0021519660949707,
-0.23904332518577576,
-0.30169615149497986,
0.28692615032196045,
-0.4204094707965851,
-0.5819995403289795,
0.156082421541214,
-0.2895720601081848,
0.14710533618927002,
0.018498793244361877,
-0.6052661538124084,
0.2033849060535431,
0.6103543043136597,
0.783193826675415,
0.2089531123638153,
-0.312835693359375,
-0.24986553192138672,
-0.201801598072052,
-0.11880440264940262,
0.674420177936554,
-0.29379802942276,
-0.3458823561668396,
-0.1784752905368805,
0.30758947134017944,
-0.08299965411424637,
-0.2991814911365509,
0.8943493366241455,
0.06377046555280685,
0.20278482139110565,
-0.5782343745231628,
-0.4702863097190857,
-0.05229980871081352,
0.28722134232521057,
-0.7463250160217285,
1.0602836608886719,
0.3089125156402588,
-1.0258194208145142,
0.18684710562229156,
-0.8639872670173645,
-0.2991592288017273,
0.032378215342760086,
0.07323923707008362,
-0.7816393971443176,
-0.1783778965473175,
0.16517502069473267,
0.7330784797668457,
-0.32511934638023376,
0.03672837093472481,
-0.6081820130348206,
-0.13434913754463196,
0.39033108949661255,
0.25002363324165344,
1.2122801542282104,
0.11587626487016678,
-0.15908782184123993,
0.10470172762870789,
-0.951636552810669,
0.14339661598205566,
0.4582992196083069,
-0.17388807237148285,
-0.12871086597442627,
-0.20212452113628387,
0.3984839618206024,
0.29805347323417664,
0.06429993361234665,
-0.6257094144821167,
0.43229004740715027,
-0.22963537275791168,
0.4812833368778229,
0.763708770275116,
0.00623867753893137,
0.31543445587158203,
-0.6587222218513489,
0.40412721037864685,
0.08910597860813141,
0.35112226009368896,
-0.007502644322812557,
-0.5627057552337646,
-0.4930539131164551,
-0.2765904664993286,
0.3351234197616577,
0.471444308757782,
-0.6839838027954102,
0.9973484873771667,
-0.35375598073005676,
-0.8635596632957458,
-0.6540470719337463,
0.13464444875717163,
0.19843508303165436,
0.5128921866416931,
0.35498279333114624,
-0.4244895577430725,
-0.5705183744430542,
-0.6902891993522644,
0.05971171334385872,
-0.27716946601867676,
0.19934819638729095,
0.36203983426094055,
0.8404414057731628,
-0.24098806083202362,
0.8471344709396362,
-0.6488999724388123,
-0.2614920735359192,
-0.2637472450733185,
-0.3065577447414398,
0.3984062373638153,
0.8101058602333069,
0.674627423286438,
-0.8867089152336121,
-0.5102421045303345,
-0.2606900632381439,
-0.7088915109634399,
-0.09942538291215897,
-0.017859265208244324,
-0.27417072653770447,
0.013673754408955574,
0.13205234706401825,
-0.7226202487945557,
0.5527074933052063,
0.49514952301979065,
-0.7049365639686584,
0.5512661933898926,
0.10870648920536041,
0.01627171039581299,
-1.3178263902664185,
0.372031569480896,
0.22341668605804443,
0.03922824189066887,
-0.5902983546257019,
-0.19789078831672668,
-0.030563179403543472,
-0.029940124601125717,
-0.0973600298166275,
0.6473390460014343,
-0.3355720639228821,
0.31923794746398926,
0.11837209016084671,
0.042789116501808167,
0.07980690151453018,
0.4726007282733917,
-0.12883301079273224,
0.2841743230819702,
1.0058962106704712,
-0.39429160952568054,
0.6644211411476135,
0.6255532503128052,
-0.27273470163345337,
0.8695005178451538,
-0.7894876599311829,
0.0246349535882473,
-0.2766083776950836,
0.36919260025024414,
-0.8708163499832153,
-0.5556378960609436,
0.8380963802337646,
-0.7099396586418152,
0.41609320044517517,
-0.23543700575828552,
-0.6189498901367188,
-0.7929977774620056,
-0.6679357886314392,
0.1487898826599121,
0.538692831993103,
-0.3921251893043518,
0.41276857256889343,
0.6033262610435486,
0.049535732716321945,
-0.35217875242233276,
-0.7595234513282776,
-0.12821881473064423,
-0.41835543513298035,
-0.8190537095069885,
0.39791351556777954,
-0.3947429060935974,
-0.1383383423089981,
0.1828298568725586,
0.11863039433956146,
0.09744571894407272,
0.05024519935250282,
0.39809727668762207,
0.2815573513507843,
0.10596852749586105,
0.05509857088327408,
-0.05562750995159149,
-0.2458868771791458,
0.12191672623157501,
-0.18030786514282227,
0.268049031496048,
-0.30874183773994446,
-0.1356199085712433,
-0.6462154388427734,
0.2484489381313324,
0.4605015814304352,
-0.2663777768611908,
0.6643970012664795,
0.7841734886169434,
-0.26649144291877747,
-0.011534984223544598,
-0.4931303858757019,
-0.15098518133163452,
-0.41757476329803467,
0.052710190415382385,
-0.23156622052192688,
-0.5751118063926697,
0.9311343431472778,
0.18287695944309235,
0.10627841204404831,
0.6741502285003662,
0.5001685619354248,
-0.07764793187379837,
0.6924048662185669,
0.3977912664413452,
-0.26040515303611755,
0.49867311120033264,
-0.6865268349647522,
-0.2213965207338333,
-0.8664935827255249,
-0.43262791633605957,
-0.4680062532424927,
-0.5414921641349792,
-0.8456785082817078,
-0.42628854513168335,
0.22140084207057953,
0.14935603737831116,
-0.2110048085451126,
0.41888850927352905,
-0.9567123055458069,
0.27404242753982544,
0.3694619834423065,
0.2653537690639496,
-0.11422068625688553,
0.07813158631324768,
0.07751026749610901,
0.12806929647922516,
-0.6175075173377991,
-0.24488063156604767,
1.1247576475143433,
0.5001206994056702,
0.5623374581336975,
-0.07938214391469955,
0.8214644193649292,
0.012741678394377232,
0.24747265875339508,
-0.5405300259590149,
0.5038609504699707,
0.019811540842056274,
-0.5127931833267212,
-0.1218801811337471,
-0.4593592584133148,
-0.8734825849533081,
-0.11592050641775131,
-0.4124218821525574,
-0.6760359406471252,
0.48299315571784973,
0.07415737211704254,
-0.21698273718357086,
0.41008260846138,
-0.636529266834259,
0.8419411182403564,
-0.06444462388753891,
-0.41815057396888733,
0.24031288921833038,
-1.0276713371276855,
0.21030588448047638,
0.18532773852348328,
0.2699321210384369,
-0.43657463788986206,
0.025229714810848236,
1.0226364135742188,
-0.7977084517478943,
0.9375994205474854,
-0.3601956069469452,
0.1687297224998474,
0.585326611995697,
-0.3126814067363739,
0.4292502999305725,
0.10065814852714539,
-0.2831100821495056,
0.35467350482940674,
0.050894252955913544,
-0.4537723660469055,
-0.4354294240474701,
0.6982874870300293,
-0.7010560035705566,
0.005374819040298462,
-0.37277987599372864,
-0.48349812626838684,
0.04291066154837608,
0.192033588886261,
0.29329442977905273,
0.37060314416885376,
0.033600546419620514,
0.1464856117963791,
0.4575299620628357,
-0.12679046392440796,
0.30790984630584717,
0.043800950050354004,
-0.08028405904769897,
-0.794349730014801,
0.8921018242835999,
0.20355580747127533,
0.05268299952149391,
-0.06336408853530884,
0.44378361105918884,
-0.3512403964996338,
-0.11733026802539825,
-0.6251077651977539,
0.486037015914917,
-0.4296732246875763,
-0.41228926181793213,
-0.5105459690093994,
-0.1729123443365097,
-0.6346885561943054,
-0.12663643062114716,
-0.24908530712127686,
-0.513473391532898,
-0.30452969670295715,
-0.2186589390039444,
1.079318642616272,
0.47000712156295776,
-0.6941618919372559,
0.12905089557170868,
-0.5201097130775452,
0.2715902626514435,
-0.08960945159196854,
0.6774457097053528,
-0.08167780190706253,
-0.3073289394378662,
-0.24982041120529175,
0.1062811091542244,
-0.17933493852615356,
-0.7008177042007446,
0.24472133815288544,
-0.02172635681927204,
0.3703894317150116,
0.09788380563259125,
0.14092552661895752,
0.6588097214698792,
-0.037390489131212234,
0.6411563754081726,
0.2785937786102295,
-0.7983332276344299,
0.6871398687362671,
-0.49684301018714905,
0.20533108711242676,
0.7297047972679138,
0.37923339009284973,
-0.6016553044319153,
-0.12604515254497528,
-0.9598122835159302,
-0.8573159575462341,
0.7986059188842773,
0.40980440378189087,
0.08748763054609299,
0.21135905385017395,
0.5560425519943237,
-0.1623065024614334,
0.26765283942222595,
-0.6358673572540283,
-0.85140460729599,
-0.3957250714302063,
-0.37663599848747253,
-0.024187253788113594,
-0.11652969568967819,
-0.25799962878227234,
-0.7054436206817627,
0.7936450242996216,
-0.13055336475372314,
0.31202229857444763,
0.4103679955005646,
0.43312346935272217,
-0.22130581736564636,
-0.010662605054676533,
0.26255419850349426,
0.3695903718471527,
-0.22522689402103424,
-0.31190022826194763,
-0.17059482634067535,
-0.6104640960693359,
-0.08545716851949692,
0.5119322538375854,
-0.3576580286026001,
-0.0732971802353859,
0.28162455558776855,
0.8950095772743225,
-0.007835269905626774,
-0.2689133286476135,
0.5987808704376221,
-0.0672396719455719,
-0.38283032178878784,
-0.4361332058906555,
0.015351108275353909,
0.16976621747016907,
0.24258437752723694,
0.04579656198620796,
0.06972891092300415,
-0.12274402379989624,
-0.3958101272583008,
0.38887420296669006,
0.25089481472969055,
-0.36787277460098267,
-0.4920772910118103,
0.6120256781578064,
0.05598682165145874,
-0.1426837295293808,
0.4771208167076111,
-0.1635253131389618,
-0.6048531532287598,
0.7843804955482483,
0.11333637684583664,
0.8486436605453491,
-0.15729768574237823,
0.3180404305458069,
0.7622568011283875,
0.21993210911750793,
-0.05158193036913872,
0.5491827726364136,
-0.21652758121490479,
-0.6283537745475769,
-0.0674620196223259,
-0.5824187994003296,
-0.10226745903491974,
0.06960849463939667,
-0.82741779088974,
0.4518359899520874,
-0.4985489249229431,
-0.22724634408950806,
0.008890314027667046,
0.3821100890636444,
-0.7217921018600464,
0.15783411264419556,
-0.06586844474077225,
1.0652813911437988,
-1.01301109790802,
0.4798004627227783,
0.7189547419548035,
-0.6709914803504944,
-1.17058265209198,
-0.1433333158493042,
0.18815957009792328,
-0.5606024265289307,
0.20870408415794373,
0.20397688448429108,
0.5139862298965454,
-0.03755299746990204,
-0.9217380881309509,
-0.6864562034606934,
1.1729744672775269,
0.02131558023393154,
-0.18041417002677917,
0.3372265696525574,
0.10773394256830215,
0.6155747771263123,
-0.3402514159679413,
0.27554163336753845,
0.6227947473526001,
0.7056269645690918,
0.2629148066043854,
-0.7206555008888245,
0.28392162919044495,
-0.685907781124115,
-0.24275189638137817,
0.08028236031532288,
-1.0210154056549072,
0.6519375443458557,
-0.17492395639419556,
-0.08270831406116486,
0.0288583692163229,
0.6111485362052917,
0.4171198308467865,
0.40260860323905945,
0.4607785642147064,
0.7951312065124512,
0.794703483581543,
-0.31346219778060913,
1.2303011417388916,
-0.2791195809841156,
0.6060861349105835,
0.7799661159515381,
0.05038727819919586,
0.5172957181930542,
0.24872879683971405,
-0.31856220960617065,
0.5740643739700317,
0.6590676307678223,
-0.4355439245700836,
0.2408187836408615,
0.3825050890445709,
-0.058742620050907135,
-0.06648945063352585,
-0.26001015305519104,
-0.5867846012115479,
0.33719825744628906,
0.2633128762245178,
-0.2984350025653839,
-0.0003635807370301336,
0.00041278349817730486,
0.39273345470428467,
-0.02739007957279682,
-0.26352831721305847,
0.6790676712989807,
0.05519838631153107,
-0.3762284815311432,
0.5596330761909485,
-0.19539380073547363,
0.7098942995071411,
-0.6177110075950623,
0.12506650388240814,
-0.09018095582723618,
0.13832040131092072,
-0.6051672101020813,
-1.113226294517517,
0.38107821345329285,
-0.08375710248947144,
-0.2746576964855194,
-0.32940196990966797,
0.7514206171035767,
-0.48791003227233887,
-0.782180905342102,
0.23104774951934814,
0.20550096035003662,
0.3128991723060608,
0.1383221298456192,
-1.2661374807357788,
0.5464249849319458,
0.1318114548921585,
-0.4619843661785126,
0.13926848769187927,
0.49570342898368835,
0.16162890195846558,
0.5595307350158691,
0.7092047929763794,
0.2303214818239212,
-0.24211913347244263,
0.0039647226221859455,
1.099089503288269,
-0.5579817295074463,
-0.49064162373542786,
-0.7558384537696838,
0.9198519587516785,
-0.390201210975647,
-0.4143601953983307,
0.7149012684822083,
0.7504000663757324,
0.8890849351882935,
0.008589504286646843,
0.8167892098426819,
-0.6491309404373169,
0.7082424163818359,
-0.20834070444107056,
0.9731126427650452,
-0.7252379655838013,
-0.0867125615477562,
-0.6997496485710144,
-0.5229398012161255,
-0.383923202753067,
0.6300215125083923,
-0.1779138594865799,
0.16031548380851746,
0.2594255805015564,
0.9080050587654114,
0.0075099291279911995,
0.11350170522928238,
-0.25524213910102844,
0.3228047788143158,
0.273164838552475,
0.5357683897018433,
0.43388164043426514,
-0.8875638842582703,
0.33579251170158386,
-0.8143706321716309,
-0.3164903521537781,
0.03478703647851944,
-0.8447136878967285,
-0.8796178102493286,
-0.9990500211715698,
-0.6804112195968628,
-0.7913594841957092,
-0.339017778635025,
1.0868091583251953,
0.6947583556175232,
-0.6866911053657532,
-0.26566118001937866,
0.10488328337669373,
0.2937408685684204,
-0.08886357396841049,
-0.3282319903373718,
0.6530064940452576,
0.3511495888233185,
-0.6344307065010071,
-0.13589546084403992,
0.04062231257557869,
0.22628912329673767,
0.02174290269613266,
-0.06670108437538147,
-0.15698838233947754,
-0.2679021656513214,
0.3520108461380005,
0.48646607995033264,
-0.33181729912757874,
-0.095884308218956,
-0.2686629891395569,
0.029621997848153114,
0.1715584248304367,
0.46354734897613525,
-0.5333061814308167,
0.2522171139717102,
0.6759064197540283,
0.3034675419330597,
0.41065943241119385,
0.17565199732780457,
0.004965343978255987,
-0.47089844942092896,
0.11425156146287918,
0.004652846604585648,
0.3205997943878174,
0.4179382920265198,
-0.457261323928833,
0.8062717318534851,
0.5573975443840027,
-0.49405911564826965,
-0.8510572910308838,
-0.13658078014850616,
-1.3001667261123657,
0.08327016234397888,
1.070804238319397,
0.01165115088224411,
-0.5634799599647522,
0.07426927983760834,
-0.233942911028862,
0.14474284648895264,
-0.5275657176971436,
0.47475752234458923,
0.5660749077796936,
-0.08478697389364243,
0.1527702808380127,
-0.33692190051078796,
0.6227190494537354,
0.0011527242604643106,
-0.9755934476852417,
0.16360986232757568,
0.404056191444397,
0.4860486388206482,
0.31530052423477173,
0.7985758185386658,
-0.283346027135849,
0.06656134873628616,
-0.06503745913505554,
0.2890622615814209,
-0.2723686099052429,
0.05845450609922409,
-0.3724154829978943,
-0.15280494093894958,
-0.49200204014778137,
-0.22483032941818237
]
|
huggingartists/katy-perry | huggingartists | 2022-10-25T09:32:58Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/katy-perry"
## 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.8409 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('https://images.genius.com/3f46986b4eb6ceeb06fd9d9166e5a248.900x900x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/katy-perry">
<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">Katy Perry</div>
<a href="https://genius.com/artists/katy-perry">
<div style="text-align: center; font-size: 14px;">@katy-perry</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/katy-perry).
### 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/katy-perry")
```
## 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|
|------:|---------:|---:|
|609| -| -|
'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/katy-perry")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6000123620033264,
-0.5551550984382629,
0.09907588362693787,
0.3389624357223511,
-0.2551175653934479,
0.05092816799879074,
-0.2651357352733612,
-0.43135619163513184,
0.8649290800094604,
0.3668271601200104,
-0.8775407671928406,
-0.7955877780914307,
-0.5895354747772217,
0.15346229076385498,
-0.16886337101459503,
1.2805625200271606,
-0.16004256904125214,
-0.3223781883716583,
-0.34828582406044006,
-0.19103185832500458,
-0.310287207365036,
-0.32375454902648926,
-0.3025461435317993,
-0.3269506096839905,
0.30597683787345886,
0.5141389966011047,
0.7071275115013123,
0.8853668570518494,
0.579998254776001,
0.331365168094635,
-0.12054725736379623,
-0.11898401379585266,
-0.3702434301376343,
-0.13191848993301392,
0.18655405938625336,
-0.33368220925331116,
-0.6548917889595032,
0.2533210515975952,
0.5629583597183228,
0.3988443613052368,
-0.10522845387458801,
0.4553433060646057,
0.047969210892915726,
0.8034916520118713,
-0.21358993649482727,
0.43353110551834106,
-0.2778646647930145,
-0.13574452698230743,
-0.25669315457344055,
0.07003721594810486,
0.19287674129009247,
-0.6171003580093384,
-0.009991411119699478,
-0.7251254320144653,
0.03906044363975525,
0.011815356090664864,
1.0179150104522705,
0.13124528527259827,
0.03226938471198082,
-0.23124414682388306,
-0.18810401856899261,
0.5634587407112122,
-0.5253030061721802,
0.019483845680952072,
0.5524146556854248,
0.17052584886550903,
0.01116914302110672,
-0.6589827537536621,
-0.651371419429779,
0.09425569325685501,
-0.18817225098609924,
0.25325894355773926,
-0.17450758814811707,
-0.35598307847976685,
0.4937887489795685,
0.5715883374214172,
-0.5330514907836914,
-0.2903244197368622,
-0.4712395668029785,
-0.07654686272144318,
1.1534656286239624,
0.11274740099906921,
0.4356958568096161,
-0.5098074078559875,
-0.25106653571128845,
-0.37965700030326843,
-0.25260284543037415,
0.36673370003700256,
0.5080758333206177,
0.4103696346282959,
-1.0386008024215698,
0.6130747199058533,
-0.1609000563621521,
0.456419438123703,
0.19173027575016022,
-0.04327734187245369,
0.7817367315292358,
-0.40762612223625183,
-0.16330696642398834,
-0.20677213370800018,
1.0424031019210815,
0.6368541121482849,
0.22272634506225586,
0.08605088293552399,
-0.05081053823232651,
0.082847461104393,
-0.17605218291282654,
-0.8378461003303528,
-0.4714769124984741,
0.730896532535553,
-0.6131429076194763,
-0.603571355342865,
0.09346793591976166,
-1.0425288677215576,
-0.2580159604549408,
-0.3020799160003662,
0.3055279552936554,
-0.32006677985191345,
-0.5002095699310303,
0.14343512058258057,
-0.2961543798446655,
0.10607119649648666,
0.01155327633023262,
-0.6157004237174988,
0.16638128459453583,
0.5702979564666748,
0.6757160425186157,
0.28387269377708435,
-0.2728641927242279,
-0.3036632239818573,
-0.24542050063610077,
-0.08788294345140457,
0.6442191004753113,
-0.38182419538497925,
-0.4025682508945465,
-0.20774438977241516,
0.37708890438079834,
-0.013001678511500359,
-0.29291775822639465,
0.9655773639678955,
0.10465424507856369,
0.21930167078971863,
-0.5676815509796143,
-0.4111165702342987,
0.05629146099090576,
0.24966883659362793,
-0.7087447643280029,
1.0986413955688477,
0.2671043276786804,
-0.8973117470741272,
0.27042290568351746,
-0.7974981069564819,
-0.2856912314891815,
0.009681439027190208,
0.09895405173301697,
-0.8241353631019592,
-0.22886666655540466,
0.24461309611797333,
0.7832013368606567,
-0.30888688564300537,
0.10197281092405319,
-0.6076793074607849,
-0.07895819842815399,
0.34479841589927673,
0.2612340450286865,
1.1233690977096558,
0.08414614200592041,
-0.13085518777370453,
0.10210048407316208,
-0.9690622687339783,
0.13892494142055511,
0.47638237476348877,
-0.20325565338134766,
-0.08403411507606506,
-0.23551307618618011,
0.41901153326034546,
0.29632800817489624,
0.05078627169132233,
-0.591922402381897,
0.4137641191482544,
-0.15318503975868225,
0.4637676179409027,
0.7359086871147156,
-0.017775800079107285,
0.36537134647369385,
-0.6274650692939758,
0.42333611845970154,
0.05645136535167694,
0.4223119914531708,
-0.03801483288407326,
-0.5809522867202759,
-0.4383874237537384,
-0.2558920979499817,
0.38791337609291077,
0.43437081575393677,
-0.6465903520584106,
0.953400194644928,
-0.3967409133911133,
-0.8406383395195007,
-0.6379940509796143,
0.10782396048307419,
0.23670853674411774,
0.518243134021759,
0.3600240647792816,
-0.46713900566101074,
-0.6014971137046814,
-0.6582934856414795,
0.04158211126923561,
-0.21224796772003174,
0.13336756825447083,
0.49262821674346924,
0.8804692029953003,
-0.21228046715259552,
0.8136250376701355,
-0.6645262837409973,
-0.22433356940746307,
-0.18803894519805908,
-0.2895544171333313,
0.3836069703102112,
0.8334439992904663,
0.712219774723053,
-0.9081095457077026,
-0.5610476136207581,
-0.28102973103523254,
-0.6561666131019592,
-0.10162881761789322,
-0.05775566026568413,
-0.30551332235336304,
0.001720795757137239,
0.054777082055807114,
-0.6944106221199036,
0.5158140659332275,
0.5403676629066467,
-0.744557797908783,
0.533574640750885,
0.1583361029624939,
0.0868111178278923,
-1.2861876487731934,
0.4048815965652466,
0.2626991271972656,
-0.005060945171862841,
-0.6197882890701294,
-0.21843034029006958,
-0.015181640163064003,
-0.06471250206232071,
-0.07127222418785095,
0.6645188927650452,
-0.32372018694877625,
0.31098806858062744,
0.1416018009185791,
0.08123474568128586,
0.08920387923717499,
0.4627414047718048,
-0.04568150267004967,
0.2828496992588043,
1.02751886844635,
-0.3648296296596527,
0.6384560465812683,
0.6534638404846191,
-0.18292348086833954,
0.896147608757019,
-0.7688015699386597,
0.027504511177539825,
-0.29640552401542664,
0.47133609652519226,
-0.8660102486610413,
-0.6262161731719971,
0.7849492430686951,
-0.7620558738708496,
0.3655439019203186,
-0.281966894865036,
-0.4948543906211853,
-0.820255696773529,
-0.6586223840713501,
0.09392569959163666,
0.6288661956787109,
-0.458835631608963,
0.4358411431312561,
0.653375506401062,
0.045985445380210876,
-0.39532917737960815,
-0.7896914482116699,
-0.13791672885417938,
-0.4262981712818146,
-0.857324481010437,
0.46446824073791504,
-0.3126073479652405,
-0.08345683664083481,
0.15881487727165222,
0.05461513251066208,
0.05191085487604141,
-0.057071831077337265,
0.4041755497455597,
0.28609591722488403,
0.12497188150882721,
0.06958509236574173,
-0.17337797582149506,
-0.20621082186698914,
0.1273161768913269,
-0.1884082406759262,
0.28237640857696533,
-0.22526143491268158,
-0.0786585584282875,
-0.6425493359565735,
0.20360811054706573,
0.4839538633823395,
-0.23145735263824463,
0.6806067228317261,
0.7931405901908875,
-0.23788003623485565,
-0.050376396626234055,
-0.474650502204895,
-0.20668043196201324,
-0.39092186093330383,
0.00003134707367280498,
-0.25961512327194214,
-0.5783443450927734,
0.9653030633926392,
0.21245042979717255,
0.050171077251434326,
0.6442108750343323,
0.446349173784256,
-0.06571453809738159,
0.7044477462768555,
0.4040478765964508,
-0.27197176218032837,
0.49773192405700684,
-0.6149098873138428,
-0.16535043716430664,
-0.8266631960868835,
-0.4411027431488037,
-0.5721690654754639,
-0.51390141248703,
-0.8456049561500549,
-0.44135618209838867,
0.1983521431684494,
0.15240256488323212,
-0.2296416163444519,
0.456194669008255,
-0.9421703815460205,
0.3437384366989136,
0.38043490052223206,
0.28760626912117004,
-0.12242600321769714,
0.059275709092617035,
0.11217065155506134,
0.17866069078445435,
-0.5618855357170105,
-0.24201010167598724,
1.2201941013336182,
0.5320785641670227,
0.5787973403930664,
-0.04422299191355705,
0.7562928199768066,
0.00031156529439613223,
0.2343733310699463,
-0.5210763812065125,
0.4737047553062439,
-0.02081056870520115,
-0.5468469262123108,
-0.14655104279518127,
-0.5030480623245239,
-0.8746531009674072,
-0.17247682809829712,
-0.42085251212120056,
-0.7169681787490845,
0.4638778567314148,
0.16012614965438843,
-0.21569447219371796,
0.3434767723083496,
-0.7073606252670288,
0.8618455529212952,
-0.05745093151926994,
-0.46296513080596924,
0.32708582282066345,
-1.0504388809204102,
0.2334565371274948,
0.14339692890644073,
0.2361767292022705,
-0.3584854304790497,
0.06464146822690964,
0.9894667267799377,
-0.7599914073944092,
0.9005000591278076,
-0.37517619132995605,
0.132864311337471,
0.5134716629981995,
-0.3617531657218933,
0.5746199488639832,
0.11694785952568054,
-0.2212211936712265,
0.29863137006759644,
0.023952122777700424,
-0.46349281072616577,
-0.43993112444877625,
0.7163059711456299,
-0.6293911933898926,
0.021743254736065865,
-0.3171212375164032,
-0.38963592052459717,
-0.0077307033352553844,
0.11919578909873962,
0.20250515639781952,
0.321702241897583,
0.05028782784938812,
0.19942505657672882,
0.4108896851539612,
-0.132246732711792,
0.34071865677833557,
0.021499978378415108,
-0.14180810749530792,
-0.7576078176498413,
0.8687620759010315,
0.11240599304437637,
0.05431331694126129,
0.0010631611803546548,
0.4162946045398712,
-0.4836198687553406,
-0.07818873226642609,
-0.565434455871582,
0.449804425239563,
-0.4404088854789734,
-0.3235359787940979,
-0.5191478133201599,
-0.1227816790342331,
-0.6245757937431335,
-0.16887910664081573,
-0.19561266899108887,
-0.5322631001472473,
-0.27813994884490967,
-0.1612236350774765,
1.017297625541687,
0.3867509067058563,
-0.6007034778594971,
0.12804517149925232,
-0.554082989692688,
0.2775615453720093,
-0.024794764816761017,
0.7101953625679016,
-0.12502118945121765,
-0.3240946829319,
-0.1404484063386917,
0.05304672196507454,
-0.2201860100030899,
-0.6797292828559875,
0.2610805928707123,
-0.037912387400865555,
0.3424035906791687,
0.034847814589738846,
0.062458109110593796,
0.6906251907348633,
-0.005777657497674227,
0.7059269547462463,
0.2947065532207489,
-0.844584047794342,
0.6921635270118713,
-0.5416234135627747,
0.1559014767408371,
0.6668917536735535,
0.3767128884792328,
-0.6110020279884338,
-0.07850846648216248,
-0.9840022325515747,
-0.7833709120750427,
0.776841938495636,
0.4782503843307495,
0.06822863966226578,
0.24860955774784088,
0.4774620831012726,
-0.20704177021980286,
0.29936596751213074,
-0.7364327907562256,
-0.8253153562545776,
-0.35215309262275696,
-0.3621639311313629,
-0.046197764575481415,
-0.04306650534272194,
-0.23310229182243347,
-0.6564226746559143,
0.8041056394577026,
-0.1349157691001892,
0.30364271998405457,
0.4075060188770294,
0.4692981541156769,
-0.24424049258232117,
0.050498999655246735,
0.25786536931991577,
0.31357091665267944,
-0.24834130704402924,
-0.3221672475337982,
-0.17356744408607483,
-0.6386153697967529,
-0.12656816840171814,
0.5116150975227356,
-0.3007885813713074,
-0.08978141844272614,
0.24325108528137207,
0.8633126020431519,
-0.008005380630493164,
-0.29861390590667725,
0.5522433519363403,
-0.0958104282617569,
-0.40233367681503296,
-0.3466032147407532,
-0.020901726558804512,
0.14252007007598877,
0.19949162006378174,
0.045733630657196045,
0.13783994317054749,
-0.17073726654052734,
-0.4652766287326813,
0.4253774881362915,
0.2881934344768524,
-0.3742593824863434,
-0.48584601283073425,
0.6581850051879883,
0.1822095662355423,
-0.12930195033550262,
0.3936227262020111,
-0.11318942904472351,
-0.6013100147247314,
0.8162285685539246,
0.10860038548707962,
0.8340821862220764,
-0.19741550087928772,
0.31264540553092957,
0.7337238788604736,
0.1605038195848465,
-0.0534045547246933,
0.5969626903533936,
-0.21270321309566498,
-0.5701480507850647,
-0.04211020469665527,
-0.6576696634292603,
-0.07325670123100281,
0.1277915984392166,
-0.7095007300376892,
0.47655999660491943,
-0.44407886266708374,
-0.23286882042884827,
0.08804849535226822,
0.34866800904273987,
-0.6940339207649231,
0.27084946632385254,
-0.13558223843574524,
0.9813712239265442,
-1.043343424797058,
0.45808205008506775,
0.6738848090171814,
-0.6508585214614868,
-1.2542412281036377,
-0.07748815417289734,
0.25698322057724,
-0.5494268536567688,
0.20019489526748657,
0.13050298392772675,
0.553093433380127,
-0.033926401287317276,
-0.8640363812446594,
-0.6847407221794128,
1.1586939096450806,
-0.02727339044213295,
-0.2700658440589905,
0.37503960728645325,
0.12112700939178467,
0.6351785063743591,
-0.37757408618927,
0.32856348156929016,
0.6358005404472351,
0.6925474405288696,
0.33947527408599854,
-0.8197998404502869,
0.2787352204322815,
-0.6352269053459167,
-0.2713213860988617,
0.1672932505607605,
-1.0116398334503174,
0.6533342003822327,
-0.1562126725912094,
-0.08457670360803604,
0.00673876516520977,
0.46138280630111694,
0.39949551224708557,
0.40585246682167053,
0.41960009932518005,
0.7753701210021973,
0.8061391115188599,
-0.40566229820251465,
1.2317701578140259,
-0.2929278612136841,
0.6469514966011047,
0.7557905316352844,
0.05714813619852066,
0.53879314661026,
0.2879692018032074,
-0.38706719875335693,
0.45517534017562866,
0.658848226070404,
-0.4622809588909149,
0.23696042597293854,
0.35726073384284973,
-0.077791728079319,
-0.04136638343334198,
-0.2778158187866211,
-0.5834739804267883,
0.30015262961387634,
0.16011078655719757,
-0.447206974029541,
0.04506700485944748,
-0.04635148495435715,
0.38508522510528564,
-0.046422719955444336,
-0.2602713108062744,
0.6232150793075562,
0.01608436368405819,
-0.4436417520046234,
0.5384669899940491,
-0.22485393285751343,
0.6852850317955017,
-0.5278856754302979,
0.1324021965265274,
-0.10677449405193329,
0.08076217025518417,
-0.6357262134552002,
-1.1518770456314087,
0.38692164421081543,
0.029782965779304504,
-0.2703336775302887,
-0.3611995577812195,
0.7295256853103638,
-0.4756150543689728,
-0.7703202366828918,
0.17575573921203613,
0.17592042684555054,
0.3097221553325653,
0.12426843494176865,
-1.2434453964233398,
0.5156017541885376,
0.19856669008731842,
-0.43531155586242676,
0.08020387589931488,
0.4545839726924896,
0.15919142961502075,
0.572509765625,
0.7512149810791016,
0.194101482629776,
-0.2226962447166443,
0.08431991189718246,
1.0569051504135132,
-0.5666300654411316,
-0.4762827157974243,
-0.7452398538589478,
1.0176061391830444,
-0.38454434275627136,
-0.43476149439811707,
0.6772829294204712,
0.7493945360183716,
0.8524468541145325,
-0.05081947147846222,
0.8146544098854065,
-0.6895178556442261,
0.6946899890899658,
-0.24120080471038818,
0.9069428443908691,
-0.7537822723388672,
0.000719082891009748,
-0.7335293889045715,
-0.5356799960136414,
-0.4426770806312561,
0.5519922375679016,
-0.20756128430366516,
0.24787402153015137,
0.31214219331741333,
0.9680839776992798,
-0.011730337515473366,
0.1559770107269287,
-0.2657780647277832,
0.3053588271141052,
0.3093876838684082,
0.5508246421813965,
0.40801137685775757,
-0.8786512613296509,
0.4212695062160492,
-0.7576007843017578,
-0.31465038657188416,
0.05650756135582924,
-0.8327952027320862,
-0.8962374925613403,
-0.9919962286949158,
-0.6512685418128967,
-0.7268377542495728,
-0.33043959736824036,
1.0080379247665405,
0.7688646912574768,
-0.6798352003097534,
-0.1561577320098877,
-0.015144117176532745,
0.2615451216697693,
0.005398517940193415,
-0.331172913312912,
0.6125825047492981,
0.40992993116378784,
-0.6994808316230774,
-0.153220996260643,
0.016995849087834358,
0.2788493037223816,
0.07006420195102692,
-0.06501078605651855,
-0.0912204459309578,
-0.2413790374994278,
0.3435995280742645,
0.4562787711620331,
-0.40296149253845215,
-0.16407009959220886,
-0.20009420812129974,
0.058221377432346344,
0.2169676274061203,
0.3990245461463928,
-0.5464680790901184,
0.2117464691400528,
0.6634694933891296,
0.2922329604625702,
0.43114137649536133,
0.29880964756011963,
-0.0014372579753398895,
-0.5466718673706055,
0.02186376415193081,
0.012846785597503185,
0.2687282860279083,
0.4012473523616791,
-0.4961935877799988,
0.8304173946380615,
0.5596140027046204,
-0.5843831896781921,
-0.8643666505813599,
-0.13814596831798553,
-1.3151781558990479,
0.09609608352184296,
1.023087978363037,
0.046779487282037735,
-0.530077338218689,
0.0937323048710823,
-0.21143557131290436,
0.056934647262096405,
-0.5888655185699463,
0.5136705040931702,
0.6183531880378723,
-0.13215553760528564,
0.08256617933511734,
-0.31005722284317017,
0.6685647964477539,
0.02136448211967945,
-1.022575855255127,
0.11951076239347458,
0.39748576283454895,
0.4889136850833893,
0.35203278064727783,
0.7747642993927002,
-0.24586263298988342,
0.06636989116668701,
0.020946763455867767,
0.2824101746082306,
-0.1536371260881424,
0.006645938381552696,
-0.37628045678138733,
-0.10473756492137909,
-0.5661903619766235,
-0.225105419754982
]
|
huggingartists/lady-gaga | huggingartists | 2022-10-25T09:34:29Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/lady-gaga"
## 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.151377 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('https://images.genius.com/e7e76c378cb43b4b1ff03947d5c0481a.400x400x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/lady-gaga">
<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">Lady Gaga</div>
<a href="https://genius.com/artists/lady-gaga">
<div style="text-align: center; font-size: 14px;">@lady-gaga</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/lady-gaga).
### 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/lady-gaga")
```
## 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|
|------:|---------:|---:|
|723| -| -|
'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/lady-gaga")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6002199053764343,
-0.5803637504577637,
0.039359163492918015,
0.25610360503196716,
-0.26559582352638245,
0.0005818732315674424,
-0.25330591201782227,
-0.46478843688964844,
0.8094907999038696,
0.28675398230552673,
-0.8831322193145752,
-0.8025464415550232,
-0.5430528521537781,
0.16079631447792053,
-0.11505717039108276,
1.3158820867538452,
-0.11828777194023132,
-0.31357675790786743,
-0.31443965435028076,
-0.19779038429260254,
-0.2803666889667511,
-0.2992221713066101,
-0.2862440049648285,
-0.33045506477355957,
0.3307131826877594,
0.5147793889045715,
0.6934741139411926,
0.8561633825302124,
0.5582507252693176,
0.33186379075050354,
-0.1564357578754425,
0.012003093957901001,
-0.3687100410461426,
-0.2092791199684143,
0.16873303055763245,
-0.2379361391067505,
-0.7453767657279968,
0.3036060929298401,
0.5745363831520081,
0.36741721630096436,
-0.11978805065155029,
0.4839593172073364,
0.03803601861000061,
0.8264483213424683,
-0.23208488523960114,
0.4717468321323395,
-0.24913351237773895,
-0.10481292754411697,
-0.27935317158699036,
0.09532167762517929,
0.21465177834033966,
-0.6075262427330017,
-0.019461100921034813,
-0.7882037162780762,
0.027413582429289818,
0.05547785013914108,
1.0577229261398315,
0.023971283808350563,
0.12745758891105652,
-0.23565731942653656,
-0.2181633859872818,
0.5434059500694275,
-0.5519413948059082,
0.01706082560122013,
0.5035618543624878,
0.17731013894081116,
0.037319377064704895,
-0.5672109127044678,
-0.6678720712661743,
0.025937650352716446,
-0.17330734431743622,
0.2886829674243927,
-0.20966799557209015,
-0.37544676661491394,
0.551713764667511,
0.5997387170791626,
-0.5299515724182129,
-0.3161134719848633,
-0.52789705991745,
-0.06931228190660477,
1.1106431484222412,
0.09486137330532074,
0.4742010831832886,
-0.5091804265975952,
-0.2349952906370163,
-0.367197185754776,
-0.28125232458114624,
0.3140161335468292,
0.5670942068099976,
0.4626739025115967,
-1.0561444759368896,
0.6258864998817444,
-0.17965508997440338,
0.5827348828315735,
0.1799698919057846,
-0.03608439490199089,
0.7614350318908691,
-0.3947751224040985,
-0.15473222732543945,
-0.228663831949234,
1.0728869438171387,
0.6220314502716064,
0.1710473597049713,
0.06611987203359604,
-0.035462502390146255,
0.07503063231706619,
-0.16903415322303772,
-0.7501348257064819,
-0.431223601102829,
0.6277081370353699,
-0.5350210666656494,
-0.5734428763389587,
0.18757955729961395,
-1.0475993156433105,
-0.18918950855731964,
-0.29295670986175537,
0.29758912324905396,
-0.2987827658653259,
-0.529840886592865,
0.15195129811763763,
-0.250418096780777,
0.1519642025232315,
0.0750778317451477,
-0.6353698968887329,
0.18489842116832733,
0.6132107973098755,
0.755504310131073,
0.23036599159240723,
-0.25342100858688354,
-0.39708688855171204,
-0.1911647468805313,
-0.1302521526813507,
0.6729874610900879,
-0.30125606060028076,
-0.36184123158454895,
-0.14132043719291687,
0.3212363123893738,
-0.04069976508617401,
-0.279802531003952,
0.9713247418403625,
0.04662500321865082,
0.22975389659404755,
-0.5896227359771729,
-0.3838026523590088,
0.06500646471977234,
0.3166036903858185,
-0.77425616979599,
1.0315550565719604,
0.31828048825263977,
-1.018609642982483,
0.20883944630622864,
-0.8322979211807251,
-0.26516854763031006,
0.007651903200894594,
0.07920894026756287,
-0.8209381699562073,
-0.18743331730365753,
0.20046822726726532,
0.6863658428192139,
-0.3419659733772278,
0.0013956716284155846,
-0.5916951894760132,
-0.09463413804769516,
0.33032098412513733,
0.32408660650253296,
1.133371114730835,
0.1382858008146286,
-0.1078980416059494,
0.14230161905288696,
-0.9262693524360657,
0.07068560272455215,
0.4355858862400055,
-0.18086285889148712,
-0.08193159848451614,
-0.26819485425949097,
0.43345126509666443,
0.3372795283794403,
0.013750597834587097,
-0.5760467648506165,
0.45440736413002014,
-0.15108107030391693,
0.4646857678890228,
0.7323319315910339,
-0.10545071214437485,
0.3607126474380493,
-0.6398541927337646,
0.42858994007110596,
0.07291780412197113,
0.40758219361305237,
0.0550147145986557,
-0.5800169706344604,
-0.4842161238193512,
-0.20548312366008759,
0.3457377254962921,
0.4720589220523834,
-0.6980107426643372,
0.9083285927772522,
-0.38203901052474976,
-0.7840062379837036,
-0.6510280966758728,
0.12284719198942184,
0.24862655997276306,
0.5699220895767212,
0.34971681237220764,
-0.40399792790412903,
-0.578835129737854,
-0.6596100926399231,
0.049875225871801376,
-0.2860015034675598,
0.1378164440393448,
0.47639134526252747,
0.8788600564002991,
-0.1990995705127716,
0.7809880971908569,
-0.6761192679405212,
-0.31277674436569214,
-0.24777260422706604,
-0.26491624116897583,
0.3979801833629608,
0.8333724737167358,
0.665585994720459,
-0.898087739944458,
-0.5022124648094177,
-0.25838392972946167,
-0.7070997953414917,
-0.07272715866565704,
-0.034443989396095276,
-0.32102465629577637,
0.03631943091750145,
0.08582974970340729,
-0.69901043176651,
0.4826087951660156,
0.557681143283844,
-0.7270519733428955,
0.6094644665718079,
0.06369520723819733,
0.053436100482940674,
-1.2505139112472534,
0.4106564223766327,
0.24362273514270782,
0.01646154746413231,
-0.640474259853363,
-0.17707695066928864,
-0.04839427024126053,
-0.02519499696791172,
-0.10296255350112915,
0.6367447376251221,
-0.3807308077812195,
0.2573281228542328,
0.14680476486682892,
0.09341912716627121,
0.08216676861047745,
0.41641223430633545,
-0.07014787942171097,
0.31789880990982056,
1.0031646490097046,
-0.38246089220046997,
0.6441713571548462,
0.6762974858283997,
-0.21088525652885437,
0.8807927966117859,
-0.8230582475662231,
0.10218114405870438,
-0.23751595616340637,
0.3815864026546478,
-0.8109378218650818,
-0.5791323184967041,
0.8606352806091309,
-0.7445008754730225,
0.4094604551792145,
-0.27437856793403625,
-0.5359200239181519,
-0.8268691301345825,
-0.6394327878952026,
0.0819152221083641,
0.568926215171814,
-0.3951839208602905,
0.4426555335521698,
0.6551729440689087,
0.12610037624835968,
-0.3753831088542938,
-0.7670930624008179,
-0.13323861360549927,
-0.42755767703056335,
-0.8575430512428284,
0.4177587330341339,
-0.35975566506385803,
-0.13812947273254395,
0.10516561567783356,
0.11038291454315186,
0.12732060253620148,
-0.013252236880362034,
0.3555856943130493,
0.3597627878189087,
0.14517177641391754,
0.038343727588653564,
-0.2115454077720642,
-0.23937572538852692,
0.09889425337314606,
-0.222991481423378,
0.2598519027233124,
-0.3093380331993103,
-0.0807996317744255,
-0.6490885019302368,
0.24219739437103271,
0.45801353454589844,
-0.2532537281513214,
0.6793814897537231,
0.8548499941825867,
-0.24448534846305847,
0.02100760117173195,
-0.4869685769081116,
-0.14627759158611298,
-0.3927493095397949,
-0.021199988201260567,
-0.27241629362106323,
-0.6204434037208557,
0.9658244252204895,
0.2906530201435089,
0.07127665728330612,
0.6851310133934021,
0.44191455841064453,
-0.041510432958602905,
0.7043993473052979,
0.41566890478134155,
-0.3252103924751282,
0.5114749670028687,
-0.6722992658615112,
-0.22627699375152588,
-0.9394199252128601,
-0.4321941137313843,
-0.5650851130485535,
-0.4101753532886505,
-0.8888213634490967,
-0.490390807390213,
0.2269132435321808,
0.1546292006969452,
-0.22272692620754242,
0.40261682868003845,
-0.9280204176902771,
0.2280130237340927,
0.3698674440383911,
0.2746468186378479,
-0.08361499011516571,
0.08038362860679626,
0.11102952063083649,
0.1966603398323059,
-0.5877580046653748,
-0.2656760513782501,
1.113197684288025,
0.48652565479278564,
0.5768227577209473,
-0.03677324578166008,
0.7220378518104553,
0.01994355581700802,
0.24826546013355255,
-0.48624011874198914,
0.4725513160228729,
-0.027267947793006897,
-0.530387282371521,
-0.1585593968629837,
-0.5231141448020935,
-0.8328433632850647,
-0.15782088041305542,
-0.47004246711730957,
-0.7007139325141907,
0.4159080386161804,
0.1702660322189331,
-0.252827525138855,
0.39993005990982056,
-0.5895674228668213,
0.8657904267311096,
-0.014823509380221367,
-0.5030997395515442,
0.34922367334365845,
-0.9743213057518005,
0.2426031529903412,
0.23108303546905518,
0.2975439727306366,
-0.37718191742897034,
0.10555405914783478,
1.029578685760498,
-0.7536255717277527,
0.8283751010894775,
-0.33288922905921936,
0.1185661032795906,
0.5256006717681885,
-0.3450416624546051,
0.5501868724822998,
0.1710664927959442,
-0.23006634414196014,
0.3257425129413605,
-0.08022791147232056,
-0.44800469279289246,
-0.4100765287876129,
0.7247577905654907,
-0.6832638382911682,
-0.0274277962744236,
-0.37805408239364624,
-0.4590088427066803,
0.050509676337242126,
0.10286511480808258,
0.25528228282928467,
0.3312666118144989,
0.01756829395890236,
0.0630606934428215,
0.4687420725822449,
-0.14964154362678528,
0.27792003750801086,
0.030962783843278885,
-0.10434450954198837,
-0.7497104406356812,
0.8565053939819336,
0.1166888177394867,
0.05402028560638428,
-0.006382815074175596,
0.46072572469711304,
-0.42103704810142517,
-0.13964667916297913,
-0.6219656467437744,
0.4868704378604889,
-0.38088512420654297,
-0.32614627480506897,
-0.5471389293670654,
-0.09713362157344818,
-0.675082802772522,
-0.10044218599796295,
-0.20656654238700867,
-0.49011147022247314,
-0.37590813636779785,
-0.1992024928331375,
1.0391030311584473,
0.4421095848083496,
-0.7100861668586731,
0.11956705152988434,
-0.5487244129180908,
0.3141321837902069,
0.04955693334341049,
0.6633313298225403,
-0.1415151059627533,
-0.35880252718925476,
-0.17447279393672943,
0.059055496007204056,
-0.17470529675483704,
-0.7096253633499146,
0.30665379762649536,
-0.02414940670132637,
0.3532707393169403,
0.11234301328659058,
0.061096422374248505,
0.7187554240226746,
-0.07978169620037079,
0.6754332184791565,
0.3103465437889099,
-0.8599239587783813,
0.6877289414405823,
-0.592147946357727,
0.18387024104595184,
0.6445478200912476,
0.31072521209716797,
-0.6473591327667236,
-0.11898203939199448,
-0.9434199929237366,
-0.7957046031951904,
0.826446533203125,
0.48058992624282837,
0.07326417416334152,
0.22908124327659607,
0.5229262709617615,
-0.23775479197502136,
0.2763312757015228,
-0.6812762022018433,
-0.8583962917327881,
-0.359038770198822,
-0.26160961389541626,
-0.08184467256069183,
-0.10220084339380264,
-0.26123785972595215,
-0.6675333380699158,
0.7635884881019592,
-0.12272065132856369,
0.3667782247066498,
0.41865238547325134,
0.41711729764938354,
-0.27727964520454407,
0.05844644829630852,
0.34328848123550415,
0.39723485708236694,
-0.28155165910720825,
-0.31199896335601807,
-0.1561308205127716,
-0.616682231426239,
-0.14573043584823608,
0.5272940993309021,
-0.3645155727863312,
-0.06500891596078873,
0.26650720834732056,
0.8712431192398071,
-0.04494820907711983,
-0.23115003108978271,
0.5026409029960632,
-0.10730372369289398,
-0.3592609167098999,
-0.40784239768981934,
-0.007043136283755302,
0.1697174459695816,
0.20315079391002655,
0.0985298827290535,
0.04681532084941864,
-0.08917586505413055,
-0.4697478413581848,
0.4045863151550293,
0.31928884983062744,
-0.4367978274822235,
-0.5404327511787415,
0.6732447147369385,
0.08437018096446991,
-0.14736872911453247,
0.4724451005458832,
-0.21119040250778198,
-0.644163966178894,
0.7479544878005981,
0.09814269095659256,
0.8285006880760193,
-0.18620245158672333,
0.3639492690563202,
0.7811518907546997,
0.19487538933753967,
-0.0823354497551918,
0.5995206832885742,
-0.12989108264446259,
-0.5738918781280518,
-0.029457563534379005,
-0.6518188714981079,
-0.08638038486242294,
0.1112699806690216,
-0.7972337603569031,
0.42550167441368103,
-0.4328421950340271,
-0.2169506847858429,
0.06051583215594292,
0.4138505160808563,
-0.7143282294273376,
0.20371785759925842,
-0.058813270181417465,
0.9951218962669373,
-1.088254451751709,
0.4631377160549164,
0.7148364186286926,
-0.6500734090805054,
-1.2195650339126587,
-0.1712445616722107,
0.24304701387882233,
-0.4886670410633087,
0.26346850395202637,
0.13651806116104126,
0.5196394324302673,
-0.08925832062959671,
-0.891703188419342,
-0.6705431342124939,
1.1345179080963135,
-0.029194198548793793,
-0.2680133283138275,
0.3101199269294739,
0.09752096235752106,
0.6158720254898071,
-0.43637707829475403,
0.34127911925315857,
0.6145627498626709,
0.7064930200576782,
0.3455316722393036,
-0.7955309152603149,
0.26825714111328125,
-0.6444075703620911,
-0.2220911979675293,
0.07689220458269119,
-1.0116260051727295,
0.7554332613945007,
-0.20082852244377136,
-0.05516008287668228,
-0.0034450364764779806,
0.6195840835571289,
0.46962064504623413,
0.38176894187927246,
0.4878843426704407,
0.7857648134231567,
0.7934703826904297,
-0.4001046419143677,
1.2238032817840576,
-0.20735257863998413,
0.6456977128982544,
0.7982945442199707,
0.05988109111785889,
0.4911133348941803,
0.25523611903190613,
-0.3450354337692261,
0.48093998432159424,
0.6384528875350952,
-0.4705193340778351,
0.2161329835653305,
0.40842363238334656,
-0.029369469732046127,
-0.08797575533390045,
-0.275667667388916,
-0.5763968229293823,
0.30431488156318665,
0.1834384649991989,
-0.32255253195762634,
0.014671885408461094,
-0.01957588642835617,
0.3905196785926819,
-0.06258094310760498,
-0.26781654357910156,
0.63896644115448,
0.006049392279237509,
-0.382411926984787,
0.5210633277893066,
-0.24685822427272797,
0.688301146030426,
-0.5330642461776733,
0.09799571335315704,
-0.11201561242341995,
0.08993645757436752,
-0.5930032134056091,
-1.0322539806365967,
0.39633843302726746,
0.007894732058048248,
-0.2649591565132141,
-0.30625081062316895,
0.6798499226570129,
-0.4857572615146637,
-0.8224055171012878,
0.17606478929519653,
0.21332290768623352,
0.3267246186733246,
0.14309722185134888,
-1.2934030294418335,
0.5754527449607849,
0.1452980488538742,
-0.4432995021343231,
0.11231344938278198,
0.46059542894363403,
0.15501151978969574,
0.5373746156692505,
0.7424695491790771,
0.26543670892715454,
-0.26255151629447937,
0.08063504099845886,
1.1014275550842285,
-0.5614414215087891,
-0.4803425073623657,
-0.7334945201873779,
0.9368308186531067,
-0.38316968083381653,
-0.4083249866962433,
0.7390404939651489,
0.7332675457000732,
0.8698482513427734,
-0.03570358827710152,
0.7703184485435486,
-0.6650227904319763,
0.7115307450294495,
-0.25263482332229614,
0.951893150806427,
-0.7527824640274048,
-0.0018723804969340563,
-0.797947108745575,
-0.49123987555503845,
-0.4261196553707123,
0.6665098071098328,
-0.20310211181640625,
0.21301592886447906,
0.23653653264045715,
0.8943440914154053,
0.013665824197232723,
0.06798800081014633,
-0.20742256939411163,
0.2933422327041626,
0.34264349937438965,
0.5733258128166199,
0.4417232275009155,
-0.9051491022109985,
0.37966060638427734,
-0.7254363894462585,
-0.3206203281879425,
-0.0010207577142864466,
-0.869478166103363,
-0.9013018012046814,
-0.9567633271217346,
-0.7126131653785706,
-0.7635446190834045,
-0.27763569355010986,
1.0138553380966187,
0.7484837770462036,
-0.7027102112770081,
-0.2449420541524887,
0.054976195096969604,
0.3233398199081421,
-0.061400920152664185,
-0.3184139132499695,
0.679918646812439,
0.39638882875442505,
-0.7071107625961304,
-0.18826428055763245,
0.008489161729812622,
0.29099419713020325,
0.03785356879234314,
-0.07144654542207718,
-0.15828946232795715,
-0.2962247133255005,
0.3384261429309845,
0.47322985529899597,
-0.3626350164413452,
-0.14352521300315857,
-0.1851598620414734,
0.04141059145331383,
0.19936062395572662,
0.4272269606590271,
-0.5031784176826477,
0.22505143284797668,
0.6731145977973938,
0.14724774658679962,
0.3903655707836151,
0.2820875346660614,
0.02682500332593918,
-0.44200173020362854,
0.06078609824180603,
0.0034525999799370766,
0.27437856793403625,
0.45043352246284485,
-0.47552475333213806,
0.7998261451721191,
0.5247634053230286,
-0.5350337028503418,
-0.8629452586174011,
-0.13128818571567535,
-1.3280818462371826,
0.12026284635066986,
1.0600799322128296,
-0.04968682676553726,
-0.5855986475944519,
0.06980308890342712,
-0.16921167075634003,
0.16843512654304504,
-0.6045425534248352,
0.554754912853241,
0.5583876967430115,
-0.09043814241886139,
0.07986963540315628,
-0.3722018599510193,
0.7128556966781616,
-0.03772763907909393,
-1.049437403678894,
0.17903895676136017,
0.45506685972213745,
0.43790027499198914,
0.4017738401889801,
0.7581009864807129,
-0.2747122049331665,
0.08764098584651947,
-0.08070427179336548,
0.26443982124328613,
-0.2572127878665924,
-0.011989529244601727,
-0.40050187706947327,
-0.11596480011940002,
-0.5465789437294006,
-0.22298653423786163
]
|
huggingartists/led-zeppelin | huggingartists | 2022-10-25T09:34:41Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/led-zeppelin"
## 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.30572 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('https://images.genius.com/e4763bba12e6411077a3e573cd290da0.433x433x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/led-zeppelin">
<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">Led Zeppelin</div>
<a href="https://genius.com/artists/led-zeppelin">
<div style="text-align: center; font-size: 14px;">@led-zeppelin</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/led-zeppelin).
### 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/led-zeppelin")
```
## 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|
|------:|---------:|---:|
|263| -| -|
'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/led-zeppelin")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6411928534507751,
-0.587348222732544,
0.029782801866531372,
0.29265251755714417,
-0.27073758840560913,
-0.009979053400456905,
-0.29511401057243347,
-0.4236869513988495,
0.8184012770652771,
0.3226257264614105,
-0.9521525502204895,
-0.8358498215675354,
-0.46851810812950134,
0.1248827800154686,
-0.12522046267986298,
1.2750426530838013,
-0.17236743867397308,
-0.3571619391441345,
-0.2290676385164261,
-0.2391940802335739,
-0.3046658933162689,
-0.28432244062423706,
-0.30542823672294617,
-0.36846959590911865,
0.3763607144355774,
0.4158468246459961,
0.7473951578140259,
0.8936493396759033,
0.5669453740119934,
0.3110969662666321,
-0.20141875743865967,
-0.024567393586039543,
-0.4059838652610779,
-0.12141070514917374,
0.17197465896606445,
-0.24738511443138123,
-0.6681069135665894,
0.23719647526741028,
0.5768288373947144,
0.4298972487449646,
-0.10474122315645218,
0.4490860104560852,
0.03840182349085808,
0.8511856198310852,
-0.1670169234275818,
0.49195167422294617,
-0.28483182191848755,
-0.10791762918233871,
-0.32838672399520874,
0.0077578481286764145,
0.18015863001346588,
-0.5976501107215881,
0.0017628185451030731,
-0.7766782641410828,
0.09531579911708832,
0.06367944926023483,
0.9973636269569397,
0.07782484591007233,
0.10051882266998291,
-0.22674685716629028,
-0.17576083540916443,
0.5053948760032654,
-0.5916656851768494,
0.03221666067838669,
0.48889288306236267,
0.18789982795715332,
-0.006777147762477398,
-0.5879627466201782,
-0.6803715229034424,
0.08606130629777908,
-0.1407187134027481,
0.3132579028606415,
-0.16109204292297363,
-0.2686018943786621,
0.5020831823348999,
0.6259984970092773,
-0.5707167387008667,
-0.19184301793575287,
-0.5382425785064697,
-0.11117710173130035,
1.1501141786575317,
0.0907764807343483,
0.39102989435195923,
-0.551406979560852,
-0.22217123210430145,
-0.3936541676521301,
-0.36649298667907715,
0.31698575615882874,
0.5370477437973022,
0.48119643330574036,
-1.0131243467330933,
0.6410682201385498,
-0.1576341688632965,
0.5932645797729492,
0.15513068437576294,
0.009670618921518326,
0.7957988977432251,
-0.4044865071773529,
-0.12889648973941803,
-0.10550142079591751,
1.0254716873168945,
0.6853217482566833,
0.14764781296253204,
0.09061890840530396,
-0.09818273037672043,
0.04646113142371178,
-0.1948833018541336,
-0.8473070859909058,
-0.4600139260292053,
0.714547336101532,
-0.614422619342804,
-0.5423529148101807,
0.1473740190267563,
-1.0165514945983887,
-0.24194221198558807,
-0.2873067259788513,
0.25493428111076355,
-0.3709312081336975,
-0.5394603610038757,
0.19028033316135406,
-0.3536109924316406,
0.12026262283325195,
0.07703961431980133,
-0.5923393964767456,
0.09707717597484589,
0.6095046401023865,
0.8107771873474121,
0.15928632020950317,
-0.2945062518119812,
-0.27688068151474,
-0.10578390955924988,
-0.14070256054401398,
0.6466764211654663,
-0.23707494139671326,
-0.3882310688495636,
-0.0770406499505043,
0.3418329358100891,
0.03139517828822136,
-0.30721229314804077,
0.8829230070114136,
-0.059535492211580276,
0.20163805782794952,
-0.5698328614234924,
-0.4720054268836975,
-0.05803195387125015,
0.1959730088710785,
-0.7891042232513428,
1.0362272262573242,
0.30950143933296204,
-0.9737536907196045,
0.243873730301857,
-0.7808921933174133,
-0.3325660228729248,
0.08660020679235458,
-0.014179793186485767,
-0.7570009231567383,
-0.21720413863658905,
0.18657062947750092,
0.6934661269187927,
-0.35760408639907837,
0.031578004360198975,
-0.5703092217445374,
-0.15461596846580505,
0.30585038661956787,
0.20839670300483704,
1.2504727840423584,
0.09681882709264755,
-0.17423561215400696,
0.15745823085308075,
-0.9839973449707031,
0.08354759216308594,
0.38139840960502625,
-0.2544822096824646,
-0.009116793051362038,
-0.24086564779281616,
0.4955490529537201,
0.24454371631145477,
0.03345957398414612,
-0.551227867603302,
0.38993018865585327,
-0.20380377769470215,
0.4363028109073639,
0.8408917188644409,
0.02747914381325245,
0.2898147404193878,
-0.6490209102630615,
0.3989173173904419,
0.08632455766201019,
0.31243258714675903,
-0.010961751453578472,
-0.5513257384300232,
-0.44601455330848694,
-0.273447185754776,
0.2542878985404968,
0.45653194189071655,
-0.7421282529830933,
1.0562456846237183,
-0.3711881935596466,
-0.8988714218139648,
-0.5983307957649231,
0.1550554633140564,
0.160303995013237,
0.5186804533004761,
0.40082019567489624,
-0.4445858597755432,
-0.5606653690338135,
-0.6276916265487671,
0.07008734345436096,
-0.2929334044456482,
0.11178775876760483,
0.49565181136131287,
0.7829901576042175,
-0.29981228709220886,
0.8605494499206543,
-0.6766946911811829,
-0.3204995095729828,
-0.25984033942222595,
-0.31097063422203064,
0.4734591543674469,
0.824281632900238,
0.7136916518211365,
-0.8916269540786743,
-0.44493982195854187,
-0.26921841502189636,
-0.7257818579673767,
-0.11580269783735275,
-0.08468673378229141,
-0.23417271673679352,
0.017646363005042076,
0.07577148824930191,
-0.7614485621452332,
0.4588749408721924,
0.4883120059967041,
-0.646397054195404,
0.5576200485229492,
0.0998353511095047,
0.04756050556898117,
-1.1876378059387207,
0.3146568238735199,
0.27185291051864624,
0.0719320997595787,
-0.5689289569854736,
-0.2702486515045166,
-0.043371737003326416,
-0.015448912046849728,
-0.10933747887611389,
0.5811523199081421,
-0.3519057035446167,
0.28350213170051575,
0.14078263938426971,
0.08975499868392944,
0.05396106094121933,
0.4425784647464752,
-0.08311039954423904,
0.3430408835411072,
1.0773078203201294,
-0.4486648142337799,
0.7721561193466187,
0.6115427017211914,
-0.28962063789367676,
0.8196316361427307,
-0.8498725295066833,
0.011340415105223656,
-0.2889319062232971,
0.4641502797603607,
-0.8402940034866333,
-0.56773841381073,
0.7774604558944702,
-0.6632058024406433,
0.3840784728527069,
-0.2159757912158966,
-0.600288987159729,
-0.8048993349075317,
-0.6259674429893494,
0.16968588531017303,
0.5790837407112122,
-0.41381552815437317,
0.3885035216808319,
0.6166517734527588,
0.10383343696594238,
-0.2837351858615875,
-0.8051936030387878,
-0.1528821438550949,
-0.42347490787506104,
-0.8154234886169434,
0.5142916440963745,
-0.327927827835083,
-0.11444542557001114,
0.12617062032222748,
0.05339518189430237,
0.10027123242616653,
-0.03263574093580246,
0.3946570158004761,
0.3104983866214752,
0.08420412987470627,
0.08135367184877396,
-0.13592274487018585,
-0.22480227053165436,
0.0900367945432663,
-0.24309971928596497,
0.29583436250686646,
-0.2781910002231598,
-0.12931911647319794,
-0.7002066969871521,
0.16403509676456451,
0.41172564029693604,
-0.22449049353599548,
0.6372627019882202,
0.7600430846214294,
-0.21432989835739136,
-0.05264559015631676,
-0.46067172288894653,
-0.17472702264785767,
-0.4292570650577545,
0.07373225688934326,
-0.2174089401960373,
-0.5883178114891052,
0.8986669182777405,
0.21616394817829132,
0.14218226075172424,
0.693724513053894,
0.4743225574493408,
-0.09627222269773483,
0.6285807490348816,
0.36718276143074036,
-0.2974737286567688,
0.5286792516708374,
-0.6391577124595642,
-0.2710760831832886,
-0.8033302426338196,
-0.37192943692207336,
-0.4924457371234894,
-0.4371022880077362,
-0.8980869650840759,
-0.46171656250953674,
0.22633540630340576,
0.13155435025691986,
-0.27401480078697205,
0.47916242480278015,
-0.9493629336357117,
0.2150508016347885,
0.366067498922348,
0.2794450521469116,
-0.11631175130605698,
0.08204362541437149,
0.1583639234304428,
0.20557963848114014,
-0.5519527792930603,
-0.22169938683509827,
1.145904541015625,
0.49346762895584106,
0.5897843837738037,
-0.012786629609763622,
0.7701956033706665,
0.0952029749751091,
0.17080464959144592,
-0.5188396573066711,
0.5018173456192017,
0.07669812440872192,
-0.5516397356987,
-0.1699240803718567,
-0.5287426114082336,
-0.8725143074989319,
-0.13171295821666718,
-0.36910369992256165,
-0.6280252933502197,
0.43377745151519775,
0.1116417869925499,
-0.23853269219398499,
0.359689861536026,
-0.5687748193740845,
0.8223116993904114,
-0.09645542502403259,
-0.40726032853126526,
0.2468569278717041,
-1.0205963850021362,
0.13104073703289032,
0.186491921544075,
0.30180564522743225,
-0.36356693506240845,
0.0692107230424881,
1.0636035203933716,
-0.708706796169281,
0.8717042207717896,
-0.3784908652305603,
0.07081586122512817,
0.5644184947013855,
-0.364910751581192,
0.4930747151374817,
0.12218751013278961,
-0.30808353424072266,
0.36913299560546875,
-0.03354649618268013,
-0.44594094157218933,
-0.43702730536460876,
0.6498717665672302,
-0.7068385481834412,
-0.05700869858264923,
-0.35674676299095154,
-0.4674859344959259,
0.08470897376537323,
0.1982421875,
0.26525986194610596,
0.33870354294776917,
0.03669213503599167,
0.1784004420042038,
0.4800373911857605,
-0.16325949132442474,
0.28757673501968384,
0.03550691902637482,
-0.15940940380096436,
-0.8274725079536438,
0.8432393670082092,
0.19460566341876984,
0.05180523172020912,
-0.04459291696548462,
0.3761110305786133,
-0.3767043352127075,
-0.1749364733695984,
-0.6817905306816101,
0.45178496837615967,
-0.48117971420288086,
-0.32323601841926575,
-0.461237370967865,
-0.1320270448923111,
-0.650445818901062,
-0.17962151765823364,
-0.18203915655612946,
-0.5396567583084106,
-0.3558759391307831,
-0.26612311601638794,
1.1069108247756958,
0.44179201126098633,
-0.6517705321311951,
0.18759587407112122,
-0.5282027721405029,
0.31689679622650146,
-0.10055022686719894,
0.6405220031738281,
-0.11424864083528519,
-0.3487664461135864,
-0.1822553426027298,
0.080507293343544,
-0.18133018910884857,
-0.7652517557144165,
0.2384660691022873,
-0.030033307150006294,
0.4066590368747711,
0.13742245733737946,
0.09410230815410614,
0.6994496583938599,
-0.124067522585392,
0.6976009011268616,
0.3145311176776886,
-0.8137872815132141,
0.7158159017562866,
-0.5188316702842712,
0.07111441344022751,
0.7091691493988037,
0.35700884461402893,
-0.6213684678077698,
-0.09738645702600479,
-0.9379189014434814,
-0.8761879801750183,
0.796156108379364,
0.4428567886352539,
0.0459538958966732,
0.24385884404182434,
0.5342309474945068,
-0.16740642488002777,
0.3250883221626282,
-0.7306202054023743,
-0.9311573505401611,
-0.42846885323524475,
-0.3364529311656952,
-0.10986287891864777,
-0.04000936076045036,
-0.2851789593696594,
-0.6740042567253113,
0.8044158816337585,
-0.07926221191883087,
0.24841250479221344,
0.4009617567062378,
0.4164979159832001,
-0.24201177060604095,
-0.024189133197069168,
0.20110271871089935,
0.37168705463409424,
-0.2794642448425293,
-0.28385648131370544,
-0.22034257650375366,
-0.5776947736740112,
-0.09365913271903992,
0.5276012420654297,
-0.41978099942207336,
-0.029448240995407104,
0.30911490321159363,
0.8657947778701782,
-0.07819309830665588,
-0.27519407868385315,
0.5478713512420654,
0.009712623432278633,
-0.2647272050380707,
-0.39025619626045227,
0.03537397459149361,
0.11519178003072739,
0.20818015933036804,
0.12943406403064728,
0.05025820806622505,
-0.1188623383641243,
-0.44041696190834045,
0.476112425327301,
0.2919732630252838,
-0.41766035556793213,
-0.45313671231269836,
0.6104456186294556,
0.12776333093643188,
-0.179530069231987,
0.4499480426311493,
-0.14056824147701263,
-0.5996958613395691,
0.7950509786605835,
0.1533789038658142,
0.8258858919143677,
-0.08163003623485565,
0.2766360640525818,
0.6932433843612671,
0.2501559257507324,
-0.01456129178404808,
0.5214044451713562,
-0.2434893697500229,
-0.5918927788734436,
0.03713175281882286,
-0.5692828893661499,
-0.0818735808134079,
0.03366757556796074,
-0.8000646829605103,
0.4369675815105438,
-0.4630157947540283,
-0.18459083139896393,
0.07153624296188354,
0.36129996180534363,
-0.7128238081932068,
0.19966496527194977,
-0.1526736319065094,
1.0647386312484741,
-1.0347375869750977,
0.47900450229644775,
0.6595523357391357,
-0.763314425945282,
-1.1265184879302979,
-0.06886231154203415,
0.24292205274105072,
-0.5744397640228271,
0.2648508846759796,
0.25054726004600525,
0.5267977714538574,
-0.013808193616569042,
-0.8419122695922852,
-0.6474137902259827,
1.2027947902679443,
-0.07020692527294159,
-0.25403162837028503,
0.3186028301715851,
0.09676209837198257,
0.5937777161598206,
-0.3108183741569519,
0.3093227446079254,
0.6294798851013184,
0.6808832287788391,
0.3170050382614136,
-0.7384865283966064,
0.30641940236091614,
-0.5608575344085693,
-0.20615951716899872,
0.013912957161664963,
-1.0237420797348022,
0.6988219618797302,
-0.11420461535453796,
-0.0909213200211525,
-0.040578506886959076,
0.6751899123191833,
0.49461907148361206,
0.35654187202453613,
0.4701918065547943,
0.7256830334663391,
0.857261598110199,
-0.3449282944202423,
1.2052829265594482,
-0.25181737542152405,
0.6524000763893127,
0.701812744140625,
-0.030542215332388878,
0.45989730954170227,
0.2758362889289856,
-0.4014047086238861,
0.5047974586486816,
0.7204468250274658,
-0.49424296617507935,
0.3176836669445038,
0.43614518642425537,
-0.0626024380326271,
-0.01195099763572216,
-0.20419202744960785,
-0.663804829120636,
0.24003897607326508,
0.19735147058963776,
-0.3242523670196533,
0.02143583633005619,
-0.03793291375041008,
0.2969069182872772,
-0.09961956739425659,
-0.2894634008407593,
0.6624550819396973,
0.004129807930439711,
-0.37310701608657837,
0.5720229148864746,
-0.228496715426445,
0.7528661489486694,
-0.5391110181808472,
0.1252225637435913,
-0.0812852755188942,
0.11840865761041641,
-0.6213864088058472,
-1.134133219718933,
0.3354707658290863,
-0.052838120609521866,
-0.2611241042613983,
-0.34334129095077515,
0.6607648134231567,
-0.44942909479141235,
-0.7806960940361023,
0.24242369830608368,
0.18225637078285217,
0.32842934131622314,
0.17252127826213837,
-1.2149436473846436,
0.5558926463127136,
0.2090681940317154,
-0.4803694486618042,
0.05348868668079376,
0.5343959331512451,
0.2662908136844635,
0.5439485311508179,
0.7295008301734924,
0.33294767141342163,
-0.21412160992622375,
0.08502240478992462,
1.099921703338623,
-0.6294636130332947,
-0.4710999131202698,
-0.7418310642242432,
0.8518033027648926,
-0.38526615500450134,
-0.40122586488723755,
0.7713311910629272,
0.8139849305152893,
0.9001317620277405,
0.008510299026966095,
0.8350896835327148,
-0.6271291971206665,
0.682073175907135,
-0.2435213029384613,
0.9810634255409241,
-0.714162290096283,
0.04560957849025726,
-0.7295037508010864,
-0.5011183023452759,
-0.4050469398498535,
0.6727257966995239,
-0.12979963421821594,
0.22352401912212372,
0.21471041440963745,
0.9411124587059021,
0.04634365066885948,
0.17120219767093658,
-0.30349627137184143,
0.2820824980735779,
0.4194903075695038,
0.5100062489509583,
0.40588364005088806,
-0.8679722547531128,
0.37003928422927856,
-0.7705188393592834,
-0.36715924739837646,
0.017800988629460335,
-0.8230955004692078,
-0.857961118221283,
-0.9105634093284607,
-0.6741733551025391,
-0.7786548733711243,
-0.2986679971218109,
1.0406460762023926,
0.6663031578063965,
-0.7171410918235779,
-0.2585332989692688,
-0.0479484461247921,
0.30584093928337097,
-0.09599223732948303,
-0.33278530836105347,
0.7293531894683838,
0.36317628622055054,
-0.6004043221473694,
-0.10426421463489532,
0.043109312653541565,
0.28527194261550903,
0.00867405254393816,
-0.05926497280597687,
-0.0792284682393074,
-0.30819252133369446,
0.3379664421081543,
0.4255044758319855,
-0.42307955026626587,
-0.1267644762992859,
-0.2911439836025238,
0.03390280529856682,
0.2001945972442627,
0.45202353596687317,
-0.5281063318252563,
0.18648862838745117,
0.6494464874267578,
0.30822211503982544,
0.40737754106521606,
0.20850008726119995,
0.022704876959323883,
-0.4976070821285248,
0.11481508612632751,
0.04544398561120033,
0.30655229091644287,
0.3839724659919739,
-0.44934964179992676,
0.7688312530517578,
0.5665791630744934,
-0.5583708882331848,
-0.891461968421936,
-0.09504605084657669,
-1.3342524766921997,
0.07487936317920685,
1.1142024993896484,
0.0015850987983867526,
-0.4716655910015106,
0.05137358233332634,
-0.2017374485731125,
0.1862863302230835,
-0.5651159882545471,
0.5101485252380371,
0.528577983379364,
-0.12922802567481995,
0.13931632041931152,
-0.354312926530838,
0.7106788754463196,
-0.021447934210300446,
-0.9854146838188171,
0.24596479535102844,
0.5313248038291931,
0.38952895998954773,
0.3563728332519531,
0.7654450535774231,
-0.2130073606967926,
0.08936044573783875,
-0.047910984605550766,
0.24305075407028198,
-0.21104930341243744,
0.006753915920853615,
-0.3695191442966461,
-0.07838054746389389,
-0.5327827334403992,
-0.21679089963436127
]
|
huggingartists/lil-nas-x | huggingartists | 2022-10-25T09:34:54Z | 260 | 1 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/lil-nas-x"
## 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.182872 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('https://images.genius.com/f50e1ac333da1f744f98eec38e44dd29.640x640x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/lil-nas-x">
<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">Lil Nas X</div>
<a href="https://genius.com/artists/lil-nas-x">
<div style="text-align: center; font-size: 14px;">@lil-nas-x</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/lil-nas-x).
### 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/lil-nas-x")
```
## 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/lil-nas-x")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6425692439079285,
-0.49437740445137024,
0.08083173632621765,
0.2603687047958374,
-0.2173488885164261,
0.014822079800069332,
-0.27388110756874084,
-0.4623925983905792,
0.9441555142402649,
0.27745935320854187,
-0.9556461572647095,
-0.7969333529472351,
-0.5547910332679749,
0.11752274632453918,
-0.12408001720905304,
1.2996227741241455,
-0.17736351490020752,
-0.3916826844215393,
-0.27894893288612366,
-0.22224506735801697,
-0.2536083459854126,
-0.32652679085731506,
-0.31816405057907104,
-0.2615204453468323,
0.38268205523490906,
0.538555383682251,
0.7238352298736572,
0.8946416974067688,
0.5111315250396729,
0.35925567150115967,
-0.10454512387514114,
0.03546791896224022,
-0.39298513531684875,
-0.0617111474275589,
0.20525160431861877,
-0.3100336790084839,
-0.72471022605896,
0.2140529900789261,
0.585940957069397,
0.3819912374019623,
-0.025221627205610275,
0.4813348948955536,
0.028553683310747147,
0.8339570760726929,
-0.30549973249435425,
0.44350337982177734,
-0.24198292195796967,
-0.14372999966144562,
-0.3224882185459137,
0.03703806549310684,
0.2404121458530426,
-0.6222624182701111,
-0.011450963094830513,
-0.7728288769721985,
0.04484230652451515,
0.01914353482425213,
1.0612753629684448,
0.049665965139865875,
0.15008732676506042,
-0.196312814950943,
-0.14349275827407837,
0.5385624170303345,
-0.606105387210846,
-0.003839419689029455,
0.560934841632843,
0.13023720681667328,
0.009795096702873707,
-0.6586708426475525,
-0.6152347922325134,
0.065156951546669,
-0.16310332715511322,
0.25906291604042053,
-0.16532739996910095,
-0.3179067075252533,
0.5609921813011169,
0.5939581990242004,
-0.4740159809589386,
-0.25123336911201477,
-0.5222342610359192,
-0.11142370849847794,
1.1772730350494385,
0.16015702486038208,
0.48675087094306946,
-0.4890129268169403,
-0.2611936628818512,
-0.3791699707508087,
-0.2800859212875366,
0.36483877897262573,
0.5426239967346191,
0.44912266731262207,
-1.0236676931381226,
0.6031370162963867,
-0.18041040003299713,
0.5050694346427917,
0.163490891456604,
-0.08798279613256454,
0.8089178800582886,
-0.4225822687149048,
-0.13358767330646515,
-0.1461457908153534,
1.1085844039916992,
0.6679867506027222,
0.18119946122169495,
0.10657311975955963,
-0.10697819292545319,
-0.011233474127948284,
-0.1664087027311325,
-0.8292658925056458,
-0.42037710547447205,
0.5883959531784058,
-0.5732543468475342,
-0.5857616066932678,
0.1235552430152893,
-0.9831242561340332,
-0.20875585079193115,
-0.2782135307788849,
0.28400880098342896,
-0.35096967220306396,
-0.5164163112640381,
0.13427257537841797,
-0.2567310333251953,
0.08712435513734818,
0.03788585588335991,
-0.6270194053649902,
0.2266211211681366,
0.5553172826766968,
0.825387716293335,
0.21168239414691925,
-0.2738185226917267,
-0.32108980417251587,
-0.22076082229614258,
-0.1257443130016327,
0.6046798229217529,
-0.22248025238513947,
-0.358185738325119,
-0.18786165118217468,
0.3265632688999176,
-0.08542099595069885,
-0.2393966019153595,
0.9401111006736755,
0.03022768907248974,
0.15110881626605988,
-0.6080131530761719,
-0.43377813696861267,
0.029123911634087563,
0.2905982434749603,
-0.786334753036499,
1.0158582925796509,
0.3233923316001892,
-1.0439014434814453,
0.18481029570102692,
-0.8182687163352966,
-0.25942134857177734,
0.01772213540971279,
0.05519406124949455,
-0.8063042163848877,
-0.172632098197937,
0.1958722025156021,
0.712734580039978,
-0.3029170334339142,
-0.01990988291800022,
-0.5974838137626648,
-0.14007651805877686,
0.37946248054504395,
0.2424888014793396,
1.2188854217529297,
0.0800328254699707,
-0.1629953533411026,
0.1290881484746933,
-0.9212058186531067,
0.17073248326778412,
0.4629971385002136,
-0.1043422669172287,
-0.15439872443675995,
-0.281345397233963,
0.3865845203399658,
0.3174405097961426,
0.04826219752430916,
-0.6167858839035034,
0.4458504021167755,
-0.2127760797739029,
0.43330779671669006,
0.7308713793754578,
-0.01586267538368702,
0.31663778424263,
-0.6760530471801758,
0.4423368573188782,
0.04430181905627251,
0.36865538358688354,
0.014106418937444687,
-0.5740935206413269,
-0.4958078861236572,
-0.283730149269104,
0.34039050340652466,
0.41744616627693176,
-0.6894879937171936,
0.9459959864616394,
-0.3560126721858978,
-0.8062363266944885,
-0.6695698499679565,
0.14734894037246704,
0.18613408505916595,
0.5103788375854492,
0.3719841539859772,
-0.434129536151886,
-0.6343285441398621,
-0.6639267206192017,
0.18718130886554718,
-0.26743999123573303,
0.21531891822814941,
0.3981971740722656,
0.8144761919975281,
-0.24379780888557434,
0.8350998163223267,
-0.6650432348251343,
-0.27413859963417053,
-0.2769167125225067,
-0.32141008973121643,
0.36250510811805725,
0.7773537039756775,
0.7467899918556213,
-0.8501638174057007,
-0.5115700960159302,
-0.27322888374328613,
-0.6895819902420044,
-0.12285131961107254,
-0.07479751110076904,
-0.28291741013526917,
0.0001385153882438317,
0.1716347634792328,
-0.7035924196243286,
0.5802467465400696,
0.4936695992946625,
-0.6693634390830994,
0.6355307698249817,
0.10009603947401047,
-0.0008446567808277905,
-1.2450282573699951,
0.36417585611343384,
0.2365557998418808,
0.02440282702445984,
-0.6442771553993225,
-0.1764083057641983,
-0.05079861357808113,
0.029806610196828842,
-0.1028047427535057,
0.6243340373039246,
-0.3396202623844147,
0.25075462460517883,
0.09917562454938889,
0.08253572881221771,
0.12641245126724243,
0.4346943199634552,
-0.07056984305381775,
0.3120085597038269,
1.004565715789795,
-0.40777504444122314,
0.6653685569763184,
0.6125624775886536,
-0.2538794279098511,
0.7775068283081055,
-0.8402332067489624,
0.009410932660102844,
-0.2496151179075241,
0.36315977573394775,
-0.8070203065872192,
-0.49632152915000916,
0.8554178476333618,
-0.7055990695953369,
0.4112429916858673,
-0.23539000749588013,
-0.5517207980155945,
-0.7968437075614929,
-0.7148030400276184,
0.148480623960495,
0.47165220975875854,
-0.3873518407344818,
0.3422383666038513,
0.5805178880691528,
0.06768544018268585,
-0.4046861529350281,
-0.7776942849159241,
-0.13784995675086975,
-0.38175538182258606,
-0.8194195628166199,
0.45189368724823,
-0.38556838035583496,
-0.14139802753925323,
0.13528718054294586,
0.10800249874591827,
0.10878482460975647,
0.05348433926701546,
0.44261106848716736,
0.3484575152397156,
0.050712812691926956,
0.02654990367591381,
-0.09601990133523941,
-0.23228684067726135,
0.14614635705947876,
-0.16971850395202637,
0.24881090223789215,
-0.2959285378456116,
-0.1337731033563614,
-0.6674321293830872,
0.2045399695634842,
0.47092193365097046,
-0.20038993656635284,
0.682815432548523,
0.8363571763038635,
-0.21738705039024353,
-0.015390690416097641,
-0.44070500135421753,
-0.1630905717611313,
-0.4146532118320465,
0.014495639130473137,
-0.2793925702571869,
-0.597636878490448,
0.9138463139533997,
0.29453736543655396,
0.11139470338821411,
0.6452486515045166,
0.4592965543270111,
-0.09697175770998001,
0.6563828587532043,
0.42434003949165344,
-0.3293280005455017,
0.501160204410553,
-0.7205681204795837,
-0.2096952348947525,
-0.8946375846862793,
-0.41873425245285034,
-0.48580679297447205,
-0.5641517043113708,
-0.8680208921432495,
-0.4358883798122406,
0.19252809882164001,
0.14094990491867065,
-0.2066030502319336,
0.4562763571739197,
-0.8670597076416016,
0.23628251254558563,
0.3906900882720947,
0.23331043124198914,
-0.105307437479496,
0.059922657907009125,
0.06466487050056458,
0.09228358417749405,
-0.5832964777946472,
-0.196681410074234,
1.1320152282714844,
0.535881757736206,
0.5437371730804443,
-0.054471228271722794,
0.865588366985321,
0.029714414849877357,
0.2247440665960312,
-0.5687905550003052,
0.4799702763557434,
0.026538001373410225,
-0.4967789947986603,
-0.16956551373004913,
-0.5107654929161072,
-0.8594896197319031,
-0.13982082903385162,
-0.4395124912261963,
-0.737768292427063,
0.5476588010787964,
0.05004892125725746,
-0.29284316301345825,
0.44050273299217224,
-0.5773648619651794,
0.7989308834075928,
-0.07994893938302994,
-0.45345747470855713,
0.3466571867465973,
-1.0130079984664917,
0.2788064181804657,
0.17897184193134308,
0.25514650344848633,
-0.4160621166229248,
0.003770826617255807,
1.003600001335144,
-0.8567869067192078,
0.9061692953109741,
-0.36098599433898926,
0.1214894950389862,
0.5571588277816772,
-0.3257201313972473,
0.4239734411239624,
0.13816119730472565,
-0.2833254933357239,
0.28814497590065,
0.018829625099897385,
-0.4119678735733032,
-0.4598069489002228,
0.7257896661758423,
-0.7455641031265259,
0.03363194316625595,
-0.3516404330730438,
-0.5078564882278442,
0.03727775067090988,
0.11978554725646973,
0.29555806517601013,
0.3729371130466461,
0.04257211461663246,
0.11163521558046341,
0.4560888111591339,
-0.12595894932746887,
0.2838405668735504,
0.0002634189440868795,
-0.15155784785747528,
-0.743217945098877,
0.9215058088302612,
0.15254603326320648,
0.0915219858288765,
-0.05057615041732788,
0.41565531492233276,
-0.35264724493026733,
-0.12027595192193985,
-0.6313010454177856,
0.45942386984825134,
-0.36987537145614624,
-0.4292333722114563,
-0.5413837432861328,
-0.23493950068950653,
-0.6281797885894775,
-0.13942736387252808,
-0.23299559950828552,
-0.5452730059623718,
-0.3306773602962494,
-0.20637285709381104,
1.0422425270080566,
0.4437274932861328,
-0.7624847888946533,
0.1487806886434555,
-0.5446118712425232,
0.3455941677093506,
-0.05137481912970543,
0.6240715980529785,
-0.07522543519735336,
-0.3550858199596405,
-0.22955605387687683,
0.11905276030302048,
-0.1711050122976303,
-0.6742537617683411,
0.313712477684021,
-0.006078315898776054,
0.3640589714050293,
0.16836096346378326,
0.14419278502464294,
0.6944676637649536,
-0.01748841255903244,
0.6015630960464478,
0.31162217259407043,
-0.821479320526123,
0.6773983240127563,
-0.4604699909687042,
0.13425874710083008,
0.740832507610321,
0.41740840673446655,
-0.6098602414131165,
-0.10179589688777924,
-0.9592435956001282,
-0.8560490608215332,
0.8034421801567078,
0.43464985489845276,
0.04977613314986229,
0.2217150181531906,
0.5480101704597473,
-0.1994640827178955,
0.2434656023979187,
-0.6662448644638062,
-0.9228856563568115,
-0.38097628951072693,
-0.28417307138442993,
-0.009934334084391594,
-0.13274018466472626,
-0.206641286611557,
-0.6933611035346985,
0.7886849045753479,
-0.12843894958496094,
0.3245125710964203,
0.40876635909080505,
0.41859129071235657,
-0.22666653990745544,
-0.01679104007780552,
0.29046598076820374,
0.31023988127708435,
-0.2929792106151581,
-0.3365127742290497,
-0.20759452879428864,
-0.6322892308235168,
-0.06566829979419708,
0.46717989444732666,
-0.4265561103820801,
-0.022721776738762856,
0.2868710160255432,
0.9001409411430359,
0.007577481679618359,
-0.22840088605880737,
0.600245475769043,
-0.12930414080619812,
-0.4397790729999542,
-0.34424903988838196,
0.030497409403324127,
0.15586911141872406,
0.21295516192913055,
0.047175996005535126,
0.07905638962984085,
-0.08623111993074417,
-0.43269896507263184,
0.4365117847919464,
0.25426724553108215,
-0.4069890081882477,
-0.500983715057373,
0.5795409083366394,
0.0510050393640995,
-0.08254779875278473,
0.47464296221733093,
-0.2200668901205063,
-0.6424322128295898,
0.7933750748634338,
0.11856861412525177,
0.8210830092430115,
-0.135743647813797,
0.3573404550552368,
0.773985743522644,
0.20654484629631042,
-0.047630276530981064,
0.5687233209609985,
-0.20500117540359497,
-0.6485634446144104,
-0.09436150640249252,
-0.5663605332374573,
-0.10336130857467651,
0.100222148001194,
-0.8621591925621033,
0.41722169518470764,
-0.5207601189613342,
-0.2758766710758209,
0.0378088504076004,
0.4270167648792267,
-0.708446741104126,
0.19289541244506836,
0.002187438076362014,
1.0564378499984741,
-1.0367087125778198,
0.5180715918540955,
0.6586288809776306,
-0.6765692234039307,
-1.1742706298828125,
-0.11288517713546753,
0.23243430256843567,
-0.5553991794586182,
0.3121708631515503,
0.16605332493782043,
0.4723787307739258,
-0.10652090609073639,
-0.8994753360748291,
-0.7196195721626282,
1.1654728651046753,
-0.008403985761106014,
-0.27430546283721924,
0.3257785737514496,
0.07018309831619263,
0.5930057168006897,
-0.3796141743659973,
0.3413701057434082,
0.6502113938331604,
0.6649900078773499,
0.27287590503692627,
-0.7301760911941528,
0.2761175036430359,
-0.6554171442985535,
-0.25452721118927,
0.07934632897377014,
-0.9775327444076538,
0.6793217658996582,
-0.25909408926963806,
-0.07385247945785522,
0.05360095202922821,
0.6821154952049255,
0.46630576252937317,
0.398567259311676,
0.47441425919532776,
0.7401954531669617,
0.8280594944953918,
-0.3084354102611542,
1.16764497756958,
-0.2601912021636963,
0.5577003359794617,
0.8675894141197205,
0.03505990281701088,
0.5017427206039429,
0.2284906953573227,
-0.3042328655719757,
0.5779737234115601,
0.5905677676200867,
-0.4060145616531372,
0.23672881722450256,
0.43231749534606934,
-0.06516575068235397,
-0.036383256316185,
-0.297270268201828,
-0.6042128205299377,
0.30717790126800537,
0.29069599509239197,
-0.3337317109107971,
0.034308794885873795,
-0.02695859782397747,
0.3482685387134552,
-0.04847286641597748,
-0.3046078085899353,
0.6057547926902771,
0.08004990965127945,
-0.2759280204772949,
0.5184047818183899,
-0.1879947930574417,
0.754050076007843,
-0.5807936787605286,
0.18689550459384918,
-0.12642493844032288,
0.06668230891227722,
-0.6247950792312622,
-1.089148998260498,
0.3964768350124359,
-0.07639937102794647,
-0.2705673575401306,
-0.3374221920967102,
0.7615129947662354,
-0.4436650276184082,
-0.7641181349754333,
0.24037805199623108,
0.26385223865509033,
0.30855774879455566,
0.16368038952350616,
-1.2812578678131104,
0.600831151008606,
0.18652984499931335,
-0.4473431408405304,
0.14767466485500336,
0.5209035873413086,
0.14953206479549408,
0.587062418460846,
0.7091420888900757,
0.3091241717338562,
-0.23795002698898315,
0.10258513689041138,
1.1145414113998413,
-0.5534785985946655,
-0.43507614731788635,
-0.7284966111183167,
0.8709161877632141,
-0.37975069880485535,
-0.39936110377311707,
0.7082175612449646,
0.7118244767189026,
0.8533586859703064,
0.03958781063556671,
0.807301938533783,
-0.6514140963554382,
0.6921654939651489,
-0.2059718668460846,
0.9643266201019287,
-0.715301513671875,
-0.04156076908111572,
-0.7276862263679504,
-0.4994675815105438,
-0.3933088779449463,
0.6450977921485901,
-0.17930297553539276,
0.1762874722480774,
0.2386922687292099,
0.917009174823761,
0.011605078354477882,
0.09302981197834015,
-0.1902054250240326,
0.27251458168029785,
0.2632915675640106,
0.5613992810249329,
0.4400275647640228,
-0.9482797384262085,
0.33288583159446716,
-0.8458613753318787,
-0.273305207490921,
0.0024765864945948124,
-0.8098846077919006,
-0.882837176322937,
-0.9554330706596375,
-0.693198561668396,
-0.7635688781738281,
-0.2920806407928467,
1.1103061437606812,
0.734593391418457,
-0.7146052718162537,
-0.24469605088233948,
0.13085880875587463,
0.2996038496494293,
-0.06050000339746475,
-0.32003793120384216,
0.6778560876846313,
0.33907362818717957,
-0.6055828332901001,
-0.08255787938833237,
0.014973373152315617,
0.2839517593383789,
0.021839486435055733,
-0.10005112737417221,
-0.1279708594083786,
-0.3219994008541107,
0.3391000032424927,
0.5158324241638184,
-0.3112044334411621,
-0.05725507065653801,
-0.2070697546005249,
-0.01980140432715416,
0.16719816625118256,
0.48082590103149414,
-0.5557637810707092,
0.19034983217716217,
0.6730937957763672,
0.28262463212013245,
0.3955848217010498,
0.20263387262821198,
0.03698131814599037,
-0.49963539838790894,
0.04772060737013817,
-0.02638946659862995,
0.34373509883880615,
0.4048019051551819,
-0.4288956820964813,
0.765755832195282,
0.5309491157531738,
-0.48618564009666443,
-0.8281096816062927,
-0.15708476305007935,
-1.2974334955215454,
0.13745585083961487,
1.0159567594528198,
-0.047605160623788834,
-0.5722665190696716,
0.04951201751828194,
-0.20947806537151337,
0.10187803208827972,
-0.5754808783531189,
0.4667758345603943,
0.44829061627388,
-0.06636112183332443,
0.0846623107790947,
-0.3748500645160675,
0.6835765838623047,
-0.026717059314250946,
-0.9939438700675964,
0.159495547413826,
0.4029938876628876,
0.42201584577560425,
0.3566886782646179,
0.8198243379592896,
-0.2200310081243515,
0.0988655686378479,
-0.04672034829854965,
0.278894305229187,
-0.27434101700782776,
0.0033080868888646364,
-0.3542705178260803,
-0.15163320302963257,
-0.4818621575832367,
-0.26394471526145935
]
|
huggingartists/lil-skies | huggingartists | 2022-10-25T09:35:07Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/lil-skies"
## 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.557865 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('https://images.genius.com/8dea2b6da3b22454729591b039a69e53.640x640x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/lil-skies">
<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">Lil Skies</div>
<a href="https://genius.com/artists/lil-skies">
<div style="text-align: center; font-size: 14px;">@lil-skies</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/lil-skies).
### 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/lil-skies")
```
## 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|
|------:|---------:|---:|
|244| -| -|
'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/lil-skies")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6186083555221558,
-0.4974742829799652,
0.09436652809381485,
0.2343316376209259,
-0.23505659401416779,
0.010408079251646996,
-0.25237521529197693,
-0.46421316266059875,
0.8959888219833374,
0.3250196874141693,
-0.9902803897857666,
-0.7779533863067627,
-0.5620316863059998,
0.09656336903572083,
-0.14448654651641846,
1.2862647771835327,
-0.15079966187477112,
-0.41388630867004395,
-0.34825730323791504,
-0.20452740788459778,
-0.2659892439842224,
-0.339289128780365,
-0.2780308723449707,
-0.23309196531772614,
0.3682612180709839,
0.5538511872291565,
0.7252118587493896,
0.8899270296096802,
0.5231696963310242,
0.35884591937065125,
-0.10250555723905563,
0.053148914128541946,
-0.3879300653934479,
-0.09217825531959534,
0.23385964334011078,
-0.30704817175865173,
-0.670141339302063,
0.19755245745182037,
0.5838117003440857,
0.3616728186607361,
-0.038521818816661835,
0.510307788848877,
0.09835483878850937,
0.8257713317871094,
-0.298990935087204,
0.4721277058124542,
-0.2711864709854126,
-0.17524108290672302,
-0.3334292769432068,
0.041960589587688446,
0.2572619915008545,
-0.5651113390922546,
-0.02664352022111416,
-0.783664882183075,
0.07693502306938171,
0.03787070885300636,
1.0573289394378662,
0.06021063029766083,
0.14182208478450775,
-0.20735988020896912,
-0.13739511370658875,
0.5584702491760254,
-0.6105759739875793,
0.010918320156633854,
0.5575432777404785,
0.1334279626607895,
0.03960161283612251,
-0.693535327911377,
-0.5811865925788879,
0.07365376502275467,
-0.1742008477449417,
0.2865516245365143,
-0.13497956097126007,
-0.32235947251319885,
0.5473302006721497,
0.545657217502594,
-0.4709608852863312,
-0.23636847734451294,
-0.5609550476074219,
-0.14627517759799957,
1.1457785367965698,
0.1938568502664566,
0.4743034541606903,
-0.5146740078926086,
-0.18009956181049347,
-0.317108154296875,
-0.28750526905059814,
0.3932581841945648,
0.5498042106628418,
0.4773159623146057,
-1.0624064207077026,
0.6581486463546753,
-0.18999364972114563,
0.5553019046783447,
0.16638675332069397,
-0.052908506244421005,
0.7784213423728943,
-0.41162899136543274,
-0.15950897336006165,
-0.20503464341163635,
1.0798683166503906,
0.6956667900085449,
0.1271369755268097,
0.086113341152668,
-0.08572838455438614,
0.00903969444334507,
-0.23001953959465027,
-0.8609933853149414,
-0.41811853647232056,
0.6248232126235962,
-0.5598283410072327,
-0.5480208992958069,
0.11002857238054276,
-1.0008617639541626,
-0.21551406383514404,
-0.3568767309188843,
0.24229632318019867,
-0.35857319831848145,
-0.5009814500808716,
0.12124630063772202,
-0.2587224543094635,
0.08647162467241287,
0.05794908106327057,
-0.6737270355224609,
0.17522186040878296,
0.5782771110534668,
0.7727424502372742,
0.28489959239959717,
-0.34656235575675964,
-0.33090680837631226,
-0.23245447874069214,
-0.1254226416349411,
0.6541782021522522,
-0.25243818759918213,
-0.32036519050598145,
-0.16710324585437775,
0.3045428693294525,
-0.09664289653301239,
-0.26268360018730164,
0.8985614776611328,
0.04863153025507927,
0.16867569088935852,
-0.6020293831825256,
-0.4254918694496155,
0.07240965962409973,
0.2753942608833313,
-0.742549479007721,
1.0393531322479248,
0.2820679843425751,
-1.0337295532226562,
0.21597573161125183,
-0.7675959467887878,
-0.22505970299243927,
0.06619434058666229,
0.028490448370575905,
-0.7727088928222656,
-0.1493590772151947,
0.2392599731683731,
0.7036638259887695,
-0.3032471537590027,
-0.0055219861678779125,
-0.5997259020805359,
-0.13760292530059814,
0.33268722891807556,
0.247085303068161,
1.241363763809204,
0.1021108627319336,
-0.12919336557388306,
0.10364039987325668,
-0.8726180195808411,
0.20149685442447662,
0.4296845495700836,
-0.12247050553560257,
-0.1130479946732521,
-0.24209372699260712,
0.4282512068748474,
0.27561116218566895,
0.1010747104883194,
-0.5592127442359924,
0.42313429713249207,
-0.2509799897670746,
0.4755704700946808,
0.7133845090866089,
-0.011521957814693451,
0.294419527053833,
-0.637279212474823,
0.40031567215919495,
0.05700686201453209,
0.443353533744812,
0.015505454502999783,
-0.5657866597175598,
-0.5245223641395569,
-0.26854121685028076,
0.2903897166252136,
0.4309852123260498,
-0.7215688228607178,
0.9567227959632874,
-0.35036566853523254,
-0.8305213451385498,
-0.6772206425666809,
0.19059309363365173,
0.14697855710983276,
0.4526154100894928,
0.3679022490978241,
-0.3548243045806885,
-0.604400634765625,
-0.7015335559844971,
0.09235765784978867,
-0.27694153785705566,
0.23550036549568176,
0.4003755748271942,
0.8208730816841125,
-0.2644841969013214,
0.8953570127487183,
-0.6687672734260559,
-0.2498001903295517,
-0.28568127751350403,
-0.34674975275993347,
0.360564649105072,
0.7542566061019897,
0.7658795714378357,
-0.8731878995895386,
-0.538106381893158,
-0.29020240902900696,
-0.7226864695549011,
-0.10095956176519394,
-0.015843026340007782,
-0.27399522066116333,
-0.02572586014866829,
0.18791308999061584,
-0.739547610282898,
0.5455434918403625,
0.5246701240539551,
-0.6955838799476624,
0.5933587551116943,
0.10707025229930878,
0.03509765863418579,
-1.241584062576294,
0.34031063318252563,
0.22211287915706635,
0.05572608858346939,
-0.6248319745063782,
-0.15560686588287354,
-0.040714945644140244,
-0.03751539811491966,
-0.1560705304145813,
0.6090641021728516,
-0.34132108092308044,
0.298317551612854,
0.13813550770282745,
0.08425642549991608,
0.11123017221689224,
0.4179936349391937,
-0.12257083505392075,
0.2846396565437317,
1.0816246271133423,
-0.39472293853759766,
0.7087169289588928,
0.5620088577270508,
-0.2641558349132538,
0.7931442260742188,
-0.7849087119102478,
0.00710930023342371,
-0.3336448073387146,
0.32365676760673523,
-0.8017549514770508,
-0.5170024037361145,
0.8520433306694031,
-0.7057563662528992,
0.35736212134361267,
-0.2710564434528351,
-0.6068382859230042,
-0.7821405529975891,
-0.6678144931793213,
0.15294912457466125,
0.5135657787322998,
-0.3851397633552551,
0.3884669840335846,
0.5852295160293579,
0.06880196183919907,
-0.3861411511898041,
-0.7944087386131287,
-0.10700881481170654,
-0.4199683368206024,
-0.7937915325164795,
0.40650367736816406,
-0.43011850118637085,
-0.14717307686805725,
0.18347156047821045,
0.11689818650484085,
0.10316875576972961,
0.00019859129679389298,
0.4314349591732025,
0.3504800796508789,
0.07124941796064377,
-0.017402058467268944,
-0.10218766331672668,
-0.195377916097641,
0.09734039008617401,
-0.20024888217449188,
0.1880837082862854,
-0.31675365567207336,
-0.12626276910305023,
-0.661503791809082,
0.18715669214725494,
0.5164014101028442,
-0.20331065356731415,
0.6914305090904236,
0.8045968413352966,
-0.27068379521369934,
-0.021037738770246506,
-0.488598495721817,
-0.17024073004722595,
-0.42017483711242676,
0.036885108798742294,
-0.2750282287597656,
-0.5962267518043518,
0.9163644313812256,
0.2890917956829071,
0.1533307582139969,
0.7153522372245789,
0.40867358446121216,
-0.1318838894367218,
0.6431748867034912,
0.43083319067955017,
-0.35250622034072876,
0.49233323335647583,
-0.738181471824646,
-0.21685877442359924,
-0.8571008443832397,
-0.449981689453125,
-0.5213881134986877,
-0.47268375754356384,
-0.839103102684021,
-0.43877729773521423,
0.19464881718158722,
0.223072350025177,
-0.20842191576957703,
0.45597711205482483,
-0.8792889714241028,
0.27399250864982605,
0.3245885968208313,
0.2274482548236847,
-0.1290234923362732,
0.11485771089792252,
0.0825374498963356,
0.03960800543427467,
-0.6280044913291931,
-0.1778302639722824,
1.119652509689331,
0.49410581588745117,
0.5361406803131104,
-0.051854800432920456,
0.8548004627227783,
0.020743895322084427,
0.2608829438686371,
-0.5502699613571167,
0.5009119510650635,
-0.033328309655189514,
-0.5159263610839844,
-0.16397254168987274,
-0.5109395980834961,
-0.8354471325874329,
-0.1214258074760437,
-0.46843966841697693,
-0.7329890131950378,
0.4801362156867981,
0.10705819725990295,
-0.2770668566226959,
0.4087870419025421,
-0.6080402135848999,
0.8024084568023682,
-0.1258048117160797,
-0.4780399203300476,
0.31140759587287903,
-0.9548859000205994,
0.23187708854675293,
0.19326794147491455,
0.3223995566368103,
-0.40906259417533875,
0.006504165939986706,
1.0023939609527588,
-0.8218748569488525,
0.9667087197303772,
-0.3871256709098816,
0.18419302999973297,
0.6125906705856323,
-0.37149450182914734,
0.42811840772628784,
0.12718111276626587,
-0.2524263858795166,
0.3203805685043335,
0.01993635855615139,
-0.43450284004211426,
-0.4442726671695709,
0.7582952380180359,
-0.7597793340682983,
0.02242831513285637,
-0.3238127827644348,
-0.4409117102622986,
0.04427116736769676,
0.15969520807266235,
0.3409506678581238,
0.4207143187522888,
0.06366085261106491,
0.1259889155626297,
0.39552146196365356,
-0.12836341559886932,
0.2626982033252716,
0.027632690966129303,
-0.15800903737545013,
-0.788994550704956,
0.9144526720046997,
0.18793492019176483,
0.06680607050657272,
-0.047340262681245804,
0.4199092984199524,
-0.3800455629825592,
-0.14446184039115906,
-0.6591565608978271,
0.47928130626678467,
-0.4344155192375183,
-0.41353416442871094,
-0.509630560874939,
-0.24108022451400757,
-0.6584712862968445,
-0.13299335539340973,
-0.24470007419586182,
-0.485024094581604,
-0.330160915851593,
-0.18060491979122162,
1.0108609199523926,
0.4541608691215515,
-0.6637415885925293,
0.10336674749851227,
-0.5517138242721558,
0.3401426374912262,
-0.04893837496638298,
0.6190100312232971,
-0.1079992949962616,
-0.3693460524082184,
-0.2816784083843231,
0.11604271829128265,
-0.16625487804412842,
-0.621155321598053,
0.29728493094444275,
-0.02439437247812748,
0.40932801365852356,
0.09673070162534714,
0.1083042249083519,
0.7652356028556824,
-0.02976926416158676,
0.6703892946243286,
0.3341504633426666,
-0.820991039276123,
0.6763849258422852,
-0.45807960629463196,
0.15816505253314972,
0.7315748333930969,
0.33681607246398926,
-0.5865307450294495,
-0.17783385515213013,
-0.9828572869300842,
-0.8662946820259094,
0.7977399230003357,
0.4562647342681885,
0.06593218445777893,
0.2761273682117462,
0.5766121745109558,
-0.21368804574012756,
0.2656126618385315,
-0.6702229380607605,
-0.9220918416976929,
-0.42761680483818054,
-0.3139137327671051,
-0.10423431545495987,
-0.12046085298061371,
-0.2207338809967041,
-0.686034083366394,
0.7490353584289551,
-0.13342662155628204,
0.3093999922275543,
0.4164983630180359,
0.4445880949497223,
-0.23590311408042908,
-0.01004514005035162,
0.2641070783138275,
0.34697654843330383,
-0.2567465305328369,
-0.3154158890247345,
-0.18748117983341217,
-0.6222552061080933,
-0.12164468318223953,
0.4917159676551819,
-0.4131917953491211,
-0.06443329900503159,
0.3384600281715393,
0.9154050350189209,
-0.022632120177149773,
-0.2430749386548996,
0.5649828314781189,
-0.0811581015586853,
-0.4292571544647217,
-0.36210519075393677,
0.005309831351041794,
0.188015878200531,
0.22302109003067017,
0.06851768493652344,
0.1206434816122055,
-0.08829718828201294,
-0.423225462436676,
0.3691502809524536,
0.2780023217201233,
-0.37216147780418396,
-0.4785930812358856,
0.6118927001953125,
0.08193353563547134,
-0.08259561657905579,
0.504771888256073,
-0.15983019769191742,
-0.6114833950996399,
0.8306406140327454,
0.09879832714796066,
0.8205878734588623,
-0.09621535986661911,
0.29103049635887146,
0.7559933662414551,
0.2620004415512085,
-0.042693283408880234,
0.5155742764472961,
-0.18505972623825073,
-0.6331360936164856,
-0.09045565873384476,
-0.5597809553146362,
-0.07880319654941559,
0.14984028041362762,
-0.8105127215385437,
0.45160508155822754,
-0.49044910073280334,
-0.2709786295890808,
0.04056323692202568,
0.4018877446651459,
-0.7626979947090149,
0.19919787347316742,
0.002630199072882533,
1.044416904449463,
-1.0671710968017578,
0.4955872893333435,
0.6859853863716125,
-0.6278303861618042,
-1.1780362129211426,
-0.07209407538175583,
0.23452261090278625,
-0.5182574391365051,
0.32639312744140625,
0.17580583691596985,
0.45306074619293213,
-0.06351928412914276,
-0.9049397706985474,
-0.708446741104126,
1.1834220886230469,
0.017076782882213593,
-0.28582921624183655,
0.35494762659072876,
0.08503638207912445,
0.6059566140174866,
-0.35742565989494324,
0.32015278935432434,
0.6002919673919678,
0.6533637046813965,
0.26993706822395325,
-0.7345446944236755,
0.20455442368984222,
-0.6335318684577942,
-0.2706781029701233,
0.04910530149936676,
-0.9956949949264526,
0.6515930891036987,
-0.24834878742694855,
-0.08160813897848129,
0.046079836785793304,
0.6568300127983093,
0.4757910966873169,
0.4385610818862915,
0.49166786670684814,
0.725777804851532,
0.7700689435005188,
-0.29587846994400024,
1.1569676399230957,
-0.2725484371185303,
0.6112195253372192,
0.76796954870224,
0.060389500111341476,
0.5235832333564758,
0.27263936400413513,
-0.3106421232223511,
0.5394431948661804,
0.6144837141036987,
-0.39177465438842773,
0.27827757596969604,
0.37674349546432495,
-0.057577721774578094,
-0.0582878403365612,
-0.25539636611938477,
-0.5733163356781006,
0.23450244963169098,
0.29300057888031006,
-0.26019102334976196,
0.042730167508125305,
-0.024862829595804214,
0.29918715357780457,
-0.053652841597795486,
-0.33341920375823975,
0.5935486555099487,
0.07316131889820099,
-0.345493346452713,
0.5471998453140259,
-0.17334698140621185,
0.7401861548423767,
-0.5949221253395081,
0.18210245668888092,
-0.13038460910320282,
0.06987516582012177,
-0.6732158064842224,
-1.0913158655166626,
0.39568617939949036,
-0.03806012496352196,
-0.25212907791137695,
-0.32104310393333435,
0.733036458492279,
-0.47599706053733826,
-0.8018331527709961,
0.23980861902236938,
0.24286212027072906,
0.3034801185131073,
0.19425243139266968,
-1.3092057704925537,
0.5999476909637451,
0.20464764535427094,
-0.4533652663230896,
0.13172784447669983,
0.5138179659843445,
0.19614891707897186,
0.5728006362915039,
0.6960804462432861,
0.2984122037887573,
-0.2163926213979721,
0.08742870390415192,
1.1145206689834595,
-0.5567548274993896,
-0.4686967730522156,
-0.7518105506896973,
0.940032958984375,
-0.3522781729698181,
-0.3592958152294159,
0.7301692366600037,
0.7902628183364868,
0.8159663677215576,
-0.011978627182543278,
0.8476780652999878,
-0.670316219329834,
0.6735630035400391,
-0.25547486543655396,
0.9015793204307556,
-0.7578156590461731,
-0.004433766007423401,
-0.6744397878646851,
-0.5061727166175842,
-0.3925321400165558,
0.576474130153656,
-0.1780807375907898,
0.18177171051502228,
0.26515910029411316,
0.9254297018051147,
-0.030453616753220558,
0.05209190398454666,
-0.2070234715938568,
0.27559515833854675,
0.28235843777656555,
0.5612931251525879,
0.480144202709198,
-0.9377517104148865,
0.3775942623615265,
-0.8334648609161377,
-0.2817210853099823,
0.003894183784723282,
-0.8187698721885681,
-0.918746292591095,
-0.9768263101577759,
-0.6985105872154236,
-0.7561082243919373,
-0.2753283381462097,
1.047690510749817,
0.7616400122642517,
-0.6726602911949158,
-0.2598922848701477,
0.082953542470932,
0.24544094502925873,
-0.0661495253443718,
-0.3302958607673645,
0.6746042966842651,
0.34489381313323975,
-0.6184602975845337,
-0.07490626722574234,
0.012760595418512821,
0.26773369312286377,
0.0455937497317791,
-0.1239996924996376,
-0.03186807036399841,
-0.3330356478691101,
0.34305351972579956,
0.47769781947135925,
-0.3745260536670685,
-0.058998532593250275,
-0.21660228073596954,
-0.03319602087140083,
0.09172159433364868,
0.4900762140750885,
-0.5474258065223694,
0.17585746943950653,
0.6597467064857483,
0.25975194573402405,
0.4353158175945282,
0.18583302199840546,
-0.057164113968610764,
-0.48753610253334045,
0.0889190137386322,
-0.040084466338157654,
0.30697235465049744,
0.40891969203948975,
-0.4703647792339325,
0.7064966559410095,
0.5929710268974304,
-0.5040440559387207,
-0.8141207098960876,
-0.1430724561214447,
-1.2643338441848755,
0.1052108108997345,
1.0161255598068237,
0.004521814174950123,
-0.5017348527908325,
0.07317925244569778,
-0.20709362626075745,
0.061864566057920456,
-0.5412278175354004,
0.45062923431396484,
0.49654942750930786,
-0.09016942977905273,
0.05706584081053734,
-0.4184971749782562,
0.6860193014144897,
-0.03799184411764145,
-1.0180577039718628,
0.2128242552280426,
0.46217024326324463,
0.4831463694572449,
0.33186614513397217,
0.8394520282745361,
-0.21836091578006744,
0.03838931396603584,
-0.023944370448589325,
0.23921121656894684,
-0.2782978415489197,
-0.027771158143877983,
-0.32565975189208984,
-0.14641474187374115,
-0.4200259745121002,
-0.23863458633422852
]
|
huggingartists/lil-uzi-vert | huggingartists | 2022-10-25T09:35:14Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/lil-uzi-vert"
## 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.837334 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('https://images.genius.com/73f52f6c73859a68ab961ca797e7b848.725x725x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/lil-uzi-vert">
<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">Lil Uzi Vert</div>
<a href="https://genius.com/artists/lil-uzi-vert">
<div style="text-align: center; font-size: 14px;">@lil-uzi-vert</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/lil-uzi-vert).
### 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/lil-uzi-vert")
```
## 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|
|------:|---------:|---:|
|845| -| -|
'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/lil-uzi-vert")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6148006319999695,
-0.5190087556838989,
0.07863690704107285,
0.2771046459674835,
-0.2491609901189804,
0.006083766929805279,
-0.2877022325992584,
-0.4627534747123718,
0.8745344877243042,
0.3161766231060028,
-0.9164420962333679,
-0.8036748170852661,
-0.5395994782447815,
0.1132616475224495,
-0.11762996762990952,
1.2650398015975952,
-0.17343483865261078,
-0.36822158098220825,
-0.29923248291015625,
-0.2236987054347992,
-0.25544753670692444,
-0.36285462975502014,
-0.27335575222969055,
-0.34414151310920715,
0.3521924912929535,
0.531004786491394,
0.6890448331832886,
0.8801038861274719,
0.5040668249130249,
0.36847373843193054,
-0.10295812040567398,
0.012838158756494522,
-0.37566789984703064,
-0.0890871211886406,
0.2253887802362442,
-0.28214114904403687,
-0.6680693626403809,
0.2215571105480194,
0.552195131778717,
0.37541627883911133,
-0.08261115849018097,
0.4787586033344269,
0.07718873769044876,
0.8382336497306824,
-0.29280292987823486,
0.444685161113739,
-0.22862380743026733,
-0.138137087225914,
-0.31474927067756653,
0.04687546193599701,
0.20543994009494781,
-0.5672253966331482,
-0.022825198248028755,
-0.7252113223075867,
0.05254388600587845,
-0.021308276802301407,
1.040671467781067,
0.03897558152675629,
0.1407698541879654,
-0.15679442882537842,
-0.17629054188728333,
0.5461866855621338,
-0.6065530776977539,
-0.012236731126904488,
0.5467929840087891,
0.11866682022809982,
-0.028352955356240273,
-0.6976876854896545,
-0.61601322889328,
0.07636664062738419,
-0.1914762705564499,
0.26877066493034363,
-0.18569184839725494,
-0.3141278326511383,
0.5296197533607483,
0.5729638338088989,
-0.4800110459327698,
-0.22825288772583008,
-0.5196048617362976,
-0.15601061284542084,
1.170119285583496,
0.17964240908622742,
0.4820218086242676,
-0.501838743686676,
-0.255010187625885,
-0.3655906021595001,
-0.2917623817920685,
0.39838096499443054,
0.5436230301856995,
0.4383378326892853,
-1.0053588151931763,
0.6275168657302856,
-0.20215988159179688,
0.5473073124885559,
0.1551833599805832,
-0.05911817401647568,
0.7865486145019531,
-0.40588831901550293,
-0.14552775025367737,
-0.162220299243927,
1.137438416481018,
0.6695576906204224,
0.21698300540447235,
0.10788538306951523,
-0.05417982116341591,
0.01019490696489811,
-0.16213585436344147,
-0.8678016066551208,
-0.4344685673713684,
0.6092485189437866,
-0.5641905665397644,
-0.5524880290031433,
0.12187854200601578,
-1.015703558921814,
-0.20263426005840302,
-0.3036487400531769,
0.2589062452316284,
-0.3486787974834442,
-0.4806300401687622,
0.1420826017856598,
-0.27014976739883423,
0.10490468144416809,
0.06232885271310806,
-0.6367236971855164,
0.15847182273864746,
0.5227746963500977,
0.770409107208252,
0.23547576367855072,
-0.31630438566207886,
-0.2692168653011322,
-0.1908389776945114,
-0.07495462149381638,
0.6929551362991333,
-0.27230536937713623,
-0.37431490421295166,
-0.1509287804365158,
0.3309517502784729,
-0.1127302348613739,
-0.24097925424575806,
0.938186764717102,
0.07745663821697235,
0.17357727885246277,
-0.5869039297103882,
-0.4256972372531891,
0.025484085083007812,
0.23787179589271545,
-0.7388206124305725,
1.079803228378296,
0.32873979210853577,
-1.0476624965667725,
0.18858812749385834,
-0.7783781290054321,
-0.2846696972846985,
0.03144082427024841,
0.021168792620301247,
-0.7997931838035583,
-0.16568636894226074,
0.22084175050258636,
0.7365514039993286,
-0.3218025863170624,
-0.05025528743863106,
-0.6063272356987,
-0.15480133891105652,
0.37553632259368896,
0.23400594294071198,
1.232173204421997,
0.10145999491214752,
-0.14164727926254272,
0.11545666307210922,
-0.9264481663703918,
0.1851678490638733,
0.4631877839565277,
-0.15342512726783752,
-0.11932660639286041,
-0.27736639976501465,
0.4054681360721588,
0.2848109304904938,
0.06108570843935013,
-0.6067572832107544,
0.47792699933052063,
-0.19114941358566284,
0.4968465566635132,
0.7374533414840698,
-0.017659533768892288,
0.30721181631088257,
-0.5952269434928894,
0.38280925154685974,
0.04184015467762947,
0.4010862112045288,
0.019504385069012642,
-0.5742061138153076,
-0.4934990406036377,
-0.31551241874694824,
0.35165098309516907,
0.45978081226348877,
-0.6397005915641785,
0.9768391847610474,
-0.3211669623851776,
-0.812050998210907,
-0.6752017140388489,
0.18672813475131989,
0.16615325212478638,
0.5205123424530029,
0.3723909258842468,
-0.446147620677948,
-0.5989948511123657,
-0.66304612159729,
0.11447703838348389,
-0.26141831278800964,
0.14644388854503632,
0.3624216318130493,
0.8189288973808289,
-0.2680264711380005,
0.8461129665374756,
-0.6504092812538147,
-0.29510778188705444,
-0.2990531921386719,
-0.30169302225112915,
0.3520739674568176,
0.754965603351593,
0.725826621055603,
-0.8561809062957764,
-0.5029870271682739,
-0.28175088763237,
-0.7373918294906616,
-0.10151754319667816,
-0.040300458669662476,
-0.2685938775539398,
0.001731953234411776,
0.1568252295255661,
-0.7469007968902588,
0.5955061912536621,
0.4698006808757782,
-0.6913387179374695,
0.5804239511489868,
0.04660020396113396,
0.03346486762166023,
-1.252884864807129,
0.32339343428611755,
0.24934060871601105,
0.050884392112493515,
-0.6290947794914246,
-0.17839135229587555,
-0.05548567697405815,
0.025909816846251488,
-0.11792642623186111,
0.5999170541763306,
-0.3530285954475403,
0.2738923132419586,
0.11907786130905151,
0.08752061426639557,
0.10409719496965408,
0.4409230351448059,
-0.09809993952512741,
0.30373960733413696,
1.0165631771087646,
-0.38938695192337036,
0.701165497303009,
0.6110774874687195,
-0.24427472054958344,
0.8141868710517883,
-0.840230405330658,
0.048960380256175995,
-0.23315897583961487,
0.37524762749671936,
-0.8257055878639221,
-0.5448062419891357,
0.8448543548583984,
-0.7005453705787659,
0.42899182438850403,
-0.2561326324939728,
-0.590009868144989,
-0.8520048260688782,
-0.7020781636238098,
0.12451985478401184,
0.5287651419639587,
-0.3944922685623169,
0.4025487005710602,
0.5846707224845886,
0.0942431315779686,
-0.3858124315738678,
-0.7992832064628601,
-0.14079013466835022,
-0.39912065863609314,
-0.8380064964294434,
0.4099365472793579,
-0.3777367174625397,
-0.11275967210531235,
0.13924933969974518,
0.10436951369047165,
0.09468960016965866,
0.018816275522112846,
0.4327471852302551,
0.3285999894142151,
0.10759390145540237,
0.004755356349050999,
-0.12386512756347656,
-0.23538193106651306,
0.09223303198814392,
-0.16493000090122223,
0.2574273943901062,
-0.2992710769176483,
-0.14396792650222778,
-0.6861732006072998,
0.20523354411125183,
0.42890727519989014,
-0.22804062068462372,
0.6804076433181763,
0.8643296360969543,
-0.20763720571994781,
-0.019353611394762993,
-0.4538697302341461,
-0.1478712409734726,
-0.4168474078178406,
0.006993331480771303,
-0.27151238918304443,
-0.6387671828269958,
0.9424341917037964,
0.2369013875722885,
0.08772130310535431,
0.6900320649147034,
0.5068972706794739,
-0.12753243744373322,
0.6510534286499023,
0.43669041991233826,
-0.34642183780670166,
0.5026822686195374,
-0.6981713771820068,
-0.20942287147045135,
-0.8782503008842468,
-0.43948879837989807,
-0.5243597030639648,
-0.5139960050582886,
-0.8780308961868286,
-0.42371755838394165,
0.18318751454353333,
0.2157089114189148,
-0.21090495586395264,
0.4710378646850586,
-0.9301837682723999,
0.24480733275413513,
0.385120689868927,
0.24741138517856598,
-0.09867148101329803,
0.11767315119504929,
0.07450825721025467,
0.10252489149570465,
-0.5782698392868042,
-0.21034438908100128,
1.1602674722671509,
0.499787300825119,
0.5911098718643188,
-0.10305478423833847,
0.8567323088645935,
0.07198483496904373,
0.22708289325237274,
-0.5143859386444092,
0.4845655560493469,
0.0416773222386837,
-0.4808385372161865,
-0.20323605835437775,
-0.5003294348716736,
-0.8704866766929626,
-0.10029825568199158,
-0.4128953814506531,
-0.7993695735931396,
0.5059691071510315,
0.09995605051517487,
-0.2585420310497284,
0.4014820158481598,
-0.6032890677452087,
0.8304395079612732,
-0.06221533939242363,
-0.44282642006874084,
0.3101634085178375,
-1.0078535079956055,
0.2115883231163025,
0.21148589253425598,
0.26362472772598267,
-0.400402307510376,
0.050009835511446,
0.9832534790039062,
-0.8230721950531006,
0.9357680082321167,
-0.33589088916778564,
0.13783332705497742,
0.6289066076278687,
-0.3518078625202179,
0.45505794882774353,
0.11195996403694153,
-0.2537856996059418,
0.34109970927238464,
0.007449129596352577,
-0.4464209973812103,
-0.4406578838825226,
0.7101746201515198,
-0.7326107621192932,
0.03308119624853134,
-0.34747666120529175,
-0.4637451171875,
0.05191894620656967,
0.12409412860870361,
0.3387434184551239,
0.38195210695266724,
0.026033148169517517,
0.1046096608042717,
0.4453694820404053,
-0.09919413179159164,
0.31410351395606995,
0.03299662470817566,
-0.10789573192596436,
-0.7413349151611328,
0.9050962328910828,
0.15147742629051208,
0.05377883091568947,
-0.07362588495016098,
0.41809478402137756,
-0.36169540882110596,
-0.13440218567848206,
-0.6758392453193665,
0.44948074221611023,
-0.39805105328559875,
-0.4110381603240967,
-0.5294539928436279,
-0.19573648273944855,
-0.6572950482368469,
-0.11945411562919617,
-0.23635415732860565,
-0.5246700048446655,
-0.3153339922428131,
-0.218149796128273,
1.0511218309402466,
0.459177702665329,
-0.7492217421531677,
0.13960669934749603,
-0.5480841398239136,
0.3276557922363281,
-0.022277766838669777,
0.6123672723770142,
-0.13379700481891632,
-0.3925255537033081,
-0.22585102915763855,
0.10815894603729248,
-0.19960801303386688,
-0.675455629825592,
0.27217409014701843,
-0.023821773007512093,
0.39775586128234863,
0.13254569470882416,
0.12664535641670227,
0.6802185773849487,
-0.04125481843948364,
0.6355459690093994,
0.30850324034690857,
-0.7850719690322876,
0.6563125848770142,
-0.4767879545688629,
0.12251686304807663,
0.7393123507499695,
0.38318055868148804,
-0.5788446664810181,
-0.1255832016468048,
-0.9424961805343628,
-0.8643052577972412,
0.7675703763961792,
0.44018256664276123,
0.0719306692481041,
0.25313887000083923,
0.5558595061302185,
-0.2415209710597992,
0.2741090655326843,
-0.6690537929534912,
-0.9208472371101379,
-0.3976709544658661,
-0.3032557964324951,
-0.032117731869220734,
-0.14781971275806427,
-0.24611333012580872,
-0.7357473969459534,
0.7461391687393188,
-0.1198602169752121,
0.35612183809280396,
0.42660024762153625,
0.4091571867465973,
-0.23965221643447876,
0.023731479421257973,
0.2629379630088806,
0.3418866991996765,
-0.2652488946914673,
-0.3453221023082733,
-0.19212092459201813,
-0.6240494847297668,
-0.08382205665111542,
0.502651572227478,
-0.42035558819770813,
-0.07920072972774506,
0.31753936409950256,
0.8739622235298157,
-0.005697600543498993,
-0.2136748880147934,
0.5921143889427185,
-0.08633548021316528,
-0.41223838925361633,
-0.3612889051437378,
0.010326669551432133,
0.16859066486358643,
0.24673597514629364,
0.06595438718795776,
0.04206569120287895,
-0.09118375927209854,
-0.44620281457901,
0.423603355884552,
0.25138795375823975,
-0.3945648968219757,
-0.498894602060318,
0.5783718228340149,
0.07678946107625961,
-0.10241008549928665,
0.5045548677444458,
-0.17872606217861176,
-0.6363992094993591,
0.7643296718597412,
0.12247544527053833,
0.8252543210983276,
-0.16966475546360016,
0.3588293790817261,
0.7314574718475342,
0.22881892323493958,
-0.06008346006274223,
0.5527287721633911,
-0.19088959693908691,
-0.6337900161743164,
-0.09025502949953079,
-0.601971447467804,
-0.07248231768608093,
0.09984995424747467,
-0.8266811966896057,
0.39152777194976807,
-0.4723881185054779,
-0.25440627336502075,
0.026148995384573936,
0.38823115825653076,
-0.747275173664093,
0.19239012897014618,
-0.03908423334360123,
1.0186283588409424,
-1.0461324453353882,
0.515353798866272,
0.6819648146629333,
-0.6969708800315857,
-1.195990800857544,
-0.1189347505569458,
0.22071219980716705,
-0.5688146948814392,
0.2656329572200775,
0.18351036310195923,
0.4686071574687958,
-0.08384186029434204,
-0.9227603673934937,
-0.6433562636375427,
1.1816587448120117,
0.028171665966510773,
-0.25642481446266174,
0.32706600427627563,
0.12052007019519806,
0.6507298350334167,
-0.37210115790367126,
0.3467683792114258,
0.6542051434516907,
0.6864621043205261,
0.26746493577957153,
-0.7189200520515442,
0.2482256144285202,
-0.6178975701332092,
-0.2530212104320526,
0.07198536396026611,
-1.0159938335418701,
0.6785638332366943,
-0.25169214606285095,
-0.0764123946428299,
0.04304100573062897,
0.6815462112426758,
0.40507665276527405,
0.39228904247283936,
0.43483322858810425,
0.7882999181747437,
0.7805662751197815,
-0.32286038994789124,
1.2034411430358887,
-0.2530952990055084,
0.61850905418396,
0.8181452751159668,
0.05574077367782593,
0.5167269110679626,
0.2532476484775543,
-0.35056814551353455,
0.572616457939148,
0.6293959617614746,
-0.42937421798706055,
0.23422835767269135,
0.42439669370651245,
-0.06366422772407532,
-0.10614841431379318,
-0.2858893573284149,
-0.5986294150352478,
0.31706058979034424,
0.2184332311153412,
-0.294743150472641,
0.006816855166107416,
-0.046248141676187515,
0.3432914912700653,
-0.02153414487838745,
-0.2877498269081116,
0.608991801738739,
0.08683305978775024,
-0.2470119744539261,
0.5162097811698914,
-0.20499883592128754,
0.7043138742446899,
-0.5904171466827393,
0.15229766070842743,
-0.14241261780261993,
0.09743782132863998,
-0.6119136214256287,
-1.0961194038391113,
0.33080512285232544,
-0.06740395724773407,
-0.2410016655921936,
-0.31017810106277466,
0.7912111878395081,
-0.43785548210144043,
-0.7960075736045837,
0.2705759108066559,
0.25979363918304443,
0.300923228263855,
0.1384650021791458,
-1.2928565740585327,
0.5785644054412842,
0.1880410760641098,
-0.5270726680755615,
0.18248598277568817,
0.5333932042121887,
0.17174087464809418,
0.5816508531570435,
0.6922040581703186,
0.2561725378036499,
-0.24545042216777802,
0.10448969900608063,
1.1229506731033325,
-0.5778473615646362,
-0.41968098282814026,
-0.7479849457740784,
0.9197839498519897,
-0.37773507833480835,
-0.39168134331703186,
0.7361594438552856,
0.6998854875564575,
0.8805103302001953,
0.02989504672586918,
0.8138812780380249,
-0.6562231779098511,
0.6700391173362732,
-0.21516963839530945,
0.9377589225769043,
-0.7082183361053467,
-0.0739504024386406,
-0.7253730893135071,
-0.5256156921386719,
-0.36944013833999634,
0.6297916173934937,
-0.14764516055583954,
0.18075565993785858,
0.22983719408512115,
0.8869346976280212,
0.02547968178987503,
0.07472004741430283,
-0.1999916136264801,
0.2867870628833771,
0.2501557767391205,
0.5421658158302307,
0.4448663294315338,
-0.9106408357620239,
0.35123321413993835,
-0.8313673734664917,
-0.28882381319999695,
0.018516235053539276,
-0.8299102783203125,
-0.9340415596961975,
-0.9396282434463501,
-0.6517312526702881,
-0.7654341459274292,
-0.3013204038143158,
1.065650224685669,
0.6954596042633057,
-0.7112526297569275,
-0.24523614346981049,
0.11937794834375381,
0.2685742974281311,
-0.03900664299726486,
-0.3138461410999298,
0.6873197555541992,
0.3561478555202484,
-0.5974767208099365,
-0.09499108046293259,
0.018318936228752136,
0.2746185064315796,
0.0373087152838707,
-0.08952219039201736,
-0.09786667674779892,
-0.30186453461647034,
0.3542865216732025,
0.535115659236908,
-0.3303108513355255,
-0.10435876995325089,
-0.26818227767944336,
-0.012516031041741371,
0.15749666094779968,
0.5082636475563049,
-0.5266299843788147,
0.18823713064193726,
0.6574356555938721,
0.2594822645187378,
0.4197849929332733,
0.20552396774291992,
0.017847303301095963,
-0.45101112127304077,
0.10157699882984161,
-0.08625637739896774,
0.34159785509109497,
0.40074631571769714,
-0.4349985122680664,
0.7886425852775574,
0.5721572637557983,
-0.5184919834136963,
-0.8149020075798035,
-0.1272730827331543,
-1.2915568351745605,
0.12412476539611816,
1.010518193244934,
-0.044303663074970245,
-0.5554191470146179,
0.07918606698513031,
-0.22406063973903656,
0.12775833904743195,
-0.5919820666313171,
0.4876781404018402,
0.4682576656341553,
-0.12648111581802368,
0.11910612136125565,
-0.37438374757766724,
0.6739330291748047,
-0.0391029454767704,
-0.9983827471733093,
0.19409944117069244,
0.43771734833717346,
0.45180606842041016,
0.3308403789997101,
0.8282699584960938,
-0.22880741953849792,
0.06007957458496094,
-0.06352461129426956,
0.3064618706703186,
-0.28403401374816895,
-0.0072057610377669334,
-0.34026089310646057,
-0.1545816957950592,
-0.48211637139320374,
-0.22047699987888336
]
|
huggingartists/lizer | huggingartists | 2022-10-25T09:35:32Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/lizer"
## 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.557761 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('https://images.genius.com/70ba116490a041a960d1ca89418ce726.800x800x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/lizer">
<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">LIZER</div>
<a href="https://genius.com/artists/lizer">
<div style="text-align: center; font-size: 14px;">@lizer</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/lizer).
### 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/lizer")
```
## 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/lizer")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6258403062820435,
-0.5134943723678589,
0.07199719548225403,
0.28143206238746643,
-0.218118816614151,
-0.04481840506196022,
-0.2875443994998932,
-0.45811402797698975,
0.8689054250717163,
0.34361231327056885,
-0.9223432540893555,
-0.8099300265312195,
-0.562263011932373,
0.13091249763965607,
-0.09284093230962753,
1.2832649946212769,
-0.1989736258983612,
-0.3721402883529663,
-0.27256402373313904,
-0.23506653308868408,
-0.2995834946632385,
-0.28216463327407837,
-0.3382267355918884,
-0.35641077160835266,
0.3843827247619629,
0.5036948323249817,
0.7098353505134583,
0.9213233590126038,
0.5280395150184631,
0.357618510723114,
-0.1326383650302887,
-0.004562934394925833,
-0.3679361343383789,
-0.11723335832357407,
0.161451518535614,
-0.2844124734401703,
-0.6942678689956665,
0.24904434382915497,
0.5413264036178589,
0.4098004400730133,
-0.10820146650075912,
0.48483502864837646,
0.09361912310123444,
0.8181785345077515,
-0.2697651982307434,
0.48921164870262146,
-0.24254636466503143,
-0.16644039750099182,
-0.31802040338516235,
0.0715763047337532,
0.1805742233991623,
-0.5839254260063171,
0.016846003010869026,
-0.7641493678092957,
0.07357625663280487,
0.00820507574826479,
1.035252332687378,
0.07337222248315811,
0.12176167219877243,
-0.21582871675491333,
-0.14885656535625458,
0.5073928833007812,
-0.5856978893280029,
-0.041084229946136475,
0.5364667773246765,
0.13631778955459595,
0.02876482903957367,
-0.6513106822967529,
-0.6335238218307495,
0.08803071081638336,
-0.14893129467964172,
0.29276925325393677,
-0.20096422731876373,
-0.2908712923526764,
0.5353413224220276,
0.5607849955558777,
-0.5111330151557922,
-0.24029511213302612,
-0.5203178524971008,
-0.10147181898355484,
1.149009108543396,
0.13746444880962372,
0.460311621427536,
-0.5170953273773193,
-0.2226540893316269,
-0.3999420404434204,
-0.24942423403263092,
0.3288443386554718,
0.5372034907341003,
0.46243008971214294,
-1.0388838052749634,
0.6300186514854431,
-0.13945971429347992,
0.5347867608070374,
0.14095531404018402,
-0.013956497423350811,
0.7813146710395813,
-0.35501164197921753,
-0.10964014381170273,
-0.14332008361816406,
1.0624611377716064,
0.6919220685958862,
0.20142590999603271,
0.09810835868120193,
-0.05881141498684883,
0.04054391756653786,
-0.16861970722675323,
-0.8417824506759644,
-0.43529605865478516,
0.6370043754577637,
-0.5915476679801941,
-0.5750240683555603,
0.16815872490406036,
-0.9772358536720276,
-0.24162980914115906,
-0.2710053622722626,
0.28011175990104675,
-0.36827871203422546,
-0.5250349044799805,
0.13463884592056274,
-0.32370075583457947,
0.09478969871997833,
0.0313875675201416,
-0.6227580308914185,
0.18536582589149475,
0.5597594380378723,
0.7506991028785706,
0.22808147966861725,
-0.3312559723854065,
-0.2542203962802887,
-0.15308506786823273,
-0.12372491508722305,
0.6525973081588745,
-0.2640834152698517,
-0.33280229568481445,
-0.15727968513965607,
0.3443988263607025,
-0.07614266127347946,
-0.2849002778530121,
0.880134105682373,
0.06498716026544571,
0.22150589525699615,
-0.6129732728004456,
-0.42197296023368835,
0.0017938080709427595,
0.26463571190834045,
-0.793041467666626,
1.0890008211135864,
0.33951255679130554,
-1.0256110429763794,
0.22822222113609314,
-0.8487105965614319,
-0.29855531454086304,
0.053823746740818024,
0.10627711564302444,
-0.7890254855155945,
-0.17911872267723083,
0.202100470662117,
0.7215403318405151,
-0.3191540241241455,
0.019388852640986443,
-0.6048627495765686,
-0.12936437129974365,
0.3787541091442108,
0.2115255743265152,
1.1782788038253784,
0.08534186333417892,
-0.15380674600601196,
0.08246676623821259,
-0.9268630146980286,
0.1277511566877365,
0.4470304846763611,
-0.15893396735191345,
-0.08908334374427795,
-0.21295957267284393,
0.4318554401397705,
0.28198158740997314,
0.07763314247131348,
-0.6094042062759399,
0.4065283536911011,
-0.20431944727897644,
0.5044673085212708,
0.7565329074859619,
-0.0019779657013714314,
0.32432860136032104,
-0.6851291060447693,
0.3755684494972229,
0.040406376123428345,
0.3815363049507141,
-0.020750191062688828,
-0.5520434379577637,
-0.500220775604248,
-0.28690606355667114,
0.330119252204895,
0.47479236125946045,
-0.7101244330406189,
0.9900128245353699,
-0.34097570180892944,
-0.8210076689720154,
-0.6358663439750671,
0.12143277376890182,
0.18411578238010406,
0.5016629099845886,
0.3999633193016052,
-0.4299512803554535,
-0.5912025570869446,
-0.6492010951042175,
0.07411240041255951,
-0.28009092807769775,
0.1452506184577942,
0.4280306398868561,
0.8228015303611755,
-0.2646676301956177,
0.8481742143630981,
-0.655264139175415,
-0.2559714615345001,
-0.30500513315200806,
-0.2974073886871338,
0.4040459394454956,
0.7805809378623962,
0.7045248746871948,
-0.862375795841217,
-0.4952048659324646,
-0.2793196737766266,
-0.6953999400138855,
-0.15072672069072723,
-0.04468807578086853,
-0.25742071866989136,
0.01598474569618702,
0.09937239438295364,
-0.7064273357391357,
0.5519119501113892,
0.5024215579032898,
-0.6825581789016724,
0.5344334840774536,
0.08475790917873383,
-0.0014371760189533234,
-1.2915726900100708,
0.3515899181365967,
0.2704096734523773,
0.0250410046428442,
-0.5885933041572571,
-0.2122032195329666,
-0.06153871491551399,
-0.029701683670282364,
-0.08912680298089981,
0.6302759647369385,
-0.3538602590560913,
0.3042544722557068,
0.1420741230249405,
0.046608902513980865,
0.0935889482498169,
0.43305104970932007,
-0.06431891769170761,
0.30001187324523926,
0.9885759949684143,
-0.38719797134399414,
0.6687270402908325,
0.6151493787765503,
-0.20039300620555878,
0.8244715332984924,
-0.8267161846160889,
0.017261333763599396,
-0.277619868516922,
0.366427481174469,
-0.8451869487762451,
-0.5632236003875732,
0.8285983204841614,
-0.6923890113830566,
0.39763152599334717,
-0.2612549364566803,
-0.5279743075370789,
-0.8266404867172241,
-0.6788944602012634,
0.0982421413064003,
0.5163463950157166,
-0.40402039885520935,
0.4541324973106384,
0.5758976340293884,
0.04625561088323593,
-0.3743276596069336,
-0.8328247666358948,
-0.13050761818885803,
-0.38926976919174194,
-0.8248065710067749,
0.45860588550567627,
-0.35006284713745117,
-0.10381490737199783,
0.16398277878761292,
0.09466229379177094,
0.0974990725517273,
-0.0047862050123512745,
0.4047905206680298,
0.33964091539382935,
0.09839550405740738,
-0.006607654504477978,
-0.0995405912399292,
-0.26885268092155457,
0.1247113049030304,
-0.2018783539533615,
0.25974562764167786,
-0.26448872685432434,
-0.13398414850234985,
-0.6454840302467346,
0.21570821106433868,
0.44800159335136414,
-0.22779744863510132,
0.7111292481422424,
0.7846649289131165,
-0.24550169706344604,
-0.04503374174237251,
-0.5146458745002747,
-0.13735540211200714,
-0.4232565760612488,
0.05287836119532585,
-0.22590035200119019,
-0.5923603177070618,
0.9477511644363403,
0.24247010052204132,
0.09553132951259613,
0.662696123123169,
0.4610258638858795,
-0.11843766272068024,
0.6523299217224121,
0.41310662031173706,
-0.2958805561065674,
0.5585054159164429,
-0.6746997237205505,
-0.23678253591060638,
-0.848269522190094,
-0.4197809398174286,
-0.47662290930747986,
-0.4983865022659302,
-0.8781862854957581,
-0.4404396116733551,
0.22106800973415375,
0.137319415807724,
-0.2436435967683792,
0.4650244116783142,
-0.9527102112770081,
0.2768106162548065,
0.3560066521167755,
0.3188871443271637,
-0.15027502179145813,
0.08241990953683853,
0.08195729553699493,
0.136111781001091,
-0.6253476142883301,
-0.2475104033946991,
1.1271482706069946,
0.5152251124382019,
0.5365822911262512,
-0.08779599517583847,
0.8338264226913452,
0.041187833994627,
0.2640658915042877,
-0.5073793530464172,
0.48688212037086487,
-0.010307860560715199,
-0.5125249624252319,
-0.17007394134998322,
-0.5170423984527588,
-0.872746467590332,
-0.1358450949192047,
-0.4294634163379669,
-0.7087146639823914,
0.49271321296691895,
0.1154143363237381,
-0.22064663469791412,
0.4006365239620209,
-0.6277613639831543,
0.8723841905593872,
-0.06850774586200714,
-0.4760996103286743,
0.32031872868537903,
-1.0335277318954468,
0.14670823514461517,
0.21898145973682404,
0.269491583108902,
-0.39553654193878174,
0.05225900188088417,
1.008147954940796,
-0.8116949796676636,
0.9367512464523315,
-0.37045958638191223,
0.16676729917526245,
0.572995126247406,
-0.33696120977401733,
0.45756030082702637,
0.08301322907209396,
-0.2694970965385437,
0.3123895227909088,
0.008746112696826458,
-0.44677743315696716,
-0.40235790610313416,
0.6362162232398987,
-0.728216290473938,
0.05673631653189659,
-0.34915322065353394,
-0.4730064570903778,
0.08519244939088821,
0.1710924506187439,
0.3111153244972229,
0.3833734691143036,
0.019723771139979362,
0.10942865163087845,
0.44486185908317566,
-0.12702018022537231,
0.317049503326416,
0.04854929819703102,
-0.06839068979024887,
-0.7953980565071106,
0.907174289226532,
0.19621427357196808,
0.03647331893444061,
-0.031704630702733994,
0.40887099504470825,
-0.35273730754852295,
-0.13027240335941315,
-0.6120665669441223,
0.47393369674682617,
-0.39428389072418213,
-0.3772660791873932,
-0.46756142377853394,
-0.1670655459165573,
-0.62380051612854,
-0.15092232823371887,
-0.22242188453674316,
-0.49344465136528015,
-0.32369038462638855,
-0.2161373794078827,
1.0297927856445312,
0.47035500407218933,
-0.7096601724624634,
0.15799373388290405,
-0.5437471866607666,
0.2888927161693573,
-0.07031538337469101,
0.6415701508522034,
-0.1117476373910904,
-0.30171826481819153,
-0.19275300204753876,
0.0986030325293541,
-0.17978984117507935,
-0.7254228591918945,
0.2743403911590576,
-0.05980532988905907,
0.38514238595962524,
0.10368174314498901,
0.11371617019176483,
0.6946724057197571,
-0.05956301838159561,
0.6517733931541443,
0.29543983936309814,
-0.8315073847770691,
0.6619503498077393,
-0.5174142122268677,
0.12061642110347748,
0.7155377864837646,
0.36214032769203186,
-0.6295286417007446,
-0.09030363708734512,
-0.9489103555679321,
-0.873481035232544,
0.7943272590637207,
0.41566410660743713,
0.07218540459871292,
0.21045315265655518,
0.5887165665626526,
-0.22603000700473785,
0.2625415027141571,
-0.7023593783378601,
-0.8622859120368958,
-0.3882504105567932,
-0.36828935146331787,
-0.027808886021375656,
-0.11713597178459167,
-0.22506681084632874,
-0.6675938367843628,
0.7864338159561157,
-0.12869587540626526,
0.33823084831237793,
0.40521636605262756,
0.4150592088699341,
-0.2288404256105423,
-0.00631485553458333,
0.2005457729101181,
0.354282945394516,
-0.22984051704406738,
-0.33065831661224365,
-0.13251322507858276,
-0.6070095300674438,
-0.13041676580905914,
0.5504826903343201,
-0.3811778724193573,
-0.08585584908723831,
0.3446662425994873,
0.8890178203582764,
-0.027571827173233032,
-0.21856078505516052,
0.5949223637580872,
-0.0453949049115181,
-0.40916314721107483,
-0.39413073658943176,
0.01498048659414053,
0.13542595505714417,
0.2420455366373062,
0.055614080280065536,
0.08214534819126129,
-0.09815201163291931,
-0.4068341851234436,
0.40508711338043213,
0.23936805129051208,
-0.3923726975917816,
-0.4650273323059082,
0.6152282953262329,
0.08553050458431244,
-0.11626235395669937,
0.5031940937042236,
-0.15843738615512848,
-0.6294312477111816,
0.7850984930992126,
0.13887254893779755,
0.806925356388092,
-0.16692718863487244,
0.32689976692199707,
0.7031153440475464,
0.24489755928516388,
-0.06706716120243073,
0.5691297054290771,
-0.19082960486412048,
-0.6729559302330017,
-0.07347588241100311,
-0.5511545538902283,
-0.13099677860736847,
0.05287567526102066,
-0.8608226776123047,
0.4406006336212158,
-0.447361022233963,
-0.2482747584581375,
0.04178579896688461,
0.37256547808647156,
-0.6919869780540466,
0.20051629841327667,
-0.022672180086374283,
1.0674360990524292,
-1.0646847486495972,
0.4457634389400482,
0.7039456963539124,
-0.6752914190292358,
-1.2109601497650146,
-0.12393118441104889,
0.1863139569759369,
-0.5677615404129028,
0.1819714903831482,
0.2050921767950058,
0.498637318611145,
-0.06545281410217285,
-0.9119384288787842,
-0.6384856700897217,
1.187960147857666,
0.03759250417351723,
-0.23544643819332123,
0.29561516642570496,
0.12088988721370697,
0.6117688417434692,
-0.33094361424446106,
0.36893314123153687,
0.633688747882843,
0.6997321248054504,
0.30421751737594604,
-0.7270973324775696,
0.2709480822086334,
-0.6583147048950195,
-0.20513714849948883,
0.07756906747817993,
-1.0032471418380737,
0.6616553664207458,
-0.17715443670749664,
-0.05520939454436302,
0.036665741354227066,
0.6125048995018005,
0.4363519549369812,
0.40722134709358215,
0.4488483667373657,
0.7536699175834656,
0.823016345500946,
-0.3671683967113495,
1.2138290405273438,
-0.27555006742477417,
0.6192282438278198,
0.7630784511566162,
0.013507125899195671,
0.5056330561637878,
0.22201426327228546,
-0.3208408057689667,
0.566648542881012,
0.6343533992767334,
-0.4517408013343811,
0.21826766431331635,
0.3935422897338867,
-0.04955797269940376,
-0.07967148721218109,
-0.25982949137687683,
-0.5710559487342834,
0.2816532850265503,
0.239578515291214,
-0.33842524886131287,
0.022533485665917397,
-0.012009594589471817,
0.3782157897949219,
-0.041818540543317795,
-0.2719239890575409,
0.6521710157394409,
0.028843259438872337,
-0.3383103311061859,
0.487892210483551,
-0.17799752950668335,
0.6982564330101013,
-0.603649914264679,
0.12043414264917374,
-0.07558710128068924,
0.1356729418039322,
-0.6207021474838257,
-1.1211912631988525,
0.36705082654953003,
-0.052719589322805405,
-0.2798722982406616,
-0.3624191880226135,
0.7526533007621765,
-0.45417362451553345,
-0.7667855024337769,
0.24596716463565826,
0.2257290780544281,
0.3085101544857025,
0.1534917801618576,
-1.2862316370010376,
0.5722498297691345,
0.15934191644191742,
-0.4701799750328064,
0.07257503271102905,
0.5240609645843506,
0.16968095302581787,
0.5605405569076538,
0.7081171870231628,
0.2637823522090912,
-0.2624964118003845,
0.08600469678640366,
1.1385749578475952,
-0.5521565675735474,
-0.4833645522594452,
-0.769035816192627,
0.9161450862884521,
-0.3914039731025696,
-0.4077523648738861,
0.7001755833625793,
0.7515839338302612,
0.8461467027664185,
0.03371303156018257,
0.8253124952316284,
-0.6710386872291565,
0.7105267643928528,
-0.20759379863739014,
0.9456693530082703,
-0.6759068965911865,
-0.05134110152721405,
-0.7377196550369263,
-0.5233633518218994,
-0.40004661679267883,
0.6849579215049744,
-0.2032163292169571,
0.21729257702827454,
0.2475469559431076,
0.9167811274528503,
0.034956224262714386,
0.1406349539756775,
-0.27931246161460876,
0.3045988380908966,
0.2637809216976166,
0.5586886405944824,
0.45473209023475647,
-0.8889957666397095,
0.34474512934684753,
-0.7654354572296143,
-0.3340458273887634,
0.08080358803272247,
-0.8567963242530823,
-0.9169820547103882,
-0.9206797480583191,
-0.665126383304596,
-0.7902889251708984,
-0.25731921195983887,
1.0823391675949097,
0.7196728587150574,
-0.7108874320983887,
-0.2578652799129486,
0.06457115709781647,
0.25495046377182007,
-0.0741255134344101,
-0.32299602031707764,
0.6335164308547974,
0.3946667015552521,
-0.6068252325057983,
-0.15566135942935944,
-0.0033502583391964436,
0.2668284475803375,
0.07516401261091232,
-0.07627564668655396,
-0.06265546381473541,
-0.293291836977005,
0.3229992985725403,
0.4545612633228302,
-0.3179321587085724,
-0.09685374051332474,
-0.25288939476013184,
0.02864784747362137,
0.1581329107284546,
0.4567086100578308,
-0.5203661918640137,
0.18122535943984985,
0.6426482796669006,
0.2513974606990814,
0.4703005254268646,
0.21121273934841156,
0.013962441124022007,
-0.4815056324005127,
0.07072073221206665,
-0.019436320289969444,
0.33519619703292847,
0.3970150351524353,
-0.45725101232528687,
0.783385157585144,
0.5649915337562561,
-0.5041882395744324,
-0.8136680722236633,
-0.15459217131137848,
-1.3079235553741455,
0.09191872179508209,
1.0204578638076782,
-0.004380283877253532,
-0.5648287534713745,
0.07956307381391525,
-0.225407674908638,
0.14544279873371124,
-0.5717042684555054,
0.4450143873691559,
0.5273310542106628,
-0.09389811009168625,
0.10009302943944931,
-0.33204376697540283,
0.601161777973175,
-0.040903184562921524,
-0.984040379524231,
0.19128532707691193,
0.4303681552410126,
0.5055546760559082,
0.3260413408279419,
0.7951996326446533,
-0.23653577268123627,
0.06963320821523666,
-0.0446157269179821,
0.329351007938385,
-0.2862662076950073,
0.012763756327331066,
-0.34102585911750793,
-0.12598106265068054,
-0.5048007965087891,
-0.21862921118736267
]
|
huggingartists/logic | huggingartists | 2022-10-25T09:35:38Z | 260 | 1 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/logic"
## 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:** 3.343197 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('https://images.genius.com/0f975524d106026e89de983689d007c4.900x900x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/logic">
<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">Logic</div>
<a href="https://genius.com/artists/logic">
<div style="text-align: center; font-size: 14px;">@logic</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/logic).
### 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/logic")
```
## 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|
|------:|---------:|---:|
|651| -| -|
'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/logic")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6104605197906494,
-0.5348044037818909,
0.12355255335569382,
0.2242807149887085,
-0.21051783859729767,
-0.011579764075577259,
-0.29488930106163025,
-0.41943368315696716,
0.8280222415924072,
0.35296857357025146,
-0.9453292489051819,
-0.8247269988059998,
-0.5612626671791077,
0.11029188334941864,
-0.12429613620042801,
1.2774986028671265,
-0.18274296820163727,
-0.3861025273799896,
-0.3528282344341278,
-0.26668331027030945,
-0.3365810811519623,
-0.3313371241092682,
-0.29015234112739563,
-0.3711104691028595,
0.3007577359676361,
0.44848987460136414,
0.7049646973609924,
0.8826116919517517,
0.47835826873779297,
0.36246615648269653,
-0.09623158723115921,
0.000354843185050413,
-0.3357112407684326,
-0.12135152518749237,
0.11718428879976273,
-0.2994968891143799,
-0.6967611312866211,
0.2705962359905243,
0.5127807855606079,
0.41766855120658875,
-0.11171798408031464,
0.4909464716911316,
0.020377513021230698,
0.8908023834228516,
-0.3096923232078552,
0.5210456848144531,
-0.2658182978630066,
-0.1513565331697464,
-0.27470165491104126,
0.041375961154699326,
0.15021638572216034,
-0.5810449123382568,
-0.034923721104860306,
-0.778944730758667,
0.007484933827072382,
0.024634860455989838,
0.992526650428772,
0.07982601970434189,
0.09949138760566711,
-0.1895674467086792,
-0.178707093000412,
0.5427391529083252,
-0.594822347164154,
-0.001383863389492035,
0.5242234468460083,
0.17796853184700012,
0.013903774321079254,
-0.653094470500946,
-0.679949164390564,
0.12744110822677612,
-0.1701260209083557,
0.28238746523857117,
-0.21456648409366608,
-0.3270495533943176,
0.5597902536392212,
0.5085975527763367,
-0.49127113819122314,
-0.30736956000328064,
-0.526668131351471,
-0.14682060480117798,
1.169334053993225,
0.17787432670593262,
0.421176552772522,
-0.48685067892074585,
-0.20916280150413513,
-0.36928877234458923,
-0.25659075379371643,
0.361834853887558,
0.544767439365387,
0.41488412022590637,
-0.9753469228744507,
0.633209228515625,
-0.2327643632888794,
0.6092601418495178,
0.14189697802066803,
-0.0695512592792511,
0.8019096851348877,
-0.44038185477256775,
-0.12007958441972733,
-0.09538330882787704,
1.0614334344863892,
0.6646020412445068,
0.1920168399810791,
0.1295449584722519,
-0.10149718075990677,
0.08208300173282623,
-0.14705945551395416,
-0.8454191088676453,
-0.41893506050109863,
0.6573617458343506,
-0.5943916440010071,
-0.5811124444007874,
0.16758349537849426,
-0.9376439452171326,
-0.22270241379737854,
-0.3530796766281128,
0.2821388840675354,
-0.40907663106918335,
-0.5281987190246582,
0.22013753652572632,
-0.2981472909450531,
0.15450555086135864,
0.05889349430799484,
-0.5756305456161499,
0.2466575801372528,
0.6170420050621033,
0.7497014403343201,
0.21473044157028198,
-0.27355554699897766,
-0.3354056179523468,
-0.2032683938741684,
-0.10447391122579575,
0.6861206293106079,
-0.32349178194999695,
-0.28713303804397583,
-0.1912185251712799,
0.2994033694267273,
-0.09759790450334549,
-0.3048669099807739,
0.9025545120239258,
0.015917614102363586,
0.201517716050148,
-0.5739759206771851,
-0.48113226890563965,
-0.034300368279218674,
0.2702864408493042,
-0.771223783493042,
0.9975286722183228,
0.31727156043052673,
-1.0166082382202148,
0.18613338470458984,
-0.8250077962875366,
-0.33973488211631775,
0.033788952976465225,
0.03247988596558571,
-0.7398533821105957,
-0.19610534608364105,
0.17599551379680634,
0.6792353391647339,
-0.32880839705467224,
0.05112982541322708,
-0.5763471126556396,
-0.12474415451288223,
0.41122904419898987,
0.24606741964817047,
1.2460675239562988,
0.12948037683963776,
-0.16498154401779175,
0.1282164454460144,
-0.9438485503196716,
0.1589765101671219,
0.4502301514148712,
-0.12968741357326508,
-0.08414788544178009,
-0.16120997071266174,
0.3834112286567688,
0.3418436348438263,
0.05252958834171295,
-0.6111722588539124,
0.3728792071342468,
-0.22236104309558868,
0.49628132581710815,
0.7591628432273865,
-0.01774136908352375,
0.28368470072746277,
-0.6592556834220886,
0.3850681781768799,
0.11144350469112396,
0.35629674792289734,
0.016533808782696724,
-0.5861679911613464,
-0.47977757453918457,
-0.2697194814682007,
0.3261604309082031,
0.5210974216461182,
-0.6948849558830261,
1.0506196022033691,
-0.33200275897979736,
-0.8058806657791138,
-0.6230280995368958,
0.1741325557231903,
0.17431330680847168,
0.574038028717041,
0.37755391001701355,
-0.41921550035476685,
-0.5879022479057312,
-0.6802905797958374,
0.05081050843000412,
-0.24348755180835724,
0.17052610218524933,
0.3693845570087433,
0.8420141339302063,
-0.269118070602417,
0.8953707814216614,
-0.7093772888183594,
-0.27558594942092896,
-0.31303972005844116,
-0.3524895906448364,
0.4189724922180176,
0.7766323089599609,
0.6727980971336365,
-0.849240779876709,
-0.4257984757423401,
-0.27679795026779175,
-0.6978700160980225,
-0.11399521678686142,
-0.020699085667729378,
-0.29080599546432495,
0.07159902155399323,
0.15036995708942413,
-0.7349522709846497,
0.5779920220375061,
0.47179192304611206,
-0.6972889304161072,
0.5889484286308289,
0.13169603049755096,
-0.020833630114793777,
-1.2702600955963135,
0.3659077286720276,
0.2406984567642212,
0.0234653539955616,
-0.585397481918335,
-0.22623148560523987,
-0.06878845393657684,
-0.021619591861963272,
-0.12199265509843826,
0.6393912434577942,
-0.28360509872436523,
0.30450570583343506,
0.13973839581012726,
0.0853220596909523,
0.11443827301263809,
0.46856847405433655,
-0.06180236488580704,
0.2391604781150818,
0.993492841720581,
-0.38768458366394043,
0.7053130865097046,
0.5844296216964722,
-0.2671031355857849,
0.8495049476623535,
-0.8161996006965637,
-0.01686721108853817,
-0.23912101984024048,
0.4383271634578705,
-0.8148680925369263,
-0.509946346282959,
0.8480352759361267,
-0.6770939826965332,
0.34014198184013367,
-0.226994127035141,
-0.6021828651428223,
-0.7710024118423462,
-0.6592084169387817,
0.16390284895896912,
0.5698460936546326,
-0.3654335141181946,
0.4577154219150543,
0.5969451069831848,
0.10393770039081573,
-0.3385467231273651,
-0.7601203918457031,
-0.1827431172132492,
-0.34850794076919556,
-0.8512780070304871,
0.38272807002067566,
-0.3674287796020508,
-0.15125153958797455,
0.16560091078281403,
0.057724688202142715,
0.1522085815668106,
0.020850805565714836,
0.3708246946334839,
0.338733434677124,
0.10307925939559937,
-0.0028308387845754623,
-0.08237233012914658,
-0.2893386781215668,
0.18069221079349518,
-0.2889699637889862,
0.25526413321495056,
-0.33738815784454346,
-0.14635787904262543,
-0.6506163477897644,
0.19971688091754913,
0.41274622082710266,
-0.2903192937374115,
0.6632426381111145,
0.787712037563324,
-0.27404293417930603,
-0.07215011119842529,
-0.478567510843277,
-0.14225806295871735,
-0.430532842874527,
0.027614286169409752,
-0.23459942638874054,
-0.6109204292297363,
0.9342744946479797,
0.22085273265838623,
0.07922673970460892,
0.6946319341659546,
0.4758546054363251,
-0.058708254247903824,
0.7023220062255859,
0.34695932269096375,
-0.24233834445476532,
0.4705386757850647,
-0.6625547409057617,
-0.1670086830854416,
-0.8499990105628967,
-0.4476360082626343,
-0.46614521741867065,
-0.5148569941520691,
-0.8724343776702881,
-0.4365265369415283,
0.2040383368730545,
0.11250855028629303,
-0.241971954703331,
0.42440181970596313,
-0.952223539352417,
0.2880018353462219,
0.3719470500946045,
0.27415090799331665,
-0.09074809402227402,
0.08699828386306763,
0.06191171333193779,
0.1525576412677765,
-0.6210810542106628,
-0.2259550541639328,
1.1317156553268433,
0.44553154706954956,
0.5532433986663818,
-0.08452750742435455,
0.8260708451271057,
0.011101093143224716,
0.20422786474227905,
-0.5576487183570862,
0.5359940528869629,
0.03412923961877823,
-0.5149376392364502,
-0.10643775761127472,
-0.5287973880767822,
-0.86133873462677,
-0.15133897960186005,
-0.4204559326171875,
-0.7010115385055542,
0.4765239953994751,
0.0885506421327591,
-0.22628024220466614,
0.4173978865146637,
-0.619022786617279,
0.8860591650009155,
-0.07739410549402237,
-0.44460612535476685,
0.2746259570121765,
-1.048120141029358,
0.21319922804832458,
0.1993396133184433,
0.3008211553096771,
-0.3983072340488434,
0.04669183865189552,
1.0153733491897583,
-0.8419619798660278,
0.896125853061676,
-0.3563764691352844,
0.1681116372346878,
0.6226658225059509,
-0.26919448375701904,
0.412263959646225,
0.09880945086479187,
-0.26596492528915405,
0.32551708817481995,
0.04844611510634422,
-0.4637526869773865,
-0.4775790274143219,
0.6662301421165466,
-0.7008436918258667,
-0.0010506572434678674,
-0.38213858008384705,
-0.45979979634284973,
0.03818177059292793,
0.19811415672302246,
0.23652158677577972,
0.4096132218837738,
0.07186110317707062,
0.13357305526733398,
0.48152536153793335,
-0.15345318615436554,
0.264290452003479,
0.020703470334410667,
-0.10353533923625946,
-0.7563297152519226,
0.9406750202178955,
0.15670901536941528,
0.06886456161737442,
-0.035852354019880295,
0.4519094228744507,
-0.35313794016838074,
-0.08718760311603546,
-0.613247811794281,
0.43720412254333496,
-0.4360964894294739,
-0.40534159541130066,
-0.5153213143348694,
-0.2065252959728241,
-0.6462862491607666,
-0.15537597239017487,
-0.24199482798576355,
-0.5594054460525513,
-0.2737846076488495,
-0.2233765870332718,
1.0693293809890747,
0.434518039226532,
-0.6557901501655579,
0.056172389537096024,
-0.5243366956710815,
0.29723262786865234,
-0.07405632734298706,
0.6600688099861145,
-0.09947901964187622,
-0.31408023834228516,
-0.18100598454475403,
0.09082379192113876,
-0.18955732882022858,
-0.6625336408615112,
0.23643304407596588,
-0.050741348415613174,
0.385212242603302,
0.1002390906214714,
0.1527978926897049,
0.6362091302871704,
-0.08357954770326614,
0.6293067932128906,
0.284790962934494,
-0.861430287361145,
0.7361380457878113,
-0.4754304587841034,
0.16691038012504578,
0.7235910892486572,
0.3559128940105438,
-0.5908538103103638,
-0.0901968777179718,
-0.9815213084220886,
-0.8463670015335083,
0.8278518915176392,
0.4253310561180115,
0.02167154662311077,
0.2198273241519928,
0.543271541595459,
-0.1915462613105774,
0.2987815737724304,
-0.6394957304000854,
-0.84653240442276,
-0.44357314705848694,
-0.3885883688926697,
-0.008342470973730087,
-0.022580837830901146,
-0.3051068186759949,
-0.725139319896698,
0.7723801136016846,
-0.14901944994926453,
0.319029301404953,
0.4040820896625519,
0.4127466082572937,
-0.1772221326828003,
0.026745054870843887,
0.25640302896499634,
0.39549142122268677,
-0.22427137196063995,
-0.29407042264938354,
-0.19282595813274384,
-0.5670977234840393,
-0.08642906695604324,
0.5110792517662048,
-0.3815818130970001,
-0.12973754107952118,
0.3270871043205261,
0.8858473300933838,
-0.06739886850118637,
-0.32644349336624146,
0.6124895811080933,
-0.047563109546899796,
-0.43496328592300415,
-0.38250336050987244,
0.07255513221025467,
0.1617412269115448,
0.22294023633003235,
0.01016982365399599,
0.13091115653514862,
-0.07854533195495605,
-0.43738195300102234,
0.418116956949234,
0.24480143189430237,
-0.35785919427871704,
-0.4655173420906067,
0.605854868888855,
0.0656929686665535,
-0.11316566169261932,
0.5171586871147156,
-0.20238226652145386,
-0.6499588489532471,
0.7835229635238647,
0.1484658420085907,
0.8307507038116455,
-0.06042524799704552,
0.3122629225254059,
0.7148519158363342,
0.23281584680080414,
-0.04705454409122467,
0.5526659488677979,
-0.20851226150989532,
-0.6781235337257385,
-0.07902177423238754,
-0.5889871120452881,
-0.10155440121889114,
0.022868415340781212,
-0.815681517124176,
0.4196457266807556,
-0.5228902697563171,
-0.20452550053596497,
0.032324377447366714,
0.4015747606754303,
-0.7292428016662598,
0.19652126729488373,
-0.04946630075573921,
1.0684518814086914,
-1.0279263257980347,
0.46359047293663025,
0.6958388686180115,
-0.6583998203277588,
-1.2103139162063599,
-0.17866486310958862,
0.23979437351226807,
-0.5529351234436035,
0.2414225935935974,
0.19808271527290344,
0.44247233867645264,
-0.09231512993574142,
-0.9221699237823486,
-0.6201984882354736,
1.1926885843276978,
0.02531156875193119,
-0.20410998165607452,
0.3803018033504486,
0.10737749934196472,
0.6059285998344421,
-0.37604302167892456,
0.29350048303604126,
0.666283905506134,
0.7132349014282227,
0.2988729178905487,
-0.6533601880073547,
0.3520287573337555,
-0.6856826543807983,
-0.25833356380462646,
0.06560532003641129,
-1.0069208145141602,
0.616095244884491,
-0.19023729860782623,
-0.047278162091970444,
-0.024776766076683998,
0.6071672439575195,
0.4985607862472534,
0.4198475480079651,
0.48758238554000854,
0.7920469045639038,
0.8160802125930786,
-0.34094107151031494,
1.2414191961288452,
-0.28490981459617615,
0.5792191028594971,
0.7974810004234314,
-0.0413723960518837,
0.505801796913147,
0.21912704408168793,
-0.3109453022480011,
0.5959054231643677,
0.6016415357589722,
-0.4286699891090393,
0.20525404810905457,
0.4184911847114563,
-0.028292076662182808,
-0.11677507311105728,
-0.2352432757616043,
-0.5769103169441223,
0.287563681602478,
0.2606860101222992,
-0.27534475922584534,
0.05611102283000946,
-0.06213386356830597,
0.351131796836853,
-0.020797831937670708,
-0.2510512173175812,
0.6352570652961731,
0.03876032680273056,
-0.3678950071334839,
0.5009235739707947,
-0.16586686670780182,
0.670870304107666,
-0.5936323404312134,
0.13966426253318787,
-0.09372112900018692,
0.13270975649356842,
-0.6356862783432007,
-1.096266508102417,
0.38507694005966187,
-0.06835754215717316,
-0.2621287405490875,
-0.3365119993686676,
0.7690396308898926,
-0.4190182685852051,
-0.8294735550880432,
0.25068938732147217,
0.23491127789020538,
0.2576638162136078,
0.16157622635364532,
-1.2827386856079102,
0.5662822723388672,
0.13224732875823975,
-0.4608788788318634,
0.10419243574142456,
0.5451974272727966,
0.14862947165966034,
0.5646400451660156,
0.7255998849868774,
0.2412755936384201,
-0.26105251908302307,
0.04772605374455452,
1.1203584671020508,
-0.6002675890922546,
-0.45946213603019714,
-0.7595134973526001,
0.8955780863761902,
-0.3672902286052704,
-0.38101980090141296,
0.6721166968345642,
0.7639074921607971,
0.913135826587677,
0.030813971534371376,
0.8192657232284546,
-0.6649830341339111,
0.656018853187561,
-0.24801060557365417,
0.94233238697052,
-0.7230389714241028,
-0.015418492257595062,
-0.7233930230140686,
-0.5191055536270142,
-0.39512908458709717,
0.6593289971351624,
-0.19600696861743927,
0.22946865856647491,
0.3108762800693512,
0.923859715461731,
0.006106339395046234,
0.16197112202644348,
-0.27716079354286194,
0.30361929535865784,
0.2944452166557312,
0.5767406821250916,
0.4289635419845581,
-0.9013786911964417,
0.3430272042751312,
-0.7708832621574402,
-0.32462039589881897,
0.06778734922409058,
-0.8426285982131958,
-0.8697414994239807,
-0.9239151477813721,
-0.6731646656990051,
-0.8139106035232544,
-0.32010626792907715,
1.0992728471755981,
0.707989513874054,
-0.7333886623382568,
-0.27259567379951477,
0.069183349609375,
0.3208144009113312,
-0.10136119276285172,
-0.33082249760627747,
0.6379702091217041,
0.3540478050708771,
-0.5490868091583252,
-0.14273445308208466,
0.032046470791101456,
0.16030336916446686,
0.06591260433197021,
-0.08947916328907013,
-0.14095205068588257,
-0.256600558757782,
0.38595423102378845,
0.45441436767578125,
-0.33711135387420654,
-0.09192081540822983,
-0.22146999835968018,
0.042746033519506454,
0.15761061012744904,
0.502448558807373,
-0.5998443961143494,
0.20318397879600525,
0.690650224685669,
0.31788119673728943,
0.3935961425304413,
0.177877739071846,
0.04096243530511856,
-0.4561145305633545,
0.0732087567448616,
-0.011069640517234802,
0.3141758441925049,
0.3696129620075226,
-0.42021819949150085,
0.7973485589027405,
0.6270164251327515,
-0.4685012698173523,
-0.786138117313385,
-0.11032804846763611,
-1.3442691564559937,
0.06215639412403107,
1.0317953824996948,
0.03744445741176605,
-0.5864847898483276,
0.08334469050168991,
-0.18917810916900635,
0.10437440127134323,
-0.5587064623832703,
0.408161461353302,
0.5275426506996155,
-0.13418899476528168,
0.17177210748195648,
-0.37143969535827637,
0.6231486797332764,
-0.014729421585798264,
-1.0249769687652588,
0.1658080667257309,
0.47242018580436707,
0.4854678809642792,
0.3180713653564453,
0.796028196811676,
-0.29892921447753906,
0.0797460526227951,
-0.05898246914148331,
0.2553824782371521,
-0.2711792290210724,
0.014774853363633156,
-0.3368256986141205,
-0.13834154605865479,
-0.5437835454940796,
-0.16024576127529144
]
|
huggingartists/lorde | huggingartists | 2022-10-25T09:35:45Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/lorde"
## 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.257919 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('https://images.genius.com/f95ef5adcf31fdd7ef300c981b79bae3.818x818x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/lorde">
<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">Lorde</div>
<a href="https://genius.com/artists/lorde">
<div style="text-align: center; font-size: 14px;">@lorde</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/lorde).
### 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/lorde")
```
## 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|
|------:|---------:|---:|
|172| -| -|
'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/lorde")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6127243041992188,
-0.4912039637565613,
0.08916211873292923,
0.17693796753883362,
-0.23132598400115967,
-0.02109493315219879,
-0.2844647169113159,
-0.48154565691947937,
0.8595529198646545,
0.37606221437454224,
-0.9014719724655151,
-0.8042269945144653,
-0.592293918132782,
0.04876245930790901,
-0.10201320052146912,
1.242875576019287,
-0.12903177738189697,
-0.3816301226615906,
-0.20159834623336792,
-0.2877725660800934,
-0.34566766023635864,
-0.3163912892341614,
-0.42081400752067566,
-0.341570645570755,
0.3674098253250122,
0.49870315194129944,
0.7200666666030884,
0.7751631736755371,
0.5159927010536194,
0.35379764437675476,
-0.14881490170955658,
0.06843257695436478,
-0.4196128845214844,
-0.10347779840230942,
0.10289785265922546,
-0.24477744102478027,
-0.7537740468978882,
0.33271440863609314,
0.5214965343475342,
0.36278900504112244,
-0.1538906693458557,
0.4674687087535858,
0.08795963227748871,
0.9120501279830933,
-0.23824158310890198,
0.4346155524253845,
-0.28204187750816345,
-0.1635124534368515,
-0.24060851335525513,
0.07824274897575378,
0.18008451163768768,
-0.583702564239502,
-0.03165324032306671,
-0.7450825572013855,
0.08931823074817657,
0.06438755989074707,
1.097272515296936,
0.03206648677587509,
0.15079547464847565,
-0.2029627412557602,
-0.13699591159820557,
0.5390573740005493,
-0.6199708580970764,
0.026807419955730438,
0.6233888268470764,
0.2391558140516281,
0.05014241859316826,
-0.6226855516433716,
-0.6528669595718384,
0.0010205109138041735,
-0.17519178986549377,
0.3437550663948059,
-0.15326744318008423,
-0.3422202467918396,
0.49861428141593933,
0.6087397933006287,
-0.5357275009155273,
-0.23683078587055206,
-0.5265268683433533,
-0.0895986557006836,
1.110635757446289,
0.1311776041984558,
0.45273464918136597,
-0.5320042967796326,
-0.125321164727211,
-0.4328415095806122,
-0.3233796954154968,
0.3048686981201172,
0.5854077339172363,
0.44557473063468933,
-1.057173252105713,
0.6217291355133057,
-0.032273221760988235,
0.49314606189727783,
0.24414700269699097,
-0.006633509416133165,
0.7545815706253052,
-0.37617143988609314,
-0.15036214888095856,
-0.2322767972946167,
1.0963159799575806,
0.687160849571228,
0.20955167710781097,
0.030396152287721634,
-0.029584277421236038,
0.02365351840853691,
-0.029676277190446854,
-0.8326522707939148,
-0.36728301644325256,
0.6197330951690674,
-0.5531762838363647,
-0.5871562957763672,
0.14209797978401184,
-0.9782799482345581,
-0.22560825943946838,
-0.3164386451244354,
0.191899836063385,
-0.3721219599246979,
-0.48976317048072815,
0.10942325741052628,
-0.27258485555648804,
0.18961401283740997,
0.03905002400279045,
-0.6655782461166382,
0.1926616132259369,
0.536386251449585,
0.7389427423477173,
0.16199985146522522,
-0.29052644968032837,
-0.290706604719162,
-0.08615706115961075,
-0.2250376045703888,
0.642367422580719,
-0.33795174956321716,
-0.41830316185951233,
-0.1919959932565689,
0.4332011342048645,
-0.06041062995791435,
-0.3633626103401184,
0.8791213631629944,
-0.011199177242815495,
0.2506284713745117,
-0.5674498081207275,
-0.44353875517845154,
-0.023507729172706604,
0.28198960423469543,
-0.7885164022445679,
1.032477617263794,
0.34903484582901,
-0.9736996293067932,
0.1596422791481018,
-0.8355981707572937,
-0.25302407145500183,
0.031357940286397934,
0.025268767029047012,
-0.7745452523231506,
-0.13590051233768463,
0.21270234882831573,
0.6864753365516663,
-0.3632139265537262,
0.10368164628744125,
-0.5320665836334229,
-0.052396420389413834,
0.3007127642631531,
0.2237737774848938,
1.1321401596069336,
0.11117466539144516,
-0.1457025557756424,
0.05682068318128586,
-0.9082505106925964,
0.1466909646987915,
0.452314168214798,
-0.10516706109046936,
-0.028086377307772636,
-0.18938207626342773,
0.4091772735118866,
0.19641485810279846,
-0.013849282637238503,
-0.48333263397216797,
0.4265098571777344,
-0.2081819325685501,
0.47506842017173767,
0.7528183460235596,
0.02496340498328209,
0.30117955803871155,
-0.6607545018196106,
0.43671125173568726,
0.03217277675867081,
0.3606317341327667,
0.1019391268491745,
-0.5416973829269409,
-0.4035525619983673,
-0.23194855451583862,
0.3074380159378052,
0.5517340898513794,
-0.6569110155105591,
1.0184595584869385,
-0.33396750688552856,
-0.8088341951370239,
-0.6012673377990723,
0.103892482817173,
0.17315655946731567,
0.5519291162490845,
0.41144245862960815,
-0.4636462926864624,
-0.5809107422828674,
-0.7107989192008972,
0.13315722346305847,
-0.30934298038482666,
0.12084266543388367,
0.5101611018180847,
0.8402553796768188,
-0.3242107629776001,
0.8161860704421997,
-0.6819170117378235,
-0.2489851713180542,
-0.28692343831062317,
-0.3203165829181671,
0.42131078243255615,
0.8346259593963623,
0.6819623708724976,
-0.7923188805580139,
-0.5107775926589966,
-0.194977805018425,
-0.7748743295669556,
-0.12653182446956635,
-0.02938265912234783,
-0.2696038484573364,
-0.026764025911688805,
0.14182253181934357,
-0.6138167977333069,
0.49619701504707336,
0.5369232892990112,
-0.6087290644645691,
0.6835212111473083,
0.061232153326272964,
0.12570859491825104,
-1.28852117061615,
0.3603110909461975,
0.24308286607265472,
0.01598251610994339,
-0.5982844829559326,
-0.1576487272977829,
-0.04775607958436012,
-0.020693998783826828,
-0.08839584141969681,
0.6567139029502869,
-0.37106263637542725,
0.3361223340034485,
0.10517025738954544,
0.10134219378232956,
0.10574860870838165,
0.39195123314857483,
-0.09639311581850052,
0.43924179673194885,
1.0689456462860107,
-0.33855196833610535,
0.6592157483100891,
0.6168603301048279,
-0.17829689383506775,
0.9451450705528259,
-0.8405718803405762,
0.055097419768571854,
-0.26685354113578796,
0.33896830677986145,
-0.8232702612876892,
-0.5397657752037048,
0.8099957704544067,
-0.711789071559906,
0.46877944469451904,
-0.34920093417167664,
-0.47754764556884766,
-0.838577926158905,
-0.6714537143707275,
0.06916818022727966,
0.5674828290939331,
-0.375026136636734,
0.46574562788009644,
0.6286794543266296,
0.08330146968364716,
-0.3649328351020813,
-0.8382878303527832,
-0.013984205201268196,
-0.4398389756679535,
-0.8140340447425842,
0.4212135672569275,
-0.3689414858818054,
-0.09464561939239502,
0.09690390527248383,
0.032229114323854446,
0.09736699610948563,
-0.05173099413514137,
0.3712216019630432,
0.3762800395488739,
0.08097907155752182,
-0.06943442672491074,
-0.15170516073703766,
-0.2858731150627136,
0.0729118213057518,
-0.2706286907196045,
0.20288735628128052,
-0.3089136779308319,
-0.13170787692070007,
-0.6387456059455872,
0.216910257935524,
0.4094770848751068,
-0.15558506548404694,
0.666294515132904,
0.7466235160827637,
-0.2481139749288559,
-0.0589410774409771,
-0.5574776530265808,
-0.12863264977931976,
-0.43831828236579895,
-0.013829866424202919,
-0.22820770740509033,
-0.5962260365486145,
1.0208921432495117,
0.2669581174850464,
0.055530499666929245,
0.6938786506652832,
0.4012233316898346,
-0.09753469377756119,
0.5694971680641174,
0.3810248076915741,
-0.33794134855270386,
0.4798266887664795,
-0.7498095631599426,
-0.21949483454227448,
-0.9583081007003784,
-0.33988794684410095,
-0.5329510569572449,
-0.47567370533943176,
-0.8830564618110657,
-0.5194293856620789,
0.2243281900882721,
0.16998827457427979,
-0.22327886521816254,
0.46081581711769104,
-0.992056667804718,
0.35767635703086853,
0.30058589577674866,
0.2322041541337967,
-0.17255231738090515,
0.10984775424003601,
0.04645410180091858,
0.1381402611732483,
-0.5132415890693665,
-0.3263353407382965,
1.1605589389801025,
0.3882221579551697,
0.6039782762527466,
-0.06552056223154068,
0.743726372718811,
0.08599366247653961,
0.20665603876113892,
-0.4625738561153412,
0.5315561294555664,
-0.04102136567234993,
-0.5122659206390381,
-0.16262415051460266,
-0.5030995607376099,
-0.9292066693305969,
-0.09643172472715378,
-0.3398211896419525,
-0.7388070821762085,
0.4559996426105499,
0.09923628717660904,
-0.13801400363445282,
0.4542277455329895,
-0.6187204122543335,
0.876724362373352,
-0.046722687780857086,
-0.47648030519485474,
0.2540336549282074,
-1.03101646900177,
0.1267072856426239,
0.25160831212997437,
0.2577466666698456,
-0.33703896403312683,
0.06090240180492401,
1.006523847579956,
-0.7579522132873535,
0.9218261241912842,
-0.3615359663963318,
0.13112981617450714,
0.6028399467468262,
-0.31304600834846497,
0.5329254269599915,
0.1382274627685547,
-0.24051176011562347,
0.2736365497112274,
-0.09615159034729004,
-0.46422624588012695,
-0.3564698100090027,
0.7106155753135681,
-0.7491874098777771,
-0.004076358862221241,
-0.3110085725784302,
-0.3778473138809204,
-0.01717776618897915,
0.09184268862009048,
0.2707250118255615,
0.4186846911907196,
-0.052174657583236694,
0.05562129244208336,
0.4841499328613281,
-0.14501459896564484,
0.28549647331237793,
0.08198133111000061,
-0.07816286385059357,
-0.8543421626091003,
0.8833747506141663,
0.17919328808784485,
0.09891139715909958,
-0.10998200625181198,
0.42889413237571716,
-0.3621445894241333,
-0.23278720676898956,
-0.6750291585922241,
0.49047166109085083,
-0.4434763491153717,
-0.31393247842788696,
-0.4660687744617462,
-0.23029030859470367,
-0.6121602058410645,
-0.27067458629608154,
-0.19379675388336182,
-0.4771234393119812,
-0.3432609438896179,
-0.2609754800796509,
0.996391773223877,
0.47410938143730164,
-0.7037574052810669,
0.2123640775680542,
-0.5246731638908386,
0.40053728222846985,
0.009658264927566051,
0.6756157875061035,
-0.08272897452116013,
-0.42078638076782227,
-0.187445729970932,
0.032961614429950714,
-0.21606548130512238,
-0.7375578284263611,
0.28365013003349304,
-0.00923966709524393,
0.43726685643196106,
0.07057350128889084,
-0.023878606036305428,
0.7203370332717896,
-0.1445641964673996,
0.72252357006073,
0.3042999505996704,
-0.7562687993049622,
0.6637045741081238,
-0.5124936699867249,
0.13962876796722412,
0.7756915092468262,
0.34231439232826233,
-0.7140884399414062,
-0.19906631112098694,
-1.0049608945846558,
-0.8807549476623535,
0.7789483070373535,
0.3906545341014862,
0.04286251589655876,
0.2082136869430542,
0.560235857963562,
-0.12745948135852814,
0.29003065824508667,
-0.693859338760376,
-0.9142981767654419,
-0.4265034794807434,
-0.30404365062713623,
-0.06826230138540268,
-0.06428228318691254,
-0.24690337479114532,
-0.6576389670372009,
0.8527142405509949,
-0.16218404471874237,
0.3079415559768677,
0.3808361291885376,
0.3410809338092804,
-0.2004437893629074,
0.06689666211605072,
0.18792298436164856,
0.38527122139930725,
-0.23387683928012848,
-0.3398072421550751,
-0.13536778092384338,
-0.6931042671203613,
-0.07441823184490204,
0.4876013696193695,
-0.3854292333126068,
-0.15427452325820923,
0.29264533519744873,
0.9001527428627014,
-0.14058680832386017,
-0.1582764983177185,
0.5259494781494141,
-0.0353606678545475,
-0.4360656142234802,
-0.3699856400489807,
0.03797421231865883,
0.20079649984836578,
0.20850147306919098,
0.10022278875112534,
0.045374758541584015,
-0.08720067143440247,
-0.39174434542655945,
0.3865222632884979,
0.31724846363067627,
-0.38352471590042114,
-0.5082919597625732,
0.6654862761497498,
0.04110123589634895,
-0.08281160891056061,
0.4594322144985199,
-0.22707988321781158,
-0.5767002105712891,
0.8146494030952454,
0.10354654490947723,
0.9265350699424744,
-0.13628025352954865,
0.337293803691864,
0.7265297770500183,
0.2689407169818878,
-0.04545304924249649,
0.5343234539031982,
-0.09982015937566757,
-0.5978432893753052,
-0.12402672320604324,
-0.5841614007949829,
-0.1835138499736786,
0.12796135246753693,
-0.7403721809387207,
0.3537572920322418,
-0.41312375664711,
-0.19930291175842285,
0.05537358298897743,
0.4087415933609009,
-0.6890265941619873,
0.1864851713180542,
-0.021683333441615105,
0.988571047782898,
-1.0182280540466309,
0.44235455989837646,
0.689933180809021,
-0.6406445503234863,
-1.187687873840332,
-0.15165796875953674,
0.22253356873989105,
-0.6179755330085754,
0.1755189448595047,
0.20421326160430908,
0.46531516313552856,
-0.0943184494972229,
-0.9546234011650085,
-0.6355426907539368,
1.1314245462417603,
-0.01752982847392559,
-0.26525649428367615,
0.33582979440689087,
0.12931577861309052,
0.6288200616836548,
-0.35533425211906433,
0.39566412568092346,
0.5781007409095764,
0.784748911857605,
0.32697975635528564,
-0.7433274388313293,
0.26458409428596497,
-0.5870265364646912,
-0.21418903768062592,
0.07070617377758026,
-0.9601299166679382,
0.5473448038101196,
-0.15660113096237183,
-0.04327179118990898,
-0.050691474229097366,
0.6116097569465637,
0.3755396604537964,
0.30907580256462097,
0.4409542679786682,
0.8351112604141235,
0.8591981530189514,
-0.322950154542923,
1.1647228002548218,
-0.24109667539596558,
0.5915509462356567,
0.7498114705085754,
-0.043799854815006256,
0.4344959259033203,
0.17583824694156647,
-0.41695284843444824,
0.5673313140869141,
0.5813312530517578,
-0.4766392409801483,
0.2494804412126541,
0.4353926181793213,
-0.009412264451384544,
-0.037243135273456573,
-0.13520315289497375,
-0.5955575108528137,
0.15788041055202484,
0.25600019097328186,
-0.21025294065475464,
-0.00917322002351284,
0.014035734347999096,
0.36149853467941284,
-0.05787022039294243,
-0.29753342270851135,
0.6970167756080627,
0.029825130477547646,
-0.36696162819862366,
0.656065046787262,
-0.2519449293613434,
0.719961404800415,
-0.664778470993042,
0.19107043743133545,
-0.12766070663928986,
0.05411851406097412,
-0.5767834782600403,
-1.0959038734436035,
0.43361759185791016,
-0.055882446467876434,
-0.2951154410839081,
-0.3060610294342041,
0.7411052584648132,
-0.4191160500049591,
-0.7698829174041748,
0.25035935640335083,
0.31642794609069824,
0.3332834541797638,
0.17178501188755035,
-1.3157018423080444,
0.47522756457328796,
0.18666419386863708,
-0.5345262885093689,
0.13195854425430298,
0.5034260749816895,
0.13818609714508057,
0.5504055023193359,
0.7260382175445557,
0.28026390075683594,
-0.26573431491851807,
0.11949106305837631,
1.0978418588638306,
-0.680443286895752,
-0.4340054988861084,
-0.7124912738800049,
0.8692528605461121,
-0.3965100944042206,
-0.3702545762062073,
0.6290125250816345,
0.7647528648376465,
0.7613921165466309,
0.019458139315247536,
0.8504340648651123,
-0.7056534290313721,
0.6931018829345703,
-0.19341690838336945,
0.8957898020744324,
-0.7472301721572876,
-0.03360412269830704,
-0.6553360819816589,
-0.47449377179145813,
-0.37828996777534485,
0.6427817344665527,
-0.19425120949745178,
0.21141564846038818,
0.36668986082077026,
0.9546418786048889,
-0.015273243188858032,
0.14218774437904358,
-0.23843228816986084,
0.33508771657943726,
0.33931607007980347,
0.49978765845298767,
0.3759171962738037,
-0.8535031676292419,
0.3242045044898987,
-0.6279222965240479,
-0.27721941471099854,
0.09309930354356766,
-0.8923845291137695,
-0.879368007183075,
-0.8808853030204773,
-0.6523605585098267,
-0.7660821676254272,
-0.1768399477005005,
0.9864091873168945,
0.7393553256988525,
-0.7857019305229187,
-0.30434590578079224,
0.08752699941396713,
0.25674375891685486,
-0.11237473785877228,
-0.31183043122291565,
0.689731240272522,
0.30466219782829285,
-0.5890143513679504,
-0.03011322021484375,
0.026015665382146835,
0.30349767208099365,
0.08295854181051254,
-0.09247604757547379,
-0.08154274523258209,
-0.22871361672878265,
0.3181210160255432,
0.4474456012248993,
-0.3195532262325287,
-0.13486051559448242,
-0.2688542604446411,
0.004795736167579889,
0.26766645908355713,
0.39250919222831726,
-0.5698805451393127,
0.09438471496105194,
0.5824662446975708,
0.268003910779953,
0.47110843658447266,
0.22314691543579102,
-0.036444537341594696,
-0.47596466541290283,
0.03938008099794388,
-0.02367420680820942,
0.3072620630264282,
0.40125784277915955,
-0.3967704772949219,
0.9011579751968384,
0.5430736541748047,
-0.6159646511077881,
-0.7498019933700562,
-0.13516473770141602,
-1.3805367946624756,
0.0518069751560688,
1.023625135421753,
0.048372507095336914,
-0.5254451036453247,
0.08987701684236526,
-0.22160805761814117,
0.04253646358847618,
-0.5795188546180725,
0.44958221912384033,
0.5861882567405701,
-0.018977781757712364,
0.15334108471870422,
-0.4797595739364624,
0.5863884091377258,
-0.044711895287036896,
-1.0271505117416382,
0.26020699739456177,
0.526034414768219,
0.4199107885360718,
0.3093094527721405,
0.7929895520210266,
-0.26511090993881226,
0.03134933114051819,
-0.09519816190004349,
0.29239344596862793,
-0.24010692536830902,
0.04623977094888687,
-0.28499624133110046,
-0.08965878188610077,
-0.491240918636322,
-0.15316058695316315
]
|
huggingartists/lyapis-trubetskoy | huggingartists | 2022-10-25T09:37:04Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/lyapis-trubetskoy"
## 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.122834 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('https://images.genius.com/452918252959798bad82762cda0dc2d7.340x340x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/lyapis-trubetskoy">
<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">Ляпис Трубецкой (Lyapis Trubetskoy)</div>
<a href="https://genius.com/artists/lyapis-trubetskoy">
<div style="text-align: center; font-size: 14px;">@lyapis-trubetskoy</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/lyapis-trubetskoy).
### 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/lyapis-trubetskoy")
```
## 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|
|------:|---------:|---:|
|53| -| -|
'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/lyapis-trubetskoy")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6085851192474365,
-0.5301027297973633,
0.09594830870628357,
0.27496638894081116,
-0.2960662543773651,
0.011782869696617126,
-0.3173815608024597,
-0.4629666209220886,
0.8821016550064087,
0.3211575150489807,
-0.920488715171814,
-0.8350112438201904,
-0.5551316142082214,
0.11601880192756653,
-0.06670983880758286,
1.2694973945617676,
-0.2106470912694931,
-0.3578145503997803,
-0.30973148345947266,
-0.22543445229530334,
-0.27559924125671387,
-0.3107129633426666,
-0.29407602548599243,
-0.3632199168205261,
0.3610982298851013,
0.507272481918335,
0.7017425298690796,
0.8616693615913391,
0.49060431122779846,
0.35166406631469727,
-0.13411518931388855,
0.0020103503484278917,
-0.3570091724395752,
-0.07415961474180222,
0.22116413712501526,
-0.33677753806114197,
-0.690477192401886,
0.20378415286540985,
0.5546901822090149,
0.3781746029853821,
-0.09116490930318832,
0.48703745007514954,
0.07852699607610703,
0.8476826548576355,
-0.25960573554039,
0.4775739014148712,
-0.2206595540046692,
-0.12694676220417023,
-0.3068758249282837,
0.06920649856328964,
0.1738671362400055,
-0.6306168437004089,
-0.028488487005233765,
-0.736717939376831,
0.025456564500927925,
-0.02288563922047615,
1.0216505527496338,
0.04757053777575493,
0.13731905817985535,
-0.20184950530529022,
-0.14529766142368317,
0.5394864678382874,
-0.6124832630157471,
-0.02477141097187996,
0.5842925906181335,
0.12986674904823303,
-0.002484540455043316,
-0.6134106516838074,
-0.5965085029602051,
0.0789932906627655,
-0.16773974895477295,
0.28826457262039185,
-0.16394957900047302,
-0.3297034502029419,
0.51564621925354,
0.5069336295127869,
-0.5036060810089111,
-0.21739298105239868,
-0.5334380269050598,
-0.1349603831768036,
1.1620399951934814,
0.15160460770130157,
0.41243788599967957,
-0.4807334542274475,
-0.17950549721717834,
-0.37470534443855286,
-0.23267194628715515,
0.3777032196521759,
0.5802763104438782,
0.4581039845943451,
-1.02507746219635,
0.6320065855979919,
-0.18756103515625,
0.5475105047225952,
0.1365201771259308,
-0.06538525968790054,
0.7994447946548462,
-0.3753238618373871,
-0.11041945964097977,
-0.13429397344589233,
1.064596176147461,
0.6679217219352722,
0.2008950412273407,
0.10881761461496353,
-0.04328767582774162,
0.058650996536016464,
-0.18755172193050385,
-0.8305819034576416,
-0.39198869466781616,
0.6536213755607605,
-0.581246554851532,
-0.6260579824447632,
0.10419093072414398,
-1.0064175128936768,
-0.21067601442337036,
-0.2891556918621063,
0.2500256299972534,
-0.3689602017402649,
-0.552601158618927,
0.16178154945373535,
-0.25197574496269226,
0.10632340610027313,
0.05936169624328613,
-0.5720800161361694,
0.1827012300491333,
0.5798248052597046,
0.7766246199607849,
0.2221706658601761,
-0.28176045417785645,
-0.25774767994880676,
-0.22575417160987854,
-0.13588754832744598,
0.6608003973960876,
-0.27110549807548523,
-0.3370422422885895,
-0.12495074421167374,
0.3320142328739166,
-0.06835227459669113,
-0.2674335539340973,
0.8991775512695312,
0.07954109460115433,
0.17495405673980713,
-0.5555220246315002,
-0.41111379861831665,
0.025544701144099236,
0.2837097644805908,
-0.7457504868507385,
1.090590476989746,
0.29118961095809937,
-1.0217376947402954,
0.17834429442882538,
-0.7722970843315125,
-0.2942245900630951,
0.027971424162387848,
0.11210032552480698,
-0.8296999931335449,
-0.1649162322282791,
0.18073634803295135,
0.7641314268112183,
-0.27745479345321655,
0.02617703191936016,
-0.6449085474014282,
-0.11349267512559891,
0.3973587155342102,
0.2944466769695282,
1.1566170454025269,
0.11262169480323792,
-0.13333842158317566,
0.1006607711315155,
-0.9476777911186218,
0.16350321471691132,
0.4711405038833618,
-0.1666649580001831,
-0.12503893673419952,
-0.2543007731437683,
0.411998450756073,
0.31145355105400085,
0.0872807726264,
-0.6026586294174194,
0.4457777440547943,
-0.22472815215587616,
0.48483017086982727,
0.754040539264679,
-0.014805721119046211,
0.30493369698524475,
-0.6464592814445496,
0.41944220662117004,
0.09119740128517151,
0.37484294176101685,
0.0015469547361135483,
-0.5648120045661926,
-0.49503976106643677,
-0.26292866468429565,
0.3063298463821411,
0.4390178918838501,
-0.7120519280433655,
1.0009170770645142,
-0.3261431157588959,
-0.8635033965110779,
-0.6379410028457642,
0.12620815634727478,
0.17344611883163452,
0.47864294052124023,
0.33110639452934265,
-0.4077720046043396,
-0.5992807745933533,
-0.6593086123466492,
0.060236912220716476,
-0.22598125040531158,
0.20221662521362305,
0.39638954401016235,
0.8563412427902222,
-0.21132896840572357,
0.8218660354614258,
-0.6638919711112976,
-0.26781031489372253,
-0.2970682680606842,
-0.3257913887500763,
0.41810837388038635,
0.7751837372779846,
0.6949846148490906,
-0.834571123123169,
-0.5257211923599243,
-0.2367016077041626,
-0.712154746055603,
-0.08538668602705002,
-0.007412191480398178,
-0.26296958327293396,
0.052646297961473465,
0.10483121126890182,
-0.7590623497962952,
0.560512363910675,
0.4952472746372223,
-0.7048985958099365,
0.5760189294815063,
0.08002282679080963,
-0.008500561118125916,
-1.3015373945236206,
0.3830493688583374,
0.25821179151535034,
-0.006253544706851244,
-0.6459073424339294,
-0.18531416356563568,
-0.060068972408771515,
-0.04210272058844566,
-0.12926380336284637,
0.6277141571044922,
-0.3374086022377014,
0.2781153917312622,
0.13875561952590942,
0.09618742763996124,
0.07860182970762253,
0.4719058573246002,
-0.05779486894607544,
0.26182833313941956,
1.01412034034729,
-0.36382991075515747,
0.6866815686225891,
0.6108852624893188,
-0.2569836676120758,
0.8355671763420105,
-0.8017595410346985,
0.04594217240810394,
-0.26285117864608765,
0.4096290171146393,
-0.8158919811248779,
-0.5294561982154846,
0.8517865538597107,
-0.6842044591903687,
0.40893861651420593,
-0.23867133259773254,
-0.5567877292633057,
-0.8128550052642822,
-0.6900864243507385,
0.1484111100435257,
0.5335859656333923,
-0.36852508783340454,
0.3985588550567627,
0.5746858716011047,
0.05662068352103233,
-0.39889228343963623,
-0.7709184288978577,
-0.14352403581142426,
-0.4107646942138672,
-0.8182089328765869,
0.3566913306713104,
-0.35809090733528137,
-0.09979214519262314,
0.16242294013500214,
0.11926388740539551,
0.10414491593837738,
0.012541264295578003,
0.39533525705337524,
0.30887845158576965,
0.10271480679512024,
0.0027908349875360727,
-0.12540265917778015,
-0.22205455601215363,
0.08988724648952484,
-0.1997927874326706,
0.2984565198421478,
-0.2911055386066437,
-0.08995170891284943,
-0.6858299374580383,
0.2100953459739685,
0.4594739079475403,
-0.24233293533325195,
0.6999220252037048,
0.8012425899505615,
-0.2417028546333313,
-0.0215976033359766,
-0.4925829768180847,
-0.12955544888973236,
-0.4088728725910187,
0.058651383966207504,
-0.25154829025268555,
-0.6087251901626587,
0.9609449505805969,
0.23332521319389343,
0.05582641437649727,
0.655307412147522,
0.48156628012657166,
-0.0930229052901268,
0.6559638977050781,
0.36350399255752563,
-0.2887519598007202,
0.5215461850166321,
-0.7036200165748596,
-0.21977517008781433,
-0.8582687973976135,
-0.4687937796115875,
-0.49991080164909363,
-0.5221802592277527,
-0.8580155968666077,
-0.42594361305236816,
0.18921460211277008,
0.1339263767004013,
-0.2052846997976303,
0.4422643184661865,
-0.923456072807312,
0.24733860790729523,
0.3430192172527313,
0.3356352746486664,
-0.12965209782123566,
0.0952959731221199,
0.08445515483617783,
0.11067134886980057,
-0.604045033454895,
-0.1966855227947235,
1.1346272230148315,
0.5318093299865723,
0.5701081156730652,
-0.10447952151298523,
0.8535279631614685,
0.033896639943122864,
0.2164403200149536,
-0.5534033179283142,
0.515400767326355,
0.03509467840194702,
-0.47945109009742737,
-0.1612664759159088,
-0.506996750831604,
-0.8951433300971985,
-0.13297805190086365,
-0.4546803832054138,
-0.7208284735679626,
0.4756292402744293,
0.1022825762629509,
-0.2115081399679184,
0.3906727135181427,
-0.583939254283905,
0.8246500492095947,
-0.05796682462096214,
-0.4872918725013733,
0.26375648379325867,
-1.0042026042938232,
0.20699605345726013,
0.19240395724773407,
0.2840326726436615,
-0.3883973956108093,
0.044791337102651596,
1.0231772661209106,
-0.7935043573379517,
0.9512657523155212,
-0.37884822487831116,
0.13333500921726227,
0.584322988986969,
-0.30507925152778625,
0.4905420243740082,
0.06547393649816513,
-0.25938424468040466,
0.3313487470149994,
0.040480490773916245,
-0.4601079523563385,
-0.42783311009407043,
0.6865552067756653,
-0.7287847995758057,
0.05377577245235443,
-0.37533384561538696,
-0.4678412079811096,
0.06528604030609131,
0.18066364526748657,
0.2915305197238922,
0.3866976201534271,
0.02780834771692753,
0.13966986536979675,
0.4283103048801422,
-0.1437976062297821,
0.2999895513057709,
0.013341782614588737,
-0.102836973965168,
-0.7924197912216187,
0.8876898884773254,
0.17000223696231842,
0.045416515320539474,
-0.06416624039411545,
0.44107893109321594,
-0.3747861981391907,
-0.11810754239559174,
-0.5676841139793396,
0.5162174105644226,
-0.41977953910827637,
-0.4049806296825409,
-0.47942012548446655,
-0.15434418618679047,
-0.6234942674636841,
-0.13716451823711395,
-0.2552318274974823,
-0.5376812219619751,
-0.309356153011322,
-0.22203882038593292,
1.02609384059906,
0.46109074354171753,
-0.6661398410797119,
0.12769031524658203,
-0.5272155404090881,
0.2685154974460602,
-0.0934828668832779,
0.664967954158783,
-0.08708832412958145,
-0.3164827227592468,
-0.23736220598220825,
0.09608576446771622,
-0.1860049068927765,
-0.6862495541572571,
0.29862919449806213,
-0.04234563559293747,
0.3626120090484619,
0.09032850712537766,
0.1105516329407692,
0.6614415049552917,
-0.03894753381609917,
0.6380335092544556,
0.32588499784469604,
-0.8146822452545166,
0.6797810792922974,
-0.5238103270530701,
0.15073612332344055,
0.6934989094734192,
0.35854846239089966,
-0.6091487407684326,
-0.12783922255039215,
-0.965284526348114,
-0.8347636461257935,
0.8125940561294556,
0.4224839210510254,
0.04353423789143562,
0.26570257544517517,
0.5979108810424805,
-0.2099149078130722,
0.28439804911613464,
-0.6964187622070312,
-0.8461787700653076,
-0.4058668613433838,
-0.3760002553462982,
-0.06283171474933624,
-0.10800404846668243,
-0.2620624005794525,
-0.6762812733650208,
0.7897753715515137,
-0.14296172559261322,
0.3299020230770111,
0.4089873433113098,
0.4209555983543396,
-0.24415601789951324,
-0.016088278964161873,
0.3342641592025757,
0.3595721125602722,
-0.23348447680473328,
-0.31944531202316284,
-0.1562713384628296,
-0.6161203384399414,
-0.07800658792257309,
0.4592370092868805,
-0.36649203300476074,
-0.07459652423858643,
0.32724836468696594,
0.9076128602027893,
-0.0031496065203100443,
-0.23379524052143097,
0.5784085988998413,
-0.06842660158872604,
-0.4303208887577057,
-0.389479398727417,
-0.02103262022137642,
0.16390083730220795,
0.2587132155895233,
0.035731203854084015,
0.08660580962896347,
-0.1499495506286621,
-0.4091489613056183,
0.39546871185302734,
0.26838454604148865,
-0.3737868070602417,
-0.519486129283905,
0.5624067783355713,
0.06932401657104492,
-0.1366964727640152,
0.4483907222747803,
-0.12489069253206253,
-0.6298066973686218,
0.7756132483482361,
0.12535595893859863,
0.8185444474220276,
-0.1910809576511383,
0.3529927134513855,
0.7551282048225403,
0.19506825506687164,
-0.11416352540254593,
0.5280961394309998,
-0.19371286034584045,
-0.6410630345344543,
-0.057389020919799805,
-0.5818053483963013,
-0.08074916154146194,
0.10438818484544754,
-0.8276944756507874,
0.4462328553199768,
-0.48072317242622375,
-0.24572937190532684,
-0.011990131810307503,
0.4086562395095825,
-0.710683286190033,
0.18762271106243134,
-0.05869987607002258,
1.0375522375106812,
-1.0667469501495361,
0.4844200313091278,
0.6933655738830566,
-0.6320837140083313,
-1.1587285995483398,
-0.16164325177669525,
0.15649674832820892,
-0.6148942708969116,
0.24127182364463806,
0.18477118015289307,
0.5154857635498047,
-0.08758275210857391,
-0.9092362523078918,
-0.6539626717567444,
1.1858623027801514,
0.027706323191523552,
-0.23419292271137238,
0.3289985656738281,
0.12553036212921143,
0.641133189201355,
-0.3480704426765442,
0.3172288239002228,
0.6212626099586487,
0.6940558552742004,
0.302950382232666,
-0.7308579683303833,
0.2857051491737366,
-0.6394509673118591,
-0.23198223114013672,
0.0720519945025444,
-1.040693998336792,
0.6245899796485901,
-0.17766119539737701,
-0.026884660124778748,
0.03849073871970177,
0.6056271195411682,
0.44403383135795593,
0.4215807616710663,
0.4354787766933441,
0.7706207036972046,
0.7782029509544373,
-0.3253534436225891,
1.1864638328552246,
-0.2530769109725952,
0.642607569694519,
0.7362987995147705,
0.06648921221494675,
0.5195651054382324,
0.24422647058963776,
-0.33522993326187134,
0.5320978760719299,
0.6565516591072083,
-0.42240849137306213,
0.254866361618042,
0.39537736773490906,
-0.0414016917347908,
-0.0990532711148262,
-0.2639513611793518,
-0.5700132250785828,
0.30800554156303406,
0.23625017702579498,
-0.2843330502510071,
0.023181406781077385,
-0.02122773602604866,
0.385282427072525,
-0.03941826894879341,
-0.2763235569000244,
0.646485447883606,
0.07965758442878723,
-0.36105507612228394,
0.5484716296195984,
-0.2085007280111313,
0.6956107020378113,
-0.6138992309570312,
0.16215819120407104,
-0.11518354713916779,
0.13351991772651672,
-0.6250803470611572,
-1.1088873147964478,
0.3574361503124237,
-0.08294891566038132,
-0.2209087461233139,
-0.3353501558303833,
0.7709454894065857,
-0.47326645255088806,
-0.8080043196678162,
0.23669466376304626,
0.19297575950622559,
0.311509370803833,
0.16117814183235168,
-1.284077525138855,
0.5987085700035095,
0.1710439771413803,
-0.486789345741272,
0.1275338977575302,
0.4876472055912018,
0.16214127838611603,
0.5793566703796387,
0.6764705181121826,
0.29127538204193115,
-0.25859925150871277,
0.05607973039150238,
1.0974398851394653,
-0.5395471453666687,
-0.49449965357780457,
-0.7490932941436768,
0.928834080696106,
-0.3617570102214813,
-0.3697456121444702,
0.6822342872619629,
0.734822154045105,
0.8132575750350952,
-0.013221926987171173,
0.8160207271575928,
-0.623542308807373,
0.6652284264564514,
-0.23420922458171844,
0.925635576248169,
-0.7053068280220032,
-0.09493868052959442,
-0.7231441736221313,
-0.5341880321502686,
-0.4283575415611267,
0.6537423133850098,
-0.17455120384693146,
0.17219296097755432,
0.2534061372280121,
0.8851239681243896,
0.025624403730034828,
0.08879922330379486,
-0.2164601981639862,
0.33943891525268555,
0.28467532992362976,
0.5636216998100281,
0.45066896080970764,
-0.8979821801185608,
0.3351564109325409,
-0.7821347713470459,
-0.3077135682106018,
0.019155830144882202,
-0.8569816946983337,
-0.9307835698127747,
-0.9536740779876709,
-0.6754528880119324,
-0.7909440994262695,
-0.29619720578193665,
1.0772522687911987,
0.698651134967804,
-0.6948561668395996,
-0.2704390287399292,
0.10055743902921677,
0.2572106420993805,
-0.07118496298789978,
-0.3149002194404602,
0.6570939421653748,
0.3787524998188019,
-0.6025397181510925,
-0.15610043704509735,
-0.011632364243268967,
0.2518925070762634,
0.0634329691529274,
-0.10635613650083542,
-0.09439384192228317,
-0.3059091866016388,
0.3419646918773651,
0.4688408672809601,
-0.3396344482898712,
-0.11446966975927353,
-0.24297194182872772,
0.041176389902830124,
0.17132988572120667,
0.46456366777420044,
-0.48729178309440613,
0.19312159717082977,
0.670757532119751,
0.2225823551416397,
0.48311224579811096,
0.19268271327018738,
-0.003630261402577162,
-0.49048665165901184,
0.148457333445549,
-0.03879963979125023,
0.31357625126838684,
0.39232757687568665,
-0.4624248445034027,
0.767022967338562,
0.5907987356185913,
-0.5022496581077576,
-0.8524654507637024,
-0.13141275942325592,
-1.3293577432632446,
0.11221980303525925,
1.043705701828003,
-0.008732586167752743,
-0.5776561498641968,
0.09056022018194199,
-0.22733114659786224,
0.14007842540740967,
-0.5711825489997864,
0.4662584066390991,
0.536662220954895,
-0.09601030498743057,
0.09313703328371048,
-0.3570705056190491,
0.6446170210838318,
-0.029808390885591507,
-0.9836863875389099,
0.19898809492588043,
0.3955259621143341,
0.47428664565086365,
0.3332189917564392,
0.7960201501846313,
-0.23400771617889404,
0.03667181730270386,
-0.08644527941942215,
0.3006323575973511,
-0.2803681790828705,
0.04097453132271767,
-0.3664630651473999,
-0.1341717690229416,
-0.49518534541130066,
-0.2168559432029724
]
|
huggingartists/machine-gun-kelly | huggingartists | 2022-10-25T09:37:17Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/machine-gun-kelly"
## 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.826338 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('https://images.genius.com/bee1868cba78bf4b170886b3368c4ae8.640x640x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/machine-gun-kelly">
<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">Machine Gun Kelly</div>
<a href="https://genius.com/artists/machine-gun-kelly">
<div style="text-align: center; font-size: 14px;">@machine-gun-kelly</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/machine-gun-kelly).
### 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/machine-gun-kelly")
```
## 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|
|------:|---------:|---:|
|373| -| -|
'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/machine-gun-kelly")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6174436807632446,
-0.5718901753425598,
0.11001858115196228,
0.2227710783481598,
-0.2520733177661896,
0.0550406277179718,
-0.32220160961151123,
-0.4405985176563263,
0.7971552610397339,
0.38302332162857056,
-0.9455052614212036,
-0.9135079383850098,
-0.6575295925140381,
0.1150444820523262,
-0.09681844711303711,
1.2930080890655518,
-0.20733289420604706,
-0.39775311946868896,
-0.22108325362205505,
-0.21532657742500305,
-0.36905768513679504,
-0.36978679895401,
-0.28974679112434387,
-0.3511445224285126,
0.32131052017211914,
0.4772462546825409,
0.7462080717086792,
0.9396504759788513,
0.5837700963020325,
0.3605656921863556,
-0.04871520400047302,
-0.059060800820589066,
-0.39594265818595886,
-0.11221911758184433,
0.2159241884946823,
-0.32027170062065125,
-0.6386386156082153,
0.29411691427230835,
0.4816442131996155,
0.38874703645706177,
-0.04825122654438019,
0.44537049531936646,
0.018394755199551582,
0.7962570190429688,
-0.29461750388145447,
0.4995121955871582,
-0.30766335129737854,
-0.13641753792762756,
-0.2812059819698334,
0.1323925256729126,
0.18968980014324188,
-0.5028285980224609,
0.010205707512795925,
-0.7912486791610718,
0.07246053218841553,
-0.048793595284223557,
1.0391713380813599,
0.13234783709049225,
0.1390635073184967,
-0.26251670718193054,
-0.2032431960105896,
0.5676097273826599,
-0.5952232480049133,
-0.03791055455803871,
0.5763243436813354,
0.1483531892299652,
0.011199607513844967,
-0.6119173169136047,
-0.6220278143882751,
-0.0030730487778782845,
-0.1493872106075287,
0.3353640139102936,
-0.20945976674556732,
-0.3324933648109436,
0.5160164833068848,
0.47194704413414,
-0.4948756694793701,
-0.2233281433582306,
-0.5100857019424438,
-0.16197410225868225,
1.165524959564209,
0.18643170595169067,
0.3731924593448639,
-0.45645102858543396,
-0.2601412236690521,
-0.40106645226478577,
-0.20741896331310272,
0.3239123523235321,
0.6110170483589172,
0.4714844822883606,
-1.0286768674850464,
0.6631890535354614,
-0.2441108524799347,
0.5722382068634033,
0.10741573572158813,
-0.04836264252662659,
0.7773871421813965,
-0.3965853154659271,
-0.1071377769112587,
-0.10296370834112167,
1.0794836282730103,
0.6777673363685608,
0.19122105836868286,
0.08721379190683365,
0.013323420658707619,
0.17577756941318512,
-0.10337897390127182,
-0.8343940377235413,
-0.4372742474079132,
0.6766847372055054,
-0.6211220026016235,
-0.6247144341468811,
0.1667497307062149,
-1.010278582572937,
-0.1803511083126068,
-0.3315241038799286,
0.3285762369632721,
-0.3621259927749634,
-0.47919145226478577,
0.1678977906703949,
-0.34864968061447144,
0.07108481973409653,
-0.010518000461161137,
-0.508283257484436,
0.09193216264247894,
0.6346688866615295,
0.7397109866142273,
0.2160433828830719,
-0.3066791296005249,
-0.24143491685390472,
-0.14576968550682068,
-0.13948751986026764,
0.654517650604248,
-0.37428510189056396,
-0.3632042407989502,
-0.1251002550125122,
0.3424284756183624,
0.01487592700868845,
-0.3279390335083008,
0.9024245142936707,
0.07878389209508896,
0.14280526340007782,
-0.557000458240509,
-0.44743260741233826,
0.03745292127132416,
0.2720050513744354,
-0.7057592868804932,
1.0868827104568481,
0.2836577892303467,
-0.9051502346992493,
0.2640957832336426,
-0.8124155402183533,
-0.30571678280830383,
-0.025818850845098495,
0.11685032397508621,
-0.8500433564186096,
-0.24157921969890594,
0.1629979908466339,
0.7732611894607544,
-0.23573723435401917,
-0.01839655637741089,
-0.708933413028717,
-0.08631845563650131,
0.36946120858192444,
0.25208744406700134,
1.1520066261291504,
0.13584741950035095,
-0.16730625927448273,
0.04579678922891617,
-1.001603603363037,
0.12790891528129578,
0.4446638524532318,
-0.19557955861091614,
-0.0519728846848011,
-0.23023219406604767,
0.34725117683410645,
0.2942655086517334,
0.08633816242218018,
-0.6102755665779114,
0.38846904039382935,
-0.13597902655601501,
0.4678489863872528,
0.6978231072425842,
-0.021056288853287697,
0.3290618658065796,
-0.6567842364311218,
0.3545527458190918,
0.07358816266059875,
0.3816581070423126,
-0.0018502511084079742,
-0.5879532694816589,
-0.5058332085609436,
-0.28553783893585205,
0.23856693506240845,
0.5210725665092468,
-0.6123548746109009,
1.054331660270691,
-0.266716331243515,
-0.894387423992157,
-0.5874812602996826,
0.16418281197547913,
0.2062830924987793,
0.5508192181587219,
0.41028663516044617,
-0.4358247220516205,
-0.6187059879302979,
-0.6606311798095703,
0.05804968625307083,
-0.2660994529724121,
0.13937851786613464,
0.3878551423549652,
0.7750938534736633,
-0.2491091936826706,
0.8132794499397278,
-0.6960577368736267,
-0.31406909227371216,
-0.26566940546035767,
-0.26518839597702026,
0.39627692103385925,
0.7617738246917725,
0.6274332404136658,
-0.7731257081031799,
-0.4628550112247467,
-0.3005436658859253,
-0.710321843624115,
-0.14583037793636322,
-0.04803609102964401,
-0.3570801913738251,
0.024737218394875526,
0.1610141396522522,
-0.7582387328147888,
0.6182308197021484,
0.4280279576778412,
-0.6322183012962341,
0.5570970177650452,
0.12489627301692963,
0.010995159856975079,
-1.2789306640625,
0.31912118196487427,
0.18778707087039948,
0.05889185890555382,
-0.6248186230659485,
-0.22141335904598236,
-0.10386074334383011,
-0.0840812548995018,
-0.0764603242278099,
0.5335990786552429,
-0.28841474652290344,
0.2826523184776306,
0.08617229014635086,
0.09455637633800507,
0.09264592081308365,
0.43353450298309326,
-0.04333949834108353,
0.2298465520143509,
0.9480897188186646,
-0.3704453110694885,
0.671056866645813,
0.6254679560661316,
-0.20507138967514038,
0.8496461510658264,
-0.7861177325248718,
0.04374030604958534,
-0.24986819922924042,
0.45178014039993286,
-0.8572462201118469,
-0.49705377221107483,
0.841492235660553,
-0.7041885852813721,
0.42028892040252686,
-0.3160533010959625,
-0.47058528661727905,
-0.8107694983482361,
-0.6314455270767212,
0.038787372410297394,
0.5335777997970581,
-0.34087032079696655,
0.394249826669693,
0.5924698710441589,
0.12776167690753937,
-0.4545446038246155,
-0.7809369564056396,
-0.13052228093147278,
-0.3883650302886963,
-0.8000243902206421,
0.420743852853775,
-0.35444092750549316,
-0.13697855174541473,
0.15048590302467346,
0.07906518131494522,
0.09317084401845932,
-0.02155890315771103,
0.4124237596988678,
0.3948058485984802,
0.07992371916770935,
0.040604691952466965,
-0.19370663166046143,
-0.30241870880126953,
0.11132535338401794,
-0.18400318920612335,
0.2984810769557953,
-0.2495947629213333,
-0.06584429740905762,
-0.6728072166442871,
0.25295576453208923,
0.3940170705318451,
-0.23032809793949127,
0.6684283018112183,
0.8843837976455688,
-0.20313966274261475,
-0.05826196074485779,
-0.49286016821861267,
-0.1880532205104828,
-0.40751418471336365,
0.08228159695863724,
-0.21460852026939392,
-0.6119451522827148,
0.9362487196922302,
0.21415504813194275,
0.07954997569322586,
0.6818151473999023,
0.5673072338104248,
-0.13238489627838135,
0.623780369758606,
0.33639025688171387,
-0.3401080071926117,
0.5038402676582336,
-0.7079733610153198,
-0.1902126669883728,
-0.810295045375824,
-0.39528730511665344,
-0.5356890559196472,
-0.5677334070205688,
-0.8439656496047974,
-0.4319017827510834,
0.18504735827445984,
0.1792883723974228,
-0.24946345388889313,
0.5088361501693726,
-0.9752689003944397,
0.2743149995803833,
0.34433242678642273,
0.3129729628562927,
-0.1228892058134079,
0.04283662140369415,
0.12636436522006989,
0.18010325729846954,
-0.5584115982055664,
-0.2748105823993683,
1.230262279510498,
0.4362182021141052,
0.5532232522964478,
-0.11670425534248352,
0.8435847759246826,
0.027460820972919464,
0.19080978631973267,
-0.5986765623092651,
0.49395546317100525,
-0.03024461306631565,
-0.5564307570457458,
-0.16734439134597778,
-0.47693732380867004,
-0.9173216819763184,
-0.197721466422081,
-0.45355966687202454,
-0.6578364968299866,
0.42668381333351135,
0.08828727900981903,
-0.24292756617069244,
0.3466983735561371,
-0.6487520933151245,
0.8712483644485474,
0.012240718118846416,
-0.40409383177757263,
0.2359989583492279,
-1.0621813535690308,
0.18294478952884674,
0.20277716219425201,
0.24188317358493805,
-0.5203304290771484,
-0.037518151104450226,
0.9613835215568542,
-0.8661950826644897,
0.9255496859550476,
-0.35190171003341675,
0.18417105078697205,
0.6057400107383728,
-0.3230651319026947,
0.4861287474632263,
0.12409947067499161,
-0.23339258134365082,
0.42772331833839417,
-0.01411997526884079,
-0.4258703887462616,
-0.42486414313316345,
0.645736575126648,
-0.7541394233703613,
0.03825680539011955,
-0.30327558517456055,
-0.4632055461406708,
0.06415379047393799,
0.15149444341659546,
0.33558231592178345,
0.38511666655540466,
0.0422140434384346,
0.1329600214958191,
0.4099898636341095,
-0.12820205092430115,
0.3554735481739044,
0.04501773789525032,
-0.023803193122148514,
-0.7535181045532227,
0.8369981050491333,
0.1944667398929596,
0.08743371069431305,
-0.007255187723785639,
0.40992894768714905,
-0.35103705525398254,
-0.11304935812950134,
-0.5995555520057678,
0.4025956392288208,
-0.4263676106929779,
-0.4349339008331299,
-0.5060994029045105,
-0.15376916527748108,
-0.6012870073318481,
-0.21007589995861053,
-0.2696625888347626,
-0.5227949023246765,
-0.35081055760383606,
-0.14585772156715393,
1.0953142642974854,
0.4289620816707611,
-0.6400944590568542,
0.1516868621110916,
-0.5124017596244812,
0.3360579013824463,
-0.07202994078397751,
0.6161879897117615,
-0.1755196452140808,
-0.30776917934417725,
-0.1569604128599167,
0.05689198896288872,
-0.2545642554759979,
-0.6985266208648682,
0.2324363738298416,
-0.032504498958587646,
0.3661676049232483,
0.06205686926841736,
0.15582120418548584,
0.688019335269928,
-0.0958569198846817,
0.6704055070877075,
0.25207456946372986,
-0.7865058779716492,
0.684261679649353,
-0.5343524813652039,
0.169358491897583,
0.7238429188728333,
0.3755977153778076,
-0.5619362592697144,
-0.17123153805732727,
-0.9403417110443115,
-0.7952777147293091,
0.7997995018959045,
0.42503607273101807,
0.10329702496528625,
0.24001562595367432,
0.531545102596283,
-0.22385452687740326,
0.24934576451778412,
-0.5982489585876465,
-0.8429494500160217,
-0.42742377519607544,
-0.4037359654903412,
-0.0413864366710186,
-0.01839713379740715,
-0.2608191967010498,
-0.6008369326591492,
0.8367311954498291,
-0.11876284331083298,
0.3990965485572815,
0.4347594678401947,
0.4254327118396759,
-0.16086949408054352,
0.008523142896592617,
0.2732402980327606,
0.3293474614620209,
-0.2508256733417511,
-0.34079015254974365,
-0.15423858165740967,
-0.6771795153617859,
-0.09228494018316269,
0.5055780410766602,
-0.3048158586025238,
-0.0642603412270546,
0.3206680417060852,
0.8641859889030457,
-0.035227324813604355,
-0.24785195291042328,
0.5717292428016663,
-0.03290165960788727,
-0.4066216051578522,
-0.39803004264831543,
0.03686659783124924,
0.13852013647556305,
0.27155089378356934,
0.03880080580711365,
0.1002890095114708,
-0.13769908249378204,
-0.44761747121810913,
0.43185940384864807,
0.31788575649261475,
-0.3607894778251648,
-0.42234858870506287,
0.5755243301391602,
0.035051342099905014,
-0.1534416228532791,
0.4641832411289215,
-0.1188875213265419,
-0.6379291415214539,
0.7945001125335693,
0.09791985899209976,
0.80783611536026,
-0.12319813668727875,
0.2944088876247406,
0.7482207417488098,
0.25616729259490967,
0.017344605177640915,
0.519159734249115,
-0.18249529600143433,
-0.6692867875099182,
-0.04086090996861458,
-0.5776093006134033,
-0.1046481654047966,
0.11574792861938477,
-0.7726578116416931,
0.5074028372764587,
-0.5291958451271057,
-0.2856990098953247,
0.09536781162023544,
0.41416317224502563,
-0.7446673512458801,
0.17143043875694275,
-0.08047273755073547,
0.9916217923164368,
-0.9789939522743225,
0.4770483374595642,
0.5760732293128967,
-0.6524980664253235,
-1.2126319408416748,
-0.1586734801530838,
0.23799633979797363,
-0.6575261950492859,
0.19894585013389587,
0.1946438103914261,
0.5368508100509644,
-0.09545666724443436,
-0.8795478940010071,
-0.6484158039093018,
1.1425483226776123,
0.009552763774991035,
-0.2245478332042694,
0.414907306432724,
0.19220496714115143,
0.5737395882606506,
-0.37965673208236694,
0.3014644980430603,
0.6813789010047913,
0.698393702507019,
0.26454585790634155,
-0.7000521421432495,
0.24049031734466553,
-0.564455509185791,
-0.276767760515213,
0.13553546369075775,
-1.021366000175476,
0.6048817038536072,
-0.15988419950008392,
0.01930682361125946,
0.057088449597358704,
0.5657287240028381,
0.42904362082481384,
0.44556277990341187,
0.4319459795951843,
0.8583047389984131,
0.7388160228729248,
-0.3767984211444855,
1.1761376857757568,
-0.25471121072769165,
0.5860099792480469,
0.825004518032074,
0.012565995566546917,
0.5894318222999573,
0.17254169285297394,
-0.3846011161804199,
0.5668644905090332,
0.5924996137619019,
-0.5050572156906128,
0.2042325884103775,
0.3653259873390198,
-0.08118248730897903,
-0.09313885122537613,
-0.20485612750053406,
-0.5837252736091614,
0.4056694507598877,
0.20597603917121887,
-0.3924075663089752,
0.005745745729655027,
-0.06713410466909409,
0.4241936206817627,
-0.0579228512942791,
-0.2647600769996643,
0.6973287463188171,
0.002490720711648464,
-0.32198435068130493,
0.5422786474227905,
-0.18552115559577942,
0.6969667077064514,
-0.6676978468894958,
0.1491038054227829,
-0.043681550770998,
0.12356257438659668,
-0.5747339129447937,
-1.069374442100525,
0.4276830554008484,
-0.037834711372852325,
-0.3094359338283539,
-0.2580324113368988,
0.7949702143669128,
-0.46660274267196655,
-0.8152640461921692,
0.19101372361183167,
0.13749678432941437,
0.3204244077205658,
0.15007013082504272,
-1.3048148155212402,
0.6438573002815247,
0.10280276089906693,
-0.42407628893852234,
0.10882928222417831,
0.4667697846889496,
0.23531855642795563,
0.4856765568256378,
0.7903968691825867,
0.1817636638879776,
-0.18564218282699585,
0.02542278729379177,
1.0437628030776978,
-0.5073866844177246,
-0.426043301820755,
-0.7853219509124756,
0.9005714058876038,
-0.39890915155410767,
-0.46197599172592163,
0.6961662769317627,
0.7730343341827393,
0.9081764817237854,
-0.007416519336402416,
0.8096132278442383,
-0.6037548184394836,
0.6946871876716614,
-0.2250390499830246,
0.9696567058563232,
-0.6274496912956238,
-0.09749667346477509,
-0.7373561859130859,
-0.556364893913269,
-0.4042859375476837,
0.6512606143951416,
-0.16329915821552277,
0.18690310418605804,
0.24583861231803894,
0.9833299517631531,
0.04876171797513962,
0.17053423821926117,
-0.21149873733520508,
0.2820364832878113,
0.2598412334918976,
0.5589969158172607,
0.43275079131126404,
-0.9325928688049316,
0.44007307291030884,
-0.8151065111160278,
-0.3190789520740509,
0.0759749636054039,
-0.8792529702186584,
-0.9000989198684692,
-0.9136278629302979,
-0.6781595945358276,
-0.7783286571502686,
-0.34052416682243347,
1.0588706731796265,
0.8072962164878845,
-0.6811367869377136,
-0.23133131861686707,
0.07957138866186142,
0.22461636364459991,
-0.030587948858737946,
-0.3207206726074219,
0.6281436681747437,
0.28444164991378784,
-0.5985004901885986,
-0.10544172674417496,
0.03609638288617134,
0.21857784688472748,
0.0909847617149353,
-0.06607408076524734,
-0.07333330065011978,
-0.2829635739326477,
0.37853381037712097,
0.43078404664993286,
-0.3784794509410858,
-0.12495473772287369,
-0.25622817873954773,
0.08028368651866913,
0.16406817734241486,
0.5208752155303955,
-0.573617160320282,
0.22650080919265747,
0.602450430393219,
0.32307133078575134,
0.4367779493331909,
0.14379355311393738,
-0.0014356111641973257,
-0.4822905957698822,
0.11412062495946884,
-0.027726806700229645,
0.2914583384990692,
0.36066505312919617,
-0.5038236379623413,
0.8001612424850464,
0.6008423566818237,
-0.556921660900116,
-0.7882571816444397,
-0.10448765009641647,
-1.351095199584961,
0.07293824851512909,
1.0158787965774536,
-0.01127877552062273,
-0.499234676361084,
0.012568021193146706,
-0.213874951004982,
0.21137769520282745,
-0.5872750878334045,
0.4790733754634857,
0.6221592426300049,
-0.1029379665851593,
0.17333537340164185,
-0.4047509431838989,
0.6362300515174866,
-0.03461660072207451,
-0.9912152290344238,
0.22727808356285095,
0.4308678209781647,
0.4670928418636322,
0.3512473404407501,
0.6984940767288208,
-0.2710084021091461,
0.056716158986091614,
-0.020251231268048286,
0.24394717812538147,
-0.27972841262817383,
0.055314771831035614,
-0.3250269591808319,
-0.14645662903785706,
-0.6024019718170166,
-0.22080327570438385
]
|
huggingartists/mashina-vremeni | huggingartists | 2022-10-25T09:37:41Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/mashina-vremeni"
## 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.123273 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('https://images.genius.com/b780335021ab0e732601f25bd7a3d319.380x380x1.png')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/mashina-vremeni">
<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">Машина Времени (Mashina Vremeni)</div>
<a href="https://genius.com/artists/mashina-vremeni">
<div style="text-align: center; font-size: 14px;">@mashina-vremeni</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/mashina-vremeni).
### 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/mashina-vremeni")
```
## 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|
|------:|---------:|---:|
|58| -| -|
'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/mashina-vremeni")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6321669220924377,
-0.5531613826751709,
0.05190962925553322,
0.2763868570327759,
-0.2983120381832123,
-0.014055809006094933,
-0.2923092544078827,
-0.4612419903278351,
0.8899094462394714,
0.31487342715263367,
-0.9401421546936035,
-0.8004487156867981,
-0.5775168538093567,
0.1531236320734024,
-0.05061250180006027,
1.2540173530578613,
-0.17351944744586945,
-0.3254487216472626,
-0.2892061173915863,
-0.2647167146205902,
-0.32968419790267944,
-0.29502278566360474,
-0.2842925786972046,
-0.3374539315700531,
0.35288822650909424,
0.5304114818572998,
0.6807578802108765,
0.8572871685028076,
0.49249836802482605,
0.3620069622993469,
-0.1239352896809578,
0.055806636810302734,
-0.33921656012535095,
-0.06834790110588074,
0.17842556536197662,
-0.32374200224876404,
-0.685326099395752,
0.24525342881679535,
0.549376368522644,
0.3781365752220154,
-0.07678943127393723,
0.5104824304580688,
0.053570184856653214,
0.8504275679588318,
-0.28954046964645386,
0.48245278000831604,
-0.2300226241350174,
-0.11464115232229233,
-0.3021671772003174,
0.015267115086317062,
0.18820388615131378,
-0.6027513742446899,
-0.017813917249441147,
-0.7412665486335754,
-0.008071411401033401,
-0.036066457629203796,
1.0456255674362183,
0.05946815013885498,
0.11499761790037155,
-0.18485552072525024,
-0.17768816649913788,
0.5314232110977173,
-0.5950791835784912,
-0.047971174120903015,
0.5806488990783691,
0.17037442326545715,
0.019551489502191544,
-0.5451451539993286,
-0.6282638311386108,
0.08738239854574203,
-0.13116154074668884,
0.31847888231277466,
-0.17666013538837433,
-0.35076892375946045,
0.5329441428184509,
0.5263025164604187,
-0.4676911532878876,
-0.24872033298015594,
-0.560810387134552,
-0.11955917626619339,
1.1223580837249756,
0.15714208781719208,
0.4215047359466553,
-0.4949924647808075,
-0.20708191394805908,
-0.3700469732284546,
-0.23639820516109467,
0.32328829169273376,
0.5845163464546204,
0.45192819833755493,
-1.012001872062683,
0.6860247850418091,
-0.19887705147266388,
0.5634916424751282,
0.13501927256584167,
-0.07110096514225006,
0.7972660660743713,
-0.39171290397644043,
-0.13668102025985718,
-0.14126409590244293,
1.0546308755874634,
0.6802916526794434,
0.1982649564743042,
0.15840648114681244,
-0.011370208114385605,
0.05419759452342987,
-0.14752206206321716,
-0.8611422777175903,
-0.33527952432632446,
0.6163615584373474,
-0.5926036834716797,
-0.6286795735359192,
0.12837174534797668,
-1.0282336473464966,
-0.21605513989925385,
-0.32507583498954773,
0.27079495787620544,
-0.3984413146972656,
-0.598177433013916,
0.18301890790462494,
-0.25144556164741516,
0.16174931824207306,
0.061670251190662384,
-0.5845344662666321,
0.18526995182037354,
0.5825425982475281,
0.805072546005249,
0.24384401738643646,
-0.28493183851242065,
-0.27509212493896484,
-0.23220689594745636,
-0.08602158725261688,
0.6326358318328857,
-0.2981194853782654,
-0.3879251182079315,
-0.13700371980667114,
0.3438829481601715,
-0.10537711530923843,
-0.2687097191810608,
0.9026079177856445,
0.10923366993665695,
0.1962430328130722,
-0.5629356503486633,
-0.4073493480682373,
-0.00934311281889677,
0.2914189100265503,
-0.7287883758544922,
1.0538619756698608,
0.2896784842014313,
-1.057114601135254,
0.1765325665473938,
-0.8040636777877808,
-0.3009776771068573,
0.005003142170608044,
0.07813302427530289,
-0.8248482942581177,
-0.1477576643228531,
0.18092772364616394,
0.7513564825057983,
-0.3041374087333679,
-0.005737545434385538,
-0.5881279706954956,
-0.08479635417461395,
0.39701154828071594,
0.22886037826538086,
1.1807175874710083,
0.1649271547794342,
-0.14875206351280212,
0.0997033566236496,
-0.9710347652435303,
0.09329093992710114,
0.456201434135437,
-0.14147834479808807,
-0.14229756593704224,
-0.2563150227069855,
0.4114623963832855,
0.3286720812320709,
0.0703917071223259,
-0.6283769011497498,
0.442546010017395,
-0.21080659329891205,
0.4619022309780121,
0.7624475359916687,
-0.017134184017777443,
0.2854301631450653,
-0.6462755799293518,
0.44852596521377563,
0.11614927649497986,
0.3901089131832123,
-0.022185027599334717,
-0.5925119519233704,
-0.4848261773586273,
-0.25929075479507446,
0.31186598539352417,
0.4584415853023529,
-0.722540020942688,
0.985287070274353,
-0.33451613783836365,
-0.866767168045044,
-0.6726257801055908,
0.09904627501964569,
0.19746460020542145,
0.529080331325531,
0.3195230960845947,
-0.4490312933921814,
-0.6113347411155701,
-0.657540500164032,
0.10295654088258743,
-0.2332712858915329,
0.2051566243171692,
0.38238003849983215,
0.851942241191864,
-0.23498152196407318,
0.810590922832489,
-0.6490651965141296,
-0.26556476950645447,
-0.2772844135761261,
-0.32862892746925354,
0.3944227397441864,
0.8053219318389893,
0.6672307252883911,
-0.8568233251571655,
-0.47607412934303284,
-0.2089204043149948,
-0.7145887613296509,
-0.10820814967155457,
-0.026251113042235374,
-0.28405246138572693,
0.02602030150592327,
0.1002674549818039,
-0.7297170758247375,
0.5619288682937622,
0.5043250322341919,
-0.7277885675430298,
0.5975205898284912,
0.06285468488931656,
0.022130046039819717,
-1.3665660619735718,
0.3608332574367523,
0.27595385909080505,
-0.008763152174651623,
-0.601341724395752,
-0.16558292508125305,
-0.0807739645242691,
-0.03922590613365173,
-0.11928167939186096,
0.6228598356246948,
-0.333212673664093,
0.2869359254837036,
0.09062740206718445,
0.055398907512426376,
0.055219314992427826,
0.45149582624435425,
-0.062237516045570374,
0.2863118648529053,
1.02257239818573,
-0.36805906891822815,
0.6462770700454712,
0.6129265427589417,
-0.21455314755439758,
0.8955137729644775,
-0.809185266494751,
-0.013687890022993088,
-0.25415486097335815,
0.3581046164035797,
-0.8283694386482239,
-0.5263221859931946,
0.8588931560516357,
-0.7185219526290894,
0.4082680940628052,
-0.2509404122829437,
-0.5556380152702332,
-0.7967881560325623,
-0.6907776594161987,
0.14832726120948792,
0.5284983515739441,
-0.3550480604171753,
0.42553555965423584,
0.5900290012359619,
0.08641856908798218,
-0.41031864285469055,
-0.7611184120178223,
-0.15970881283283234,
-0.3958609998226166,
-0.808912456035614,
0.3443656861782074,
-0.3474990427494049,
-0.09108476340770721,
0.14055007696151733,
0.08557815849781036,
0.12444183230400085,
0.03818390145897865,
0.4402497410774231,
0.32159844040870667,
0.06447481364011765,
-0.02092677913606167,
-0.08966019004583359,
-0.2807333171367645,
0.062223199754953384,
-0.19977770745754242,
0.30008846521377563,
-0.28519588708877563,
-0.128007709980011,
-0.7059813141822815,
0.2093319147825241,
0.49115487933158875,
-0.2616117000579834,
0.7318483591079712,
0.8291201591491699,
-0.24286895990371704,
0.03133760765194893,
-0.5200828313827515,
-0.11199723929166794,
-0.40550458431243896,
0.013326359912753105,
-0.2869400084018707,
-0.6150155663490295,
0.9541171789169312,
0.17890064418315887,
0.05694197118282318,
0.6953388452529907,
0.5112529397010803,
-0.045446671545505524,
0.6436505317687988,
0.39279651641845703,
-0.3084372878074646,
0.5278846621513367,
-0.7052919268608093,
-0.2448447346687317,
-0.8896645307540894,
-0.4641992747783661,
-0.49990931153297424,
-0.49921733140945435,
-0.8952913880348206,
-0.4505895674228668,
0.17768602073192596,
0.08549981564283371,
-0.187565416097641,
0.46821966767311096,
-0.9351359605789185,
0.2648720443248749,
0.35215553641319275,
0.29560190439224243,
-0.11488957703113556,
0.0769805759191513,
0.08526675403118134,
0.12752194702625275,
-0.5635982751846313,
-0.22859884798526764,
1.1285585165023804,
0.5040661692619324,
0.5389073491096497,
-0.10195721685886383,
0.8148586750030518,
0.019173968583345413,
0.19306771457195282,
-0.5287675261497498,
0.4978921413421631,
0.07797640562057495,
-0.49238699674606323,
-0.14556850492954254,
-0.4977762699127197,
-0.9119831919670105,
-0.05859443545341492,
-0.45167505741119385,
-0.6853585243225098,
0.4993739128112793,
0.03351942077279091,
-0.21813079714775085,
0.40400800108909607,
-0.587861955165863,
0.8233824968338013,
0.0053872945718467236,
-0.45439666509628296,
0.26150158047676086,
-1.0314490795135498,
0.21785423159599304,
0.22134758532047272,
0.28259336948394775,
-0.426914781332016,
0.024223003536462784,
0.9925988912582397,
-0.8384204506874084,
0.9447322487831116,
-0.36555007100105286,
0.15939782559871674,
0.5615068078041077,
-0.3067779541015625,
0.4145348072052002,
0.09562818706035614,
-0.2809459865093231,
0.29743295907974243,
0.02583964355289936,
-0.49700072407722473,
-0.40733978152275085,
0.682267963886261,
-0.7320980429649353,
0.06092105433344841,
-0.38803115487098694,
-0.4352104961872101,
0.07281248271465302,
0.17911669611930847,
0.2887659966945648,
0.40615445375442505,
0.0360373817384243,
0.11639077961444855,
0.45251134037971497,
-0.13789445161819458,
0.27506378293037415,
0.04388951137661934,
-0.0942007303237915,
-0.7687304615974426,
0.9056477546691895,
0.19346950948238373,
0.05528930947184563,
-0.07514645159244537,
0.43579208850860596,
-0.3218792676925659,
-0.12368982285261154,
-0.6084951758384705,
0.5035738945007324,
-0.373750776052475,
-0.4137254059314728,
-0.5079674124717712,
-0.181648388504982,
-0.596571147441864,
-0.12022348493337631,
-0.2658582627773285,
-0.5471475124359131,
-0.2976716458797455,
-0.25037848949432373,
1.044651985168457,
0.44460609555244446,
-0.6761577725410461,
0.14496953785419464,
-0.5118253827095032,
0.2712063491344452,
-0.07772938162088394,
0.6280640363693237,
-0.09932929277420044,
-0.3182688355445862,
-0.2190675437450409,
0.09094951301813126,
-0.1853240728378296,
-0.7015364170074463,
0.31086868047714233,
-0.06508506834506989,
0.32928386330604553,
0.1175876334309578,
0.06674812734127045,
0.6836017370223999,
-0.042487733066082,
0.6313597559928894,
0.29519516229629517,
-0.7849023342132568,
0.7029604315757751,
-0.514519989490509,
0.19512705504894257,
0.7464739084243774,
0.3762139678001404,
-0.6043354272842407,
-0.1326698362827301,
-0.959651529788971,
-0.8260608315467834,
0.786286473274231,
0.4549660086631775,
0.09862124919891357,
0.24634626507759094,
0.5571846961975098,
-0.15605482459068298,
0.2959569990634918,
-0.6523609757423401,
-0.8741175532341003,
-0.3824883699417114,
-0.3336109519004822,
-0.006983701139688492,
-0.12842050194740295,
-0.21034319698810577,
-0.7123122811317444,
0.7984423041343689,
-0.10224428027868271,
0.3235742449760437,
0.42340022325515747,
0.4192967414855957,
-0.23058298230171204,
-0.039152842015028,
0.34223732352256775,
0.36929014325141907,
-0.22031648457050323,
-0.3185780942440033,
-0.1790420264005661,
-0.6323956251144409,
-0.0823347419500351,
0.4746861755847931,
-0.37461501359939575,
-0.0525035560131073,
0.2994595170021057,
0.9052978754043579,
-0.0109408563002944,
-0.23087355494499207,
0.5883143544197083,
-0.0783223807811737,
-0.4012715220451355,
-0.39000555872917175,
-0.01629897579550743,
0.14642804861068726,
0.2257150560617447,
0.041832976043224335,
0.135650634765625,
-0.12027823179960251,
-0.42210957407951355,
0.3881588280200958,
0.22754427790641785,
-0.38754162192344666,
-0.5187711715698242,
0.5871286988258362,
0.06710091233253479,
-0.13629165291786194,
0.4414064884185791,
-0.14581197500228882,
-0.6111012101173401,
0.7586658596992493,
0.11638312041759491,
0.8264972567558289,
-0.23592954874038696,
0.3688896894454956,
0.7695595622062683,
0.19838538765907288,
-0.093147873878479,
0.5518977046012878,
-0.19391056895256042,
-0.6341541409492493,
-0.08536341786384583,
-0.5995437502861023,
-0.08574852347373962,
0.0568508505821228,
-0.8154048323631287,
0.44761428236961365,
-0.4758356213569641,
-0.25050589442253113,
0.022829385474324226,
0.4122426509857178,
-0.7015991806983948,
0.1566331535577774,
-0.06328229606151581,
1.0293675661087036,
-1.0692164897918701,
0.47448042035102844,
0.6573845148086548,
-0.7089745402336121,
-1.1387425661087036,
-0.19257085025310516,
0.19798128306865692,
-0.5942991375923157,
0.1897299587726593,
0.20152167975902557,
0.47738394141197205,
-0.10225386917591095,
-0.894429624080658,
-0.6216594576835632,
1.180571436882019,
0.02080809511244297,
-0.21331743896007538,
0.3386145234107971,
0.11092190444469452,
0.6394965648651123,
-0.36842525005340576,
0.3379695415496826,
0.6070298552513123,
0.6946775317192078,
0.32667243480682373,
-0.7314233183860779,
0.2766704559326172,
-0.6761640906333923,
-0.22415746748447418,
0.05457336828112602,
-1.033966302871704,
0.6291235089302063,
-0.1489545851945877,
-0.009428995661437511,
0.045973848551511765,
0.6417891979217529,
0.42427271604537964,
0.40527939796447754,
0.4120725691318512,
0.7699999809265137,
0.7771531343460083,
-0.2873736619949341,
1.2307437658309937,
-0.23749350011348724,
0.595718502998352,
0.7595598697662354,
0.06250210106372833,
0.5184736847877502,
0.24465517699718475,
-0.3238435685634613,
0.5311291813850403,
0.6422896385192871,
-0.41758641600608826,
0.2169184386730194,
0.4025384187698364,
-0.05395907163619995,
-0.07919150590896606,
-0.2882783114910126,
-0.5708708763122559,
0.3210635781288147,
0.2231246381998062,
-0.29616475105285645,
0.0164151880890131,
0.03416544571518898,
0.4020971953868866,
-0.03024783357977867,
-0.25733086466789246,
0.6504843235015869,
0.05581969395279884,
-0.3216184675693512,
0.5224098563194275,
-0.20461808145046234,
0.7269641757011414,
-0.5920619964599609,
0.14395996928215027,
-0.11355563253164291,
0.08907225728034973,
-0.6054677963256836,
-1.0550336837768555,
0.3741631805896759,
-0.053806472569704056,
-0.21724112331867218,
-0.3169236481189728,
0.7617737650871277,
-0.45904240012168884,
-0.8461946845054626,
0.19308525323867798,
0.24945221841335297,
0.314518004655838,
0.14980950951576233,
-1.2861809730529785,
0.5873024463653564,
0.15655583143234253,
-0.47355300188064575,
0.1309562623500824,
0.5255135297775269,
0.18205666542053223,
0.5687950849533081,
0.6831403970718384,
0.2740682065486908,
-0.2289770096540451,
0.06985309720039368,
1.0842803716659546,
-0.5342694520950317,
-0.439584881067276,
-0.79386967420578,
0.9127710461616516,
-0.400137335062027,
-0.4057593047618866,
0.7314742803573608,
0.7603080868721008,
0.84815913438797,
-0.01251589972525835,
0.788477897644043,
-0.6230068802833557,
0.6552790403366089,
-0.22712184488773346,
0.924305260181427,
-0.6921809315681458,
-0.10001139342784882,
-0.7391643524169922,
-0.5427457690238953,
-0.42434176802635193,
0.652167022228241,
-0.17205433547496796,
0.1614559292793274,
0.22394248843193054,
0.8947409391403198,
-0.009194822981953621,
0.09658393263816833,
-0.206084206700325,
0.30245718359947205,
0.26820531487464905,
0.5278633236885071,
0.44320541620254517,
-0.9039604663848877,
0.29635104537010193,
-0.7694362998008728,
-0.2856464982032776,
-0.002457956550642848,
-0.8301716446876526,
-0.9069139957427979,
-0.991452693939209,
-0.6891549229621887,
-0.7728170156478882,
-0.31747549772262573,
1.108659267425537,
0.7097288966178894,
-0.6826305389404297,
-0.2687268853187561,
0.11197297275066376,
0.28559380769729614,
-0.07672438770532608,
-0.30868032574653625,
0.6454254388809204,
0.37714365124702454,
-0.6345780491828918,
-0.16265766322612762,
0.030798491090536118,
0.2573179006576538,
0.05009595304727554,
-0.0759931355714798,
-0.13777773082256317,
-0.2504987120628357,
0.36159637570381165,
0.4743034541606903,
-0.31245550513267517,
-0.08768703043460846,
-0.26680371165275574,
0.03571220114827156,
0.17821936309337616,
0.4640895426273346,
-0.4924065172672272,
0.23799341917037964,
0.6654465794563293,
0.2824396789073944,
0.45039546489715576,
0.19787319004535675,
0.00850720051676035,
-0.44641175866127014,
0.1536688357591629,
-0.0504939965903759,
0.33402445912361145,
0.3831794559955597,
-0.42668208479881287,
0.8230379819869995,
0.5755508542060852,
-0.4600571095943451,
-0.8383917808532715,
-0.14266441762447357,
-1.352013111114502,
0.11678963154554367,
1.0393577814102173,
0.014247267507016659,
-0.6173046827316284,
0.10699401795864105,
-0.2910420298576355,
0.15943557024002075,
-0.5502346754074097,
0.4660455286502838,
0.540748119354248,
-0.05645200237631798,
0.1453752964735031,
-0.3836551904678345,
0.6097307801246643,
-0.013385583646595478,
-0.9817143082618713,
0.1798829734325409,
0.4224913716316223,
0.4447823166847229,
0.32798460125923157,
0.8066946864128113,
-0.2827798128128052,
0.05914684385061264,
-0.07876858860254288,
0.26604852080345154,
-0.30323347449302673,
0.03827228397130966,
-0.3833007216453552,
-0.1434435099363327,
-0.5074776411056519,
-0.2580283284187317
]
|
huggingartists/mayot | huggingartists | 2022-10-25T09:38:01Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/mayot"
## 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.604522 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('https://images.genius.com/1d4b4adcdf1f58e1899ee5557375ef7c.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/mayot">
<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">MAYOT</div>
<a href="https://genius.com/artists/mayot">
<div style="text-align: center; font-size: 14px;">@mayot</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/mayot).
### 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/mayot")
```
## 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|
|------:|---------:|---:|
|291| -| -|
'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/mayot")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6606981754302979,
-0.5202950835227966,
0.07881732285022736,
0.28222495317459106,
-0.24204887449741364,
-0.02253810130059719,
-0.3163501024246216,
-0.44034096598625183,
0.8801882863044739,
0.3390630781650543,
-0.8986072540283203,
-0.825815737247467,
-0.5690820217132568,
0.1515355259180069,
-0.06021730229258537,
1.2884035110473633,
-0.1936570405960083,
-0.36310771107673645,
-0.3154106140136719,
-0.24519626796245575,
-0.3042862117290497,
-0.2987259328365326,
-0.3228747844696045,
-0.308612197637558,
0.3553863763809204,
0.5447139143943787,
0.6959671974182129,
0.8879613876342773,
0.5416169166564941,
0.34772807359695435,
-0.10646715015172958,
0.0021019347477704287,
-0.38022729754447937,
-0.12555289268493652,
0.1593662053346634,
-0.29862111806869507,
-0.6986725330352783,
0.2543374001979828,
0.5255904793739319,
0.40762537717819214,
-0.08093913644552231,
0.48678064346313477,
0.08011050522327423,
0.8630749583244324,
-0.2904650866985321,
0.4903727173805237,
-0.23942992091178894,
-0.17031654715538025,
-0.29995298385620117,
0.08365757763385773,
0.2055886834859848,
-0.5933515429496765,
-0.02745511196553707,
-0.762762188911438,
0.07076999545097351,
-0.016968192532658577,
0.9980459809303284,
0.04639924690127373,
0.09697475284337997,
-0.2143118977546692,
-0.16437631845474243,
0.5166631937026978,
-0.5858675241470337,
0.01912372186779976,
0.5858449339866638,
0.1678004264831543,
0.025077123194932938,
-0.6252850890159607,
-0.6102546453475952,
0.06657809764146805,
-0.15080669522285461,
0.3196190297603607,
-0.13471719622612,
-0.31655585765838623,
0.4963712990283966,
0.5620564818382263,
-0.49810659885406494,
-0.2551516592502594,
-0.5656955242156982,
-0.09740615636110306,
1.1828482151031494,
0.14537449181079865,
0.3906373083591461,
-0.49396583437919617,
-0.25052911043167114,
-0.39382487535476685,
-0.224009171128273,
0.3433387577533722,
0.5391721129417419,
0.4380483031272888,
-1.0297858715057373,
0.6341609358787537,
-0.16910743713378906,
0.5424752235412598,
0.13115046918392181,
-0.03228825330734253,
0.7819892168045044,
-0.3636262118816376,
-0.1328819990158081,
-0.15332642197608948,
1.0871450901031494,
0.6892855167388916,
0.20674991607666016,
0.12748846411705017,
-0.06894754618406296,
0.04123782739043236,
-0.15140461921691895,
-0.7974684238433838,
-0.43081045150756836,
0.6407067179679871,
-0.582459568977356,
-0.6159354448318481,
0.17963063716888428,
-0.9977110624313354,
-0.22748121619224548,
-0.2951308488845825,
0.28066110610961914,
-0.39235132932662964,
-0.5367463827133179,
0.16731955111026764,
-0.2829297184944153,
0.09862951189279556,
0.06107404828071594,
-0.5987399220466614,
0.22475899755954742,
0.5799939632415771,
0.7462638020515442,
0.2072102278470993,
-0.2992266118526459,
-0.25572603940963745,
-0.19359339773654938,
-0.12088844180107117,
0.6564229726791382,
-0.25631022453308105,
-0.34009116888046265,
-0.1689295768737793,
0.3313699960708618,
-0.10774511843919754,
-0.28965696692466736,
0.8924599289894104,
0.04419879987835884,
0.18890632688999176,
-0.5793773531913757,
-0.4439598619937897,
-0.006995092611759901,
0.28921398520469666,
-0.7898035645484924,
1.052425742149353,
0.3237161934375763,
-1.0241996049880981,
0.1859988570213318,
-0.8445940017700195,
-0.3235921263694763,
0.0012440526625141501,
0.062477003782987595,
-0.7851293087005615,
-0.1973104178905487,
0.2080337554216385,
0.7424973845481873,
-0.34076106548309326,
0.008206519298255444,
-0.606120228767395,
-0.08887270838022232,
0.37501153349876404,
0.24367272853851318,
1.193505883216858,
0.13758264482021332,
-0.12254359573125839,
0.06683123856782913,
-0.963962972164154,
0.07225034385919571,
0.4588637351989746,
-0.1568392515182495,
-0.10505671054124832,
-0.25904175639152527,
0.4075304865837097,
0.2998735010623932,
0.08669053763151169,
-0.6060553789138794,
0.4085391163825989,
-0.16492490470409393,
0.4382784068584442,
0.7437857389450073,
0.0013411878608167171,
0.3093617856502533,
-0.6669247150421143,
0.4101458191871643,
0.08291804045438766,
0.3986479938030243,
0.013635852374136448,
-0.6002441048622131,
-0.4698893427848816,
-0.3030295968055725,
0.30187109112739563,
0.4895268678665161,
-0.6631595492362976,
0.9748570322990417,
-0.31479236483573914,
-0.8415511846542358,
-0.6502216458320618,
0.15992090106010437,
0.16597260534763336,
0.5459011197090149,
0.38615554571151733,
-0.41470566391944885,
-0.6173504590988159,
-0.6860972046852112,
0.08096859604120255,
-0.2526755630970001,
0.1537403017282486,
0.40451300144195557,
0.8126115798950195,
-0.27093052864074707,
0.8399107456207275,
-0.6728962063789368,
-0.29441940784454346,
-0.26563403010368347,
-0.32638731598854065,
0.4115230143070221,
0.7863308787345886,
0.6740222573280334,
-0.8665746450424194,
-0.4946427643299103,
-0.2580275237560272,
-0.7068400382995605,
-0.11765874922275543,
-0.029241841286420822,
-0.2665567696094513,
0.00173476233612746,
0.16727879643440247,
-0.6856358647346497,
0.5324105024337769,
0.48800715804100037,
-0.6581609845161438,
0.5547384023666382,
0.10902334004640579,
0.027077293023467064,
-1.288581132888794,
0.36279553174972534,
0.23863618075847626,
0.008057673461735249,
-0.5807487964630127,
-0.21386416256427765,
-0.03765452280640602,
-0.017299266532063484,
-0.10208091139793396,
0.6033024191856384,
-0.3240971565246582,
0.33611512184143066,
0.15528909862041473,
0.06127069517970085,
0.09155020117759705,
0.4354911744594574,
-0.07700423896312714,
0.25251370668411255,
0.9933931827545166,
-0.40708404779434204,
0.6699824929237366,
0.6000553369522095,
-0.20119713246822357,
0.8560278415679932,
-0.7804543375968933,
0.005924749653786421,
-0.2596396505832672,
0.3934244215488434,
-0.8530721664428711,
-0.5499427914619446,
0.8103314638137817,
-0.7030158638954163,
0.3974260091781616,
-0.24791297316551208,
-0.5258963704109192,
-0.8049266338348389,
-0.7046803832054138,
0.13056115806102753,
0.5386257767677307,
-0.3725009858608246,
0.3826463520526886,
0.591029703617096,
0.10170473903417587,
-0.359060674905777,
-0.7884922027587891,
-0.16646204888820648,
-0.3906877338886261,
-0.8320894241333008,
0.3794846832752228,
-0.3374958634376526,
-0.09331518411636353,
0.13800373673439026,
0.10765016078948975,
0.1216566264629364,
0.02177087776362896,
0.3806045949459076,
0.30272650718688965,
0.058101773262023926,
0.004178042523562908,
-0.11387548595666885,
-0.24599869549274445,
0.10865279287099838,
-0.21316252648830414,
0.25169479846954346,
-0.29564368724823,
-0.11674989014863968,
-0.6379694938659668,
0.21189230680465698,
0.46037012338638306,
-0.25403720140457153,
0.701754093170166,
0.8427543640136719,
-0.2461637556552887,
0.015948111191391945,
-0.5146719217300415,
-0.13423161208629608,
-0.41476839780807495,
0.02445736713707447,
-0.2449895143508911,
-0.6042889952659607,
0.9626027941703796,
0.21804024279117584,
0.09719638526439667,
0.7097263336181641,
0.4777384400367737,
-0.11923976987600327,
0.634392499923706,
0.3751392066478729,
-0.2606167793273926,
0.5199353098869324,
-0.6987371444702148,
-0.2555757761001587,
-0.8878806233406067,
-0.4289851486682892,
-0.4726507365703583,
-0.5054170489311218,
-0.8777438998222351,
-0.45562779903411865,
0.21364539861679077,
0.16616569459438324,
-0.2227838784456253,
0.4583735764026642,
-0.912330150604248,
0.2527831196784973,
0.34647396206855774,
0.28253069519996643,
-0.12092852592468262,
0.06557221710681915,
0.054239314049482346,
0.1482185423374176,
-0.606862485408783,
-0.24801820516586304,
1.1640620231628418,
0.5128388404846191,
0.5763716101646423,
-0.0953156054019928,
0.8818459510803223,
0.02350439317524433,
0.2584029734134674,
-0.5071402788162231,
0.4738762676715851,
0.012444647960364819,
-0.5015504360198975,
-0.15308210253715515,
-0.4982216954231262,
-0.9146099090576172,
-0.14578203856945038,
-0.4256254732608795,
-0.7193856239318848,
0.5046670436859131,
0.10043781995773315,
-0.20483465492725372,
0.39651793241500854,
-0.627292811870575,
0.8477641940116882,
-0.0350361205637455,
-0.4511308968067169,
0.3215358555316925,
-1.0561354160308838,
0.20734617114067078,
0.18519316613674164,
0.3173879086971283,
-0.39397966861724854,
0.03369560465216637,
1.0370545387268066,
-0.8070410490036011,
0.9148315787315369,
-0.3468110263347626,
0.1340506225824356,
0.588668167591095,
-0.2974179685115814,
0.4488324522972107,
0.13193199038505554,
-0.2800624668598175,
0.3214166462421417,
0.019619492813944817,
-0.4573153853416443,
-0.43141186237335205,
0.6683779358863831,
-0.7281919121742249,
0.02432744950056076,
-0.3244033455848694,
-0.45366448163986206,
0.03628876432776451,
0.1704152375459671,
0.3154214918613434,
0.3622961938381195,
-0.0027697598561644554,
0.1154860332608223,
0.4560396075248718,
-0.12509381771087646,
0.25832095742225647,
0.011588657274842262,
-0.11536438763141632,
-0.8148859739303589,
0.9050948023796082,
0.15968044102191925,
0.08404279500246048,
-0.01604532264173031,
0.4458272159099579,
-0.3592325747013092,
-0.08228054642677307,
-0.5870358943939209,
0.4709150493144989,
-0.403486430644989,
-0.4108423888683319,
-0.522675633430481,
-0.17219983041286469,
-0.682917058467865,
-0.18925213813781738,
-0.27531635761260986,
-0.5440940856933594,
-0.3149978518486023,
-0.21206234395503998,
1.0642187595367432,
0.48195692896842957,
-0.742231011390686,
0.12445882707834244,
-0.5335111021995544,
0.3199717700481415,
-0.06297337263822556,
0.6503645777702332,
-0.11480651795864105,
-0.2906215488910675,
-0.21736183762550354,
0.09849458932876587,
-0.20017112791538239,
-0.7022358775138855,
0.23346662521362305,
-0.051419422030448914,
0.3588787615299225,
0.1313745081424713,
0.12983162701129913,
0.6571564674377441,
-0.047918569296598434,
0.633336067199707,
0.2933562397956848,
-0.7680549025535583,
0.6847003698348999,
-0.5145902037620544,
0.1574394404888153,
0.7389032244682312,
0.38247647881507874,
-0.6269028186798096,
-0.15531425178050995,
-0.9910419583320618,
-0.8553431034088135,
0.7834870219230652,
0.44055813550949097,
0.024472583085298538,
0.2004845291376114,
0.5243592858314514,
-0.18746443092823029,
0.25778302550315857,
-0.6286262273788452,
-0.8490104675292969,
-0.39558178186416626,
-0.3669360280036926,
-0.06206008046865463,
-0.0787205621600151,
-0.2615348994731903,
-0.6899441480636597,
0.7619539499282837,
-0.09560177475214005,
0.3460237979888916,
0.452010840177536,
0.39805954694747925,
-0.21102483570575714,
-0.018172869458794594,
0.26602041721343994,
0.3440207242965698,
-0.279668390750885,
-0.27904778718948364,
-0.1592087298631668,
-0.6513954401016235,
-0.11145633459091187,
0.5084875226020813,
-0.31005942821502686,
-0.09609273076057434,
0.3312048017978668,
0.8535571098327637,
-0.035600751638412476,
-0.20050525665283203,
0.5848846435546875,
-0.06961539387702942,
-0.40157902240753174,
-0.3644942045211792,
0.010248725302517414,
0.15926593542099,
0.23077528178691864,
0.034159936010837555,
0.10213124752044678,
-0.09195022284984589,
-0.37672993540763855,
0.4245460033416748,
0.21726199984550476,
-0.3898918032646179,
-0.45446139574050903,
0.6194194555282593,
0.07123638689517975,
-0.1182650700211525,
0.47370266914367676,
-0.15573853254318237,
-0.6254063248634338,
0.8035404086112976,
0.13332602381706238,
0.8259521722793579,
-0.17988915741443634,
0.32523661851882935,
0.724666953086853,
0.26263025403022766,
-0.0462874211370945,
0.550434410572052,
-0.19392727315425873,
-0.6320474743843079,
-0.017178518697619438,
-0.5835130214691162,
-0.08893319219350815,
0.09375797212123871,
-0.8405608534812927,
0.45918411016464233,
-0.4747042655944824,
-0.225938618183136,
0.031600769609212875,
0.37794560194015503,
-0.75667405128479,
0.20553840696811676,
-0.03793907165527344,
1.0556570291519165,
-1.07145094871521,
0.44360315799713135,
0.7332967519760132,
-0.6582269072532654,
-1.1751192808151245,
-0.15641742944717407,
0.20202815532684326,
-0.5655339956283569,
0.17467695474624634,
0.18752151727676392,
0.5015121698379517,
-0.07295151799917221,
-0.9001615047454834,
-0.6524360179901123,
1.1749581098556519,
0.025058679282665253,
-0.21248123049736023,
0.3869253993034363,
0.1428649127483368,
0.6104902625083923,
-0.35471874475479126,
0.306587815284729,
0.6354967951774597,
0.681029736995697,
0.29307231307029724,
-0.739855170249939,
0.2915411591529846,
-0.6262370944023132,
-0.22410570085048676,
0.06969566643238068,
-1.0060362815856934,
0.662207841873169,
-0.18741963803768158,
-0.011256583034992218,
-0.03853664547204971,
0.6209715604782104,
0.44700154662132263,
0.4115191400051117,
0.4552946090698242,
0.7614994645118713,
0.8066955208778381,
-0.2721998691558838,
1.221143364906311,
-0.2233254462480545,
0.6352725028991699,
0.7765310406684875,
0.0510864295065403,
0.48580193519592285,
0.241206094622612,
-0.32685044407844543,
0.5056706070899963,
0.652306318283081,
-0.4129398465156555,
0.2369959056377411,
0.38114434480667114,
-0.03551887720823288,
-0.07015001028776169,
-0.20952580869197845,
-0.5973809361457825,
0.2978188991546631,
0.2435619831085205,
-0.3206368684768677,
0.00936186034232378,
0.010289044119417667,
0.37966859340667725,
-0.05222070962190628,
-0.26711851358413696,
0.6496566534042358,
0.06072187423706055,
-0.3286074101924896,
0.5548569560050964,
-0.17603519558906555,
0.6954120397567749,
-0.5662155151367188,
0.1498059332370758,
-0.12066667526960373,
0.13577699661254883,
-0.6249262690544128,
-1.0956991910934448,
0.36689722537994385,
-0.08540575951337814,
-0.24400490522384644,
-0.31030401587486267,
0.7514742612838745,
-0.46530821919441223,
-0.8034024238586426,
0.2144491970539093,
0.2121192067861557,
0.32039332389831543,
0.15863052010536194,
-1.2666524648666382,
0.5573234558105469,
0.15613271296024323,
-0.47853440046310425,
0.09093707799911499,
0.5397899150848389,
0.13014374673366547,
0.5185798406600952,
0.7032288908958435,
0.23088401556015015,
-0.2423604428768158,
0.05421409755945206,
1.109994888305664,
-0.5404508113861084,
-0.4746643900871277,
-0.7608755826950073,
0.8987507224082947,
-0.3628407120704651,
-0.40398576855659485,
0.689581036567688,
0.7765668034553528,
0.8864327669143677,
-0.02094767615199089,
0.8136947751045227,
-0.6579200625419617,
0.6729491353034973,
-0.21799087524414062,
0.9678425788879395,
-0.7080331444740295,
-0.05860315263271332,
-0.7581449747085571,
-0.5089461803436279,
-0.4339941143989563,
0.6644262075424194,
-0.19348636269569397,
0.19113963842391968,
0.26951974630355835,
0.9083155989646912,
-0.03688851371407509,
0.13964304327964783,
-0.23657676577568054,
0.2987733781337738,
0.28395479917526245,
0.5304841995239258,
0.4194304645061493,
-0.9120675921440125,
0.3245314955711365,
-0.784257709980011,
-0.34747329354286194,
0.008252077735960484,
-0.8244853615760803,
-0.8880122303962708,
-0.9771010875701904,
-0.6800524592399597,
-0.790971040725708,
-0.29923632740974426,
1.0907325744628906,
0.6816832423210144,
-0.7137495875358582,
-0.2862471640110016,
0.08931992948055267,
0.28575828671455383,
-0.085612453520298,
-0.32150888442993164,
0.6748689413070679,
0.34499117732048035,
-0.5649430751800537,
-0.1649622768163681,
-0.00237748259678483,
0.23121026158332825,
0.08956009894609451,
-0.08307944238185883,
-0.16896413266658783,
-0.2767082452774048,
0.35645249485969543,
0.47574520111083984,
-0.2802293300628662,
-0.07964955270290375,
-0.23995614051818848,
0.010579237714409828,
0.18321670591831207,
0.47503793239593506,
-0.5230460166931152,
0.21113848686218262,
0.6439996957778931,
0.2724563181400299,
0.44592487812042236,
0.17441003024578094,
0.025921940803527832,
-0.4789750277996063,
0.08785209059715271,
-0.008114879950881004,
0.3009096682071686,
0.3963340222835541,
-0.46293872594833374,
0.8079426288604736,
0.5697321891784668,
-0.4961189031600952,
-0.8064890503883362,
-0.15077728033065796,
-1.3245618343353271,
0.12159444391727448,
1.0529634952545166,
0.017346041277050972,
-0.5832540392875671,
0.06561633944511414,
-0.23886579275131226,
0.17697231471538544,
-0.5533007979393005,
0.4633067548274994,
0.5209313631057739,
-0.11146292835474014,
0.142747163772583,
-0.3719424903392792,
0.6514872312545776,
-0.04808100312948227,
-0.9836931824684143,
0.1812584549188614,
0.4047470986843109,
0.4856651723384857,
0.3183126747608185,
0.8104068040847778,
-0.2864742577075958,
0.06431801617145538,
-0.06819108873605728,
0.2904452681541443,
-0.26914140582084656,
0.02558453008532524,
-0.3452727496623993,
-0.1658785194158554,
-0.5120739936828613,
-0.26154637336730957
]
|
huggingartists/mf-doom | huggingartists | 2022-10-25T09:38:27Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/mf-doom"
## 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.820143 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('https://images.genius.com/263743633b6e58854e753b25dca6beab.430x430x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/mf-doom">
<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">MF DOOM</div>
<a href="https://genius.com/artists/mf-doom">
<div style="text-align: center; font-size: 14px;">@mf-doom</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/mf-doom).
### 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/mf-doom")
```
## 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|
|------:|---------:|---:|
|945| -| -|
'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/mf-doom")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6632766723632812,
-0.5000613927841187,
0.11742942035198212,
0.23060281574726105,
-0.23278594017028809,
0.03238793835043907,
-0.2936400771141052,
-0.4381302297115326,
0.8087689876556396,
0.31767359375953674,
-0.9537805318832397,
-0.8860812783241272,
-0.5605661273002625,
0.17359916865825653,
-0.04419669508934021,
1.2956422567367554,
-0.14525175094604492,
-0.4262537956237793,
-0.2885757386684418,
-0.1942230463027954,
-0.31576716899871826,
-0.32169678807258606,
-0.3434603810310364,
-0.3738234043121338,
0.3749024569988251,
0.49851396679878235,
0.7844023704528809,
0.9317910075187683,
0.5779895782470703,
0.34548670053482056,
-0.07145436108112335,
-0.03835005685687065,
-0.45408865809440613,
-0.08948953449726105,
0.15046153962612152,
-0.3109617233276367,
-0.6421955227851868,
0.23079818487167358,
0.5239465236663818,
0.32182517647743225,
-0.10033974796533585,
0.46422162652015686,
0.06167943775653839,
0.7572938203811646,
-0.3127591013908386,
0.48713284730911255,
-0.19601671397686005,
-0.13211657106876373,
-0.32043325901031494,
0.007818534038960934,
0.16751407086849213,
-0.5522660613059998,
-0.05697109177708626,
-0.787457287311554,
0.08563438802957535,
0.06734815984964371,
0.973993718624115,
0.1637890785932541,
0.19289112091064453,
-0.17572005093097687,
-0.17560231685638428,
0.5396237373352051,
-0.6066701412200928,
0.020770078524947166,
0.5141676068305969,
0.15805453062057495,
-0.048886626958847046,
-0.6094880104064941,
-0.6017352938652039,
0.07579755783081055,
-0.1161348968744278,
0.31186386942863464,
-0.2617374658584595,
-0.279768705368042,
0.5494905710220337,
0.5464944839477539,
-0.5446560978889465,
-0.20954160392284393,
-0.5117715001106262,
-0.16105106472969055,
1.1605308055877686,
0.21793851256370544,
0.43126967549324036,
-0.5017327070236206,
-0.24729764461517334,
-0.4707687199115753,
-0.26023170351982117,
0.33332791924476624,
0.5881375670433044,
0.46621617674827576,
-1.019350528717041,
0.6512758135795593,
-0.1373460292816162,
0.5780186057090759,
0.12877993285655975,
-0.1514887809753418,
0.795590877532959,
-0.3497435450553894,
-0.11129334568977356,
-0.0953967347741127,
1.0957704782485962,
0.6966819167137146,
0.16338884830474854,
0.06558654457330704,
-0.03650280833244324,
0.06837651878595352,
-0.10294599086046219,
-0.8436174988746643,
-0.41272974014282227,
0.6544420719146729,
-0.5929398536682129,
-0.5711051225662231,
0.11262639611959457,
-1.084458589553833,
-0.29372915625572205,
-0.2501887083053589,
0.26310205459594727,
-0.4130410850048065,
-0.5093000531196594,
0.20911161601543427,
-0.3721703290939331,
0.07645846158266068,
0.0027649945113807917,
-0.5208407640457153,
0.1860942840576172,
0.5969198942184448,
0.7573392987251282,
0.15621809661388397,
-0.31619006395339966,
-0.26128089427948,
-0.14224161207675934,
-0.09707106649875641,
0.6804261207580566,
-0.33197084069252014,
-0.3971083462238312,
-0.19756893813610077,
0.31580185890197754,
-0.008654932491481304,
-0.2735685110092163,
0.9575499296188354,
0.08432798087596893,
0.1702181100845337,
-0.5370129346847534,
-0.40994709730148315,
-0.04955976456403732,
0.2805684208869934,
-0.7380043268203735,
1.0469802618026733,
0.3058360517024994,
-1.0570781230926514,
0.152739480137825,
-0.7741060256958008,
-0.309031218290329,
-0.004467494785785675,
0.07927876710891724,
-0.7659077644348145,
-0.17327457666397095,
0.16697773337364197,
0.6940239667892456,
-0.3803425133228302,
-0.0015354540664702654,
-0.6912383437156677,
-0.16064868867397308,
0.3362888693809509,
0.21403218805789948,
1.169068455696106,
0.16389012336730957,
-0.19589318335056305,
0.04786275327205658,
-0.9752359986305237,
0.12555630505084991,
0.4542285203933716,
-0.1427471786737442,
-0.12203741073608398,
-0.19334186613559723,
0.40438902378082275,
0.3083113133907318,
0.046854518353939056,
-0.5965347290039062,
0.3698810040950775,
-0.21267664432525635,
0.4224725067615509,
0.7337633371353149,
0.012703043408691883,
0.2544271945953369,
-0.6433927416801453,
0.43046653270721436,
0.040173761546611786,
0.3741057515144348,
0.037273094058036804,
-0.5920644998550415,
-0.40219539403915405,
-0.27685052156448364,
0.24716676771640778,
0.5164211988449097,
-0.6595544219017029,
0.9360314607620239,
-0.32928675413131714,
-0.8691216707229614,
-0.619010865688324,
0.09156873822212219,
0.21076032519340515,
0.5487944483757019,
0.4241821765899658,
-0.41539183259010315,
-0.6153401732444763,
-0.6810240149497986,
0.08190339803695679,
-0.2570744454860687,
0.17225982248783112,
0.4371948838233948,
0.7580974698066711,
-0.2936593294143677,
0.8476366996765137,
-0.7581968307495117,
-0.29238784313201904,
-0.25514116883277893,
-0.26761898398399353,
0.38486331701278687,
0.7816908955574036,
0.6783750653266907,
-0.8441089391708374,
-0.38855239748954773,
-0.3078317642211914,
-0.7018680572509766,
-0.13185110688209534,
-0.0018124714260920882,
-0.2744535207748413,
-0.04017304256558418,
0.13170987367630005,
-0.70981764793396,
0.5319863557815552,
0.47941964864730835,
-0.6510981321334839,
0.587693452835083,
0.0844944640994072,
0.05731124058365822,
-1.3086086511611938,
0.3566737174987793,
0.2299947589635849,
0.05344914272427559,
-0.5833736658096313,
-0.17702437937259674,
-0.13479289412498474,
-0.10063701122999191,
-0.11448448151350021,
0.6182984709739685,
-0.3242855668067932,
0.2870524823665619,
0.12312113493680954,
0.07276253402233124,
0.028546825051307678,
0.44058385491371155,
-0.09486109018325806,
0.3076346516609192,
1.017236351966858,
-0.3771331310272217,
0.6738399267196655,
0.5949881076812744,
-0.16773898899555206,
0.8484001159667969,
-0.7863807678222656,
0.000949476845562458,
-0.26245546340942383,
0.39380788803100586,
-0.8885356187820435,
-0.5427650213241577,
0.873839259147644,
-0.6863158345222473,
0.40190935134887695,
-0.2477184683084488,
-0.5676950216293335,
-0.8591536283493042,
-0.6462386846542358,
0.16616050899028778,
0.5629109144210815,
-0.321686327457428,
0.4302356243133545,
0.597317636013031,
0.11475690454244614,
-0.43950265645980835,
-0.7920835614204407,
-0.12277716398239136,
-0.43204596638679504,
-0.774113655090332,
0.4124158024787903,
-0.3616337776184082,
-0.1118161529302597,
0.1649588793516159,
0.10500196367502213,
0.14071467518806458,
0.0075780111365020275,
0.46279048919677734,
0.26297056674957275,
0.08434037119150162,
-0.014177518896758556,
-0.12308824807405472,
-0.30104345083236694,
0.12482715398073196,
-0.21147936582565308,
0.2729763686656952,
-0.2525750696659088,
-0.1430089920759201,
-0.6510138511657715,
0.1911769062280655,
0.4547978341579437,
-0.24138785898685455,
0.5808215141296387,
0.8295623660087585,
-0.25671452283859253,
-0.03871015086770058,
-0.503923237323761,
-0.1489412635564804,
-0.41277918219566345,
0.03340393677353859,
-0.24065451323986053,
-0.6372924447059631,
0.9576899409294128,
0.19693885743618011,
0.07866360992193222,
0.7047532200813293,
0.47096240520477295,
-0.06761001795530319,
0.6920336484909058,
0.41378816962242126,
-0.2981708347797394,
0.44186946749687195,
-0.6480773687362671,
-0.2236330509185791,
-0.8217948079109192,
-0.38920730352401733,
-0.5232439637184143,
-0.5278314352035522,
-0.8835656046867371,
-0.47993919253349304,
0.2147374153137207,
0.10190338641405106,
-0.2291533499956131,
0.438432514667511,
-0.9314196109771729,
0.22103695571422577,
0.328830361366272,
0.28532156348228455,
-0.12640346586704254,
0.09581533819437027,
0.09085333347320557,
0.12584064900875092,
-0.5875669717788696,
-0.18753880262374878,
1.1446101665496826,
0.4866488575935364,
0.6404104232788086,
-0.12323310971260071,
0.892077624797821,
0.0444631427526474,
0.19588521122932434,
-0.5064309239387512,
0.47870534658432007,
-0.023868294432759285,
-0.5316556692123413,
-0.13868287205696106,
-0.5215263366699219,
-0.865244448184967,
-0.15217646956443787,
-0.43702423572540283,
-0.6944072842597961,
0.507615864276886,
0.08755754679441452,
-0.26847806572914124,
0.42753615975379944,
-0.5900474190711975,
0.8631210327148438,
-0.02739671617746353,
-0.4358794689178467,
0.25456905364990234,
-1.024088740348816,
0.20732668042182922,
0.21334779262542725,
0.31252455711364746,
-0.39589449763298035,
0.009604868479073048,
1.0145715475082397,
-0.7274588346481323,
0.9147983193397522,
-0.34953683614730835,
0.12418510019779205,
0.6103215217590332,
-0.2755419611930847,
0.4440463185310364,
0.12403854727745056,
-0.26397350430488586,
0.32484254240989685,
-0.013929313980042934,
-0.3796074092388153,
-0.4467467665672302,
0.6344076991081238,
-0.7092126607894897,
-0.011419612914323807,
-0.3529297709465027,
-0.5313881635665894,
0.04840761423110962,
0.19276787340641022,
0.3415162265300751,
0.42046719789505005,
0.02138805389404297,
0.13662496209144592,
0.47452399134635925,
-0.15308691561222076,
0.26641544699668884,
0.036994289606809616,
-0.07887681573629379,
-0.8043747544288635,
0.925814688205719,
0.14608585834503174,
0.01307700201869011,
-0.01979854144155979,
0.4136194586753845,
-0.3655211925506592,
-0.12954877316951752,
-0.5806024074554443,
0.44582995772361755,
-0.4028722941875458,
-0.44254881143569946,
-0.529090940952301,
-0.11726734042167664,
-0.6023229360580444,
-0.1549726277589798,
-0.25203898549079895,
-0.47560468316078186,
-0.3586141765117645,
-0.194310262799263,
1.064273476600647,
0.4614313542842865,
-0.7313523888587952,
0.11104851961135864,
-0.49692562222480774,
0.33705058693885803,
-0.12455824762582779,
0.6535975933074951,
-0.10435941815376282,
-0.287200391292572,
-0.13127268850803375,
0.10122448951005936,
-0.21286487579345703,
-0.7404080033302307,
0.23052698373794556,
-0.03740304708480835,
0.38377323746681213,
0.13453646004199982,
0.1599879413843155,
0.7064642310142517,
-0.11056594550609589,
0.6414350867271423,
0.3012278079986572,
-0.7575700283050537,
0.6599225401878357,
-0.517541229724884,
0.13602106273174286,
0.7283046841621399,
0.3896712362766266,
-0.5765399932861328,
-0.23066404461860657,
-0.9784045219421387,
-0.8003880381584167,
0.8057042360305786,
0.378726989030838,
0.033950794488191605,
0.22516319155693054,
0.5741590261459351,
-0.18713903427124023,
0.2568640410900116,
-0.6101977825164795,
-0.924821674823761,
-0.3938159644603729,
-0.37886402010917664,
-0.14504249393939972,
-0.09841886907815933,
-0.2747187614440918,
-0.6499969363212585,
0.7359350919723511,
-0.11027208715677261,
0.3445328176021576,
0.4012448191642761,
0.4459908902645111,
-0.20606164634227753,
0.018059339374303818,
0.2619225084781647,
0.3628377318382263,
-0.279967337846756,
-0.22757785022258759,
-0.15879808366298676,
-0.6631312966346741,
-0.030091822147369385,
0.5434461832046509,
-0.32699131965637207,
-0.09280765801668167,
0.2851467430591583,
0.8592684864997864,
0.061956923454999924,
-0.2565961182117462,
0.5382976531982422,
-0.05262007191777229,
-0.37985074520111084,
-0.2948262691497803,
0.058381337672472,
0.11056414991617203,
0.2631741166114807,
0.07752931863069534,
0.09801541268825531,
-0.02842620760202408,
-0.37209567427635193,
0.4778733253479004,
0.22931484878063202,
-0.39498090744018555,
-0.4447934329509735,
0.629542350769043,
-0.005757563281804323,
-0.10959427803754807,
0.46497660875320435,
-0.18551409244537354,
-0.6141496896743774,
0.7541621327400208,
0.222067728638649,
0.8320306539535522,
-0.15980222821235657,
0.3434860408306122,
0.7407901883125305,
0.2620926797389984,
-0.044784825295209885,
0.5414634943008423,
-0.15349991619586945,
-0.5669693350791931,
-0.046391427516937256,
-0.5939164757728577,
-0.10757222771644592,
0.04970991238951683,
-0.802125096321106,
0.45818963646888733,
-0.4842689037322998,
-0.26331374049186707,
-0.015920236706733704,
0.37739208340644836,
-0.7138619422912598,
0.23247942328453064,
-0.036733828485012054,
1.069476842880249,
-1.022085428237915,
0.39147645235061646,
0.6729978919029236,
-0.6663522720336914,
-1.1839070320129395,
-0.13950826227664948,
0.22209462523460388,
-0.5646156072616577,
0.18400917947292328,
0.15566007792949677,
0.4483739733695984,
-0.006807813420891762,
-0.9062900543212891,
-0.7114189267158508,
1.1552650928497314,
0.08748665452003479,
-0.18564073741436005,
0.33249208331108093,
0.10340851545333862,
0.630205512046814,
-0.3476499915122986,
0.2988939881324768,
0.6107509136199951,
0.717714250087738,
0.26459982991218567,
-0.6538417339324951,
0.32920557260513306,
-0.6133959889411926,
-0.2522796392440796,
0.07179886847734451,
-0.9674009084701538,
0.648006021976471,
-0.21872073411941528,
-0.08922304958105087,
-0.04356374964118004,
0.6396226286888123,
0.47679662704467773,
0.40632927417755127,
0.46007290482521057,
0.8660731911659241,
0.7917739152908325,
-0.3398224413394928,
1.2634953260421753,
-0.25410959124565125,
0.6162901520729065,
0.798963725566864,
0.06151838228106499,
0.5107843279838562,
0.17487502098083496,
-0.3316476345062256,
0.5505023002624512,
0.6816467642784119,
-0.49399006366729736,
0.24686378240585327,
0.4075402617454529,
0.03732950612902641,
-0.11711984872817993,
-0.2330167442560196,
-0.6452240347862244,
0.31400570273399353,
0.21080517768859863,
-0.2679431736469269,
-0.07082714885473251,
0.045682817697525024,
0.3669136166572571,
-0.08271192759275436,
-0.26857128739356995,
0.6324197053909302,
0.035126764327287674,
-0.32086649537086487,
0.5677821636199951,
-0.1822250336408615,
0.6966705918312073,
-0.5848466157913208,
0.14141060411930084,
-0.04245857521891594,
0.11669459939002991,
-0.6088175177574158,
-1.1290860176086426,
0.35332977771759033,
-0.052997250109910965,
-0.28297150135040283,
-0.2595958709716797,
0.7417505979537964,
-0.41539856791496277,
-0.7745490074157715,
0.28052371740341187,
0.18842194974422455,
0.3299976587295532,
0.1579018384218216,
-1.2936910390853882,
0.6059988737106323,
0.12727120518684387,
-0.43108460307121277,
0.1046871542930603,
0.49729233980178833,
0.19874316453933716,
0.572355329990387,
0.7029643654823303,
0.23484906554222107,
-0.21624353528022766,
0.03094404935836792,
1.0864624977111816,
-0.5347028374671936,
-0.48642849922180176,
-0.7516396641731262,
0.8782429695129395,
-0.30957838892936707,
-0.4395679533481598,
0.7271251082420349,
0.7807026505470276,
0.8491875529289246,
-0.006380670238286257,
0.8054995536804199,
-0.6610101461410522,
0.6495555639266968,
-0.18736909329891205,
0.9450674653053284,
-0.7606981992721558,
-0.14079278707504272,
-0.7787712812423706,
-0.5740918517112732,
-0.4193861186504364,
0.6000191569328308,
-0.17964179813861847,
0.1663275957107544,
0.2660442888736725,
0.9131513833999634,
-0.01844051480293274,
0.14443084597587585,
-0.25243037939071655,
0.3185923993587494,
0.2821778953075409,
0.5818811058998108,
0.4234772026538849,
-0.9053936004638672,
0.38823145627975464,
-0.7942285537719727,
-0.33246222138404846,
0.04760737344622612,
-0.8489116430282593,
-0.8681415915489197,
-0.9573825597763062,
-0.6432347893714905,
-0.7864164113998413,
-0.26837754249572754,
1.0181283950805664,
0.6781837940216064,
-0.713122546672821,
-0.2759431302547455,
0.10633204877376556,
0.3120042085647583,
-0.09922755509614944,
-0.3212260901927948,
0.6399332880973816,
0.30565816164016724,
-0.5650671124458313,
-0.09430965036153793,
0.04029803350567818,
0.23745569586753845,
0.0653504803776741,
-0.07434827089309692,
-0.08865313231945038,
-0.3221045136451721,
0.30989450216293335,
0.4837200939655304,
-0.349400132894516,
-0.11171451210975647,
-0.2607549726963043,
0.04649483785033226,
0.1661376655101776,
0.4960164725780487,
-0.5304946303367615,
0.2134716659784317,
0.6630977392196655,
0.3022814691066742,
0.37095218896865845,
0.2164459228515625,
0.05459224805235863,
-0.46025705337524414,
0.11275965720415115,
-0.02691935934126377,
0.28005215525627136,
0.37793123722076416,
-0.49905845522880554,
0.7792283892631531,
0.5704003572463989,
-0.4724094271659851,
-0.8918721675872803,
-0.1658378690481186,
-1.2862683534622192,
0.08363178372383118,
1.034635305404663,
0.024193711578845978,
-0.5577917695045471,
0.06431085616350174,
-0.21757064759731293,
0.16768938302993774,
-0.55983567237854,
0.4258081614971161,
0.5493906736373901,
-0.10523603856563568,
0.1169041097164154,
-0.3710710108280182,
0.7095962166786194,
-0.08678010106086731,
-0.9709538221359253,
0.20070935785770416,
0.4569273889064789,
0.43827468156814575,
0.4267568290233612,
0.7346726059913635,
-0.27581003308296204,
0.07996335625648499,
-0.0161720123142004,
0.2979384958744049,
-0.29758137464523315,
-0.034256190061569214,
-0.36863112449645996,
-0.048482198268175125,
-0.5521703362464905,
-0.1839669942855835
]
|
huggingartists/mikhail-gorshenev | huggingartists | 2022-10-25T09:38:40Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/mikhail-gorshenev"
## 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.11365 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('https://images.genius.com/713c41590244f597dd6484bb61eacc5a.413x413x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/mikhail-gorshenev">
<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">Михаил Горшенев (Mikhail Gorshenev)</div>
<a href="https://genius.com/artists/mikhail-gorshenev">
<div style="text-align: center; font-size: 14px;">@mikhail-gorshenev</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/mikhail-gorshenev).
### 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/mikhail-gorshenev")
```
## 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|
|------:|---------:|---:|
|55| -| -|
'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/mikhail-gorshenev")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.5855988264083862,
-0.46202102303504944,
0.08094283193349838,
0.19012510776519775,
-0.33263924717903137,
-0.04438575729727745,
-0.32497844099998474,
-0.4479520320892334,
0.8710986971855164,
0.27114585041999817,
-0.9086828231811523,
-0.7772170305252075,
-0.5570574998855591,
0.06582184135913849,
-0.07549005001783371,
1.3066203594207764,
-0.22421273589134216,
-0.30637454986572266,
-0.28130272030830383,
-0.2454708069562912,
-0.21715685725212097,
-0.3248208165168762,
-0.3373241722583771,
-0.3713141977787018,
0.33451369404792786,
0.4752875864505768,
0.7690515518188477,
0.8959401249885559,
0.577738881111145,
0.3497675657272339,
-0.13208216428756714,
-0.010802541859447956,
-0.34984999895095825,
-0.0582556277513504,
0.16164320707321167,
-0.2783645987510681,
-0.7073786854743958,
0.21382763981819153,
0.5851241946220398,
0.3519687354564667,
-0.07651231437921524,
0.4785303473472595,
0.0729011818766594,
0.8727174401283264,
-0.22810710966587067,
0.4335518777370453,
-0.17480596899986267,
-0.11021739989519119,
-0.3010557293891907,
0.03871956467628479,
0.1711006462574005,
-0.5603868365287781,
0.02106599509716034,
-0.7519854307174683,
0.053576063364744186,
0.03897588700056076,
1.0543049573898315,
0.015192622318863869,
0.18019340932369232,
-0.18464279174804688,
-0.18887226283550262,
0.598456084728241,
-0.6152726411819458,
-0.016222987323999405,
0.6041423082351685,
0.19720609486103058,
-0.013518700376152992,
-0.654552161693573,
-0.6181960701942444,
0.12422414869070053,
-0.1786818951368332,
0.32162922620773315,
-0.18385933339595795,
-0.37556159496307373,
0.48808780312538147,
0.5504303574562073,
-0.5968830585479736,
-0.3013366460800171,
-0.5093297362327576,
-0.1531050056219101,
1.151182770729065,
0.14458473026752472,
0.47798505425453186,
-0.474934458732605,
-0.1546720266342163,
-0.4175455868244171,
-0.24743035435676575,
0.3720475137233734,
0.6157364249229431,
0.43145909905433655,
-1.0886051654815674,
0.6288455724716187,
-0.17750701308250427,
0.5907036066055298,
0.11766526848077774,
0.04007064551115036,
0.807979166507721,
-0.467269629240036,
-0.13525840640068054,
-0.20376650989055634,
1.1165456771850586,
0.6600360870361328,
0.23554809391498566,
0.08678837865591049,
-0.016611333936452866,
-0.017701612785458565,
-0.1619596630334854,
-0.8116468787193298,
-0.4330611824989319,
0.620692253112793,
-0.6014856100082397,
-0.5841330885887146,
0.15920397639274597,
-1.037194848060608,
-0.16334028542041779,
-0.3057350218296051,
0.2754564583301544,
-0.41646304726600647,
-0.5340707898139954,
0.15335588157176971,
-0.2648598849773407,
0.16340108215808868,
0.014547478407621384,
-0.6363059282302856,
0.2143796980381012,
0.5379218459129333,
0.7703954577445984,
0.2326887995004654,
-0.29975274205207825,
-0.3262407183647156,
-0.21870113909244537,
-0.21297647058963776,
0.664262056350708,
-0.35133737325668335,
-0.3246173858642578,
-0.1551576405763626,
0.30918243527412415,
-0.03042275831103325,
-0.2590084969997406,
0.8489861488342285,
0.04809485748410225,
0.2630528509616852,
-0.5581960082054138,
-0.3820508122444153,
0.045553043484687805,
0.24412041902542114,
-0.7268426418304443,
1.0475566387176514,
0.3004198670387268,
-1.0452795028686523,
0.1965901255607605,
-0.7869735360145569,
-0.2512868642807007,
0.054135553538799286,
0.059291940182447433,
-0.8339785933494568,
-0.14307743310928345,
0.2012190818786621,
0.7418414354324341,
-0.29617682099342346,
0.03203078359365463,
-0.6019604206085205,
-0.09153187274932861,
0.39740291237831116,
0.3018224537372589,
1.0986073017120361,
0.1107778549194336,
-0.13252459466457367,
0.14855290949344635,
-0.9489808082580566,
0.14786486327648163,
0.4432142972946167,
-0.14845427870750427,
-0.06841730326414108,
-0.20392169058322906,
0.3931088149547577,
0.2875441312789917,
0.0275392085313797,
-0.5960270762443542,
0.35331466794013977,
-0.26020511984825134,
0.4322422444820404,
0.7507842779159546,
-0.023609120398759842,
0.32829493284225464,
-0.6788002252578735,
0.41327112913131714,
0.10256653279066086,
0.383593887090683,
0.0003165595990139991,
-0.5575715899467468,
-0.48273324966430664,
-0.3044509291648865,
0.2808975279331207,
0.41109317541122437,
-0.7062307000160217,
0.9921684265136719,
-0.3223327100276947,
-0.8388108611106873,
-0.5732478499412537,
0.10981974005699158,
0.21607553958892822,
0.5140129327774048,
0.3834303617477417,
-0.43084627389907837,
-0.5917217135429382,
-0.6840938925743103,
0.0229180995374918,
-0.24814444780349731,
0.20042411983013153,
0.3836332857608795,
0.8634340167045593,
-0.1445692479610443,
0.8320243954658508,
-0.6471648812294006,
-0.2353610098361969,
-0.27149441838264465,
-0.35666385293006897,
0.4088987112045288,
0.860817551612854,
0.6730746030807495,
-0.8584458827972412,
-0.5367281436920166,
-0.19994311034679413,
-0.7432420253753662,
0.016594400629401207,
0.03037990629673004,
-0.27156728506088257,
0.03717634454369545,
0.1401427686214447,
-0.6952225565910339,
0.5613676905632019,
0.47964468598365784,
-0.699793815612793,
0.6436308026313782,
-0.004349012393504381,
0.004793859086930752,
-1.3419891595840454,
0.4589749574661255,
0.24007420241832733,
-0.01308036595582962,
-0.6753347516059875,
-0.2412826269865036,
-0.04567252844572067,
-0.08882736414670944,
-0.1594635397195816,
0.6387292742729187,
-0.3343050479888916,
0.27130159735679626,
0.2138792723417282,
0.08649725466966629,
0.038255371153354645,
0.4454469084739685,
-0.06411144137382507,
0.27941015362739563,
1.093819499015808,
-0.38885819911956787,
0.7557240724563599,
0.5842647552490234,
-0.3109380602836609,
0.903386652469635,
-0.8010412454605103,
0.07745891809463501,
-0.2954009473323822,
0.38627326488494873,
-0.8820947408676147,
-0.6389034986495972,
0.9160245060920715,
-0.7335018515586853,
0.43608054518699646,
-0.2344074845314026,
-0.5514965653419495,
-0.7747981548309326,
-0.711668848991394,
0.16776473820209503,
0.5402003526687622,
-0.36238279938697815,
0.4226469099521637,
0.5485579967498779,
0.01364887971431017,
-0.4111988842487335,
-0.7883318066596985,
-0.13639073073863983,
-0.42293640971183777,
-0.8115054965019226,
0.3654938042163849,
-0.39753398299217224,
-0.10430195927619934,
0.19340580701828003,
0.09938108921051025,
0.1025497242808342,
-0.03850044682621956,
0.343318909406662,
0.35327020287513733,
0.11719357967376709,
0.02946650981903076,
-0.11529166996479034,
-0.29508209228515625,
0.02950562722980976,
-0.24388401210308075,
0.2629181742668152,
-0.295199453830719,
-0.09821806848049164,
-0.7156739830970764,
0.18735381960868835,
0.47566917538642883,
-0.2808375656604767,
0.6719299554824829,
0.7443633675575256,
-0.2461487352848053,
-0.05357922613620758,
-0.42330294847488403,
-0.12843479216098785,
-0.40984025597572327,
0.07264244556427002,
-0.2170567810535431,
-0.6150045394897461,
0.9981892704963684,
0.3154658079147339,
0.06762151420116425,
0.6649949550628662,
0.4842454493045807,
-0.04362324997782707,
0.6701117753982544,
0.3450307846069336,
-0.2954058051109314,
0.4965752363204956,
-0.6922155618667603,
-0.20833946764469147,
-0.9014577865600586,
-0.4818521738052368,
-0.5268427729606628,
-0.5421143770217896,
-0.7795817852020264,
-0.4614488482475281,
0.18848803639411926,
0.07319189608097076,
-0.21804699301719666,
0.42986103892326355,
-0.9479162693023682,
0.3141384720802307,
0.28555360436439514,
0.2533878982067108,
-0.14548645913600922,
0.12585432827472687,
0.0365399532020092,
0.11557073146104813,
-0.5726941823959351,
-0.2056138664484024,
1.2004196643829346,
0.49521327018737793,
0.5504463315010071,
-0.04012477770447731,
0.7873353958129883,
0.011843744665384293,
0.19684770703315735,
-0.49729853868484497,
0.5268540382385254,
0.04128282889723778,
-0.5461214184761047,
-0.19411157071590424,
-0.5164790153503418,
-0.8936619758605957,
-0.1322994828224182,
-0.3904174864292145,
-0.73787921667099,
0.4726260006427765,
0.1446068435907364,
-0.23270469903945923,
0.4076601564884186,
-0.5399235486984253,
0.8599105477333069,
-0.042674798518419266,
-0.4653947651386261,
0.25688832998275757,
-1.0607836246490479,
0.14940111339092255,
0.1803232729434967,
0.3041740953922272,
-0.33158284425735474,
0.022631315514445305,
1.086439847946167,
-0.7587039470672607,
0.867911159992218,
-0.37200120091438293,
0.173392191529274,
0.5425453782081604,
-0.3072652220726013,
0.5059618949890137,
0.08132676780223846,
-0.2696627974510193,
0.24159494042396545,
0.009359271265566349,
-0.481218546628952,
-0.42096346616744995,
0.7147461175918579,
-0.7525789737701416,
0.11539018154144287,
-0.3754301071166992,
-0.449696809053421,
0.04844042658805847,
0.16182805597782135,
0.360005646944046,
0.48465073108673096,
-0.012853095307946205,
0.12851911783218384,
0.4241122007369995,
-0.13820597529411316,
0.3397481143474579,
0.026925740763545036,
-0.1373043805360794,
-0.8224936723709106,
0.9447596669197083,
0.17742842435836792,
0.04049953073263168,
-0.10332762449979782,
0.4613686800003052,
-0.38468483090400696,
-0.15614205598831177,
-0.5835889577865601,
0.5442695617675781,
-0.429155170917511,
-0.35827094316482544,
-0.41940465569496155,
-0.10496114194393158,
-0.632310688495636,
-0.16645163297653198,
-0.24931183457374573,
-0.48866018652915955,
-0.31945738196372986,
-0.1960781216621399,
0.9500917196273804,
0.4533142149448395,
-0.7088002562522888,
0.12507499754428864,
-0.47540226578712463,
0.27419716119766235,
-0.06115060672163963,
0.7243987917900085,
-0.12816758453845978,
-0.39019978046417236,
-0.2683129608631134,
0.04063817486166954,
-0.1649775505065918,
-0.639467179775238,
0.26385149359703064,
-0.013872571289539337,
0.3951946198940277,
0.11333992332220078,
0.08629461377859116,
0.6259747743606567,
-0.06293477863073349,
0.6854931712150574,
0.35102325677871704,
-0.8185076117515564,
0.6455994248390198,
-0.5291799306869507,
0.15917401015758514,
0.719935417175293,
0.3561497628688812,
-0.6290977001190186,
-0.13195157051086426,
-0.9630731344223022,
-0.8223370909690857,
0.8974790573120117,
0.41737696528434753,
0.08637098222970963,
0.23448048532009125,
0.5414416790008545,
-0.193039670586586,
0.24923135340213776,
-0.6401953101158142,
-0.8222271203994751,
-0.417978435754776,
-0.38893431425094604,
-0.12994559109210968,
-0.09903141856193542,
-0.2842991352081299,
-0.6356578469276428,
0.8399055004119873,
-0.13058733940124512,
0.32767942547798157,
0.4966430366039276,
0.4297041893005371,
-0.27312806248664856,
-0.0017474339110776782,
0.3590695858001709,
0.4152166545391083,
-0.22799324989318848,
-0.28331589698791504,
-0.1841977834701538,
-0.6189010739326477,
-0.06266633421182632,
0.4492674767971039,
-0.3089454472064972,
-0.06133599206805229,
0.31308841705322266,
0.9219847917556763,
-0.04244135692715645,
-0.21097294986248016,
0.5505633354187012,
-0.0843154639005661,
-0.48279041051864624,
-0.37931177020072937,
-0.03415343910455704,
0.17310123145580292,
0.2221454232931137,
0.04409322515130043,
0.09914066642522812,
-0.1925082802772522,
-0.392618864774704,
0.39114245772361755,
0.2787819802761078,
-0.44811418652534485,
-0.586737334728241,
0.5558034181594849,
0.06422204524278641,
-0.17972606420516968,
0.41267964243888855,
-0.14178183674812317,
-0.5858250260353088,
0.7454346418380737,
0.08371549844741821,
0.8252881765365601,
-0.20060831308364868,
0.3546508550643921,
0.6922456622123718,
0.15646858513355255,
-0.12642136216163635,
0.5338329076766968,
-0.1791963428258896,
-0.6327614188194275,
-0.13452723622322083,
-0.5548098087310791,
-0.10993005335330963,
0.12867648899555206,
-0.7934255599975586,
0.41001832485198975,
-0.5067184567451477,
-0.247115358710289,
0.018946252763271332,
0.358608216047287,
-0.6705531477928162,
0.19284017384052277,
-0.04407106712460518,
1.030076503753662,
-1.0362954139709473,
0.4404970109462738,
0.7524985074996948,
-0.5719647407531738,
-1.1719934940338135,
-0.1628260761499405,
0.22264708578586578,
-0.5338554382324219,
0.2868404686450958,
0.15946310758590698,
0.4730765223503113,
-0.029509499669075012,
-0.9343146085739136,
-0.6716727018356323,
1.115134596824646,
0.032274141907691956,
-0.18886737525463104,
0.3772216737270355,
0.0681353434920311,
0.6346592307090759,
-0.37754055857658386,
0.2933064103126526,
0.565643310546875,
0.692481279373169,
0.28381216526031494,
-0.7109735012054443,
0.24994298815727234,
-0.6538745164871216,
-0.2588682472705841,
0.0943455845117569,
-0.9969097971916199,
0.6311169862747192,
-0.14079239964485168,
-0.015105818398296833,
0.03348772972822189,
0.5984886884689331,
0.37219560146331787,
0.3849502205848694,
0.39659467339515686,
0.8098487257957458,
0.7793012857437134,
-0.28529462218284607,
1.2117012739181519,
-0.2608537971973419,
0.6740777492523193,
0.7460909485816956,
0.030912673100829124,
0.46953555941581726,
0.25216904282569885,
-0.3436647653579712,
0.5346567034721375,
0.5896783471107483,
-0.40321633219718933,
0.2664964199066162,
0.43528828024864197,
-0.06060238927602768,
-0.09910013526678085,
-0.17817378044128418,
-0.5846906304359436,
0.2617599070072174,
0.15825703740119934,
-0.2723464071750641,
0.0029838099144399166,
-0.017826858907938004,
0.4361322820186615,
-0.041367776691913605,
-0.25967782735824585,
0.6095905303955078,
0.020465414971113205,
-0.4086945950984955,
0.49469947814941406,
-0.21043112874031067,
0.6384919881820679,
-0.6976198554039001,
0.22075480222702026,
-0.10443957149982452,
0.16153766214847565,
-0.5842447280883789,
-1.0886534452438354,
0.3970290422439575,
-0.04424545541405678,
-0.21436023712158203,
-0.3147246241569519,
0.7745803594589233,
-0.4543946087360382,
-0.7624781727790833,
0.21468961238861084,
0.18560491502285004,
0.366587370634079,
0.19750624895095825,
-1.2536674737930298,
0.5666707754135132,
0.16487084329128265,
-0.5537494421005249,
0.17499250173568726,
0.4481048285961151,
0.22426387667655945,
0.5712902545928955,
0.7498273849487305,
0.3346322774887085,
-0.29468393325805664,
-0.014697372913360596,
1.105649709701538,
-0.544903576374054,
-0.4867607355117798,
-0.7989902496337891,
0.9440227150917053,
-0.3907913565635681,
-0.40886908769607544,
0.680443286895752,
0.7681211233139038,
0.8178451657295227,
0.004346483387053013,
0.8233383297920227,
-0.614978551864624,
0.6901480555534363,
-0.22576327621936798,
0.9809105396270752,
-0.7240253686904907,
-0.1486474871635437,
-0.704828679561615,
-0.5367156863212585,
-0.47721216082572937,
0.6682263016700745,
-0.2135276198387146,
0.18335019052028656,
0.30361485481262207,
0.8924523591995239,
0.01036907359957695,
0.08391544967889786,
-0.1819029599428177,
0.26038357615470886,
0.34165748953819275,
0.5422956943511963,
0.38444262742996216,
-0.8585606813430786,
0.36702996492385864,
-0.6996728777885437,
-0.3375849425792694,
0.03111751191318035,
-0.8646274209022522,
-0.9054543972015381,
-0.9332021474838257,
-0.6663945317268372,
-0.7822944521903992,
-0.2711092531681061,
1.053971529006958,
0.733078122138977,
-0.6932821869850159,
-0.2857063114643097,
0.08358754962682724,
0.2402014285326004,
-0.08337424695491791,
-0.28970158100128174,
0.7000460624694824,
0.29674577713012695,
-0.5874861478805542,
-0.12958212196826935,
0.08108878880739212,
0.25425177812576294,
0.09349129348993301,
-0.16511327028274536,
-0.10951264947652817,
-0.2575870156288147,
0.26513445377349854,
0.494150847196579,
-0.26540908217430115,
-0.1488747000694275,
-0.25278446078300476,
0.07656058669090271,
0.1573866307735443,
0.4785194396972656,
-0.5028588771820068,
0.27065426111221313,
0.6933090686798096,
0.21311330795288086,
0.4411279559135437,
0.19286303222179413,
0.012738868594169617,
-0.4536631405353546,
0.11567030102014542,
-0.056794069707393646,
0.28947216272354126,
0.40399327874183655,
-0.36908382177352905,
0.7447757720947266,
0.6352574229240417,
-0.556847333908081,
-0.863427460193634,
-0.08394002914428711,
-1.311772346496582,
0.1301329880952835,
1.0153194665908813,
-0.048850640654563904,
-0.5434755086898804,
0.03363307937979698,
-0.1964547038078308,
0.13818317651748657,
-0.5364823937416077,
0.4007325768470764,
0.6135319471359253,
-0.0878780260682106,
0.1363239884376526,
-0.33700135350227356,
0.6824892163276672,
0.03580189868807793,
-0.9644328355789185,
0.2718701958656311,
0.4137408137321472,
0.43124377727508545,
0.36121901869773865,
0.7888807654380798,
-0.3235717713832855,
0.07190780341625214,
-0.10682283341884613,
0.25456511974334717,
-0.3175378739833832,
0.03419731184840202,
-0.3967682123184204,
-0.12677018344402313,
-0.5013030767440796,
-0.21952766180038452
]
|
huggingartists/mikhail-krug | huggingartists | 2022-10-25T09:39:07Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/mikhail-krug"
## 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.051644 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('https://images.genius.com/510c736f2e8270a8e8ddbd62ab75d943.466x466x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/mikhail-krug">
<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">Михаил Круг (Mikhail Krug)</div>
<a href="https://genius.com/artists/mikhail-krug">
<div style="text-align: center; font-size: 14px;">@mikhail-krug</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/mikhail-krug).
### 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/mikhail-krug")
```
## 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|
|------:|---------:|---:|
|13| -| -|
'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/mikhail-krug")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6161671280860901,
-0.49859341979026794,
0.0861378088593483,
0.2535195052623749,
-0.2839822471141815,
0.03742321953177452,
-0.31951704621315,
-0.4409012794494629,
0.8521673083305359,
0.29126325249671936,
-0.890210747718811,
-0.8090095520019531,
-0.5908830761909485,
0.09754972904920578,
-0.07363966852426529,
1.2914834022521973,
-0.19937771558761597,
-0.3253791928291321,
-0.31802457571029663,
-0.240061417222023,
-0.2868070900440216,
-0.31698745489120483,
-0.3444581925868988,
-0.39976853132247925,
0.37979060411453247,
0.5022060871124268,
0.7134738564491272,
0.8856121301651001,
0.5112988948822021,
0.3434337079524994,
-0.128607839345932,
-0.0058457194827497005,
-0.36506834626197815,
-0.07703230530023575,
0.16751819849014282,
-0.2864849269390106,
-0.6938185095787048,
0.23209096491336823,
0.5819934010505676,
0.4057779908180237,
-0.06918647885322571,
0.4860741198062897,
0.08731269091367722,
0.849785327911377,
-0.2669793665409088,
0.4841059446334839,
-0.22221817076206207,
-0.12141706049442291,
-0.3105887174606323,
0.06769747287034988,
0.16461479663848877,
-0.5984631180763245,
-0.002373926341533661,
-0.7322598695755005,
0.023417679592967033,
0.011585775762796402,
1.0252171754837036,
0.013382015749812126,
0.12094805389642715,
-0.20604543387889862,
-0.15201187133789062,
0.5520431399345398,
-0.6038910150527954,
-0.004387489054352045,
0.5947704911231995,
0.16058498620986938,
-0.011652698740363121,
-0.6219542622566223,
-0.6152200698852539,
0.07654512673616409,
-0.20272664725780487,
0.2823328375816345,
-0.18376506865024567,
-0.33684954047203064,
0.503835916519165,
0.5461354851722717,
-0.5069409012794495,
-0.24496062099933624,
-0.5866066217422485,
-0.15125451982021332,
1.1733297109603882,
0.16333912312984467,
0.413004994392395,
-0.488206148147583,
-0.18243157863616943,
-0.3956713378429413,
-0.223967507481575,
0.36982327699661255,
0.5796716213226318,
0.44539064168930054,
-1.0345889329910278,
0.632556140422821,
-0.19182315468788147,
0.55434650182724,
0.1462751030921936,
-0.051318198442459106,
0.7963475584983826,
-0.39429908990859985,
-0.11478367447853088,
-0.13111329078674316,
1.0767618417739868,
0.6668065190315247,
0.18243752419948578,
0.10330229252576828,
-0.034695062786340714,
0.0330774299800396,
-0.15055005252361298,
-0.8492869734764099,
-0.4568634033203125,
0.6423619389533997,
-0.6143692135810852,
-0.6186832785606384,
0.12612958252429962,
-1.0375068187713623,
-0.22207343578338623,
-0.29881829023361206,
0.29002025723457336,
-0.4141519367694855,
-0.5373499989509583,
0.1668565571308136,
-0.2778794765472412,
0.13283425569534302,
0.04489699378609657,
-0.5944982767105103,
0.21086254715919495,
0.5995283126831055,
0.7758685350418091,
0.2277527153491974,
-0.30050405859947205,
-0.3180727958679199,
-0.24324338138103485,
-0.15052667260169983,
0.6622453927993774,
-0.29501983523368835,
-0.326947420835495,
-0.14478962123394012,
0.3175577223300934,
-0.052956581115722656,
-0.25543728470802307,
0.9114855527877808,
0.05380874127149582,
0.20638595521450043,
-0.5477139949798584,
-0.4425686299800873,
0.020676016807556152,
0.2753468453884125,
-0.7132863998413086,
1.050061821937561,
0.28990915417671204,
-1.0078004598617554,
0.19560971856117249,
-0.786266565322876,
-0.2891674041748047,
0.03071659244596958,
0.08543122559785843,
-0.8378130197525024,
-0.18140703439712524,
0.17525191605091095,
0.7438309192657471,
-0.29065439105033875,
0.023213721811771393,
-0.6539865732192993,
-0.0909142717719078,
0.40039825439453125,
0.2827204167842865,
1.1728157997131348,
0.12354739010334015,
-0.12620462477207184,
0.06489962339401245,
-0.9444365501403809,
0.14937187731266022,
0.4424576759338379,
-0.17205864191055298,
-0.10582806915044785,
-0.23629266023635864,
0.39234429597854614,
0.29140928387641907,
0.07087798416614532,
-0.6178773641586304,
0.41224998235702515,
-0.2083587795495987,
0.4409235119819641,
0.7581406831741333,
-0.012356898747384548,
0.32157254219055176,
-0.6619738936424255,
0.42651692032814026,
0.07504481077194214,
0.37345731258392334,
-0.01973438821732998,
-0.5672970414161682,
-0.482867956161499,
-0.27613940834999084,
0.32768940925598145,
0.44046247005462646,
-0.6738062500953674,
0.9611475467681885,
-0.29612043499946594,
-0.872456431388855,
-0.6275704503059387,
0.11684808880090714,
0.22548025846481323,
0.5109708905220032,
0.3541530668735504,
-0.4228622019290924,
-0.6035465002059937,
-0.685536801815033,
0.043264880776405334,
-0.24314966797828674,
0.21351304650306702,
0.43507078289985657,
0.8328007459640503,
-0.19284404814243317,
0.8092296123504639,
-0.7148854732513428,
-0.25791865587234497,
-0.2627338767051697,
-0.32910773158073425,
0.40071627497673035,
0.8209722638130188,
0.6873259544372559,
-0.8519799113273621,
-0.5401684045791626,
-0.2295849472284317,
-0.6908392906188965,
-0.10896212607622147,
0.011809653602540493,
-0.27635231614112854,
0.05037884786725044,
0.1361369788646698,
-0.7226624488830566,
0.5450459122657776,
0.480547696352005,
-0.691896915435791,
0.599986732006073,
0.06980899721384048,
-0.016619911417365074,
-1.3134528398513794,
0.4112667441368103,
0.23845168948173523,
0.03603365644812584,
-0.6540812849998474,
-0.22234077751636505,
-0.053633466362953186,
-0.0639854222536087,
-0.0958254411816597,
0.6344647407531738,
-0.3260174095630646,
0.2798658609390259,
0.15684357285499573,
0.08602557331323624,
0.1028471291065216,
0.45001497864723206,
-0.10971370339393616,
0.2486121952533722,
1.03885817527771,
-0.3629780113697052,
0.6942629814147949,
0.6239587068557739,
-0.2357194721698761,
0.8812041282653809,
-0.8005353808403015,
0.0399349145591259,
-0.2825753688812256,
0.41063904762268066,
-0.8445271849632263,
-0.5711832642555237,
0.9020244479179382,
-0.7199681997299194,
0.42850297689437866,
-0.25959908962249756,
-0.5427558422088623,
-0.7760542035102844,
-0.6667322516441345,
0.17582589387893677,
0.5484490990638733,
-0.3652421534061432,
0.3841416537761688,
0.5843470692634583,
0.04839710518717766,
-0.3815421760082245,
-0.7416126132011414,
-0.12854455411434174,
-0.4190601110458374,
-0.7816076874732971,
0.3855218291282654,
-0.35679954290390015,
-0.11227776110172272,
0.17825068533420563,
0.10638108849525452,
0.10048340260982513,
0.0008604966569691896,
0.3745262026786804,
0.3200328052043915,
0.10083787888288498,
0.027484333142638206,
-0.10735826939344406,
-0.2650267481803894,
0.0904630497097969,
-0.23545493185520172,
0.28410604596138,
-0.27784261107444763,
-0.10048964619636536,
-0.689498782157898,
0.21890124678611755,
0.4748108685016632,
-0.27478060126304626,
0.6622357964515686,
0.8221225738525391,
-0.24130894243717194,
-0.03384162858128548,
-0.45285239815711975,
-0.14067168533802032,
-0.41002336144447327,
0.03805353865027428,
-0.21529677510261536,
-0.6185728907585144,
0.9492136836051941,
0.23517821729183197,
0.052707280963659286,
0.6676465272903442,
0.48581790924072266,
-0.07266086339950562,
0.66595059633255,
0.35408303141593933,
-0.2918897569179535,
0.5013837814331055,
-0.6915561556816101,
-0.19182512164115906,
-0.8845130205154419,
-0.486142098903656,
-0.5092111229896545,
-0.5399409532546997,
-0.846731960773468,
-0.4140389859676361,
0.20283833146095276,
0.13641732931137085,
-0.20869818329811096,
0.43616634607315063,
-0.9343737363815308,
0.25239357352256775,
0.3406347930431366,
0.276642769575119,
-0.16045275330543518,
0.09599096328020096,
0.06310044974088669,
0.12820523977279663,
-0.6008970737457275,
-0.1985883265733719,
1.1538810729980469,
0.4993661344051361,
0.5441877841949463,
-0.08459286391735077,
0.8295577764511108,
0.05191124230623245,
0.19207455217838287,
-0.5489742755889893,
0.4946339428424835,
0.033016301691532135,
-0.5185484886169434,
-0.1491687148809433,
-0.502691924571991,
-0.9162384271621704,
-0.12251229584217072,
-0.438461035490036,
-0.7424063086509705,
0.5017062425613403,
0.10925715416669846,
-0.25101399421691895,
0.395258367061615,
-0.5723755359649658,
0.8487335443496704,
-0.027994347736239433,
-0.4468133747577667,
0.23868276178836823,
-1.0171401500701904,
0.18450970947742462,
0.17715409398078918,
0.27922695875167847,
-0.39464569091796875,
0.0467134490609169,
0.9905967712402344,
-0.7727649211883545,
0.9267874360084534,
-0.38338714838027954,
0.15694013237953186,
0.5368555188179016,
-0.2972547709941864,
0.45190876722335815,
0.10861553251743317,
-0.2738540768623352,
0.30450043082237244,
0.033360593020915985,
-0.49271851778030396,
-0.4460875689983368,
0.6768487095832825,
-0.7332818508148193,
0.057332295924425125,
-0.39081934094429016,
-0.46737128496170044,
0.07665912061929703,
0.1944493055343628,
0.27009090781211853,
0.4411188066005707,
0.034899331629276276,
0.1608516275882721,
0.4172595739364624,
-0.1578531712293625,
0.2809580862522125,
0.030403604730963707,
-0.11268870532512665,
-0.8446890711784363,
0.9017767906188965,
0.19110876321792603,
0.05683783441781998,
-0.08406025171279907,
0.4574751853942871,
-0.3448505401611328,
-0.13299624621868134,
-0.605076789855957,
0.4743417203426361,
-0.4033880829811096,
-0.40684473514556885,
-0.489727646112442,
-0.15778769552707672,
-0.6281813979148865,
-0.16193243861198425,
-0.22763513028621674,
-0.5142239332199097,
-0.2987613379955292,
-0.17822308838367462,
1.0434128046035767,
0.4533942937850952,
-0.7082867622375488,
0.1120506078004837,
-0.5090994238853455,
0.268027126789093,
-0.09041222929954529,
0.6906710863113403,
-0.07641451060771942,
-0.32264360785484314,
-0.2589021623134613,
0.09228163212537766,
-0.215196430683136,
-0.6753954291343689,
0.255429208278656,
-0.007121961563825607,
0.3752763867378235,
0.10661239176988602,
0.13669787347316742,
0.6653373837471008,
-0.06585580110549927,
0.6503846049308777,
0.28274863958358765,
-0.812064528465271,
0.6571381688117981,
-0.5266439318656921,
0.15305152535438538,
0.7154662013053894,
0.3553699851036072,
-0.6350162625312805,
-0.14340978860855103,
-0.9774553775787354,
-0.8402726054191589,
0.8730700612068176,
0.4371286928653717,
0.07514301687479019,
0.2555963099002838,
0.5949001908302307,
-0.18642134964466095,
0.2809382677078247,
-0.6341449022293091,
-0.8546571135520935,
-0.3976214826107025,
-0.3375130891799927,
-0.0891241505742073,
-0.09286758303642273,
-0.2680843770503998,
-0.6938175559043884,
0.8113529682159424,
-0.12242893874645233,
0.3182559907436371,
0.44919708371162415,
0.46500301361083984,
-0.21883195638656616,
-0.029231341555714607,
0.3357664942741394,
0.3603699505329132,
-0.22290238738059998,
-0.28599655628204346,
-0.15408536791801453,
-0.6211594343185425,
-0.07714451104402542,
0.4843057096004486,
-0.3427499830722809,
-0.0693807452917099,
0.3122074007987976,
0.8978796005249023,
-0.026881637051701546,
-0.22017599642276764,
0.5640074610710144,
-0.05776317045092583,
-0.43586641550064087,
-0.40517300367355347,
-0.002661812584847212,
0.15104573965072632,
0.2708680033683777,
0.04370171204209328,
0.12382122874259949,
-0.13203164935112,
-0.39875978231430054,
0.4232957065105438,
0.259991854429245,
-0.39467620849609375,
-0.5224774479866028,
0.5532505512237549,
0.013928264379501343,
-0.19438901543617249,
0.4516282081604004,
-0.17527331411838531,
-0.6399536728858948,
0.7649409174919128,
0.1119312196969986,
0.8288940191268921,
-0.1660780906677246,
0.3600005507469177,
0.7414535284042358,
0.17883628606796265,
-0.05789880082011223,
0.5206170678138733,
-0.21256335079669952,
-0.639307975769043,
-0.06140997260808945,
-0.5855454802513123,
-0.09769441187381744,
0.09330987185239792,
-0.8321893215179443,
0.42554721236228943,
-0.502936840057373,
-0.2431340515613556,
0.040365420281887054,
0.40998363494873047,
-0.6722022891044617,
0.17081665992736816,
-0.05933386832475662,
1.0162162780761719,
-1.0477486848831177,
0.47117429971694946,
0.7068197131156921,
-0.6061297059059143,
-1.1755571365356445,
-0.13508395850658417,
0.18565204739570618,
-0.5640856623649597,
0.2492738664150238,
0.16114425659179688,
0.5102903246879578,
-0.0750812441110611,
-0.8919376730918884,
-0.6734345555305481,
1.1670820713043213,
0.041630975902080536,
-0.160379096865654,
0.3993377685546875,
0.10715626925230026,
0.6264945864677429,
-0.3613385558128357,
0.25347891449928284,
0.6127131581306458,
0.6948906183242798,
0.29454505443573,
-0.7262247204780579,
0.2797401547431946,
-0.6683588624000549,
-0.24844661355018616,
0.10719934105873108,
-1.0402942895889282,
0.6624235510826111,
-0.1285371482372284,
-0.008631626144051552,
0.025884490460157394,
0.5789483785629272,
0.44448980689048767,
0.44189706444740295,
0.439270943403244,
0.7891452312469482,
0.7866039276123047,
-0.2926701605319977,
1.1869617700576782,
-0.28212204575538635,
0.6466690897941589,
0.7495684027671814,
0.03968926891684532,
0.4938379228115082,
0.250335693359375,
-0.32644298672676086,
0.541303813457489,
0.6293595433235168,
-0.46762654185295105,
0.2557012140750885,
0.4127259850502014,
-0.05754852294921875,
-0.08477316796779633,
-0.24775204062461853,
-0.5713183283805847,
0.3279303014278412,
0.2086263746023178,
-0.31459832191467285,
-0.0002699387550819665,
-0.03361859172582626,
0.41976630687713623,
-0.03850623965263367,
-0.2811361253261566,
0.6340753436088562,
0.07251236587762833,
-0.3893788456916809,
0.5279543995857239,
-0.18113775551319122,
0.6413448452949524,
-0.5978224277496338,
0.1639126092195511,
-0.09554795920848846,
0.1601603627204895,
-0.6058830618858337,
-1.0886201858520508,
0.4020994305610657,
-0.08108367025852203,
-0.23963703215122223,
-0.3400747776031494,
0.7889766693115234,
-0.4695279598236084,
-0.8120631575584412,
0.2214890569448471,
0.18391570448875427,
0.3297106921672821,
0.20646581053733826,
-1.2653064727783203,
0.5809450149536133,
0.14144985377788544,
-0.45812880992889404,
0.1507040560245514,
0.5045236349105835,
0.1927625685930252,
0.5547946095466614,
0.7197040915489197,
0.2925492823123932,
-0.2834567725658417,
-0.004424984101206064,
1.1061781644821167,
-0.48183590173721313,
-0.4533127546310425,
-0.7941888570785522,
0.9168546795845032,
-0.3970697224140167,
-0.40907418727874756,
0.7156862616539001,
0.7704941034317017,
0.8467667102813721,
0.010791106149554253,
0.8003625273704529,
-0.6377472877502441,
0.6548863053321838,
-0.20881374180316925,
0.9823685884475708,
-0.7258734703063965,
-0.1283990889787674,
-0.7478107810020447,
-0.500127911567688,
-0.44325295090675354,
0.6616673469543457,
-0.20651626586914062,
0.1680799126625061,
0.24491065740585327,
0.8916114568710327,
0.001251876587048173,
0.09293273091316223,
-0.2254093587398529,
0.3043767511844635,
0.2914884090423584,
0.5229070782661438,
0.4027722179889679,
-0.8991129994392395,
0.3463307023048401,
-0.7672706842422485,
-0.3030933141708374,
0.015166292898356915,
-0.855913519859314,
-0.9011490941047668,
-0.9716711640357971,
-0.6588204503059387,
-0.8022878766059875,
-0.2860781252384186,
1.085407018661499,
0.7137735486030579,
-0.6873220205307007,
-0.2784419357776642,
0.10906816273927689,
0.2649856507778168,
-0.08663719147443771,
-0.3098020851612091,
0.6797600388526917,
0.33876854181289673,
-0.5847758650779724,
-0.15896204113960266,
0.03301481157541275,
0.22911347448825836,
0.03943147510290146,
-0.11847353726625443,
-0.08949979394674301,
-0.27652087807655334,
0.3359365165233612,
0.47382616996765137,
-0.3165986239910126,
-0.1394176185131073,
-0.23521271347999573,
0.058792684227228165,
0.16384051740169525,
0.46420806646347046,
-0.4956343472003937,
0.225005105137825,
0.6630863547325134,
0.26204782724380493,
0.4453864097595215,
0.17856334149837494,
0.03730161860585213,
-0.46268174052238464,
0.1088731437921524,
-0.023704133927822113,
0.31873056292533875,
0.38515666127204895,
-0.44593513011932373,
0.7276563048362732,
0.5903100967407227,
-0.535010814666748,
-0.8837183713912964,
-0.1012769415974617,
-1.2989192008972168,
0.12083849310874939,
1.0319712162017822,
-0.033711835741996765,
-0.5483198165893555,
0.06129641458392143,
-0.24310904741287231,
0.14669495820999146,
-0.5640270709991455,
0.4947042167186737,
0.5718945860862732,
-0.08958687633275986,
0.11682500690221786,
-0.3615817725658417,
0.6655557751655579,
-0.008267886005342007,
-0.9359291195869446,
0.2092263102531433,
0.41409832239151,
0.44573959708213806,
0.3447396755218506,
0.7880845665931702,
-0.27031266689300537,
0.060552433133125305,
-0.06416948139667511,
0.2743959426879883,
-0.2768331468105316,
0.032639745622873306,
-0.39607658982276917,
-0.11394385993480682,
-0.49643567204475403,
-0.20988644659519196
]
|
huggingartists/miyagi | huggingartists | 2022-10-25T09:39:13Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/miyagi"
## 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.536065 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('https://images.genius.com/10795217955d95e2543993f8e83fe5c8.960x960x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/miyagi">
<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">MiyaGi</div>
<a href="https://genius.com/artists/miyagi">
<div style="text-align: center; font-size: 14px;">@miyagi</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/miyagi).
### 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/miyagi")
```
## 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|
|------:|---------:|---:|
|147| -| -|
'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/miyagi")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.650098443031311,
-0.5079810619354248,
0.0339532345533371,
0.2840372920036316,
-0.2636362910270691,
-0.04223724827170372,
-0.31417331099510193,
-0.46999141573905945,
0.8729168772697449,
0.332345575094223,
-0.9472789168357849,
-0.8081160187721252,
-0.5792686343193054,
0.12824051082134247,
-0.0585254468023777,
1.3093128204345703,
-0.19100594520568848,
-0.3563397526741028,
-0.2850837707519531,
-0.25368353724479675,
-0.27875974774360657,
-0.26221737265586853,
-0.30673977732658386,
-0.3747440278530121,
0.36787962913513184,
0.553961455821991,
0.7148326635360718,
0.8833369016647339,
0.5066959857940674,
0.32944855093955994,
-0.041479505598545074,
0.038124486804008484,
-0.3488180339336395,
-0.09858006238937378,
0.23362837731838226,
-0.380186527967453,
-0.6711208820343018,
0.24596399068832397,
0.5654033422470093,
0.3753044009208679,
-0.08944694697856903,
0.4625053107738495,
0.10411972552537918,
0.818227231502533,
-0.3130808472633362,
0.526361882686615,
-0.2144026756286621,
-0.15698401629924774,
-0.32749226689338684,
0.027764391154050827,
0.19585087895393372,
-0.6048123836517334,
-0.04232712835073471,
-0.8008613586425781,
0.07421261072158813,
-0.026389360427856445,
1.0562916994094849,
0.08053041994571686,
0.1413847655057907,
-0.21164055168628693,
-0.13213227689266205,
0.485142320394516,
-0.5961059927940369,
-0.07191344350576401,
0.5960295796394348,
0.1742679327726364,
0.026258952915668488,
-0.587735652923584,
-0.6101705431938171,
0.0524023212492466,
-0.16173484921455383,
0.29594817757606506,
-0.15367251634597778,
-0.30580028891563416,
0.5534800291061401,
0.545116126537323,
-0.5077359676361084,
-0.2357253134250641,
-0.49147534370422363,
-0.09405209124088287,
1.1707295179367065,
0.16207516193389893,
0.4743088483810425,
-0.4832501709461212,
-0.21650594472885132,
-0.4022327959537506,
-0.2965109050273895,
0.33361005783081055,
0.5962069630622864,
0.39738935232162476,
-0.9969430565834045,
0.6073744893074036,
-0.21790198981761932,
0.5154377222061157,
0.13012199103832245,
-0.07286573201417923,
0.7706859707832336,
-0.3843105435371399,
-0.10057162493467331,
-0.10964160412549973,
1.0880022048950195,
0.6999738812446594,
0.2006216049194336,
0.14853306114673615,
-0.012360414490103722,
0.051353637129068375,
-0.18521152436733246,
-0.8834952116012573,
-0.3865020275115967,
0.5908300280570984,
-0.623742938041687,
-0.5730968117713928,
0.183132603764534,
-1.0362958908081055,
-0.24620456993579865,
-0.24748806655406952,
0.24404411017894745,
-0.37613290548324585,
-0.5396648049354553,
0.14909948408603668,
-0.25506845116615295,
0.15682005882263184,
0.06126248836517334,
-0.6964978575706482,
0.15335354208946228,
0.5947390794754028,
0.771559476852417,
0.2645007073879242,
-0.3594898283481598,
-0.264017254114151,
-0.18893444538116455,
-0.12031911313533783,
0.6279106736183167,
-0.29156333208084106,
-0.3586333394050598,
-0.1731482744216919,
0.3373626470565796,
-0.09073273837566376,
-0.27543899416923523,
0.9090971946716309,
0.09269106388092041,
0.16978348791599274,
-0.5508359670639038,
-0.3959985673427582,
0.007725789677351713,
0.25625890493392944,
-0.7543461322784424,
1.0268322229385376,
0.29170694947242737,
-1.0473699569702148,
0.1977265477180481,
-0.8279350996017456,
-0.29033979773521423,
0.03562267869710922,
0.06594561785459518,
-0.7714354991912842,
-0.1670064479112625,
0.21427074074745178,
0.7359262704849243,
-0.3289283514022827,
0.018101349472999573,
-0.6186827421188354,
-0.17511339485645294,
0.3679594099521637,
0.19454269111156464,
1.1804594993591309,
0.13654237985610962,
-0.15362797677516937,
0.08492350578308105,
-0.9288243651390076,
0.1112992987036705,
0.46966254711151123,
-0.1738658845424652,
-0.11802487075328827,
-0.226711243391037,
0.3942092955112457,
0.27268099784851074,
0.08147960901260376,
-0.5812302231788635,
0.4568614959716797,
-0.21376939117908478,
0.4788829982280731,
0.726392924785614,
-0.014787556603550911,
0.30532145500183105,
-0.6672625541687012,
0.4457334876060486,
0.05702558159828186,
0.4000852406024933,
-0.08963289111852646,
-0.6131307482719421,
-0.546274721622467,
-0.23552636802196503,
0.3007245659828186,
0.45360124111175537,
-0.7077513337135315,
0.9743437170982361,
-0.34127378463745117,
-0.8639440536499023,
-0.7354509234428406,
0.08230239897966385,
0.16935554146766663,
0.4996276795864105,
0.35603851079940796,
-0.4234396517276764,
-0.5761657953262329,
-0.684744119644165,
0.09438082575798035,
-0.25665533542633057,
0.16491462290287018,
0.39942246675491333,
0.8224493861198425,
-0.25848567485809326,
0.7913657426834106,
-0.6887344121932983,
-0.2467120736837387,
-0.2228008359670639,
-0.2657918930053711,
0.3876762092113495,
0.779799222946167,
0.6808652281761169,
-0.8171994686126709,
-0.4924691915512085,
-0.23893344402313232,
-0.7234365940093994,
-0.1266373097896576,
-0.05152958631515503,
-0.28823599219322205,
0.03350573778152466,
0.10650964826345444,
-0.7367966175079346,
0.5463685989379883,
0.5037945508956909,
-0.6515912413597107,
0.5881076455116272,
0.07083889096975327,
0.05557829886674881,
-1.291788935661316,
0.3723241984844208,
0.25625142455101013,
0.07642288506031036,
-0.6012573838233948,
-0.13615359365940094,
-0.05064608156681061,
-0.03516014665365219,
-0.07310865074396133,
0.5984662175178528,
-0.34893545508384705,
0.3013582229614258,
0.08532021194696426,
0.016604362055659294,
0.08398988097906113,
0.4633398950099945,
-0.07591079920530319,
0.30222630500793457,
1.0050477981567383,
-0.36760491132736206,
0.6348950862884521,
0.5876455307006836,
-0.2996780574321747,
0.8381567001342773,
-0.8039486408233643,
-0.00272014900110662,
-0.2815793454647064,
0.38827720284461975,
-0.819706380367279,
-0.5665429830551147,
0.8985564112663269,
-0.7380272746086121,
0.4172654151916504,
-0.2546703815460205,
-0.5788655281066895,
-0.7574011087417603,
-0.6882294416427612,
0.11168307811021805,
0.502600908279419,
-0.4061853885650635,
0.3804560601711273,
0.5511031150817871,
0.056356701999902725,
-0.41160842776298523,
-0.8066588044166565,
-0.15715596079826355,
-0.40907448530197144,
-0.8043427467346191,
0.4243394732475281,
-0.3587782084941864,
-0.04972126707434654,
0.12201552093029022,
0.11825727671384811,
0.11371811479330063,
0.04022262617945671,
0.41508859395980835,
0.34424519538879395,
0.057965051382780075,
-0.020423971116542816,
-0.08629987388849258,
-0.27867141366004944,
0.12222187221050262,
-0.1443803459405899,
0.2879001498222351,
-0.2982490658760071,
-0.16049499809741974,
-0.6676241755485535,
0.24509406089782715,
0.47493240237236023,
-0.26213109493255615,
0.6835933923721313,
0.8667023777961731,
-0.2720733880996704,
0.03041195124387741,
-0.46317577362060547,
-0.1214849203824997,
-0.4075407385826111,
0.048769328743219376,
-0.24605430662631989,
-0.6475902795791626,
0.9143304228782654,
0.2620217502117157,
0.10401888191699982,
0.686714768409729,
0.4642663300037384,
-0.07662465423345566,
0.7333401441574097,
0.36544907093048096,
-0.3333391547203064,
0.5206637382507324,
-0.6721403002738953,
-0.2186872959136963,
-0.8862502574920654,
-0.4580463469028473,
-0.5263866782188416,
-0.5160269141197205,
-0.9212000370025635,
-0.43261659145355225,
0.21205884218215942,
0.20494835078716278,
-0.20297300815582275,
0.4398021996021271,
-0.9217837452888489,
0.2637069821357727,
0.3566663861274719,
0.28404635190963745,
-0.1177055612206459,
0.10911934822797775,
0.13018940389156342,
0.12634333968162537,
-0.5861105918884277,
-0.22461357712745667,
1.1288622617721558,
0.5070080161094666,
0.566750705242157,
-0.09217840433120728,
0.8450264930725098,
-0.02352408692240715,
0.2699723541736603,
-0.5397000908851624,
0.4730866849422455,
0.04754672199487686,
-0.48910266160964966,
-0.1465466022491455,
-0.5127876400947571,
-0.9362063407897949,
-0.06247473135590553,
-0.4473802149295807,
-0.7183207273483276,
0.467808336019516,
0.04387300834059715,
-0.24317903816699982,
0.3593239188194275,
-0.6161511540412903,
0.8168180584907532,
-0.06314997375011444,
-0.4386495351791382,
0.239937424659729,
-1.0395092964172363,
0.23747393488883972,
0.2405257523059845,
0.26670563220977783,
-0.4234189987182617,
0.016543246805667877,
1.0053969621658325,
-0.7859869599342346,
0.9304828643798828,
-0.38755545020103455,
0.16214829683303833,
0.580091118812561,
-0.35294410586357117,
0.39854758977890015,
0.12703359127044678,
-0.26438936591148376,
0.33703482151031494,
0.030196957290172577,
-0.43206626176834106,
-0.4578339457511902,
0.6929008960723877,
-0.7468732595443726,
0.019435638561844826,
-0.35706979036331177,
-0.44899722933769226,
0.07927249372005463,
0.16900759935379028,
0.3203029930591583,
0.3421883285045624,
0.03270181268453598,
0.14767137169837952,
0.41722095012664795,
-0.14057700335979462,
0.311058908700943,
0.032308150082826614,
-0.09604791551828384,
-0.8006696701049805,
0.9286336898803711,
0.18759262561798096,
0.012027301825582981,
-0.05024617537856102,
0.4163355827331543,
-0.3346641957759857,
-0.08659970015287399,
-0.6597732901573181,
0.4759059548377991,
-0.38989782333374023,
-0.38421347737312317,
-0.4687516689300537,
-0.20313550531864166,
-0.6132112145423889,
-0.10906951874494553,
-0.21167922019958496,
-0.4867364168167114,
-0.36847078800201416,
-0.18286672234535217,
0.9896841049194336,
0.42297080159187317,
-0.6573352217674255,
0.1436532884836197,
-0.5655022263526917,
0.2568436861038208,
-0.09643732011318207,
0.6396660804748535,
-0.05347106605768204,
-0.295551061630249,
-0.23566915094852448,
0.11462333798408508,
-0.208365797996521,
-0.7325436472892761,
0.26722508668899536,
-0.022190934047102928,
0.40315937995910645,
0.1778849959373474,
0.05474213510751724,
0.6786002516746521,
-0.0006494898698292673,
0.633297860622406,
0.32662662863731384,
-0.7654504776000977,
0.7029200196266174,
-0.5338429808616638,
0.1765550971031189,
0.7372503280639648,
0.4114421010017395,
-0.6437563300132751,
-0.06993630528450012,
-0.9632788896560669,
-0.8198390603065491,
0.8267971873283386,
0.39475053548812866,
0.06141410022974014,
0.23447513580322266,
0.5783020853996277,
-0.17308400571346283,
0.2880353629589081,
-0.6494076251983643,
-0.8754463791847229,
-0.3805513083934784,
-0.333349347114563,
-0.06428233534097672,
-0.10363020747900009,
-0.19257408380508423,
-0.6949605345726013,
0.7776064872741699,
-0.16986820101737976,
0.33967193961143494,
0.3773788511753082,
0.424057275056839,
-0.2112685889005661,
-0.008412899449467659,
0.27594253420829773,
0.31323543190956116,
-0.20759566128253937,
-0.3378221392631531,
-0.19412833452224731,
-0.6085749268531799,
-0.09439848363399506,
0.5219510793685913,
-0.4184228777885437,
-0.08889779448509216,
0.31905946135520935,
0.9373571872711182,
-0.019910180941224098,
-0.23369522392749786,
0.5689159631729126,
-0.062043797224760056,
-0.3933226764202118,
-0.3268793225288391,
0.06321649253368378,
0.16685029864311218,
0.21180550754070282,
0.02659495361149311,
0.08896929770708084,
-0.08922390639781952,
-0.4310145080089569,
0.37412235140800476,
0.21742726862430573,
-0.35083070397377014,
-0.46256396174430847,
0.5941686630249023,
0.046363361179828644,
-0.11311519145965576,
0.5251017212867737,
-0.1431167721748352,
-0.5866205096244812,
0.8060513734817505,
0.1451592892408371,
0.817553699016571,
-0.2211674451828003,
0.3502902388572693,
0.7813639044761658,
0.23071078956127167,
-0.0759391039609909,
0.5197662115097046,
-0.22928248345851898,
-0.6618308424949646,
-0.03431450203061104,
-0.5740520358085632,
-0.11874837428331375,
0.08617562055587769,
-0.8571611046791077,
0.4453880786895752,
-0.5023631453514099,
-0.21415673196315765,
0.012286338955163956,
0.40760570764541626,
-0.6928462982177734,
0.1597306728363037,
-0.01933409832417965,
1.0039814710617065,
-1.0399935245513916,
0.5060645937919617,
0.6683646440505981,
-0.6914205551147461,
-1.1465264558792114,
-0.12592321634292603,
0.16555798053741455,
-0.6121783256530762,
0.1166645810008049,
0.28492969274520874,
0.49688148498535156,
-0.07992883771657944,
-0.9174301624298096,
-0.6440678238868713,
1.2103713750839233,
0.06266765296459198,
-0.21483181416988373,
0.33755946159362793,
0.1091533973813057,
0.62286776304245,
-0.3644895553588867,
0.37168270349502563,
0.6734964847564697,
0.7031437158584595,
0.2644084692001343,
-0.6835466027259827,
0.262664258480072,
-0.6981716156005859,
-0.22022482752799988,
0.07910103350877762,
-1.0642507076263428,
0.6456292271614075,
-0.17985565960407257,
-0.0659695416688919,
0.039391517639160156,
0.6375366449356079,
0.48383229970932007,
0.40846753120422363,
0.43460771441459656,
0.7606912851333618,
0.8200397491455078,
-0.3349402844905853,
1.195847749710083,
-0.2628210186958313,
0.59676194190979,
0.7940018773078918,
0.05415064096450806,
0.5140659213066101,
0.22630198299884796,
-0.3231438100337982,
0.5577495098114014,
0.6807994246482849,
-0.470903605222702,
0.24205204844474792,
0.3875617980957031,
-0.08077248930931091,
-0.0641288161277771,
-0.30380216240882874,
-0.6109170913696289,
0.330669105052948,
0.2636467516422272,
-0.3197420537471771,
-0.005510970484465361,
-0.025714263319969177,
0.39088502526283264,
-0.0809730738401413,
-0.2534373998641968,
0.6002946496009827,
0.053647179156541824,
-0.40801575779914856,
0.5284006595611572,
-0.11975554376840591,
0.754869818687439,
-0.6253953576087952,
0.12059541046619415,
-0.11028768867254257,
0.08717738837003708,
-0.636052131652832,
-1.0852644443511963,
0.39784500002861023,
-0.06707025319337845,
-0.2299714833498001,
-0.3220027983188629,
0.7714583277702332,
-0.4662655293941498,
-0.7434056401252747,
0.22271013259887695,
0.1892048418521881,
0.33595994114875793,
0.12679223716259003,
-1.2739824056625366,
0.5693079829216003,
0.17216384410858154,
-0.46322101354599,
0.17625893652439117,
0.44246333837509155,
0.16434143483638763,
0.5403662919998169,
0.7155354619026184,
0.21878734230995178,
-0.23716925084590912,
0.09468705207109451,
1.0630425214767456,
-0.5108688473701477,
-0.48275554180145264,
-0.7752426862716675,
0.8788166046142578,
-0.3416203260421753,
-0.43382325768470764,
0.6979056596755981,
0.7451585531234741,
0.8867543935775757,
0.009856936521828175,
0.8359827995300293,
-0.6282791495323181,
0.5882699489593506,
-0.23866131901741028,
0.9774748682975769,
-0.7146488428115845,
-0.10113343596458435,
-0.688848614692688,
-0.5292019844055176,
-0.40101149678230286,
0.6941229104995728,
-0.12855158746242523,
0.19228145480155945,
0.24368494749069214,
0.9502246975898743,
0.04865087941288948,
0.17944708466529846,
-0.24366621673107147,
0.25101232528686523,
0.2645113468170166,
0.6317821741104126,
0.48731762170791626,
-0.9254298210144043,
0.3183287978172302,
-0.782216489315033,
-0.3327191174030304,
0.0007570047746412456,
-0.8195722699165344,
-0.8680250644683838,
-0.95673006772995,
-0.6467927098274231,
-0.7448468804359436,
-0.34437668323516846,
1.0729080438613892,
0.717926561832428,
-0.6709245443344116,
-0.2734561860561371,
0.09191951900720596,
0.24126145243644714,
-0.07260948419570923,
-0.3210907280445099,
0.6228975653648376,
0.4070866107940674,
-0.6291150450706482,
-0.11441698670387268,
0.009754289872944355,
0.23177586495876312,
0.03650118038058281,
-0.12300101667642593,
-0.1032167300581932,
-0.3126508891582489,
0.3150395154953003,
0.4568440318107605,
-0.3388616442680359,
-0.09814872592687607,
-0.2742571234703064,
0.017339035868644714,
0.1907290369272232,
0.4766170382499695,
-0.4590950012207031,
0.2321155071258545,
0.6800934672355652,
0.290127158164978,
0.4628942012786865,
0.17875336110591888,
-0.025111617520451546,
-0.45047518610954285,
0.06946748495101929,
-0.06704849004745483,
0.3491426706314087,
0.38408195972442627,
-0.46654313802719116,
0.8007195591926575,
0.5719910860061646,
-0.47741350531578064,
-0.780570387840271,
-0.15147720277309418,
-1.2794486284255981,
0.1050284206867218,
1.0165585279464722,
-0.028864800930023193,
-0.5500916242599487,
0.14655235409736633,
-0.23341214656829834,
0.19022513926029205,
-0.5325318574905396,
0.4632072150707245,
0.5841009020805359,
-0.09350073337554932,
0.08584706485271454,
-0.37394973635673523,
0.5854332447052002,
-0.006724742241203785,
-1.0369752645492554,
0.16946761310100555,
0.4365045428276062,
0.47304975986480713,
0.3211767375469208,
0.8383355140686035,
-0.2729313373565674,
0.07815296947956085,
-0.027466310188174248,
0.30720964074134827,
-0.2690735459327698,
-0.036298803985118866,
-0.41323649883270264,
-0.13001929223537445,
-0.48813456296920776,
-0.2663417160511017
]
|
huggingartists/muse | huggingartists | 2022-10-25T09:39:38Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/muse"
## 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.266599 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('https://images.genius.com/26f575585ec649d88d09a1e402bb936b.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/muse">
<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">Muse</div>
<a href="https://genius.com/artists/muse">
<div style="text-align: center; font-size: 14px;">@muse</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/muse).
### 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/muse")
```
## 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|
|------:|---------:|---:|
|333| -| -|
'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/muse")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6095887422561646,
-0.49013715982437134,
0.10408409684896469,
0.3342614471912384,
-0.23788481950759888,
-0.014776648953557014,
-0.309235543012619,
-0.464272141456604,
0.8251139521598816,
0.3130994439125061,
-0.9937127828598022,
-0.8495957851409912,
-0.5577912330627441,
0.09791059792041779,
-0.10860437899827957,
1.2541826963424683,
-0.16890715062618256,
-0.31719857454299927,
-0.36335426568984985,
-0.23227150738239288,
-0.35437214374542236,
-0.2713262736797333,
-0.3364807069301605,
-0.3557945489883423,
0.3639644682407379,
0.4757530689239502,
0.6277019381523132,
0.8698897957801819,
0.5358650088310242,
0.3371686339378357,
-0.10002601146697998,
0.009341522119939327,
-0.40369367599487305,
-0.1387867033481598,
0.17045742273330688,
-0.3517109155654907,
-0.6739931702613831,
0.31557339429855347,
0.502660870552063,
0.39576828479766846,
-0.04356806352734566,
0.4960128962993622,
0.0905141532421112,
0.78005051612854,
-0.22245746850967407,
0.49956703186035156,
-0.2502898573875427,
-0.14871245622634888,
-0.3550586402416229,
0.06390247493982315,
0.17809760570526123,
-0.5470877885818481,
0.015255257487297058,
-0.7814343571662903,
0.08073753118515015,
0.051642026752233505,
1.0254160165786743,
0.1306850165128708,
0.15390369296073914,
-0.18669700622558594,
-0.16653253138065338,
0.5360687375068665,
-0.581682562828064,
-0.025312306359410286,
0.5708728432655334,
0.1501954197883606,
0.01191664207726717,
-0.6759892702102661,
-0.6367877721786499,
0.09576094150543213,
-0.13838358223438263,
0.30393436551094055,
-0.23834894597530365,
-0.35827991366386414,
0.5078374743461609,
0.5845452547073364,
-0.526677668094635,
-0.21364927291870117,
-0.5498925447463989,
-0.11978985369205475,
1.1123117208480835,
0.19438673555850983,
0.4157368838787079,
-0.474350243806839,
-0.21294249594211578,
-0.3453710675239563,
-0.3296356797218323,
0.35203346610069275,
0.5624077916145325,
0.4045834541320801,
-0.9855551719665527,
0.6325180530548096,
-0.14126425981521606,
0.5636270046234131,
0.17220506072044373,
-0.03490931913256645,
0.7551848292350769,
-0.34005630016326904,
-0.11468350887298584,
-0.19297628104686737,
1.047876238822937,
0.6635198593139648,
0.10781409591436386,
0.00915438774973154,
-0.005778999999165535,
0.09065932035446167,
-0.0918736457824707,
-0.812896192073822,
-0.42939475178718567,
0.6506428122520447,
-0.574955940246582,
-0.5950258374214172,
0.0935230702161789,
-0.9849241971969604,
-0.24716654419898987,
-0.3292469382286072,
0.3008270561695099,
-0.3627283275127411,
-0.4509791135787964,
0.19580082595348358,
-0.275858998298645,
0.1047084629535675,
0.09605558216571808,
-0.5595169067382812,
0.19904480874538422,
0.6052946448326111,
0.7702338099479675,
0.12143385410308838,
-0.3370291292667389,
-0.21816328167915344,
-0.18260574340820312,
-0.08576280623674393,
0.672568678855896,
-0.24780115485191345,
-0.33331605792045593,
-0.21812613308429718,
0.35024526715278625,
-0.07795698195695877,
-0.27856722474098206,
0.9692692160606384,
0.05489601939916611,
0.21736566722393036,
-0.5702350735664368,
-0.4362594783306122,
-0.009613842703402042,
0.2633556127548218,
-0.7877295613288879,
1.0750142335891724,
0.3010615408420563,
-1.004395604133606,
0.2342757135629654,
-0.8562321066856384,
-0.3235471248626709,
-0.015688473358750343,
0.12598760426044464,
-0.7844932675361633,
-0.18324686586856842,
0.19660675525665283,
0.7238074541091919,
-0.3715973198413849,
-0.002037050435319543,
-0.6128482222557068,
-0.09236578643321991,
0.36304202675819397,
0.19414430856704712,
1.1821874380111694,
0.07618704438209534,
-0.1845540553331375,
0.10395719110965729,
-0.9725983738899231,
0.0793033242225647,
0.4415336847305298,
-0.18985463678836823,
-0.057750992476940155,
-0.22196538746356964,
0.41466179490089417,
0.30590853095054626,
0.053483348339796066,
-0.6233965158462524,
0.3972053527832031,
-0.16976702213287354,
0.5150582194328308,
0.7748487591743469,
-0.039457768201828,
0.31935226917266846,
-0.6600960493087769,
0.35461246967315674,
0.06041013076901436,
0.3520197570323944,
-0.003856240538880229,
-0.591523289680481,
-0.53659987449646,
-0.2919652462005615,
0.31056779623031616,
0.4510739743709564,
-0.5753854513168335,
0.9826462864875793,
-0.3539905846118927,
-0.8772217035293579,
-0.6993385553359985,
0.10967811942100525,
0.1437893658876419,
0.5775025486946106,
0.38535407185554504,
-0.42183732986450195,
-0.599014401435852,
-0.6613274812698364,
0.1373121440410614,
-0.22005057334899902,
0.1546023190021515,
0.4989221692085266,
0.8166388869285583,
-0.22951358556747437,
0.8644303679466248,
-0.7121758460998535,
-0.282723605632782,
-0.24650950729846954,
-0.24414752423763275,
0.3998243510723114,
0.8479865789413452,
0.7216172814369202,
-0.8227086067199707,
-0.4367184638977051,
-0.3187659680843353,
-0.6450743079185486,
-0.14484943449497223,
-0.01758427545428276,
-0.3205665051937103,
-0.01364896260201931,
0.08485350012779236,
-0.7873256206512451,
0.5686569809913635,
0.46373119950294495,
-0.6340358853340149,
0.5921606421470642,
0.11850310862064362,
-0.006346122361719608,
-1.2946927547454834,
0.4022142291069031,
0.2188379466533661,
0.019096920266747475,
-0.5806518793106079,
-0.2273903489112854,
-0.06643394380807877,
-0.08323153853416443,
-0.0907028317451477,
0.5953549742698669,
-0.3423003554344177,
0.2917555868625641,
0.11201499402523041,
0.049656011164188385,
0.14387093484401703,
0.48321640491485596,
-0.04127063602209091,
0.2993619441986084,
1.014249563217163,
-0.392890989780426,
0.6985018849372864,
0.6320315003395081,
-0.27320733666419983,
0.8858218789100647,
-0.818581759929657,
0.0466776080429554,
-0.25492432713508606,
0.42315536737442017,
-0.8800894021987915,
-0.5212802886962891,
0.7910675406455994,
-0.6976059079170227,
0.43066298961639404,
-0.25974178314208984,
-0.5308548808097839,
-0.8651542067527771,
-0.6050117015838623,
0.11254014819860458,
0.4834258556365967,
-0.40567341446876526,
0.39856991171836853,
0.6107626557350159,
0.09411334246397018,
-0.36534199118614197,
-0.8310685157775879,
-0.11234767735004425,
-0.41946035623550415,
-0.8641829490661621,
0.4573189616203308,
-0.37675940990448,
-0.06103329360485077,
0.16514918208122253,
0.0684618204832077,
0.13515383005142212,
0.042309436947107315,
0.41574743390083313,
0.3349384069442749,
0.08487904816865921,
-0.020291270688176155,
-0.13809849321842194,
-0.2626614272594452,
0.11641037464141846,
-0.2863331437110901,
0.3209039568901062,
-0.25728848576545715,
-0.17109841108322144,
-0.6818055510520935,
0.20937992632389069,
0.5110327005386353,
-0.26746097207069397,
0.6427042484283447,
0.8447132706642151,
-0.26943087577819824,
-0.011023012921214104,
-0.5195756554603577,
-0.13226115703582764,
-0.4009574353694916,
0.01976264826953411,
-0.24530138075351715,
-0.5983220934867859,
0.990401029586792,
0.20833063125610352,
0.09951483458280563,
0.684734582901001,
0.48901405930519104,
-0.1141468808054924,
0.6368079781532288,
0.36515215039253235,
-0.32972660660743713,
0.482673704624176,
-0.7278884053230286,
-0.24583137035369873,
-0.9292228817939758,
-0.4676744341850281,
-0.5413489937782288,
-0.5794668793678284,
-0.7667140960693359,
-0.46864262223243713,
0.1817988157272339,
0.12361007928848267,
-0.17713096737861633,
0.5207695364952087,
-0.8962560296058655,
0.23546282947063446,
0.3874501883983612,
0.29698288440704346,
-0.14941273629665375,
0.03638928383588791,
0.04555359110236168,
0.11914381384849548,
-0.5916694402694702,
-0.21363773941993713,
1.1676629781723022,
0.461508572101593,
0.5826554298400879,
-0.06796439737081528,
0.7545610070228577,
0.02437884733080864,
0.232072651386261,
-0.5423557758331299,
0.4553057849407196,
0.053613584488630295,
-0.5189267992973328,
-0.12826432287693024,
-0.45758336782455444,
-0.9004586338996887,
-0.1436893194913864,
-0.4345581829547882,
-0.7603675723075867,
0.5477104783058167,
0.06404190510511398,
-0.24397394061088562,
0.3813619613647461,
-0.5993369221687317,
0.9050785899162292,
-0.02907070517539978,
-0.48140883445739746,
0.27745747566223145,
-0.9976522922515869,
0.18808281421661377,
0.21285957098007202,
0.18678805232048035,
-0.41419994831085205,
0.04204513132572174,
0.977555513381958,
-0.7917628884315491,
0.9261431097984314,
-0.31222617626190186,
0.16580553352832794,
0.5535018444061279,
-0.323119193315506,
0.5019341707229614,
0.10808617621660233,
-0.2676582336425781,
0.31962937116622925,
-0.07566247880458832,
-0.42298653721809387,
-0.4340499937534332,
0.7001206278800964,
-0.7131940126419067,
-0.014576873742043972,
-0.29153332114219666,
-0.49762582778930664,
0.018458278849720955,
0.16499997675418854,
0.32484742999076843,
0.39598485827445984,
-0.00494606327265501,
0.1664339154958725,
0.4614015817642212,
-0.093364417552948,
0.30984121561050415,
0.06167125701904297,
-0.04448813199996948,
-0.7657806873321533,
0.8750443458557129,
0.16689547896385193,
-0.0008658480946905911,
-0.045619115233421326,
0.38605356216430664,
-0.3825482428073883,
-0.16737738251686096,
-0.6557820439338684,
0.4144152104854584,
-0.37109631299972534,
-0.40500354766845703,
-0.5505751371383667,
-0.1110423281788826,
-0.6482036709785461,
-0.13109925389289856,
-0.22171182930469513,
-0.5601673722267151,
-0.4473521113395691,
-0.2303982973098755,
1.0278569459915161,
0.39952951669692993,
-0.6724729537963867,
0.13486501574516296,
-0.4782266318798065,
0.23593400418758392,
-0.0719863697886467,
0.6243120431900024,
-0.08062507212162018,
-0.30518609285354614,
-0.18352875113487244,
0.054299306124448776,
-0.22932352125644684,
-0.7195345759391785,
0.25408196449279785,
-0.04843417555093765,
0.40941014885902405,
0.143167644739151,
0.0989375039935112,
0.7314680814743042,
-0.09532613307237625,
0.6581961512565613,
0.27563366293907166,
-0.7997586131095886,
0.6807184219360352,
-0.5362558960914612,
0.12026777863502502,
0.7005864977836609,
0.3495422899723053,
-0.6205234527587891,
-0.11975251883268356,
-0.9737637639045715,
-0.8665379285812378,
0.8529013395309448,
0.43943995237350464,
0.0641556903719902,
0.25291383266448975,
0.5137171149253845,
-0.17440007627010345,
0.3112565875053406,
-0.6633901000022888,
-0.8503236770629883,
-0.4121847152709961,
-0.3268413245677948,
-0.04912373796105385,
-0.03504469245672226,
-0.27786985039711,
-0.6942042112350464,
0.7810035943984985,
-0.1222095638513565,
0.3585226833820343,
0.39060041308403015,
0.3856343924999237,
-0.19548863172531128,
-0.040400393307209015,
0.28091830015182495,
0.3675457835197449,
-0.23124460875988007,
-0.2997913360595703,
-0.16668091714382172,
-0.612874448299408,
-0.12967494130134583,
0.5261371731758118,
-0.3811855912208557,
-0.11336905509233475,
0.25169405341148376,
0.9514435529708862,
-0.0069527835585176945,
-0.22015376389026642,
0.572579562664032,
-0.0374009944498539,
-0.35308054089546204,
-0.3694387376308441,
-0.0017626459011808038,
0.1895914226770401,
0.2298995405435562,
0.06685901433229446,
0.165147602558136,
-0.07863037288188934,
-0.4022744596004486,
0.42270228266716003,
0.2599908709526062,
-0.3915742039680481,
-0.5142443776130676,
0.6450222730636597,
0.07595448940992355,
-0.10146249830722809,
0.44662657380104065,
-0.13704924285411835,
-0.6155751347541809,
0.7632742524147034,
0.20328490436077118,
0.8302684426307678,
-0.10490470379590988,
0.3167022168636322,
0.701795756816864,
0.2546221911907196,
-0.03543853759765625,
0.5001030564308167,
-0.21377240121364594,
-0.605512261390686,
-0.046463340520858765,
-0.5879684090614319,
-0.09704803675413132,
0.1312309056520462,
-0.7972752451896667,
0.4389694929122925,
-0.4657977223396301,
-0.2471688687801361,
0.06429599225521088,
0.4104198217391968,
-0.7184645533561707,
0.1841670572757721,
-0.08410367369651794,
1.0845838785171509,
-1.011330246925354,
0.42679667472839355,
0.6696395874023438,
-0.6763033270835876,
-1.1844769716262817,
-0.15481571853160858,
0.2376784384250641,
-0.5714215040206909,
0.19616639614105225,
0.1854390799999237,
0.5204820036888123,
-0.03382531553506851,
-0.9078165888786316,
-0.702439546585083,
1.2344300746917725,
0.05041103437542915,
-0.17646323144435883,
0.3439521789550781,
0.12155573815107346,
0.6110110878944397,
-0.39434051513671875,
0.27806970477104187,
0.6180617809295654,
0.7094086408615112,
0.3206554055213928,
-0.6816940903663635,
0.2731875479221344,
-0.6607786417007446,
-0.2745848298072815,
0.044574543833732605,
-1.013802170753479,
0.6722490191459656,
-0.13101734220981598,
-0.05480043590068817,
0.07711916416883469,
0.6327102780342102,
0.3817933201789856,
0.4002375602722168,
0.4102875292301178,
0.8630264401435852,
0.8767035603523254,
-0.41631755232810974,
1.1959295272827148,
-0.26873061060905457,
0.5930383801460266,
0.7990903854370117,
0.027894672006368637,
0.48687300086021423,
0.21704387664794922,
-0.31983327865600586,
0.5278818011283875,
0.6964088678359985,
-0.5117554068565369,
0.23761464655399323,
0.4297305941581726,
-0.04941635951399803,
-0.057832177728414536,
-0.24263261258602142,
-0.5540475845336914,
0.29168736934661865,
0.23964154720306396,
-0.3131089210510254,
0.0068254717625677586,
0.019280286505818367,
0.3703345060348511,
-0.12131445854902267,
-0.29249462485313416,
0.6248350143432617,
0.012874281033873558,
-0.3544921576976776,
0.47254678606987,
-0.17237922549247742,
0.6961643695831299,
-0.5595359206199646,
0.18087834119796753,
-0.06697176396846771,
0.10058734565973282,
-0.6099749207496643,
-1.0723868608474731,
0.3835342824459076,
-0.030100269243121147,
-0.30681008100509644,
-0.31376004219055176,
0.7727240324020386,
-0.43464210629463196,
-0.7584013342857361,
0.17496728897094727,
0.1935357302427292,
0.3213793933391571,
0.14043322205543518,
-1.2727001905441284,
0.5063417553901672,
0.11261351406574249,
-0.44708704948425293,
0.08091306686401367,
0.49626752734184265,
0.16798238456249237,
0.556340754032135,
0.7736743092536926,
0.23290936648845673,
-0.19151952862739563,
0.042167555540800095,
1.1224123239517212,
-0.49038395285606384,
-0.46213287115097046,
-0.6995792388916016,
0.9303452968597412,
-0.3930267095565796,
-0.4530462622642517,
0.7052904367446899,
0.7962527275085449,
0.841288685798645,
-0.030060892924666405,
0.776812732219696,
-0.6531721949577332,
0.6707330942153931,
-0.19656336307525635,
0.9768393635749817,
-0.7092593908309937,
-0.04926831275224686,
-0.7324840426445007,
-0.5311827659606934,
-0.4132543206214905,
0.6595419049263,
-0.19061008095741272,
0.1330079287290573,
0.25994330644607544,
0.9192874431610107,
-0.029378604143857956,
0.1522209793329239,
-0.2711372375488281,
0.285634845495224,
0.24446651339530945,
0.5261368751525879,
0.4312317669391632,
-0.87027907371521,
0.3606848120689392,
-0.7346674203872681,
-0.2940449118614197,
0.04696112871170044,
-0.8383915424346924,
-0.8719512224197388,
-0.9429836869239807,
-0.6297336220741272,
-0.7810572385787964,
-0.334587961435318,
1.0323277711868286,
0.7535291314125061,
-0.7079833745956421,
-0.21792079508304596,
0.04288263991475105,
0.2705185115337372,
-0.08055935800075531,
-0.318322092294693,
0.6853610873222351,
0.34567710757255554,
-0.683764636516571,
-0.07075335085391998,
0.05117253214120865,
0.27371445298194885,
0.005605301819741726,
-0.06475549191236496,
-0.09342645853757858,
-0.2592022120952606,
0.31833726167678833,
0.455160915851593,
-0.3220158517360687,
-0.08312220126390457,
-0.18416260182857513,
0.03978164494037628,
0.1944039911031723,
0.5213544368743896,
-0.5185373425483704,
0.1594402939081192,
0.6735291481018066,
0.3080596327781677,
0.5053899884223938,
0.1485021412372589,
0.050203271210193634,
-0.5040741562843323,
0.07308828830718994,
-0.006462975405156612,
0.368095338344574,
0.37594470381736755,
-0.4655502438545227,
0.8068382143974304,
0.6133829355239868,
-0.4862166941165924,
-0.8420950770378113,
-0.10985825210809708,
-1.3577717542648315,
0.13432402908802032,
0.9864388704299927,
-0.09010195732116699,
-0.5834635496139526,
0.051601383835077286,
-0.23486867547035217,
0.11727200448513031,
-0.5275576114654541,
0.47869592905044556,
0.5913164019584656,
-0.08217335492372513,
0.12786056101322174,
-0.3050821125507355,
0.6316772103309631,
-0.042866677045822144,
-1.013805627822876,
0.16662535071372986,
0.4755915701389313,
0.4809172451496124,
0.38009190559387207,
0.7280640006065369,
-0.29529330134391785,
0.08161494880914688,
-0.06085359677672386,
0.26538461446762085,
-0.30270716547966003,
0.0056332857348024845,
-0.32917699217796326,
-0.12125185877084732,
-0.570805013179779,
-0.22314056754112244
]
|
huggingartists/nervy | huggingartists | 2022-10-25T09:39:49Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/nervy"
## 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.290463 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('https://images.genius.com/690c7ea858696b779e94dc99b204f034.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/nervy">
<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">Нервы (Nervy)</div>
<a href="https://genius.com/artists/nervy">
<div style="text-align: center; font-size: 14px;">@nervy</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/nervy).
### 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/nervy")
```
## 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|
|------:|---------:|---:|
|132| -| -|
'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/nervy")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6505069136619568,
-0.5764147043228149,
0.0514056459069252,
0.2483721822500229,
-0.20890113711357117,
-0.03301415592432022,
-0.29516926407814026,
-0.45855018496513367,
0.9108530282974243,
0.353374719619751,
-0.9237131476402283,
-0.8024691343307495,
-0.5529939532279968,
0.1258849799633026,
-0.10877463221549988,
1.2890831232070923,
-0.1315552145242691,
-0.36917737126350403,
-0.34110546112060547,
-0.2405521124601364,
-0.3602209985256195,
-0.31908613443374634,
-0.33884385228157043,
-0.3897908627986908,
0.3172599971294403,
0.5622783899307251,
0.7238911986351013,
0.8429040312767029,
0.49280601739883423,
0.35421988368034363,
-0.11227232962846756,
-0.032589275389909744,
-0.35219651460647583,
-0.08008858561515808,
0.17113269865512848,
-0.2833026349544525,
-0.7386318445205688,
0.23764802515506744,
0.5294462442398071,
0.38352012634277344,
-0.07166118174791336,
0.48623988032341003,
0.06385315209627151,
0.8475645780563354,
-0.28377440571784973,
0.45769357681274414,
-0.23704282939434052,
-0.16269434988498688,
-0.27569469809532166,
0.06035850942134857,
0.18841347098350525,
-0.5961258411407471,
0.0006453602691181004,
-0.7697620391845703,
0.041767776012420654,
-0.0058367447927594185,
1.0211493968963623,
0.0716622844338417,
0.1249287873506546,
-0.198198139667511,
-0.10981085896492004,
0.536117434501648,
-0.6428032517433167,
-0.007758096791803837,
0.5930547118186951,
0.1568574607372284,
0.003114159917458892,
-0.6119046211242676,
-0.6427262425422668,
0.04373498633503914,
-0.14254622161388397,
0.2724630832672119,
-0.17051170766353607,
-0.33512255549430847,
0.5191675424575806,
0.5084415674209595,
-0.5164693593978882,
-0.21011805534362793,
-0.46968141198158264,
-0.12170951813459396,
1.1512662172317505,
0.1707184612751007,
0.45754969120025635,
-0.5212658047676086,
-0.16056999564170837,
-0.39735913276672363,
-0.23543405532836914,
0.2950507402420044,
0.5820601582527161,
0.45515528321266174,
-1.0513405799865723,
0.6294072270393372,
-0.20047122240066528,
0.6011314988136292,
0.21249456703662872,
-0.03695443272590637,
0.8436289429664612,
-0.3807736039161682,
-0.12065251916646957,
-0.11806654185056686,
1.0424418449401855,
0.6984615325927734,
0.19347704946994781,
0.12650124728679657,
-0.07336665689945221,
0.010621778666973114,
-0.16120469570159912,
-0.8396285772323608,
-0.42581990361213684,
0.617089033126831,
-0.586951732635498,
-0.5988353490829468,
0.10941457003355026,
-1.0203198194503784,
-0.23401132225990295,
-0.328094482421875,
0.2737142741680145,
-0.3793337047100067,
-0.5699814558029175,
0.14600592851638794,
-0.3008449077606201,
0.17613017559051514,
0.06690624356269836,
-0.647415041923523,
0.23527364432811737,
0.5882304310798645,
0.7510620355606079,
0.2544306516647339,
-0.28981491923332214,
-0.3064986765384674,
-0.2484876662492752,
-0.11546975374221802,
0.656466007232666,
-0.31750860810279846,
-0.3058791756629944,
-0.17808446288108826,
0.3359207212924957,
-0.07883664220571518,
-0.2759610116481781,
0.8355547189712524,
0.0731949433684349,
0.20794597268104553,
-0.5401981472969055,
-0.41437605023384094,
-0.009465184062719345,
0.34615328907966614,
-0.7594733238220215,
1.0582976341247559,
0.3125552833080292,
-1.0070465803146362,
0.2083357870578766,
-0.7846324443817139,
-0.3180965185165405,
0.053581785410642624,
0.0979810282588005,
-0.7553214430809021,
-0.14041322469711304,
0.19250649213790894,
0.74367755651474,
-0.3367515504360199,
0.007534220814704895,
-0.6192407608032227,
-0.11189544200897217,
0.38231152296066284,
0.24104149639606476,
1.135107398033142,
0.08164535462856293,
-0.15121617913246155,
0.0684068500995636,
-0.9471043348312378,
0.16494308412075043,
0.4259817600250244,
-0.11392351239919662,
-0.10747060924768448,
-0.2713099420070648,
0.44090020656585693,
0.314972847700119,
0.10814262181520462,
-0.5918536186218262,
0.3832850456237793,
-0.22447578608989716,
0.4977136552333832,
0.7247653603553772,
-0.004516011103987694,
0.35259726643562317,
-0.6449757218360901,
0.4249086081981659,
-0.0026107309386134148,
0.40738645195961,
0.031856078654527664,
-0.5593463778495789,
-0.4782349169254303,
-0.21491622924804688,
0.31423792243003845,
0.4509935677051544,
-0.7055870294570923,
0.9553011059761047,
-0.307419091463089,
-0.853827714920044,
-0.5734114646911621,
0.11251132190227509,
0.20855696499347687,
0.5592809915542603,
0.39372313022613525,
-0.43558090925216675,
-0.5801641941070557,
-0.6508296132087708,
0.0679028332233429,
-0.24696101248264313,
0.23726779222488403,
0.438408762216568,
0.8530818819999695,
-0.2504366338253021,
0.7975898385047913,
-0.6327784061431885,
-0.24863174557685852,
-0.28191715478897095,
-0.3296099603176117,
0.44028720259666443,
0.8226138949394226,
0.6577484607696533,
-0.8573537468910217,
-0.5168700814247131,
-0.21979230642318726,
-0.6960248351097107,
-0.1155988797545433,
-0.022448277100920677,
-0.24774233996868134,
0.06700654327869415,
0.18547214567661285,
-0.6798413395881653,
0.5562575459480286,
0.5259932279586792,
-0.7104526162147522,
0.5955226421356201,
0.07670179009437561,
-0.011302958242595196,
-1.2523410320281982,
0.3740450143814087,
0.2513951361179352,
0.030158065259456635,
-0.6106229424476624,
-0.21865218877792358,
-0.062344253063201904,
-0.02094811573624611,
-0.103078693151474,
0.6733925938606262,
-0.35338708758354187,
0.31116482615470886,
0.09227469563484192,
0.06982947885990143,
0.09443109482526779,
0.4159412980079651,
-0.07422910630702972,
0.2080399990081787,
1.0158601999282837,
-0.4088093638420105,
0.649231493473053,
0.607280969619751,
-0.1646125465631485,
0.8956751227378845,
-0.8438716530799866,
0.03644871339201927,
-0.28380900621414185,
0.3557621240615845,
-0.7857123613357544,
-0.5852397680282593,
0.8295373320579529,
-0.7325239777565002,
0.4397163987159729,
-0.3056875467300415,
-0.5605215430259705,
-0.7652350068092346,
-0.6185013055801392,
0.13722047209739685,
0.5385341048240662,
-0.3629370927810669,
0.4516665041446686,
0.6051841378211975,
0.0775020569562912,
-0.396411269903183,
-0.8170981407165527,
-0.11955845355987549,
-0.3954713046550751,
-0.8092654347419739,
0.4027250409126282,
-0.3298158347606659,
-0.10282427817583084,
0.18343640863895416,
0.067862868309021,
0.08297872543334961,
0.015835430473089218,
0.4218863844871521,
0.3453245162963867,
0.10977144539356232,
0.03555941954255104,
-0.12406320124864578,
-0.2962794601917267,
0.09739919006824493,
-0.23687319457530975,
0.2929886281490326,
-0.3114934265613556,
-0.11835487931966782,
-0.6477700471878052,
0.1660604625940323,
0.4451068639755249,
-0.24416469037532806,
0.6512567400932312,
0.8138505816459656,
-0.25103381276130676,
-0.030824294313788414,
-0.5379858613014221,
-0.1641755849123001,
-0.42150503396987915,
0.06069942191243172,
-0.20355917513370514,
-0.6123871207237244,
0.9300189018249512,
0.27884477376937866,
0.07630135118961334,
0.6738690137863159,
0.44312772154808044,
-0.049641672521829605,
0.6474112272262573,
0.3891454339027405,
-0.25148123502731323,
0.5487540364265442,
-0.6644917130470276,
-0.22410288453102112,
-0.8718791604042053,
-0.47859692573547363,
-0.5004777312278748,
-0.5240557193756104,
-0.8867789506912231,
-0.44417014718055725,
0.1794404834508896,
0.13841208815574646,
-0.25828850269317627,
0.47933393716812134,
-0.9751766324043274,
0.289828896522522,
0.3397034704685211,
0.24174797534942627,
-0.15227510035037994,
0.06055309250950813,
0.09473363310098648,
0.13047754764556885,
-0.6170200705528259,
-0.2292630523443222,
1.1566190719604492,
0.46494677662849426,
0.5632844567298889,
-0.09042349457740784,
0.8870420455932617,
-0.037988197058439255,
0.22074748575687408,
-0.5265406966209412,
0.5033244490623474,
0.008328885771334171,
-0.5165737271308899,
-0.16498501598834991,
-0.502205491065979,
-0.8786848783493042,
-0.15800347924232483,
-0.4805993139743805,
-0.6996119618415833,
0.5126668810844421,
0.11431291699409485,
-0.18988434970378876,
0.35775288939476013,
-0.6271358132362366,
0.862790048122406,
-0.09018302708864212,
-0.48922550678253174,
0.29239603877067566,
-1.0235406160354614,
0.15838325023651123,
0.21453899145126343,
0.26809802651405334,
-0.3991852104663849,
0.043089307844638824,
1.0019409656524658,
-0.8179262280464172,
0.9145318269729614,
-0.3849877119064331,
0.21798588335514069,
0.5735436081886292,
-0.30681800842285156,
0.4645605981349945,
0.14807668328285217,
-0.2822094261646271,
0.31508320569992065,
0.017909174785017967,
-0.44315555691719055,
-0.4552796185016632,
0.7086384892463684,
-0.6916760802268982,
0.06795434653759003,
-0.3642127215862274,
-0.452671080827713,
0.06618213653564453,
0.21536359190940857,
0.26829609274864197,
0.4219181537628174,
0.02546747401356697,
0.14009501039981842,
0.457417368888855,
-0.16940996050834656,
0.314102441072464,
0.03902669623494148,
-0.10753031820058823,
-0.7983960509300232,
0.9427440762519836,
0.18773120641708374,
0.061630729585886,
-0.036750901490449905,
0.4376189410686493,
-0.37104547023773193,
-0.15604688227176666,
-0.5599353313446045,
0.45673415064811707,
-0.40975260734558105,
-0.3803200125694275,
-0.5136003494262695,
-0.13731665909290314,
-0.6606066226959229,
-0.16682372987270355,
-0.2565262019634247,
-0.5261663198471069,
-0.3289017975330353,
-0.1920497566461563,
1.0521191358566284,
0.491439551115036,
-0.6987022757530212,
0.09769049286842346,
-0.4998464584350586,
0.2877850830554962,
-0.06548967212438583,
0.645342230796814,
-0.07196272909641266,
-0.33506783843040466,
-0.20489980280399323,
0.067165307700634,
-0.15444502234458923,
-0.683178186416626,
0.3264223039150238,
-0.06928268820047379,
0.40033960342407227,
0.06408224254846573,
0.09240744262933731,
0.6848101019859314,
-0.020703626796603203,
0.611202597618103,
0.3310871422290802,
-0.8070889711380005,
0.6549129486083984,
-0.49670884013175964,
0.19074736535549164,
0.7702812552452087,
0.3394046723842621,
-0.6257696151733398,
-0.08469293266534805,
-0.9935753345489502,
-0.8900819420814514,
0.7734543681144714,
0.366660475730896,
0.08687830716371536,
0.1967409998178482,
0.5707777142524719,
-0.1988009661436081,
0.2747502326965332,
-0.6620092391967773,
-0.8454737067222595,
-0.46090397238731384,
-0.3287624418735504,
-0.050665050745010376,
-0.06288551539182663,
-0.1854461282491684,
-0.6777808666229248,
0.8004146814346313,
-0.15990372002124786,
0.3001454770565033,
0.4173864722251892,
0.39922791719436646,
-0.15885967016220093,
-0.014431361109018326,
0.2285338044166565,
0.33091065287590027,
-0.2247811257839203,
-0.32607102394104004,
-0.14391937851905823,
-0.6260854005813599,
-0.12753871083259583,
0.499358206987381,
-0.3537100851535797,
-0.09396553039550781,
0.3147154152393341,
0.8728717565536499,
-0.01513317134231329,
-0.2412978708744049,
0.5866137146949768,
-0.07472409307956696,
-0.43394243717193604,
-0.41301652789115906,
0.004705773200839758,
0.16609622538089752,
0.23023436963558197,
0.014278510585427284,
0.12479385733604431,
-0.10916435718536377,
-0.394089937210083,
0.3897801339626312,
0.25432416796684265,
-0.43648073077201843,
-0.47815215587615967,
0.5728827118873596,
0.06356487423181534,
-0.13933265209197998,
0.5316953063011169,
-0.20652441680431366,
-0.5833636522293091,
0.8063742518424988,
0.13891340792179108,
0.8406196236610413,
-0.10582777112722397,
0.358204185962677,
0.7598109245300293,
0.2322520762681961,
-0.07342591881752014,
0.5477877259254456,
-0.16964176297187805,
-0.6318826675415039,
-0.10413298010826111,
-0.5621169209480286,
-0.0975261852145195,
0.07139787077903748,
-0.8321007490158081,
0.45599690079689026,
-0.5213675498962402,
-0.25652599334716797,
0.01613682135939598,
0.39577558636665344,
-0.7445539236068726,
0.18819265067577362,
-0.04426496848464012,
1.0214340686798096,
-1.0517511367797852,
0.4357947111129761,
0.7215566039085388,
-0.6527002453804016,
-1.2167551517486572,
-0.14112800359725952,
0.20827455818653107,
-0.5638957023620605,
0.2469673752784729,
0.21529020369052887,
0.5090516805648804,
-0.0689484253525734,
-0.9170277118682861,
-0.7080664038658142,
1.1689358949661255,
0.0343952514231205,
-0.22186383605003357,
0.3447812795639038,
0.05975458770990372,
0.6172690391540527,
-0.34277352690696716,
0.3612481355667114,
0.6021097898483276,
0.7257938981056213,
0.28446948528289795,
-0.7328482866287231,
0.31108376383781433,
-0.6778730154037476,
-0.2716997265815735,
0.09517332166433334,
-0.993644654750824,
0.6706418395042419,
-0.18454375863075256,
-0.017179712653160095,
-0.011135924607515335,
0.5660771131515503,
0.4379549026489258,
0.42653247714042664,
0.4290350675582886,
0.785210907459259,
0.8190983533859253,
-0.29634255170822144,
1.207998275756836,
-0.25112754106521606,
0.5729338526725769,
0.8457491993904114,
0.0365440733730793,
0.488808274269104,
0.2449294626712799,
-0.2556969225406647,
0.5769400000572205,
0.579978346824646,
-0.44644442200660706,
0.20575349032878876,
0.40177807211875916,
-0.0013477553147822618,
-0.09930339455604553,
-0.27077093720436096,
-0.5768669843673706,
0.3118283450603485,
0.23717622458934784,
-0.28367727994918823,
0.02537422999739647,
-0.04527563974261284,
0.3592022955417633,
-0.015605857595801353,
-0.2725713551044464,
0.6468960642814636,
0.05594678595662117,
-0.3616245687007904,
0.531449556350708,
-0.205208420753479,
0.715724766254425,
-0.5712193250656128,
0.10705021023750305,
-0.07784238457679749,
0.0907396674156189,
-0.6627071499824524,
-1.070859670639038,
0.3634263873100281,
-0.10206790268421173,
-0.24719685316085815,
-0.34041497111320496,
0.7937573790550232,
-0.39918577671051025,
-0.761620044708252,
0.20983201265335083,
0.22668567299842834,
0.3023996353149414,
0.1471426635980606,
-1.287994146347046,
0.5187780261039734,
0.12343085557222366,
-0.4479210674762726,
0.13729213178157806,
0.5118021368980408,
0.1461983174085617,
0.5666234493255615,
0.7378235459327698,
0.21927720308303833,
-0.23893821239471436,
0.06338563561439514,
1.0867750644683838,
-0.5668034553527832,
-0.48040828108787537,
-0.7593396902084351,
0.8981116414070129,
-0.3905874788761139,
-0.4497382640838623,
0.7502284049987793,
0.7205815315246582,
0.8526647686958313,
0.05189194902777672,
0.7960084676742554,
-0.6960994601249695,
0.631510317325592,
-0.20789392292499542,
0.9302886128425598,
-0.7018918991088867,
-0.07579033076763153,
-0.7491556406021118,
-0.5368718504905701,
-0.41814669966697693,
0.6729444861412048,
-0.236145481467247,
0.2142506241798401,
0.2745644152164459,
0.937537670135498,
0.0444088950753212,
0.13253052532672882,
-0.26163002848625183,
0.2896122932434082,
0.255584180355072,
0.5711854100227356,
0.4404962658882141,
-0.8866509795188904,
0.3096854090690613,
-0.7609666585922241,
-0.29611799120903015,
0.02211790345609188,
-0.875830888748169,
-0.9080139398574829,
-0.8977595567703247,
-0.6895222067832947,
-0.820496141910553,
-0.2970873713493347,
1.0559618473052979,
0.7410899996757507,
-0.6697138547897339,
-0.24984410405158997,
0.01143135316669941,
0.29779553413391113,
-0.08676706254482269,
-0.3273535370826721,
0.6147265434265137,
0.3591693639755249,
-0.5867838859558105,
-0.13989713788032532,
0.0011169379577040672,
0.2494734525680542,
0.07882420718669891,
-0.13485562801361084,
-0.10681089013814926,
-0.3278813362121582,
0.3057032525539398,
0.494119793176651,
-0.2758025825023651,
-0.0823172777891159,
-0.20044784247875214,
0.061575718224048615,
0.13613472878932953,
0.4426305294036865,
-0.5672411918640137,
0.2226836383342743,
0.6951302886009216,
0.25745177268981934,
0.47016555070877075,
0.14907684922218323,
0.009754718281328678,
-0.440311074256897,
0.10067541897296906,
0.027497662231326103,
0.2779123783111572,
0.41449007391929626,
-0.44181028008461,
0.7787944674491882,
0.5374768972396851,
-0.5295514464378357,
-0.8309156894683838,
-0.14994022250175476,
-1.3002831935882568,
0.0977628156542778,
1.0473194122314453,
0.057707201689481735,
-0.5851595997810364,
0.02636765129864216,
-0.1658749282360077,
0.11945726722478867,
-0.5741745829582214,
0.3853425979614258,
0.4903338551521301,
-0.10387816280126572,
0.1280134618282318,
-0.39828142523765564,
0.6031657457351685,
-0.0024214675650000572,
-0.9700374603271484,
0.1634635031223297,
0.45317506790161133,
0.5036210417747498,
0.3128715455532074,
0.8051592707633972,
-0.3062666952610016,
0.08153529465198517,
-0.02091042324900627,
0.3100188076496124,
-0.3174472451210022,
0.021491339430212975,
-0.3952714800834656,
-0.13494208455085754,
-0.5007708072662354,
-0.1624801903963089
]
|
huggingartists/nirvana | huggingartists | 2022-10-25T09:40:05Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/nirvana"
## 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:** 0.336531 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('https://images.genius.com/4c1373962cfc3a668a3e30da9a76a34c.640x640x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/nirvana">
<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">Nirvana</div>
<a href="https://genius.com/artists/nirvana">
<div style="text-align: center; font-size: 14px;">@nirvana</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/nirvana).
### 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/nirvana")
```
## 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_0.336531| -| -|
'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/nirvana")
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
}
```
| [
-0.598865807056427,
-0.5231220126152039,
0.0583832785487175,
0.20409341156482697,
-0.1938999593257904,
-0.0801980048418045,
-0.36890751123428345,
-0.35167473554611206,
0.7748547792434692,
0.2966711223125458,
-0.9518554210662842,
-0.8179506659507751,
-0.48690328001976013,
0.1752302497625351,
-0.09437225759029388,
1.3407155275344849,
-0.1918603628873825,
-0.28493791818618774,
-0.5057278871536255,
-0.2661377191543579,
-0.4163523316383362,
-0.3409762680530548,
-0.3071381747722626,
-0.3546185791492462,
0.4417142868041992,
0.4503292441368103,
0.7574602365493774,
0.838788628578186,
0.4549207389354706,
0.3209259510040283,
-0.12188945710659027,
-0.05055755004286766,
-0.4639114439487457,
-0.16792656481266022,
0.1739816516637802,
-0.3553655445575714,
-0.6245492696762085,
0.23306897282600403,
0.6044641137123108,
0.5471419095993042,
-0.10861764848232269,
0.50333571434021,
0.060832083225250244,
0.8366124033927917,
-0.2912214994430542,
0.4424695670604706,
-0.2542116343975067,
-0.10170438885688782,
-0.3017238676548004,
0.0032744004856795073,
0.1381063461303711,
-0.6414871215820312,
-0.07909075915813446,
-0.8380112051963806,
0.09589628130197525,
-0.0850372165441513,
0.9881808757781982,
0.23188449442386627,
0.13976730406284332,
-0.18898166716098785,
-0.17632678151130676,
0.5320756435394287,
-0.6313232183456421,
-0.036915846168994904,
0.6070269346237183,
0.12741908431053162,
-0.018937593325972557,
-0.5297359824180603,
-0.7449065446853638,
0.17622867226600647,
-0.26104241609573364,
0.25586289167404175,
-0.11063288897275925,
-0.3436366617679596,
0.5478060245513916,
0.6536392569541931,
-0.6362573504447937,
-0.2606773376464844,
-0.5015326142311096,
-0.09669149667024612,
1.1648458242416382,
0.14392594993114471,
0.42928317189216614,
-0.5764609575271606,
-0.1612900048494339,
-0.4348617494106293,
-0.23170165717601776,
0.22883565723896027,
0.44655391573905945,
0.4865773916244507,
-0.9324287176132202,
0.6277462840080261,
-0.15025795996189117,
0.5908498764038086,
0.042137883603572845,
-0.12233012169599533,
0.7989757657051086,
-0.37802648544311523,
-0.20471249520778656,
-0.10541626065969467,
1.0021047592163086,
0.674752414226532,
0.1433754414319992,
0.015122988261282444,
-0.0024588301312178373,
0.09074290096759796,
-0.19112195074558258,
-0.7618317604064941,
-0.4679343104362488,
0.6847054362297058,
-0.6108014583587646,
-0.5030694603919983,
0.0680256113409996,
-1.0490247011184692,
-0.24196302890777588,
-0.45280924439430237,
0.3741271197795868,
-0.3785562813282013,
-0.5753106474876404,
0.12312646210193634,
-0.34371018409729004,
0.15150699019432068,
0.07871824502944946,
-0.5383363962173462,
0.1951211392879486,
0.6608425974845886,
0.7710928916931152,
0.11961812525987625,
-0.2960771918296814,
-0.2539108693599701,
-0.07393617182970047,
-0.09077621251344681,
0.6904258131980896,
-0.3589905798435211,
-0.3840964436531067,
-0.150162935256958,
0.3468380868434906,
-0.1424129456281662,
-0.32457610964775085,
0.9451282620429993,
0.06571562588214874,
0.29121091961860657,
-0.7115204930305481,
-0.5607527494430542,
-0.08959703147411346,
0.2601584494113922,
-0.7832245826721191,
1.1111109256744385,
0.32192763686180115,
-1.0487215518951416,
0.3055342733860016,
-0.8762490153312683,
-0.35567283630371094,
0.10800380259752274,
-0.015855394303798676,
-0.7203040719032288,
-0.23064561188220978,
0.15186627209186554,
0.6878128051757812,
-0.3072018623352051,
0.06894125044345856,
-0.5836277604103088,
-0.16670779883861542,
0.3406206965446472,
0.1845245212316513,
1.2606337070465088,
0.08686082810163498,
-0.11845391243696213,
0.11117245256900787,
-1.0358718633651733,
0.10227180272340775,
0.4753899574279785,
-0.23167690634727478,
-0.18911035358905792,
-0.24754562973976135,
0.5014608502388,
0.22254011034965515,
0.06271565705537796,
-0.5433459877967834,
0.4014988839626312,
-0.12609082460403442,
0.45554324984550476,
0.7852851748466492,
0.026120230555534363,
0.21036484837532043,
-0.6313028931617737,
0.3588431179523468,
0.0485658273100853,
0.32877466082572937,
0.03633953258395195,
-0.5547804832458496,
-0.47222572565078735,
-0.23497846722602844,
0.4135543406009674,
0.5030536651611328,
-0.6446865200996399,
1.076534628868103,
-0.4082914888858795,
-0.807154655456543,
-0.5696337223052979,
0.1876601129770279,
0.1281253546476364,
0.5455777645111084,
0.3990103006362915,
-0.3931163251399994,
-0.5144174098968506,
-0.6945700645446777,
0.08849719911813736,
-0.24961023032665253,
0.16795141994953156,
0.410751610994339,
0.78912353515625,
-0.26044899225234985,
0.8939241766929626,
-0.7664200067520142,
-0.32781168818473816,
-0.17938706278800964,
-0.24393364787101746,
0.3867690861225128,
0.8715856075286865,
0.6689026951789856,
-0.9360629320144653,
-0.45442870259284973,
-0.29665103554725647,
-0.7530027031898499,
-0.04758340120315552,
-0.09602221101522446,
-0.3719692826271057,
0.004656266421079636,
0.034089043736457825,
-0.6919023394584656,
0.5456740856170654,
0.41517871618270874,
-0.5972077250480652,
0.48852840065956116,
0.12647667527198792,
-0.0210536140948534,
-1.2875474691390991,
0.3867333233356476,
0.23532181978225708,
0.04873555153608322,
-0.5613609552383423,
-0.21283459663391113,
-0.08613830804824829,
-0.0049417163245379925,
0.02003566548228264,
0.5151760578155518,
-0.26720961928367615,
0.24222883582115173,
0.13167314231395721,
0.0028418386355042458,
0.09884270280599594,
0.49678733944892883,
-0.0655372366309166,
0.277813196182251,
0.979438841342926,
-0.45122095942497253,
0.6267474889755249,
0.6503880620002747,
-0.20153243839740753,
0.9433070421218872,
-0.7248849868774414,
0.040673572570085526,
-0.2605087161064148,
0.4300709664821625,
-0.9045942425727844,
-0.6124018430709839,
0.7297726273536682,
-0.6154170632362366,
0.4650946259498596,
-0.20102794468402863,
-0.731160044670105,
-0.7622560858726501,
-0.533998429775238,
0.2268405705690384,
0.5486517548561096,
-0.3788432478904724,
0.4357058107852936,
0.582750678062439,
0.07642903178930283,
-0.22442203760147095,
-0.8198530077934265,
-0.10980037599802017,
-0.4504684805870056,
-0.7563904523849487,
0.3212338089942932,
-0.46036845445632935,
-0.014585803262889385,
0.17520014941692352,
0.2099456489086151,
0.11987722665071487,
0.07642824202775955,
0.3444819152355194,
0.22849488258361816,
0.12547169625759125,
0.09285581856966019,
-0.0307945366948843,
-0.2213525027036667,
0.16796693205833435,
-0.20276425778865814,
0.24000442028045654,
-0.14577750861644745,
-0.14084485173225403,
-0.6945322155952454,
0.2588813006877899,
0.3211946487426758,
-0.18402940034866333,
0.6196641325950623,
0.8314433693885803,
-0.3470236659049988,
0.02022973820567131,
-0.48719337582588196,
-0.026692766696214676,
-0.40401285886764526,
0.017709065228700638,
-0.22814889252185822,
-0.5179485082626343,
0.8643184304237366,
0.16277794539928436,
0.0810752734541893,
0.7183029055595398,
0.5048988461494446,
-0.04371516779065132,
0.6609647870063782,
0.40022626519203186,
-0.2788200080394745,
0.40961623191833496,
-0.6563690304756165,
-0.3032666742801666,
-0.867081880569458,
-0.40427157282829285,
-0.48263558745384216,
-0.5496435165405273,
-0.8373836278915405,
-0.4141124486923218,
0.20735347270965576,
0.0832405611872673,
-0.1845800131559372,
0.3957791030406952,
-1.0135802030563354,
0.32449111342430115,
0.4290558397769928,
0.22802439332008362,
-0.10883311182260513,
0.11095263808965683,
0.07609999179840088,
0.13814468681812286,
-0.6245293617248535,
-0.2291434109210968,
1.1997675895690918,
0.4683058261871338,
0.5237316489219666,
-0.035765327513217926,
0.8274487257003784,
0.041699498891830444,
0.262249231338501,
-0.5205268859863281,
0.47614964842796326,
-0.029530173167586327,
-0.533574104309082,
-0.1876080483198166,
-0.5400054454803467,
-0.8163812756538391,
-0.16145290434360504,
-0.33601072430610657,
-0.628466010093689,
0.5501548647880554,
0.03058563359081745,
-0.2597416043281555,
0.3969031274318695,
-0.6067012548446655,
0.8665466904640198,
-0.046354956924915314,
-0.4637782871723175,
0.31402987241744995,
-0.9867551326751709,
0.20471496880054474,
0.11624149978160858,
0.340684175491333,
-0.32718372344970703,
0.11057247221469879,
1.0948601961135864,
-0.7438482046127319,
0.939529299736023,
-0.44288408756256104,
0.05087466537952423,
0.4795266389846802,
-0.30706074833869934,
0.32250016927719116,
0.1120431199669838,
-0.29453036189079285,
0.32543835043907166,
0.10707291960716248,
-0.4495302736759186,
-0.4637209177017212,
0.6893724203109741,
-0.7751144170761108,
0.026578426361083984,
-0.34380972385406494,
-0.5333808064460754,
0.017398223280906677,
0.2167060226202011,
0.22642755508422852,
0.3657782971858978,
0.017489908263087273,
0.14311380684375763,
0.452740341424942,
-0.14990627765655518,
0.28149130940437317,
-0.04640107974410057,
-0.11514636874198914,
-0.8755537271499634,
0.9418793320655823,
0.2554558217525482,
0.0452316515147686,
-0.016073426231741905,
0.44917213916778564,
-0.3667832911014557,
-0.061059221625328064,
-0.6551920771598816,
0.4618830382823944,
-0.48193612694740295,
-0.3817497193813324,
-0.5242946743965149,
-0.09653589129447937,
-0.6640879511833191,
-0.09070105105638504,
-0.12553003430366516,
-0.553504228591919,
-0.3400748074054718,
-0.2103806436061859,
1.0576515197753906,
0.509503185749054,
-0.7554692625999451,
0.10464455932378769,
-0.4871161878108978,
0.2872242331504822,
0.01831483468413353,
0.6602482795715332,
-0.011976713314652443,
-0.2840726673603058,
-0.21445533633232117,
0.10470779985189438,
-0.20069625973701477,
-0.7047795653343201,
0.15215568244457245,
0.02419273927807808,
0.39339372515678406,
0.21023447811603546,
0.1510419398546219,
0.8071835041046143,
-0.07141726464033127,
0.746795117855072,
0.23413284122943878,
-0.7629478573799133,
0.7263820767402649,
-0.4359204173088074,
0.08245086669921875,
0.8387580513954163,
0.41358983516693115,
-0.5880289077758789,
-0.011357855051755905,
-0.9193826913833618,
-0.8394166827201843,
0.8288599848747253,
0.4542090892791748,
0.07276836782693863,
0.24322596192359924,
0.6822602152824402,
-0.050388436764478683,
0.3176928460597992,
-0.7503146529197693,
-0.8797078132629395,
-0.4654502868652344,
-0.32914701104164124,
-0.14798595011234283,
-0.048692960292100906,
-0.4080880284309387,
-0.7876003980636597,
0.7783405780792236,
-0.19492468237876892,
0.2641615569591522,
0.4297298192977905,
0.47805455327033997,
-0.3090042173862457,
-0.05868940055370331,
0.2488096058368683,
0.3643546998500824,
-0.2630153000354767,
-0.3306847810745239,
-0.16289150714874268,
-0.5120978355407715,
-0.13792216777801514,
0.4874039888381958,
-0.4106776714324951,
-0.09607117623090744,
0.358695387840271,
0.8868541121482849,
-0.06418634951114655,
-0.22555972635746002,
0.49629640579223633,
-0.08683735132217407,
-0.3874222934246063,
-0.4792897403240204,
0.04613525792956352,
0.11736445873975754,
0.08183896541595459,
0.06560999155044556,
0.041730981320142746,
-0.03498655930161476,
-0.388844758272171,
0.3836763799190521,
0.2519887387752533,
-0.33262720704078674,
-0.4438547194004059,
0.5877576470375061,
-0.010197923518717289,
-0.09818828850984573,
0.48396241664886475,
-0.1880515068769455,
-0.6123454570770264,
0.6994892954826355,
0.16360250115394592,
0.8449167609214783,
-0.07268849015235901,
0.3325052857398987,
0.7676180005073547,
0.19129659235477448,
-0.012934032827615738,
0.5478403568267822,
-0.3067736327648163,
-0.5491295456886292,
-0.055666930973529816,
-0.6711215972900391,
-0.10739099234342575,
0.09900172054767609,
-0.963974118232727,
0.359915554523468,
-0.44168218970298767,
-0.18954972922801971,
0.0037980033084750175,
0.40539422631263733,
-0.7361913919448853,
0.25639089941978455,
-0.036505475640296936,
1.0648503303527832,
-1.124254822731018,
0.4212568998336792,
0.6859578490257263,
-0.7491675615310669,
-1.190540075302124,
-0.04109743610024452,
0.19188416004180908,
-0.5143088102340698,
0.21714657545089722,
0.2062576413154602,
0.6540130972862244,
-0.06822918355464935,
-0.9299381971359253,
-0.7033539414405823,
1.2584586143493652,
-0.0032691482920199633,
-0.17462177574634552,
0.33189907670021057,
0.18060030043125153,
0.611987292766571,
-0.31267672777175903,
0.2457621544599533,
0.6566202044487,
0.7769302725791931,
0.40324729681015015,
-0.6837862133979797,
0.32538172602653503,
-0.6337236166000366,
-0.18016251921653748,
0.021227043122053146,
-1.022178292274475,
0.6882033944129944,
-0.047960929572582245,
-0.059069372713565826,
0.04567665234208107,
0.6854449510574341,
0.4682893455028534,
0.4139920473098755,
0.5656885504722595,
0.9071606397628784,
0.9510946869850159,
-0.30547019839286804,
1.2277299165725708,
-0.16816765069961548,
0.5998112559318542,
0.8230476975440979,
-0.07542837411165237,
0.6100207567214966,
0.223610058426857,
-0.40734153985977173,
0.6238469481468201,
0.7781931161880493,
-0.48452237248420715,
0.2606739103794098,
0.4113108217716217,
0.030202623456716537,
-0.14924173057079315,
-0.23574545979499817,
-0.6771024465560913,
0.2586289644241333,
0.2509959638118744,
-0.25172552466392517,
0.025576133280992508,
-0.013374831527471542,
0.3640414774417877,
-0.04935181140899658,
-0.26341068744659424,
0.763188362121582,
0.00046189408749341965,
-0.3986818790435791,
0.5633671283721924,
-0.2778935432434082,
0.6615055799484253,
-0.5303431153297424,
0.0951821357011795,
-0.10005474835634232,
0.0695294663310051,
-0.6657238006591797,
-1.0374363660812378,
0.3728202283382416,
-0.07792608439922333,
-0.31708139181137085,
-0.20560401678085327,
0.615009069442749,
-0.4723840057849884,
-0.926598072052002,
0.2583634555339813,
0.14505399763584137,
0.3644489347934723,
0.19526422023773193,
-1.305838704109192,
0.491789311170578,
0.13107603788375854,
-0.3621276021003723,
0.13191750645637512,
0.5853899121284485,
0.25080546736717224,
0.4394676387310028,
0.7990438938140869,
0.2511900067329407,
-0.23367011547088623,
0.14019519090652466,
1.1357251405715942,
-0.5590786933898926,
-0.5103420615196228,
-0.65523362159729,
0.8794488906860352,
-0.38981831073760986,
-0.3539994955062866,
0.7248780727386475,
0.879496693611145,
0.8983493447303772,
0.049675580114126205,
0.8863082528114319,
-0.6019515991210938,
0.7021000385284424,
-0.2812489867210388,
0.9626835584640503,
-0.8540723323822021,
-0.0916365534067154,
-0.7441904544830322,
-0.5726856589317322,
-0.46816810965538025,
0.6903939247131348,
-0.16579212248325348,
0.27320799231529236,
0.25263383984565735,
0.8753718137741089,
0.015906531363725662,
0.2024247795343399,
-0.28187841176986694,
0.31570374965667725,
0.31267449259757996,
0.5275585651397705,
0.36212584376335144,
-0.8932657837867737,
0.2915611267089844,
-0.7936211228370667,
-0.361549973487854,
0.08408059179782867,
-0.8949159383773804,
-0.8573946356773376,
-0.9678822159767151,
-0.7768648862838745,
-0.7311713099479675,
-0.39027342200279236,
1.0024524927139282,
0.6971362233161926,
-0.7802878022193909,
-0.2568311393260956,
0.05276675894856453,
0.27063852548599243,
-0.08885297924280167,
-0.33998411893844604,
0.7631952166557312,
0.32100290060043335,
-0.6161807179450989,
-0.16891925036907196,
-0.023129336535930634,
0.17847827076911926,
-0.1154605969786644,
-0.08217184245586395,
-0.19146385788917542,
-0.3158315122127533,
0.31919875741004944,
0.4048815965652466,
-0.3953973352909088,
-0.07000558078289032,
-0.37932488322257996,
0.13965849578380585,
0.16179710626602173,
0.46875226497650146,
-0.5261871218681335,
0.22744120657444,
0.6249310970306396,
0.2985627353191376,
0.30424001812934875,
0.1914927363395691,
0.048406932502985,
-0.5306110382080078,
0.012798009440302849,
-0.06397483497858047,
0.2932032644748688,
0.45096132159233093,
-0.5649080872535706,
0.8169939517974854,
0.5960638523101807,
-0.5649905800819397,
-0.9357401132583618,
-0.21248780190944672,
-1.3316625356674194,
0.06492969393730164,
1.127280592918396,
0.03294083848595619,
-0.5913952589035034,
0.05863938480615616,
-0.1745229810476303,
0.17254865169525146,
-0.48176315426826477,
0.39899492263793945,
0.5630359053611755,
-0.14647351205348969,
0.1922200471162796,
-0.35799261927604675,
0.6429513096809387,
-0.0028619554359465837,
-0.9896289110183716,
0.22392776608467102,
0.49160128831863403,
0.47361433506011963,
0.4287731647491455,
0.7355919480323792,
-0.247464120388031,
0.011773877777159214,
-0.050502754747867584,
0.28841084241867065,
-0.2012338638305664,
0.030431652441620827,
-0.38442131876945496,
-0.03942777216434479,
-0.48534953594207764,
-0.13998951017856598
]
|
huggingartists/noize-mc | huggingartists | 2022-10-25T09:40:13Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/noize-mc"
## 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.387658 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('https://images.genius.com/66f2036986237d3142c5fc9299615d37.1000x1000x1.png')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/noize-mc">
<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">Noize MC</div>
<a href="https://genius.com/artists/noize-mc">
<div style="text-align: center; font-size: 14px;">@noize-mc</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/noize-mc).
### 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/noize-mc")
```
## 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|
|------:|---------:|---:|
|349| -| -|
'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/noize-mc")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6534268260002136,
-0.5299901962280273,
0.0971049889922142,
0.2709624469280243,
-0.225305438041687,
-0.0035604636650532484,
-0.2972155809402466,
-0.4432865381240845,
0.897152841091156,
0.34641823172569275,
-0.9205490350723267,
-0.8294535279273987,
-0.5726951360702515,
0.1541333943605423,
-0.07292479276657104,
1.2934702634811401,
-0.216047465801239,
-0.37705060839653015,
-0.3378037214279175,
-0.24777202308177948,
-0.2787342071533203,
-0.3160436451435089,
-0.3181973695755005,
-0.3442509174346924,
0.36327195167541504,
0.5465572476387024,
0.713289737701416,
0.9096927642822266,
0.5261154174804688,
0.3472171425819397,
-0.12643957138061523,
-0.013626686297357082,
-0.3735401928424835,
-0.11555729061365128,
0.19740957021713257,
-0.28774574398994446,
-0.7364998459815979,
0.2411586195230484,
0.5618994832038879,
0.41552403569221497,
-0.0654420554637909,
0.49067187309265137,
0.04705917835235596,
0.8348938226699829,
-0.3028445243835449,
0.4944526255130768,
-0.23451972007751465,
-0.13745200634002686,
-0.27706366777420044,
0.047812335193157196,
0.184457466006279,
-0.5905098915100098,
-0.02966650389134884,
-0.7584384083747864,
0.05719368904829025,
-0.013404501602053642,
0.996407687664032,
0.05602589249610901,
0.09207621216773987,
-0.1987200230360031,
-0.12942908704280853,
0.5548226833343506,
-0.6003850698471069,
-0.0080892164260149,
0.5704050064086914,
0.1498178243637085,
0.002134481444954872,
-0.6063563823699951,
-0.6136769652366638,
0.05557937175035477,
-0.1476435661315918,
0.27695950865745544,
-0.153159499168396,
-0.3021535277366638,
0.530728816986084,
0.5575420260429382,
-0.5042134523391724,
-0.23834462463855743,
-0.5053926110267639,
-0.1123354360461235,
1.1856588125228882,
0.15863187611103058,
0.4508204460144043,
-0.5043289661407471,
-0.21088223159313202,
-0.3959346115589142,
-0.2341838926076889,
0.3390430808067322,
0.5441828370094299,
0.4496378004550934,
-1.0575138330459595,
0.6540111303329468,
-0.1788610965013504,
0.5350064635276794,
0.1674235612154007,
-0.04231669008731842,
0.8020746111869812,
-0.3947034180164337,
-0.13413694500923157,
-0.0970715582370758,
1.0834890604019165,
0.682418942451477,
0.19260713458061218,
0.09141473472118378,
-0.052488263696432114,
0.041053030639886856,
-0.15429948270320892,
-0.8537155985832214,
-0.4119011163711548,
0.6485545635223389,
-0.5795540809631348,
-0.605117678642273,
0.12431559711694717,
-1.0178171396255493,
-0.21989808976650238,
-0.30494925379753113,
0.24589818716049194,
-0.36497244238853455,
-0.5560168027877808,
0.1535499393939972,
-0.28840401768684387,
0.11648213863372803,
0.0423281230032444,
-0.5992365479469299,
0.21442514657974243,
0.5529471635818481,
0.7900640368461609,
0.2178966999053955,
-0.29352691769599915,
-0.27408140897750854,
-0.1955527812242508,
-0.12127542495727539,
0.6608673930168152,
-0.3116014301776886,
-0.36679571866989136,
-0.18733671307563782,
0.33587613701820374,
-0.11265244334936142,
-0.28161513805389404,
0.9077965021133423,
0.09073136001825333,
0.1735498309135437,
-0.5706135034561157,
-0.428648442029953,
0.0037923401687294245,
0.3045091927051544,
-0.7585833072662354,
1.0473932027816772,
0.3158673048019409,
-1.0246269702911377,
0.15955643355846405,
-0.8374497294425964,
-0.30087578296661377,
-0.008636649698019028,
0.08329077064990997,
-0.806029200553894,
-0.15555541217327118,
0.21444165706634521,
0.735306441783905,
-0.2951323688030243,
0.0010468430118635297,
-0.6440105438232422,
-0.10855117440223694,
0.38213974237442017,
0.24469858407974243,
1.1680656671524048,
0.10235566645860672,
-0.13225647807121277,
0.09851091355085373,
-0.9509301781654358,
0.15050114691257477,
0.4690764546394348,
-0.14561843872070312,
-0.08012647926807404,
-0.2729080617427826,
0.3897138237953186,
0.30504781007766724,
0.09470952302217484,
-0.620444655418396,
0.4318988621234894,
-0.18782274425029755,
0.47400611639022827,
0.7135499715805054,
0.02262274920940399,
0.3508571684360504,
-0.6548959016799927,
0.41842949390411377,
0.07305653393268585,
0.3882489502429962,
-0.0043079727329313755,
-0.5533448457717896,
-0.4722293019294739,
-0.2859080135822296,
0.32040464878082275,
0.4377724230289459,
-0.6958739161491394,
0.9667702913284302,
-0.32238563895225525,
-0.8571531176567078,
-0.6282489895820618,
0.13072143495082855,
0.1902628093957901,
0.5188952088356018,
0.4014818072319031,
-0.43946221470832825,
-0.6089629530906677,
-0.6460637450218201,
0.10057146847248077,
-0.226179301738739,
0.16915802657604218,
0.43014633655548096,
0.8266094923019409,
-0.2584902048110962,
0.8287847638130188,
-0.6705297827720642,
-0.27742648124694824,
-0.27887779474258423,
-0.3252650499343872,
0.3787669837474823,
0.7821792364120483,
0.6919946074485779,
-0.8182752728462219,
-0.4966047704219818,
-0.24881112575531006,
-0.7284370064735413,
-0.11508706212043762,
-0.03885493054986,
-0.27521049976348877,
0.019190864637494087,
0.12453432381153107,
-0.7171898484230042,
0.5424060821533203,
0.5240636467933655,
-0.6754425168037415,
0.5914487242698669,
0.07950308918952942,
0.0071366410702466965,
-1.2681025266647339,
0.3702247440814972,
0.24857313930988312,
0.029004907235503197,
-0.6128092408180237,
-0.2075953632593155,
-0.04523686692118645,
-0.04289357736706734,
-0.1025485098361969,
0.6296128630638123,
-0.35643917322158813,
0.29674556851387024,
0.12024501711130142,
0.09496691077947617,
0.10155127197504044,
0.4671267569065094,
-0.06223990023136139,
0.24735097587108612,
1.0123789310455322,
-0.40096235275268555,
0.6385509371757507,
0.6048040986061096,
-0.1841156780719757,
0.8507500290870667,
-0.8114856481552124,
0.03383668139576912,
-0.2741670310497284,
0.4032423198223114,
-0.8476672172546387,
-0.5430819392204285,
0.8185099363327026,
-0.7140876650810242,
0.4145371615886688,
-0.2502099275588989,
-0.5499339699745178,
-0.8046610355377197,
-0.6872822046279907,
0.14722776412963867,
0.5010039806365967,
-0.37511518597602844,
0.3861190676689148,
0.5871762037277222,
0.08577358722686768,
-0.3567025065422058,
-0.7797372341156006,
-0.1370408535003662,
-0.3629812002182007,
-0.8100935816764832,
0.3910232186317444,
-0.3641755282878876,
-0.07908637821674347,
0.1468009501695633,
0.0576501339673996,
0.09751134365797043,
0.022934749722480774,
0.40847906470298767,
0.32256072759628296,
0.08278461545705795,
-0.006111206021159887,
-0.06137963756918907,
-0.2527528703212738,
0.11216607689857483,
-0.19439832866191864,
0.2628156840801239,
-0.26809749007225037,
-0.12736856937408447,
-0.6712076663970947,
0.1865963190793991,
0.4701886773109436,
-0.25952962040901184,
0.6782491207122803,
0.7912347912788391,
-0.21808236837387085,
0.018661782145500183,
-0.4990937113761902,
-0.14799003303050995,
-0.4135296046733856,
0.02784346230328083,
-0.2349700629711151,
-0.6360123753547668,
0.9295117259025574,
0.2268143743276596,
0.0913495123386383,
0.6676695346832275,
0.4715622067451477,
-0.05799311399459839,
0.683762788772583,
0.37350016832351685,
-0.25205743312835693,
0.5223860144615173,
-0.6828882098197937,
-0.22930575907230377,
-0.9033392667770386,
-0.4519529342651367,
-0.4852234721183777,
-0.5425800681114197,
-0.8679009079933167,
-0.46824923157691956,
0.18471115827560425,
0.15564845502376556,
-0.21857158839702606,
0.4751203954219818,
-0.9339263439178467,
0.277815580368042,
0.3219621181488037,
0.2654584050178528,
-0.12040074169635773,
0.07609578967094421,
0.05859755724668503,
0.14532919228076935,
-0.5971404314041138,
-0.2425670474767685,
1.1716843843460083,
0.5088701248168945,
0.5352881550788879,
-0.09432109445333481,
0.8669471740722656,
-0.01280396617949009,
0.23040342330932617,
-0.536513090133667,
0.4926057755947113,
0.03584854677319527,
-0.5025463700294495,
-0.150618314743042,
-0.5370879769325256,
-0.9068805575370789,
-0.12280582636594772,
-0.44221845269203186,
-0.70162433385849,
0.49919822812080383,
0.08606620877981186,
-0.203170508146286,
0.41011494398117065,
-0.6331449747085571,
0.8627054691314697,
-0.05140288174152374,
-0.43202725052833557,
0.3246281147003174,
-1.020156741142273,
0.19243645668029785,
0.20020057260990143,
0.27879002690315247,
-0.4224773049354553,
0.014371388591825962,
0.9993899464607239,
-0.7947646379470825,
0.9253307580947876,
-0.38151299953460693,
0.16776762902736664,
0.5953530073165894,
-0.2844197154045105,
0.4463306665420532,
0.11841065436601639,
-0.276754766702652,
0.3631473779678345,
0.055131323635578156,
-0.4668920934200287,
-0.4538322389125824,
0.6884714365005493,
-0.7315822839736938,
0.058789368718862534,
-0.3289025127887726,
-0.47689542174339294,
0.05270646512508392,
0.1901737004518509,
0.26443609595298767,
0.36717480421066284,
0.013774743303656578,
0.1439036875963211,
0.4409423768520355,
-0.14524219930171967,
0.30603745579719543,
0.03583367168903351,
-0.10378570854663849,
-0.803827702999115,
0.9210230708122253,
0.18828164041042328,
0.06412383168935776,
-0.031210632994771004,
0.4236900508403778,
-0.3823809027671814,
-0.10228949040174484,
-0.6004404425621033,
0.48413848876953125,
-0.3536018133163452,
-0.4022645652294159,
-0.5379421710968018,
-0.17142502963542938,
-0.6722725033760071,
-0.15673740208148956,
-0.2658310830593109,
-0.5391232371330261,
-0.32565605640411377,
-0.21766448020935059,
1.0261439085006714,
0.4581913948059082,
-0.6904700398445129,
0.13215622305870056,
-0.5258126854896545,
0.28542065620422363,
-0.09795550256967545,
0.6725027561187744,
-0.059325218200683594,
-0.30747339129447937,
-0.20135627686977386,
0.10771894454956055,
-0.2282678782939911,
-0.6852453351020813,
0.27709075808525085,
-0.06076176092028618,
0.3746926188468933,
0.12882481515407562,
0.1457648128271103,
0.6807126998901367,
-0.05965958163142204,
0.6320316195487976,
0.3282890021800995,
-0.8103351593017578,
0.6681042909622192,
-0.4975309669971466,
0.18524903059005737,
0.7246935963630676,
0.38622599840164185,
-0.6223757863044739,
-0.13107816874980927,
-0.9890305399894714,
-0.8425556421279907,
0.7899027466773987,
0.4420161545276642,
0.061849646270275116,
0.19202400743961334,
0.5711894035339355,
-0.2141614705324173,
0.29359880089759827,
-0.6355581283569336,
-0.858216404914856,
-0.42841702699661255,
-0.3433724045753479,
-0.07031421363353729,
-0.09926094114780426,
-0.22308900952339172,
-0.6847308874130249,
0.7513880133628845,
-0.13882750272750854,
0.34526893496513367,
0.42771464586257935,
0.42515307664871216,
-0.21950513124465942,
-0.0007074035820551217,
0.28149670362472534,
0.33814555406570435,
-0.24382080137729645,
-0.29404115676879883,
-0.14593353867530823,
-0.6033322215080261,
-0.09535440802574158,
0.47440147399902344,
-0.3166062533855438,
-0.08286454528570175,
0.31534820795059204,
0.8955898284912109,
0.0046156058087944984,
-0.23599502444267273,
0.5880873203277588,
-0.07682058960199356,
-0.443462073802948,
-0.35858967900276184,
0.008331097662448883,
0.14078794419765472,
0.22331371903419495,
0.008288094773888588,
0.09786727279424667,
-0.11390236765146255,
-0.3919554352760315,
0.41583994030952454,
0.2452755868434906,
-0.4135704040527344,
-0.4926195442676544,
0.6034554839134216,
0.0627564787864685,
-0.11193498224020004,
0.48420658707618713,
-0.17454849183559418,
-0.5888315439224243,
0.8014434576034546,
0.1327192187309265,
0.8149836659431458,
-0.1604018658399582,
0.3524550199508667,
0.7477566599845886,
0.2114233821630478,
-0.055817652493715286,
0.5190261006355286,
-0.21417802572250366,
-0.6299950480461121,
-0.08835069835186005,
-0.5806979537010193,
-0.11842688173055649,
0.05972639098763466,
-0.8452171087265015,
0.4361448287963867,
-0.5296225547790527,
-0.24697978794574738,
0.011307121254503727,
0.40849998593330383,
-0.7177659273147583,
0.1792917400598526,
-0.053456999361515045,
1.0496482849121094,
-1.0435326099395752,
0.4548434615135193,
0.7035629153251648,
-0.6713587641716003,
-1.1815613508224487,
-0.14237040281295776,
0.2079964578151703,
-0.5740824937820435,
0.1889963299036026,
0.21451640129089355,
0.5248656868934631,
-0.06355522572994232,
-0.907647967338562,
-0.6791281700134277,
1.197828769683838,
0.060223937034606934,
-0.2186388224363327,
0.34332701563835144,
0.10634278506040573,
0.6340932846069336,
-0.36237698793411255,
0.34555763006210327,
0.6266809105873108,
0.6857962012290955,
0.34191709756851196,
-0.7320912480354309,
0.30270591378211975,
-0.6284677982330322,
-0.22919511795043945,
0.09445976465940475,
-1.0207632780075073,
0.6318390369415283,
-0.20364008843898773,
-0.04178003966808319,
0.009636749513447285,
0.6082770228385925,
0.4463880956172943,
0.4246634840965271,
0.4192523956298828,
0.7722042202949524,
0.8193508982658386,
-0.3024890124797821,
1.2275954484939575,
-0.25372862815856934,
0.6319268345832825,
0.7989624738693237,
0.03930236026644707,
0.5202793478965759,
0.23896969854831696,
-0.30735042691230774,
0.5433078408241272,
0.6464218497276306,
-0.437835693359375,
0.19805939495563507,
0.39444229006767273,
-0.03091367706656456,
-0.08335094898939133,
-0.2777692973613739,
-0.5927532911300659,
0.3006298840045929,
0.21033407747745514,
-0.32025599479675293,
0.0012676184996962547,
-0.033507633954286575,
0.3902319073677063,
-0.06389262527227402,
-0.29216888546943665,
0.6533477306365967,
0.06517273187637329,
-0.31377825140953064,
0.5393742918968201,
-0.1890033781528473,
0.6830636858940125,
-0.5655664205551147,
0.16375553607940674,
-0.11386339366436005,
0.10430711507797241,
-0.638661801815033,
-1.0866566896438599,
0.4013890326023102,
-0.07618344575166702,
-0.26362359523773193,
-0.3270399868488312,
0.7294604778289795,
-0.44806045293807983,
-0.7976135015487671,
0.23259684443473816,
0.20850197970867157,
0.3313211500644684,
0.12368303537368774,
-1.2794336080551147,
0.5786924958229065,
0.1542058140039444,
-0.45937520265579224,
0.14879104495048523,
0.5190174579620361,
0.17078709602355957,
0.5489956140518188,
0.7128730416297913,
0.2337004393339157,
-0.23481766879558563,
0.05822243168950081,
1.1034395694732666,
-0.5472586154937744,
-0.4410701096057892,
-0.7604013681411743,
0.9032267332077026,
-0.38037192821502686,
-0.3791225552558899,
0.7186868190765381,
0.7554848194122314,
0.8748610615730286,
0.021842477843165398,
0.7918571829795837,
-0.6406463980674744,
0.657768726348877,
-0.19303032755851746,
0.9385115504264832,
-0.7289131879806519,
-0.09477363526821136,
-0.746260941028595,
-0.5451128482818604,
-0.4459172785282135,
0.6497117280960083,
-0.22385171055793762,
0.20317210257053375,
0.2735240161418915,
0.9030619263648987,
0.017706437036395073,
0.12820841372013092,
-0.21420912444591522,
0.2980225086212158,
0.27467602491378784,
0.547888994216919,
0.3939383625984192,
-0.8990747332572937,
0.3566182851791382,
-0.7693092823028564,
-0.3188333511352539,
0.0400606207549572,
-0.8351119160652161,
-0.9264605641365051,
-0.9063824415206909,
-0.7025769948959351,
-0.7835754156112671,
-0.32982704043388367,
1.0640358924865723,
0.7053231596946716,
-0.7076112031936646,
-0.27383995056152344,
0.07816152274608612,
0.2924443483352661,
-0.07461831718683243,
-0.32651033997535706,
0.64157634973526,
0.34637701511383057,
-0.6042778491973877,
-0.14295557141304016,
0.02127360738813877,
0.26076439023017883,
0.06857404857873917,
-0.09361319243907928,
-0.11242960393428802,
-0.2816005349159241,
0.36098524928092957,
0.4834579527378082,
-0.2975105047225952,
-0.09291291981935501,
-0.23930713534355164,
0.04858238995075226,
0.18758834898471832,
0.4709358811378479,
-0.49993130564689636,
0.222809836268425,
0.6506869196891785,
0.277373343706131,
0.4465489387512207,
0.18026237189769745,
-0.0009664936223998666,
-0.5131564140319824,
0.08781953155994415,
-0.041808947920799255,
0.30163758993148804,
0.39169561862945557,
-0.4511982798576355,
0.7808777093887329,
0.5609766840934753,
-0.515663206577301,
-0.827186107635498,
-0.14105224609375,
-1.3281506299972534,
0.10869443416595459,
1.0438042879104614,
0.007631306536495686,
-0.5932469964027405,
0.08728629350662231,
-0.2310752123594284,
0.1478540301322937,
-0.5846443176269531,
0.44729405641555786,
0.5063894391059875,
-0.13432259857654572,
0.09096867591142654,
-0.3577899634838104,
0.6129089593887329,
-0.04173777252435684,
-0.9725661873817444,
0.16541367769241333,
0.4181024432182312,
0.47377654910087585,
0.32741641998291016,
0.7903457880020142,
-0.28615978360176086,
0.03271869570016861,
-0.045316703617572784,
0.2937646806240082,
-0.2944292426109314,
0.022062238305807114,
-0.37174004316329956,
-0.12024728953838348,
-0.5041297078132629,
-0.22724004089832306
]
|
huggingartists/obladaet | huggingartists | 2022-10-25T09:40:27Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/obladaet"
## 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.43973 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('https://images.genius.com/4411ffc50a3cd07d303d09a5db3b7cf5.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/obladaet">
<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">OBLADAET</div>
<a href="https://genius.com/artists/obladaet">
<div style="text-align: center; font-size: 14px;">@obladaet</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/obladaet).
### 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/obladaet")
```
## 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|
|------:|---------:|---:|
|121| -| -|
'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/obladaet")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6432691216468811,
-0.5564665794372559,
0.07778611779212952,
0.28782913088798523,
-0.25374117493629456,
-0.017370127141475677,
-0.3039315342903137,
-0.4601398706436157,
0.858081042766571,
0.35222068428993225,
-0.8962361216545105,
-0.8304461240768433,
-0.5531911253929138,
0.1285923272371292,
-0.0809333398938179,
1.276572823524475,
-0.23093459010124207,
-0.381269633769989,
-0.3092106282711029,
-0.24779939651489258,
-0.28536638617515564,
-0.288312703371048,
-0.2833736836910248,
-0.3596099615097046,
0.3378763198852539,
0.5054963231086731,
0.7074825763702393,
0.9176050424575806,
0.5034633278846741,
0.35063546895980835,
-0.11943773925304413,
-0.008312290534377098,
-0.3783789873123169,
-0.10258731991052628,
0.1785859316587448,
-0.2851237654685974,
-0.7114348411560059,
0.24127672612667084,
0.5555768013000488,
0.44418442249298096,
-0.10005977749824524,
0.4784000813961029,
0.07943582534790039,
0.852972149848938,
-0.29944151639938354,
0.5108758211135864,
-0.22578094899654388,
-0.1628369390964508,
-0.2964460849761963,
0.062486857175827026,
0.20356428623199463,
-0.6117272973060608,
0.005731517449021339,
-0.7488752603530884,
0.05283879116177559,
0.01708909310400486,
0.9959934949874878,
0.0708862766623497,
0.13306300342082977,
-0.1809338927268982,
-0.14734672009944916,
0.5164579153060913,
-0.5787107944488525,
-0.010335578583180904,
0.5902320742607117,
0.13068856298923492,
0.03575759008526802,
-0.6002167463302612,
-0.6064181327819824,
0.08884744346141815,
-0.15178504586219788,
0.278456449508667,
-0.18296417593955994,
-0.3088148236274719,
0.5086960792541504,
0.5640689134597778,
-0.5184928178787231,
-0.23297211527824402,
-0.5333734154701233,
-0.09521633386611938,
1.1686252355575562,
0.15664000809192657,
0.39191657304763794,
-0.47290876507759094,
-0.21911771595478058,
-0.3919411599636078,
-0.2748136818408966,
0.3432823121547699,
0.560755729675293,
0.4400049149990082,
-1.0294649600982666,
0.6497364044189453,
-0.1979541778564453,
0.5637640953063965,
0.15265798568725586,
-0.010027999058365822,
0.7785324454307556,
-0.3682295083999634,
-0.12694217264652252,
-0.09899739921092987,
1.0557137727737427,
0.6849353313446045,
0.17217668890953064,
0.09058285504579544,
-0.05171146243810654,
0.05057435855269432,
-0.15043151378631592,
-0.8469443917274475,
-0.41649287939071655,
0.6511979103088379,
-0.5987178683280945,
-0.5903142690658569,
0.15100327134132385,
-0.9899827241897583,
-0.22614632546901703,
-0.3040616810321808,
0.23744963109493256,
-0.375142902135849,
-0.5298259854316711,
0.1852874904870987,
-0.27000710368156433,
0.10979814827442169,
0.05400064215064049,
-0.6007859706878662,
0.1965678483247757,
0.5715178847312927,
0.7588415741920471,
0.20126548409461975,
-0.31657734513282776,
-0.26974621415138245,
-0.19337297976016998,
-0.11569146811962128,
0.6723454594612122,
-0.27587711811065674,
-0.3450135886669159,
-0.1412913203239441,
0.33214282989501953,
-0.07508482784032822,
-0.28734079003334045,
0.8708677291870117,
0.06036822125315666,
0.1724049597978592,
-0.570022463798523,
-0.4178954064846039,
-0.006924210581928492,
0.2850310802459717,
-0.764735758304596,
1.0697742700576782,
0.31490591168403625,
-0.9981141686439514,
0.16608615219593048,
-0.8157892227172852,
-0.3044366240501404,
0.022602008655667305,
0.0965956524014473,
-0.7814895510673523,
-0.17466109991073608,
0.19316543638706207,
0.745564877986908,
-0.3342987298965454,
-0.014916354790329933,
-0.6126365065574646,
-0.09858241677284241,
0.3724445104598999,
0.26740849018096924,
1.1720303297042847,
0.09947308152914047,
-0.1363823413848877,
0.06311546266078949,
-0.9461905360221863,
0.13139155507087708,
0.4625694751739502,
-0.18269476294517517,
-0.12365933507680893,
-0.24915191531181335,
0.4110477566719055,
0.2637450695037842,
0.0864049419760704,
-0.6290488839149475,
0.4222710430622101,
-0.2064962536096573,
0.460722416639328,
0.7402404546737671,
-0.011386135593056679,
0.32160982489585876,
-0.6621468663215637,
0.40795743465423584,
0.053151685744524,
0.36634814739227295,
-0.006520005874335766,
-0.5660363435745239,
-0.4726509749889374,
-0.2607489824295044,
0.30686599016189575,
0.44657886028289795,
-0.6825900673866272,
0.9988669157028198,
-0.33154088258743286,
-0.8490568995475769,
-0.6432034969329834,
0.13799753785133362,
0.22199095785617828,
0.5117080807685852,
0.37221720814704895,
-0.4555686116218567,
-0.6019936203956604,
-0.6281970739364624,
0.08784642815589905,
-0.2761174738407135,
0.19352589547634125,
0.40904030203819275,
0.8300012350082397,
-0.2513946294784546,
0.851365864276886,
-0.6952590346336365,
-0.2896091043949127,
-0.268206924200058,
-0.308011919260025,
0.37658166885375977,
0.7954791784286499,
0.6919711232185364,
-0.8530887961387634,
-0.4980851113796234,
-0.23374246060848236,
-0.7051270604133606,
-0.13046985864639282,
-0.00313916546292603,
-0.2774834632873535,
0.04042340815067291,
0.12282448261976242,
-0.7062214612960815,
0.5567891001701355,
0.5056468844413757,
-0.6874949336051941,
0.5772839784622192,
0.08811385929584503,
-0.010813084430992603,
-1.2530523538589478,
0.37712186574935913,
0.2461174726486206,
0.023240407928824425,
-0.5876203179359436,
-0.20440174639225006,
-0.06546658277511597,
-0.01133710891008377,
-0.1047535315155983,
0.6425049901008606,
-0.344535768032074,
0.30729904770851135,
0.1276080459356308,
0.0700850784778595,
0.0935404822230339,
0.4605347514152527,
-0.04800308495759964,
0.2326730340719223,
1.0149002075195312,
-0.3820883333683014,
0.6758686900138855,
0.6390866041183472,
-0.2316853553056717,
0.872792661190033,
-0.8209949135780334,
0.021613266319036484,
-0.2720243036746979,
0.37732958793640137,
-0.8155985474586487,
-0.5413017272949219,
0.8148157000541687,
-0.6867455244064331,
0.3941282033920288,
-0.2413078397512436,
-0.5571301579475403,
-0.7861757874488831,
-0.6782913208007812,
0.14029265940189362,
0.5386567115783691,
-0.3848841190338135,
0.41092953085899353,
0.5927883386611938,
0.06220051646232605,
-0.36292433738708496,
-0.7760955691337585,
-0.1736164093017578,
-0.3651857376098633,
-0.819290280342102,
0.4135788381099701,
-0.33764320611953735,
-0.10097628086805344,
0.18239696323871613,
0.09489363431930542,
0.11582591384649277,
0.011752676218748093,
0.41897252202033997,
0.3114534020423889,
0.08308708667755127,
-0.01892479881644249,
-0.08558975905179977,
-0.24513117969036102,
0.1088375374674797,
-0.19958150386810303,
0.2777075171470642,
-0.308612585067749,
-0.1428317278623581,
-0.6433142423629761,
0.21651983261108398,
0.4397065341472626,
-0.2589075267314911,
0.678923487663269,
0.7823689579963684,
-0.23672284185886383,
-0.022398976609110832,
-0.5077468752861023,
-0.13538238406181335,
-0.41041117906570435,
0.03858355060219765,
-0.21231797337532043,
-0.5994559526443481,
0.95566326379776,
0.2288254350423813,
0.09132685512304306,
0.6420612931251526,
0.4922213554382324,
-0.07528612017631531,
0.6692849397659302,
0.37830930948257446,
-0.2659072279930115,
0.5200634002685547,
-0.7083463668823242,
-0.24329490959644318,
-0.8998388648033142,
-0.4551831781864166,
-0.4934351146221161,
-0.5041211247444153,
-0.8416041135787964,
-0.44740724563598633,
0.19766607880592346,
0.15697863698005676,
-0.23794308304786682,
0.4634144604206085,
-0.9215673804283142,
0.2650713324546814,
0.3377538323402405,
0.28600314259529114,
-0.1086818277835846,
0.07305482029914856,
0.07654990255832672,
0.16616903245449066,
-0.5905492305755615,
-0.24744866788387299,
1.135456919670105,
0.502717137336731,
0.5930131077766418,
-0.08861923217773438,
0.8484902381896973,
0.018142003566026688,
0.24123968183994293,
-0.5244380831718445,
0.49124565720558167,
0.03750378638505936,
-0.4883509874343872,
-0.14679047465324402,
-0.4869139492511749,
-0.9268059730529785,
-0.12162134051322937,
-0.42552700638771057,
-0.714072048664093,
0.5074049830436707,
0.11310619115829468,
-0.22444212436676025,
0.3803268074989319,
-0.6084817051887512,
0.857384979724884,
-0.04999687150120735,
-0.4588271379470825,
0.3280518352985382,
-1.0260101556777954,
0.1667400300502777,
0.19663125276565552,
0.25924673676490784,
-0.40229493379592896,
0.028599780052900314,
0.9981842041015625,
-0.8145627379417419,
0.9498999714851379,
-0.35462597012519836,
0.15510118007659912,
0.5749722123146057,
-0.29803526401519775,
0.45615866780281067,
0.09031149744987488,
-0.2748405635356903,
0.3422605097293854,
0.03447433188557625,
-0.45024242997169495,
-0.42619529366493225,
0.6737523078918457,
-0.723987340927124,
0.044109225273132324,
-0.35172703862190247,
-0.4656566381454468,
0.06101755052804947,
0.18947194516658783,
0.26853734254837036,
0.367189884185791,
-0.016966314986348152,
0.1479467898607254,
0.4406530559062958,
-0.11914223432540894,
0.27857667207717896,
0.0536746047437191,
-0.10988768935203552,
-0.7780387997627258,
0.9109117984771729,
0.1662401258945465,
0.06001293286681175,
-0.04915132746100426,
0.4351871609687805,
-0.37579554319381714,
-0.12340196967124939,
-0.6110947132110596,
0.49323388934135437,
-0.3989217281341553,
-0.39783698320388794,
-0.5131706595420837,
-0.14694243669509888,
-0.6505838632583618,
-0.17854897677898407,
-0.25879544019699097,
-0.4980713427066803,
-0.3098084032535553,
-0.21859732270240784,
1.0446761846542358,
0.45777878165245056,
-0.6955857276916504,
0.13525380194187164,
-0.5215131044387817,
0.28154149651527405,
-0.0783943459391594,
0.6580487489700317,
-0.08260539174079895,
-0.28138425946235657,
-0.21157535910606384,
0.10553332418203354,
-0.2184949815273285,
-0.6847333312034607,
0.2741827964782715,
-0.040752336382865906,
0.38773322105407715,
0.12025231868028641,
0.14595870673656464,
0.6660484671592712,
-0.05472999066114426,
0.6331875920295715,
0.2959928512573242,
-0.8017173409461975,
0.6835008859634399,
-0.5066602826118469,
0.15388859808444977,
0.7136690616607666,
0.3725750744342804,
-0.6065265536308289,
-0.12889085710048676,
-0.9696717262268066,
-0.850958526134491,
0.8197943568229675,
0.4348987638950348,
0.037396907806396484,
0.22533969581127167,
0.5564091205596924,
-0.1872478425502777,
0.30061423778533936,
-0.6395256519317627,
-0.863733172416687,
-0.4206697642803192,
-0.3481872081756592,
-0.0549929179251194,
-0.061225101351737976,
-0.2528355121612549,
-0.6727574467658997,
0.7712348699569702,
-0.1399134397506714,
0.33373209834098816,
0.416142076253891,
0.419269323348999,
-0.2381606251001358,
-0.03474657982587814,
0.24612221121788025,
0.34177887439727783,
-0.26385799050331116,
-0.2993355989456177,
-0.17794416844844818,
-0.6246274709701538,
-0.11395370960235596,
0.5274163484573364,
-0.3528067171573639,
-0.09448106586933136,
0.3162272870540619,
0.9060963988304138,
-0.018625937402248383,
-0.259284108877182,
0.5875087976455688,
-0.04386657848954201,
-0.39576566219329834,
-0.37040218710899353,
-0.0001362566399620846,
0.13473471999168396,
0.2447199523448944,
0.030660534277558327,
0.09092884510755539,
-0.12173065543174744,
-0.4246382713317871,
0.37503761053085327,
0.24500903487205505,
-0.3944932520389557,
-0.4957267642021179,
0.6026490330696106,
0.07418259978294373,
-0.11568175256252289,
0.4677332639694214,
-0.14803576469421387,
-0.6211099624633789,
0.7862002849578857,
0.12324029207229614,
0.813267707824707,
-0.17267470061779022,
0.33406010270118713,
0.7079428434371948,
0.2203909009695053,
-0.08613522350788116,
0.552444338798523,
-0.21078568696975708,
-0.6448863744735718,
-0.04640965908765793,
-0.5898173451423645,
-0.10890593379735947,
0.05347267910838127,
-0.8597322106361389,
0.434423565864563,
-0.4773854911327362,
-0.21799880266189575,
0.0314142145216465,
0.376068115234375,
-0.7267858386039734,
0.16996440291404724,
-0.06267979741096497,
1.0342957973480225,
-1.0474493503570557,
0.45002275705337524,
0.7295174598693848,
-0.6647354960441589,
-1.1600756645202637,
-0.1540726125240326,
0.1946873813867569,
-0.6002602577209473,
0.20975498855113983,
0.1953161209821701,
0.5077883005142212,
-0.05729511380195618,
-0.8976066708564758,
-0.6389793157577515,
1.1804322004318237,
0.03588119149208069,
-0.1830414980649948,
0.3338414132595062,
0.12230650335550308,
0.6304426789283752,
-0.3714715540409088,
0.29743725061416626,
0.6416354775428772,
0.6951487064361572,
0.30777817964553833,
-0.7384932041168213,
0.3027282655239105,
-0.6326718330383301,
-0.2098791003227234,
0.08154613524675369,
-0.9954506754875183,
0.655211329460144,
-0.18584057688713074,
-0.029129698872566223,
0.039479631930589676,
0.593919038772583,
0.4444459080696106,
0.41259703040122986,
0.43650880455970764,
0.7760363221168518,
0.778303861618042,
-0.33028557896614075,
1.2349214553833008,
-0.23603759706020355,
0.6365259885787964,
0.7650330066680908,
0.013832480646669865,
0.5150241851806641,
0.23254264891147614,
-0.3138282299041748,
0.5308257937431335,
0.640440046787262,
-0.43318238854408264,
0.24736498296260834,
0.3883878290653229,
-0.01932729408144951,
-0.08292828500270844,
-0.27060651779174805,
-0.5954412221908569,
0.31930825114250183,
0.22514508664608002,
-0.3246743977069855,
-0.007482977584004402,
-0.003858960932120681,
0.3731299340724945,
-0.03873997926712036,
-0.2812890112400055,
0.6502040028572083,
0.04522709175944328,
-0.36599475145339966,
0.5515036582946777,
-0.19229134917259216,
0.6762948632240295,
-0.5797505974769592,
0.14005915820598602,
-0.0961344763636589,
0.13546504080295563,
-0.6217260956764221,
-1.1045669317245483,
0.3784569799900055,
-0.07389505207538605,
-0.24932117760181427,
-0.3569563925266266,
0.7221400737762451,
-0.4679771065711975,
-0.7713125348091125,
0.2262629121541977,
0.22725987434387207,
0.3291732668876648,
0.1267090141773224,
-1.2685250043869019,
0.5975068211555481,
0.1443009376525879,
-0.473625510931015,
0.12140927463769913,
0.5128440856933594,
0.15679125487804413,
0.531724750995636,
0.7086532115936279,
0.265191912651062,
-0.24162828922271729,
0.03118578903377056,
1.1266546249389648,
-0.526064395904541,
-0.4720727801322937,
-0.7362767457962036,
0.9042053818702698,
-0.36522403359413147,
-0.4064449667930603,
0.6931037306785583,
0.7617266774177551,
0.8876847624778748,
-0.0020255467388778925,
0.8060582876205444,
-0.6754117012023926,
0.6787000894546509,
-0.22256985306739807,
0.950903058052063,
-0.701036274433136,
-0.07043926417827606,
-0.7375658750534058,
-0.5438435673713684,
-0.4125409722328186,
0.6818422675132751,
-0.1975589394569397,
0.18378056585788727,
0.272576242685318,
0.9111942648887634,
0.020932888612151146,
0.1340160220861435,
-0.24978843331336975,
0.3141235113143921,
0.2601928114891052,
0.5437384247779846,
0.4365437626838684,
-0.8927322626113892,
0.32794052362442017,
-0.7979546785354614,
-0.32898464798927307,
0.011814857833087444,
-0.8490312695503235,
-0.9108653664588928,
-0.9745477437973022,
-0.7050105333328247,
-0.7867302298545837,
-0.301580011844635,
1.0742766857147217,
0.7130508422851562,
-0.6862620115280151,
-0.2647337317466736,
0.08379212021827698,
0.27401411533355713,
-0.09957104176282883,
-0.3166404068470001,
0.668660581111908,
0.39697542786598206,
-0.6216500997543335,
-0.17068183422088623,
0.0017378285992890596,
0.25089430809020996,
0.04776132479310036,
-0.10095051676034927,
-0.10153818130493164,
-0.29804298281669617,
0.3531491160392761,
0.5014830827713013,
-0.32842782139778137,
-0.07899121195077896,
-0.24701310694217682,
0.043355297297239304,
0.15857183933258057,
0.48100101947784424,
-0.526181697845459,
0.21858114004135132,
0.6535872220993042,
0.27139630913734436,
0.4407972991466522,
0.20970387756824493,
0.00504574179649353,
-0.4927561581134796,
0.10424793511629105,
-0.006517249625176191,
0.3278607726097107,
0.38962092995643616,
-0.452443391084671,
0.7922187447547913,
0.5630083680152893,
-0.5050225853919983,
-0.849159300327301,
-0.14677369594573975,
-1.350658893585205,
0.10917147248983383,
1.0607916116714478,
-0.015266657806932926,
-0.5873786211013794,
0.05006774514913559,
-0.2433667927980423,
0.12179827690124512,
-0.5779980421066284,
0.4634822905063629,
0.4999335706233978,
-0.122527576982975,
0.13653291761875153,
-0.3337485194206238,
0.6123302578926086,
-0.04150057211518288,
-0.9888930320739746,
0.1977577805519104,
0.43588611483573914,
0.44666770100593567,
0.3395077586174011,
0.7806670665740967,
-0.27378010749816895,
0.07015715539455414,
-0.07011814415454865,
0.30639442801475525,
-0.30974656343460083,
0.0404638834297657,
-0.3466031551361084,
-0.1386081576347351,
-0.5031068325042725,
-0.23367388546466827
]
|
huggingartists/peter-paul-and-mary | huggingartists | 2022-10-25T09:40:59Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/peter-paul-and-mary"
## 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.296506 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('https://images.genius.com/02fe78bca7c47dc6869673e7552c7978.500x338x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/peter-paul-and-mary">
<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">Peter, Paul and Mary</div>
<a href="https://genius.com/artists/peter-paul-and-mary">
<div style="text-align: center; font-size: 14px;">@peter-paul-and-mary</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/peter-paul-and-mary).
### 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/peter-paul-and-mary")
```
## 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|
|------:|---------:|---:|
|237| -| -|
'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/peter-paul-and-mary")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6262615323066711,
-0.5276159048080444,
0.1246800348162651,
0.3290509879589081,
-0.22226378321647644,
-0.03342287987470627,
-0.2932979166507721,
-0.4580962359905243,
0.8554960489273071,
0.3392205834388733,
-0.8826523423194885,
-0.7804803252220154,
-0.61018306016922,
0.15560536086559296,
-0.09415361285209656,
1.2371000051498413,
-0.20297279953956604,
-0.3006390631198883,
-0.33042359352111816,
-0.20605115592479706,
-0.23397725820541382,
-0.30343660712242126,
-0.30833518505096436,
-0.300825834274292,
0.34200042486190796,
0.5028485059738159,
0.7385684847831726,
0.917717456817627,
0.5643240809440613,
0.34767040610313416,
-0.15787334740161896,
0.033232588320970535,
-0.36558079719543457,
-0.08159057796001434,
0.16383859515190125,
-0.26802858710289,
-0.7002740502357483,
0.27539747953414917,
0.6081516742706299,
0.44869038462638855,
-0.05995411425828934,
0.4799139201641083,
0.0906037911772728,
0.8221367001533508,
-0.29225030541419983,
0.46948933601379395,
-0.24259258806705475,
-0.15003173053264618,
-0.26748111844062805,
0.0059136077761650085,
0.14731937646865845,
-0.5962246060371399,
0.008578888140618801,
-0.786236584186554,
0.06281304359436035,
0.0014034543419256806,
1.0039163827896118,
0.043963562697172165,
0.08097202330827713,
-0.23170019686222076,
-0.13289369642734528,
0.5550849437713623,
-0.5423616170883179,
-0.0018961605383083224,
0.5710427761077881,
0.09582778066396713,
-0.0433526448905468,
-0.629387617111206,
-0.6271042823791504,
0.08918394893407822,
-0.16394059360027313,
0.3135676085948944,
-0.16614378988742828,
-0.35671237111091614,
0.5280635356903076,
0.5307769775390625,
-0.5135235786437988,
-0.24915079772472382,
-0.5206484794616699,
-0.08108650147914886,
1.1554514169692993,
0.15032827854156494,
0.4213883578777313,
-0.5026842951774597,
-0.25725242495536804,
-0.3952464163303375,
-0.23161712288856506,
0.3735654950141907,
0.511070191860199,
0.46384134888648987,
-1.0654171705245972,
0.6026527881622314,
-0.08259499073028564,
0.5259637832641602,
0.16231191158294678,
-0.05626135692000389,
0.7575880885124207,
-0.40672117471694946,
-0.10249924659729004,
-0.17624472081661224,
1.0738050937652588,
0.7092965245246887,
0.22509866952896118,
0.11079874634742737,
-0.0008994811214506626,
0.06134146824479103,
-0.1633613407611847,
-0.8508113026618958,
-0.4156751334667206,
0.6306343078613281,
-0.6073926687240601,
-0.5744580626487732,
0.14785563945770264,
-0.9519233703613281,
-0.24353612959384918,
-0.31935688853263855,
0.2079087644815445,
-0.3883035480976105,
-0.5362117290496826,
0.0989944338798523,
-0.35089972615242004,
0.09598852694034576,
0.07021123915910721,
-0.6199495792388916,
0.20577533543109894,
0.6204847097396851,
0.7242818474769592,
0.19918672740459442,
-0.31167668104171753,
-0.3581928312778473,
-0.1588531881570816,
-0.13744591176509857,
0.6396166086196899,
-0.3496556580066681,
-0.3689545691013336,
-0.1756177842617035,
0.3794778287410736,
-0.05077001824975014,
-0.27769753336906433,
0.8826834559440613,
0.09963617473840714,
0.226947620511055,
-0.6429882645606995,
-0.4582981467247009,
0.02105697989463806,
0.2622267007827759,
-0.7526161670684814,
1.043264389038086,
0.3119622766971588,
-1.0263824462890625,
0.22741888463497162,
-0.7870725989341736,
-0.30380934476852417,
0.04397572576999664,
0.0641539916396141,
-0.7968058586120605,
-0.166978657245636,
0.18691080808639526,
0.758360743522644,
-0.3394065797328949,
-0.0037401760928332806,
-0.6724178194999695,
-0.13821963965892792,
0.3779042065143585,
0.2575775980949402,
1.1942569017410278,
0.08961308002471924,
-0.1350933462381363,
0.05013266205787659,
-0.9339286088943481,
0.1251649409532547,
0.4451445937156677,
-0.16329510509967804,
-0.1417514830827713,
-0.19609466195106506,
0.4370194971561432,
0.2806189954280853,
0.05726221576333046,
-0.6058292388916016,
0.43191930651664734,
-0.18358218669891357,
0.4891262650489807,
0.724869430065155,
-0.008116754703223705,
0.3568914830684662,
-0.6308962106704712,
0.4052482545375824,
0.10671577602624893,
0.41111695766448975,
-0.007442746311426163,
-0.6004077792167664,
-0.4643275737762451,
-0.2840847373008728,
0.33070921897888184,
0.4678003787994385,
-0.663490355014801,
0.937938392162323,
-0.3049655556678772,
-0.8046159148216248,
-0.6546995639801025,
0.13723164796829224,
0.1919420063495636,
0.4989401698112488,
0.3933826684951782,
-0.48226913809776306,
-0.5884424448013306,
-0.6842191815376282,
0.08775251358747482,
-0.3072778284549713,
0.20033256709575653,
0.42675119638442993,
0.803067684173584,
-0.21969807147979736,
0.818649172782898,
-0.6430415511131287,
-0.23595161736011505,
-0.23136168718338013,
-0.31558889150619507,
0.37032729387283325,
0.795477569103241,
0.6781736016273499,
-0.9079955220222473,
-0.5275954604148865,
-0.28044813871383667,
-0.6848044991493225,
-0.0804467722773552,
-0.06854579597711563,
-0.2520074248313904,
0.027275096625089645,
0.06155680865049362,
-0.6901393532752991,
0.5503353476524353,
0.5043305158615112,
-0.7107441425323486,
0.5494764447212219,
0.0888058990240097,
0.033297039568424225,
-1.3154022693634033,
0.3450457453727722,
0.24878422915935516,
0.007906909100711346,
-0.6035823822021484,
-0.19423037767410278,
0.0038970571476966143,
0.0006064284243620932,
-0.10998792946338654,
0.5951287746429443,
-0.365934282541275,
0.28126177191734314,
0.15600983798503876,
0.07403518259525299,
0.11233718693256378,
0.39400148391723633,
-0.02479192242026329,
0.2663564682006836,
1.042824387550354,
-0.364156574010849,
0.6371890306472778,
0.6327179074287415,
-0.1368570625782013,
0.8884044289588928,
-0.7605949640274048,
-0.014590457081794739,
-0.26900437474250793,
0.40449652075767517,
-0.8398169279098511,
-0.525032639503479,
0.8259393572807312,
-0.7194345593452454,
0.3880158066749573,
-0.22809840738773346,
-0.5610530376434326,
-0.7871801853179932,
-0.6741475462913513,
0.14146707952022552,
0.5439062118530273,
-0.37477707862854004,
0.4138398766517639,
0.574722409248352,
0.05468341335654259,
-0.3634822964668274,
-0.7918224334716797,
-0.10229834169149399,
-0.3942663073539734,
-0.827022910118103,
0.41486766934394836,
-0.3661313056945801,
-0.11186492443084717,
0.160501167178154,
0.14236880838871002,
0.08613268285989761,
-0.006442666985094547,
0.45190513134002686,
0.31370869278907776,
0.10962377488613129,
0.009895511902868748,
-0.10059285163879395,
-0.2589401304721832,
0.1364727020263672,
-0.18164625763893127,
0.2059757560491562,
-0.2898569703102112,
-0.1254451721906662,
-0.6909568309783936,
0.27602264285087585,
0.47364872694015503,
-0.24505983293056488,
0.6978096961975098,
0.8062950372695923,
-0.21570903062820435,
-0.020604820922017097,
-0.5236930251121521,
-0.17123806476593018,
-0.39801478385925293,
-0.017693543806672096,
-0.2248704880475998,
-0.6400376558303833,
0.9160357713699341,
0.2216290980577469,
0.0874759629368782,
0.6491676568984985,
0.4934484362602234,
-0.12370220571756363,
0.6639710664749146,
0.4083878695964813,
-0.25438374280929565,
0.4559323191642761,
-0.6542862057685852,
-0.25484365224838257,
-0.850688099861145,
-0.4051474928855896,
-0.47338417172431946,
-0.5285073518753052,
-0.8928109407424927,
-0.46278566122055054,
0.2060956060886383,
0.16052661836147308,
-0.19375091791152954,
0.47051894664764404,
-0.9623865485191345,
0.2424565553665161,
0.37942373752593994,
0.23282290995121002,
-0.10701305419206619,
0.08657027035951614,
0.04726076126098633,
0.10252519696950912,
-0.575838565826416,
-0.2255987972021103,
1.1460208892822266,
0.5110714435577393,
0.48360857367515564,
-0.09119844436645508,
0.8332147002220154,
0.02604944258928299,
0.2311762124300003,
-0.4818086326122284,
0.4862612783908844,
-0.006759169045835733,
-0.5058420896530151,
-0.11619094014167786,
-0.5170730948448181,
-0.8767221570014954,
-0.13521403074264526,
-0.4361371099948883,
-0.6984621286392212,
0.5295251607894897,
0.10355103015899658,
-0.22156170010566711,
0.38214975595474243,
-0.6230216026306152,
0.8318784236907959,
-0.04465256258845329,
-0.4515096843242645,
0.2822004556655884,
-1.0655134916305542,
0.1683209389448166,
0.19356046617031097,
0.2717007100582123,
-0.362836629152298,
0.021184196695685387,
0.9568729996681213,
-0.7599114179611206,
0.9217833280563354,
-0.3369234800338745,
0.15492886304855347,
0.5378527045249939,
-0.30570846796035767,
0.46112439036369324,
0.11293528228998184,
-0.2623332738876343,
0.3046855032444,
0.09724552184343338,
-0.46162983775138855,
-0.4290781021118164,
0.6776384711265564,
-0.712918221950531,
0.07084634900093079,
-0.37318170070648193,
-0.4825773537158966,
0.08534425497055054,
0.12352938950061798,
0.25710874795913696,
0.37108275294303894,
0.046175986528396606,
0.13850155472755432,
0.4115905165672302,
-0.11305799335241318,
0.3178953230381012,
0.09361204504966736,
-0.09623655676841736,
-0.8136073350906372,
0.8751635551452637,
0.1797596961259842,
0.07628335803747177,
-0.03367294371128082,
0.40024837851524353,
-0.32798248529434204,
-0.08036446571350098,
-0.5917553901672363,
0.5018950700759888,
-0.3735763430595398,
-0.331954687833786,
-0.4837140738964081,
-0.12871941924095154,
-0.6464065313339233,
-0.16309000551700592,
-0.23583254218101501,
-0.5379511117935181,
-0.33617642521858215,
-0.16870935261249542,
1.0112167596817017,
0.45258980989456177,
-0.7025594711303711,
0.09478168189525604,
-0.5334553122520447,
0.2941768169403076,
-0.0950699970126152,
0.6247584819793701,
-0.1124078631401062,
-0.27256259322166443,
-0.15623678267002106,
0.06853174418210983,
-0.2436518371105194,
-0.7417279481887817,
0.24685610830783844,
-0.039615239948034286,
0.30493807792663574,
0.13547995686531067,
0.13692110776901245,
0.7204065918922424,
-0.07435675710439682,
0.6635385155677795,
0.33987316489219666,
-0.8050658702850342,
0.6685146689414978,
-0.46690255403518677,
0.13850252330303192,
0.7033682465553284,
0.40211087465286255,
-0.6169635057449341,
-0.13901734352111816,
-0.9958115220069885,
-0.8233450055122375,
0.7880781292915344,
0.4689179062843323,
0.015458548441529274,
0.1986757516860962,
0.5639165043830872,
-0.18212182819843292,
0.26711171865463257,
-0.6542260646820068,
-0.8523232340812683,
-0.36319980025291443,
-0.3224705159664154,
-0.053827542811632156,
-0.11534598469734192,
-0.2532227337360382,
-0.7169466018676758,
0.7943852543830872,
-0.11358755081892014,
0.30799242854118347,
0.4422263205051422,
0.45365554094314575,
-0.27920597791671753,
-0.008112861774861813,
0.2727252244949341,
0.3945436179637909,
-0.21640557050704956,
-0.2919301390647888,
-0.1434200406074524,
-0.6046338677406311,
-0.11167886108160019,
0.5333376526832581,
-0.3624040186405182,
-0.08571938425302505,
0.35218164324760437,
0.8746883273124695,
-0.0184328556060791,
-0.2435547411441803,
0.6105172634124756,
-0.10199274122714996,
-0.415168821811676,
-0.4264538884162903,
-0.010737261734902859,
0.19894228875637054,
0.2649860680103302,
0.018666518852114677,
0.08005458116531372,
-0.11159538477659225,
-0.41439390182495117,
0.40947243571281433,
0.29026028513908386,
-0.4192398488521576,
-0.48921090364456177,
0.596747875213623,
0.0698222815990448,
-0.1510581225156784,
0.48048993945121765,
-0.17864271998405457,
-0.6025580167770386,
0.7551562786102295,
0.1404523104429245,
0.7866785526275635,
-0.17156930267810822,
0.34069791436195374,
0.6806496381759644,
0.22586742043495178,
-0.00023225785116665065,
0.5967102646827698,
-0.22761064767837524,
-0.6105008125305176,
-0.07694787532091141,
-0.6189139485359192,
-0.13552872836589813,
0.06693118065595627,
-0.8581773042678833,
0.41625115275382996,
-0.48139864206314087,
-0.2734639644622803,
0.044060178101062775,
0.3724336326122284,
-0.7196332812309265,
0.17307579517364502,
-0.027316095307469368,
1.0428470373153687,
-1.0483908653259277,
0.44161126017570496,
0.7210015058517456,
-0.622405469417572,
-1.2143728733062744,
-0.1528731733560562,
0.2065306156873703,
-0.5548833012580872,
0.2548745274543762,
0.2020566314458847,
0.5390586853027344,
-0.08896476775407791,
-0.8749144077301025,
-0.6327223777770996,
1.148140788078308,
0.015503308735787868,
-0.24573305249214172,
0.3300504982471466,
0.1528850644826889,
0.6085644960403442,
-0.3972277045249939,
0.3514348566532135,
0.6336997747421265,
0.7240474820137024,
0.30493542551994324,
-0.7616814970970154,
0.2760144770145416,
-0.6716936230659485,
-0.2141997367143631,
0.10655662417411804,
-0.9993987679481506,
0.6426066756248474,
-0.15343566238880157,
-0.022433673962950706,
0.030459756031632423,
0.6076551079750061,
0.44811779260635376,
0.4245488941669464,
0.4814802408218384,
0.8004088401794434,
0.7837169170379639,
-0.3408053517341614,
1.206098198890686,
-0.27867916226387024,
0.6070755124092102,
0.7475482225418091,
0.014910535886883736,
0.5495578646659851,
0.2871789336204529,
-0.331582248210907,
0.5285446047782898,
0.6443400382995605,
-0.4711313843727112,
0.187336266040802,
0.3792174458503723,
-0.03741777315735817,
-0.15132595598697662,
-0.2727809250354767,
-0.6112998127937317,
0.293517529964447,
0.2352863848209381,
-0.3997825086116791,
0.03838551416993141,
-0.03652004525065422,
0.39540889859199524,
-0.027193482965230942,
-0.24759839475154877,
0.6443695425987244,
0.0870092585682869,
-0.39346808195114136,
0.5395658016204834,
-0.21011003851890564,
0.6264768242835999,
-0.5797348618507385,
0.11677974462509155,
-0.04647305980324745,
0.1492338925600052,
-0.5985932946205139,
-1.0779902935028076,
0.33308395743370056,
-0.053746502846479416,
-0.30379557609558105,
-0.3741205036640167,
0.6770510673522949,
-0.4841638505458832,
-0.8323272466659546,
0.27025720477104187,
0.18641050159931183,
0.34589219093322754,
0.1840338557958603,
-1.2925281524658203,
0.5822575688362122,
0.15943102538585663,
-0.4322013556957245,
0.10211730748414993,
0.49815434217453003,
0.1781473606824875,
0.5230782628059387,
0.712863028049469,
0.3157302141189575,
-0.2838534712791443,
0.06238962709903717,
1.103678584098816,
-0.5277996063232422,
-0.4786183536052704,
-0.7768539190292358,
0.9368200898170471,
-0.38524147868156433,
-0.4134415090084076,
0.7109001874923706,
0.756685733795166,
0.8208162784576416,
0.03719886764883995,
0.7827070355415344,
-0.6257416009902954,
0.7154073119163513,
-0.18196611106395721,
0.9256814122200012,
-0.7405496835708618,
-0.09586098790168762,
-0.7710593342781067,
-0.576898992061615,
-0.40881356596946716,
0.6271286010742188,
-0.19220520555973053,
0.16541145741939545,
0.28679990768432617,
0.900379478931427,
-0.009375162422657013,
0.19124191999435425,
-0.28899821639060974,
0.31711894273757935,
0.29125291109085083,
0.5858354568481445,
0.4348033368587494,
-0.8733543753623962,
0.31837111711502075,
-0.7686768770217896,
-0.35547876358032227,
0.061072759330272675,
-0.8872205018997192,
-0.9064924120903015,
-0.9757028818130493,
-0.6812326312065125,
-0.7602319717407227,
-0.2547369599342346,
1.0674946308135986,
0.7345377802848816,
-0.7132663130760193,
-0.2564426362514496,
0.10598725825548172,
0.22362862527370453,
-0.0914338082075119,
-0.3143218159675598,
0.6529916524887085,
0.3742331564426422,
-0.589643120765686,
-0.11703547090291977,
0.043062180280685425,
0.2352694869041443,
0.029483528807759285,
-0.11925937980413437,
-0.09569355100393295,
-0.30572375655174255,
0.3278038501739502,
0.43047961592674255,
-0.37689074873924255,
-0.09420813620090485,
-0.2752384841442108,
0.057214219123125076,
0.12570956349372864,
0.44935280084609985,
-0.5314006805419922,
0.21760158240795135,
0.6433568596839905,
0.2731471657752991,
0.42535385489463806,
0.2544693648815155,
0.014083219692111015,
-0.4604215919971466,
0.054478876292705536,
-0.011357967741787434,
0.32227787375450134,
0.4171990752220154,
-0.4615221321582794,
0.7569483518600464,
0.6117088198661804,
-0.5303692817687988,
-0.8631613254547119,
-0.1142050251364708,
-1.3279180526733398,
0.098224937915802,
1.025939702987671,
-0.007458890788257122,
-0.5313964486122131,
0.10638751834630966,
-0.17316275835037231,
0.12410157918930054,
-0.5572313666343689,
0.43503808975219727,
0.55796217918396,
-0.10863388329744339,
0.1296994835138321,
-0.32914817333221436,
0.6023096442222595,
0.024613864719867706,
-0.9299584627151489,
0.18608616292476654,
0.42190125584602356,
0.45274192094802856,
0.3799366056919098,
0.7414549589157104,
-0.23331239819526672,
0.09034298360347748,
-0.08017335832118988,
0.2832902669906616,
-0.2839214503765106,
-0.01098166685551405,
-0.31886401772499084,
-0.06619367748498917,
-0.5149614810943604,
-0.17152465879917145
]
|
huggingartists/pharaoh | huggingartists | 2022-10-25T09:41:06Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/pharaoh"
## 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.809639 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('https://images.genius.com/3bb9817ec1fbf2b9f944e9da3662bee6.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/pharaoh">
<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">PHARAOH</div>
<a href="https://genius.com/artists/pharaoh">
<div style="text-align: center; font-size: 14px;">@pharaoh</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/pharaoh).
### 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/pharaoh")
```
## 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|
|------:|---------:|---:|
|300| -| -|
'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/pharaoh")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6377085447311401,
-0.4994411766529083,
0.039304591715335846,
0.2541421353816986,
-0.2879262864589691,
-0.021085968241095543,
-0.2871808111667633,
-0.43653714656829834,
0.8284862637519836,
0.3642179071903229,
-0.836378812789917,
-0.8397954702377319,
-0.5697453618049622,
0.12008239328861237,
-0.0926273986697197,
1.2403472661972046,
-0.19651655852794647,
-0.3962997794151306,
-0.2091839760541916,
-0.2641022801399231,
-0.24736428260803223,
-0.2885318696498871,
-0.2594010531902313,
-0.38859274983406067,
0.34593021869659424,
0.5847083926200867,
0.8008197546005249,
0.9409689903259277,
0.47006529569625854,
0.33484160900115967,
-0.057551342993974686,
-0.01738753542304039,
-0.3528122901916504,
-0.09757935255765915,
0.17892752587795258,
-0.27144670486450195,
-0.6525392532348633,
0.22043268382549286,
0.5354666709899902,
0.4284264147281647,
-0.15829066932201385,
0.5029492974281311,
0.08682501316070557,
0.9166904091835022,
-0.3292345404624939,
0.47921785712242126,
-0.20842154324054718,
-0.12366460263729095,
-0.32117220759391785,
0.013727385550737381,
0.21365368366241455,
-0.6854925155639648,
0.07697192579507828,
-0.7425546050071716,
0.006790807005017996,
0.006638256832957268,
1.011875033378601,
0.035882044583559036,
0.09681382775306702,
-0.19962343573570251,
-0.14571362733840942,
0.5699105262756348,
-0.593021035194397,
-0.06244956701993942,
0.6135151982307434,
0.16789953410625458,
0.02807660959661007,
-0.6396750211715698,
-0.6445105671882629,
0.0679084062576294,
-0.11176532506942749,
0.31658196449279785,
-0.179103821516037,
-0.32657328248023987,
0.532096266746521,
0.6268064975738525,
-0.4638659656047821,
-0.24731943011283875,
-0.4917922616004944,
-0.16607056558132172,
1.1137073040008545,
0.15594694018363953,
0.49235203862190247,
-0.554210901260376,
-0.17025062441825867,
-0.40863215923309326,
-0.3254954516887665,
0.39198237657546997,
0.6045587062835693,
0.36159080266952515,
-1.0656596422195435,
0.683596134185791,
-0.1955961436033249,
0.5221028327941895,
0.13741567730903625,
-0.03538971394300461,
0.716006338596344,
-0.33783313632011414,
-0.09702035039663315,
-0.04838445782661438,
1.0782476663589478,
0.7174303531646729,
0.21861541271209717,
0.1256791055202484,
-0.029915256425738335,
0.028612814843654633,
-0.16230440139770508,
-0.9633568525314331,
-0.4606201946735382,
0.6315876841545105,
-0.6871927976608276,
-0.5910870432853699,
0.08865450322628021,
-1.034265160560608,
-0.3106386959552765,
-0.2514302134513855,
0.27480292320251465,
-0.4178689420223236,
-0.5334456562995911,
0.17471349239349365,
-0.2652117908000946,
0.145081028342247,
0.053264256566762924,
-0.6786232590675354,
0.2004610002040863,
0.5083631277084351,
0.7763732075691223,
0.2480960339307785,
-0.27294787764549255,
-0.260484904050827,
-0.15908968448638916,
-0.1350690871477127,
0.6018853187561035,
-0.31186822056770325,
-0.39263683557510376,
-0.12958648800849915,
0.26133444905281067,
-0.02041637897491455,
-0.34525278210639954,
0.8830028176307678,
0.013983228243887424,
0.16911743581295013,
-0.5786334872245789,
-0.4309430718421936,
-0.0541960671544075,
0.23495039343833923,
-0.7950035929679871,
1.0373775959014893,
0.34273234009742737,
-1.0545475482940674,
0.16257546842098236,
-0.7612056136131287,
-0.3131006360054016,
0.0076049393974244595,
0.04939097538590431,
-0.8161686658859253,
-0.2000269591808319,
0.21989424526691437,
0.7081555724143982,
-0.3685251474380493,
-0.023251019418239594,
-0.5498388409614563,
-0.1233288124203682,
0.3890790343284607,
0.27618393301963806,
1.1590023040771484,
0.09817644208669662,
-0.19869112968444824,
0.07987646013498306,
-1.0019510984420776,
0.15925800800323486,
0.428352952003479,
-0.21940991282463074,
-0.06085372716188431,
-0.15824510157108307,
0.41233766078948975,
0.2445608228445053,
0.08645167946815491,
-0.5718839168548584,
0.4296454191207886,
-0.20871496200561523,
0.4560323655605316,
0.7446299195289612,
-0.010462150909006596,
0.3240320384502411,
-0.7012895345687866,
0.40613502264022827,
0.0694766640663147,
0.3430308401584625,
0.0017726769438013434,
-0.5871716141700745,
-0.5095304250717163,
-0.23025430738925934,
0.33252909779548645,
0.4949805438518524,
-0.668172299861908,
1.014864444732666,
-0.3356177508831024,
-0.8901633024215698,
-0.632534384727478,
0.08408122509717941,
0.1477707475423813,
0.5436234474182129,
0.4090019464492798,
-0.48506277799606323,
-0.6392395496368408,
-0.7142322063446045,
0.08941365778446198,
-0.2593410611152649,
0.16834692656993866,
0.4282332956790924,
0.8337355852127075,
-0.24779780209064484,
0.8131605386734009,
-0.6292926669120789,
-0.21586988866329193,
-0.29575079679489136,
-0.2907373607158661,
0.3908567726612091,
0.8053627014160156,
0.6243525743484497,
-0.8065289258956909,
-0.5056142210960388,
-0.20062954723834991,
-0.7141828536987305,
-0.07759752869606018,
-0.007573554292321205,
-0.2587989270687103,
-0.03337370231747627,
0.06365762650966644,
-0.6649408340454102,
0.5841732621192932,
0.5184997320175171,
-0.6078269481658936,
0.6460868120193481,
0.09518543630838394,
0.04385433718562126,
-1.3148099184036255,
0.36835700273513794,
0.2336559295654297,
0.06413516402244568,
-0.6101362109184265,
-0.24425718188285828,
0.006389943417161703,
-0.04170815274119377,
-0.0323169119656086,
0.6007561087608337,
-0.3109135329723358,
0.30906563997268677,
0.06969031691551208,
0.020271768793463707,
0.02033168077468872,
0.4406575858592987,
-0.052826013416051865,
0.31432628631591797,
1.117431640625,
-0.45383623242378235,
0.6989818811416626,
0.629507839679718,
-0.3457651436328888,
0.7880046367645264,
-0.8060739040374756,
0.01897352747619152,
-0.2141808122396469,
0.37499043345451355,
-0.7604156732559204,
-0.5450074672698975,
0.8761423826217651,
-0.66576087474823,
0.37696146965026855,
-0.2839818000793457,
-0.5970115065574646,
-0.7604831457138062,
-0.7213342785835266,
0.18238241970539093,
0.60848069190979,
-0.34826141595840454,
0.4575508236885071,
0.561037003993988,
0.09664706140756607,
-0.4336555302143097,
-0.7569413185119629,
-0.1154494360089302,
-0.39830198884010315,
-0.8120521306991577,
0.45514294505119324,
-0.29997026920318604,
-0.09013524651527405,
0.137790709733963,
0.02816948853433132,
0.12088517844676971,
0.0011424121912568808,
0.4249972999095917,
0.2953638434410095,
0.06788335740566254,
-0.05493126064538956,
-0.12675948441028595,
-0.26730141043663025,
0.09486815333366394,
-0.2043171375989914,
0.2993156909942627,
-0.25843220949172974,
-0.10731963068246841,
-0.7773328423500061,
0.18550872802734375,
0.4606129229068756,
-0.2272963523864746,
0.6996827721595764,
0.7763830423355103,
-0.25563326478004456,
0.010180178098380566,
-0.5012009143829346,
-0.155832439661026,
-0.42150917649269104,
0.0531969778239727,
-0.24024437367916107,
-0.5436129570007324,
0.9957438707351685,
0.20045632123947144,
0.08344713598489761,
0.6652215123176575,
0.5175246000289917,
-0.03213619068264961,
0.6878942847251892,
0.3890123963356018,
-0.32112136483192444,
0.49606114625930786,
-0.6861751675605774,
-0.21481764316558838,
-0.9185780882835388,
-0.43902587890625,
-0.4995422065258026,
-0.5417546629905701,
-0.9336877465248108,
-0.4080805778503418,
0.18020440638065338,
0.2106636017560959,
-0.26455971598625183,
0.4336124658584595,
-0.8981949090957642,
0.2037706971168518,
0.3876124620437622,
0.2952847480773926,
-0.12514673173427582,
0.10390277206897736,
0.05128653720021248,
0.122499480843544,
-0.5439951419830322,
-0.31792110204696655,
1.1745842695236206,
0.43388208746910095,
0.6055415868759155,
-0.044065140187740326,
0.8203914165496826,
0.01484313141554594,
0.20846417546272278,
-0.5375537872314453,
0.5017575621604919,
0.10321632027626038,
-0.45497989654541016,
-0.15945731103420258,
-0.4999498426914215,
-0.9421166181564331,
-0.11139357089996338,
-0.3757610023021698,
-0.7435610890388489,
0.4849086403846741,
0.07897555083036423,
-0.2591366469860077,
0.4547891914844513,
-0.5880922079086304,
0.8441160321235657,
-0.015024835243821144,
-0.41411304473876953,
0.19453753530979156,
-1.0392441749572754,
0.16443580389022827,
0.20435695350170135,
0.23963938653469086,
-0.4087207317352295,
-0.012386909686028957,
1.0091845989227295,
-0.8334226012229919,
0.9150522351264954,
-0.3269980251789093,
0.13056442141532898,
0.5733873248100281,
-0.25757068395614624,
0.48188063502311707,
0.12350195646286011,
-0.33014804124832153,
0.2719113230705261,
0.0059784892946481705,
-0.48657694458961487,
-0.38871705532073975,
0.6385547518730164,
-0.8097385764122009,
0.005593159236013889,
-0.3722758889198303,
-0.44449031352996826,
0.06960480660200119,
0.15669530630111694,
0.3092447519302368,
0.4363323152065277,
0.04676539823412895,
0.1462317556142807,
0.44041895866394043,
-0.21112388372421265,
0.26337501406669617,
0.02515128068625927,
-0.10001533478498459,
-0.7921751141548157,
0.9039335250854492,
0.16974757611751556,
0.05500632897019386,
-0.04373180493712425,
0.4764384627342224,
-0.3387397527694702,
-0.1990625262260437,
-0.677534282207489,
0.4014125168323517,
-0.42422550916671753,
-0.3592836260795593,
-0.4847496747970581,
-0.1858130395412445,
-0.5776407122612,
-0.10949049144983292,
-0.22118732333183289,
-0.5182265043258667,
-0.32240381836891174,
-0.15880811214447021,
1.0480823516845703,
0.4416399598121643,
-0.6956868171691895,
0.13512210547924042,
-0.5626477003097534,
0.3542858958244324,
-0.022709136828780174,
0.6196665167808533,
-0.015105045400559902,
-0.36170315742492676,
-0.22975850105285645,
0.07967734336853027,
-0.24806559085845947,
-0.773222804069519,
0.23467426002025604,
-0.03636661544442177,
0.35090652108192444,
0.1567302644252777,
0.13059845566749573,
0.6986603140830994,
-0.10509239137172699,
0.6395673751831055,
0.32534801959991455,
-0.8219283819198608,
0.7044789791107178,
-0.4902893602848053,
0.15993161499500275,
0.6782324910163879,
0.37730956077575684,
-0.702761173248291,
-0.10499872267246246,
-0.9026391506195068,
-0.8474797010421753,
0.8190248608589172,
0.47038760781288147,
0.07468690723180771,
0.2413119673728943,
0.5517752766609192,
-0.12141001224517822,
0.2705521583557129,
-0.6762904524803162,
-0.961561918258667,
-0.4444543123245239,
-0.32865869998931885,
0.06266508996486664,
-0.1285867542028427,
-0.2077285498380661,
-0.6929771900177002,
0.7939760088920593,
-0.06733162701129913,
0.2619810700416565,
0.4049779176712036,
0.37459757924079895,
-0.2485283613204956,
0.02776310220360756,
0.2128138691186905,
0.43277472257614136,
-0.24910122156143188,
-0.3152596652507782,
-0.20625337958335876,
-0.6510351896286011,
-0.10367043316364288,
0.5432053804397583,
-0.36995941400527954,
-0.1467028558254242,
0.26682475209236145,
0.8514180779457092,
-0.03744500130414963,
-0.2391081601381302,
0.538333535194397,
-0.04322969913482666,
-0.3563173711299896,
-0.359040230512619,
0.006284579634666443,
0.17437279224395752,
0.22614067792892456,
0.11918023228645325,
0.09769869595766068,
-0.10014397650957108,
-0.46370846033096313,
0.3663845956325531,
0.19211265444755554,
-0.34388497471809387,
-0.5081947445869446,
0.5662698745727539,
0.08677897602319717,
-0.11984245479106903,
0.5114957094192505,
-0.18551293015480042,
-0.6240806579589844,
0.7850582599639893,
0.10162758827209473,
0.7719139456748962,
-0.18790803849697113,
0.3397320508956909,
0.7818047404289246,
0.20945978164672852,
-0.058731287717819214,
0.5877052545547485,
-0.21893280744552612,
-0.6692984700202942,
-0.08830945938825607,
-0.5531377792358398,
-0.15437810122966766,
0.10075511783361435,
-0.8294771313667297,
0.410794198513031,
-0.4780406355857849,
-0.2078092396259308,
0.017871936783194542,
0.4112565219402313,
-0.6850129961967468,
0.1337839961051941,
-0.024404481053352356,
0.9805929660797119,
-0.9196131229400635,
0.5042635202407837,
0.6607199311256409,
-0.6564340591430664,
-1.1796406507492065,
-0.13727235794067383,
0.15432313084602356,
-0.6509852409362793,
0.20582328736782074,
0.2603694498538971,
0.4898674190044403,
-0.007954126223921776,
-0.8890827298164368,
-0.6380228400230408,
1.1450666189193726,
0.027367684990167618,
-0.24140512943267822,
0.37773397564888,
0.11485493928194046,
0.5433640480041504,
-0.2774950861930847,
0.3111174702644348,
0.628680944442749,
0.6980913281440735,
0.2271113246679306,
-0.7417826652526855,
0.3221336007118225,
-0.611083984375,
-0.26294660568237305,
0.10736185312271118,
-0.9516252875328064,
0.6220816373825073,
-0.22004859149456024,
-0.09943874180316925,
0.1529671847820282,
0.6078441739082336,
0.47293585538864136,
0.3446037769317627,
0.4289891719818115,
0.800847053527832,
0.8183751106262207,
-0.31028297543525696,
1.2458239793777466,
-0.2948001027107239,
0.5906934142112732,
0.7313055396080017,
0.006770290434360504,
0.47113317251205444,
0.21523547172546387,
-0.3553756773471832,
0.6415446400642395,
0.6883512139320374,
-0.44958555698394775,
0.27401044964790344,
0.4833466112613678,
-0.07859347015619278,
-0.08886085450649261,
-0.27884769439697266,
-0.6715837121009827,
0.26475128531455994,
0.2189645767211914,
-0.28804540634155273,
-0.020671818405389786,
-0.03847581893205643,
0.3383137285709381,
-0.04992884397506714,
-0.3160307705402374,
0.5830079913139343,
0.07130970060825348,
-0.3145650327205658,
0.5145120620727539,
-0.1494765430688858,
0.6939536333084106,
-0.6071972846984863,
0.13305945694446564,
-0.053222257643938065,
0.09801065921783447,
-0.613012969493866,
-1.0970017910003662,
0.2621191740036011,
-0.08441291004419327,
-0.23734180629253387,
-0.30294933915138245,
0.7245466113090515,
-0.40126216411590576,
-0.7240465879440308,
0.18058514595031738,
0.26352620124816895,
0.31661441922187805,
0.1049228310585022,
-1.2697739601135254,
0.4959060549736023,
0.1548975259065628,
-0.4870664179325104,
0.12352999299764633,
0.5474938154220581,
0.18166592717170715,
0.571211040019989,
0.7093383073806763,
0.2704116404056549,
-0.22253166139125824,
0.12021450698375702,
1.069304347038269,
-0.630973219871521,
-0.4552851617336273,
-0.8191934823989868,
0.8470809459686279,
-0.3617725074291229,
-0.3975234925746918,
0.7051882147789001,
0.7972750067710876,
0.8098394870758057,
0.024837521836161613,
0.8428837060928345,
-0.6645687818527222,
0.6302751302719116,
-0.21203511953353882,
0.9553003907203674,
-0.6691346764564514,
-0.0909334048628807,
-0.6672663688659668,
-0.5224775671958923,
-0.3526231348514557,
0.6894127130508423,
-0.1688225120306015,
0.18808895349502563,
0.2928431034088135,
0.8745655417442322,
0.04254361614584923,
0.1578948199748993,
-0.25661778450012207,
0.2747025489807129,
0.26028886437416077,
0.5459861159324646,
0.5416285991668701,
-0.9024048447608948,
0.40153005719184875,
-0.8309833407402039,
-0.27421343326568604,
0.01172209158539772,
-0.8389556407928467,
-0.8964741230010986,
-0.9020408987998962,
-0.6757457852363586,
-0.7935847640037537,
-0.34852030873298645,
1.0531320571899414,
0.7156492471694946,
-0.7239711284637451,
-0.30444055795669556,
0.07926555722951889,
0.2945021688938141,
-0.08642945438623428,
-0.3132145404815674,
0.7486922144889832,
0.41233354806900024,
-0.6043496131896973,
-0.17502857744693756,
0.05162772908806801,
0.28339889645576477,
0.08953757584095001,
-0.10130434483289719,
-0.05191625654697418,
-0.33641186356544495,
0.31242185831069946,
0.48567044734954834,
-0.3588223159313202,
-0.11893913149833679,
-0.286906898021698,
0.009721030481159687,
0.22891582548618317,
0.5220052599906921,
-0.548267662525177,
0.2253250926733017,
0.6237303614616394,
0.3037688136100769,
0.4371398389339447,
0.16303323209285736,
0.050848327577114105,
-0.412439227104187,
0.08366864174604416,
0.020861493423581123,
0.36148780584335327,
0.40008190274238586,
-0.39033040404319763,
0.7620339393615723,
0.5219247937202454,
-0.5277392268180847,
-0.7725483179092407,
-0.07215225696563721,
-1.341102123260498,
0.1198948472738266,
1.0081220865249634,
0.06504712253808975,
-0.5115260481834412,
0.008928461000323296,
-0.23731675744056702,
0.19879968464374542,
-0.576637864112854,
0.5504018068313599,
0.5570858716964722,
-0.06789395213127136,
0.15297409892082214,
-0.4196932911872864,
0.6516472697257996,
0.02021566592156887,
-0.9935286045074463,
0.19685828685760498,
0.3993436396121979,
0.44153985381126404,
0.3115377128124237,
0.7659232020378113,
-0.26567864418029785,
0.15506084263324738,
-0.09476956725120544,
0.3261435627937317,
-0.2056337594985962,
0.12704309821128845,
-0.2906568646430969,
-0.1516188085079193,
-0.47938066720962524,
-0.2588845193386078
]
|
huggingartists/phish | huggingartists | 2022-10-25T09:41:13Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/phish"
## 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.372501 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('https://images.genius.com/df85b83684e95f87794aa09580ee0463.919x919x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/phish">
<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">Phish</div>
<a href="https://genius.com/artists/phish">
<div style="text-align: center; font-size: 14px;">@phish</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/phish).
### 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/phish")
```
## 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|
|------:|---------:|---:|
|394| -| -|
'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/phish")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.5813619494438171,
-0.5429890751838684,
0.032060328871011734,
0.25322335958480835,
-0.26203465461730957,
-0.02778594195842743,
-0.2992488443851471,
-0.4399600327014923,
0.8688741326332092,
0.32921499013900757,
-0.8933079838752747,
-0.8491838574409485,
-0.5055830478668213,
0.1499650478363037,
-0.15988367795944214,
1.2715415954589844,
-0.1105390340089798,
-0.3452829420566559,
-0.24835205078125,
-0.17389707267284393,
-0.20812951028347015,
-0.2979627549648285,
-0.29254060983657837,
-0.32877227663993835,
0.4008823037147522,
0.5379243493080139,
0.7348880767822266,
0.9480851292610168,
0.6006704568862915,
0.3264784812927246,
-0.03206095099449158,
-0.0658150389790535,
-0.3926703929901123,
-0.08313989639282227,
0.10583794116973877,
-0.2505394220352173,
-0.6686280369758606,
0.2203110307455063,
0.5127175450325012,
0.42416834831237793,
-0.1016373485326767,
0.4685332179069519,
0.008179218508303165,
0.8129270076751709,
-0.337933748960495,
0.4694170653820038,
-0.2242727279663086,
-0.1616881638765335,
-0.40495556592941284,
-0.037774331867694855,
0.1550409346818924,
-0.5838723182678223,
0.03374139219522476,
-0.787451982498169,
0.03338960185647011,
0.0799555853009224,
0.9478715658187866,
-0.019409973174333572,
0.0826203003525734,
-0.17917634546756744,
-0.18199171125888824,
0.496874064207077,
-0.6565180420875549,
0.018234465271234512,
0.6013501882553101,
0.17466385662555695,
0.03827435523271561,
-0.6339640617370605,
-0.6357054114341736,
0.10044928640127182,
-0.14984653890132904,
0.22441905736923218,
-0.19785259664058685,
-0.2710065543651581,
0.531671941280365,
0.6457409262657166,
-0.5766802430152893,
-0.21624672412872314,
-0.5470110177993774,
-0.1519043892621994,
1.1829705238342285,
0.17699626088142395,
0.4774959087371826,
-0.5109783411026001,
-0.11964210867881775,
-0.4223096966743469,
-0.25724613666534424,
0.3498748540878296,
0.5828232765197754,
0.48431167006492615,
-1.0448204278945923,
0.6463929414749146,
-0.1977284997701645,
0.5269466638565063,
0.20349133014678955,
-0.05884664133191109,
0.7701016664505005,
-0.36909711360931396,
-0.16503265500068665,
-0.11197508871555328,
1.0691680908203125,
0.6353429555892944,
0.17945678532123566,
0.14057210087776184,
-0.011239472776651382,
0.040504612028598785,
-0.1588590145111084,
-0.8408595323562622,
-0.49720364809036255,
0.6629340648651123,
-0.6310880184173584,
-0.6291496157646179,
0.17212139070034027,
-1.0815449953079224,
-0.31793972849845886,
-0.23994216322898865,
0.22347912192344666,
-0.41953369975090027,
-0.5624312162399292,
0.22030407190322876,
-0.3307705819606781,
0.21268042922019958,
0.02684756927192211,
-0.709038496017456,
0.18952177464962006,
0.5987352728843689,
0.7425886392593384,
0.18120987713336945,
-0.3464694321155548,
-0.3000589907169342,
-0.15284030139446259,
-0.1386805772781372,
0.6458959579467773,
-0.33211445808410645,
-0.36461931467056274,
-0.09685464948415756,
0.29941216111183167,
-0.007104506716132164,
-0.2397918552160263,
0.8771472573280334,
0.01138951163738966,
0.23859333992004395,
-0.6238730549812317,
-0.45800095796585083,
0.030880145728588104,
0.24551482498645782,
-0.7625242471694946,
0.9845157861709595,
0.3113292455673218,
-1.0983784198760986,
0.16017982363700867,
-0.7687752842903137,
-0.35640060901641846,
0.05831046402454376,
0.04431535303592682,
-0.7901560068130493,
-0.19566836953163147,
0.164902463555336,
0.6974854469299316,
-0.3221565783023834,
-0.05042368173599243,
-0.693349301815033,
-0.18497107923030853,
0.3748161494731903,
0.22897741198539734,
1.247078537940979,
0.05440612509846687,
-0.21729063987731934,
0.1017783135175705,
-0.9708736538887024,
0.07755051553249359,
0.45205116271972656,
-0.15472236275672913,
-0.13086260855197906,
-0.2694457471370697,
0.4553036391735077,
0.25624459981918335,
-0.014973985962569714,
-0.5365428328514099,
0.4119695723056793,
-0.29370635747909546,
0.44790592789649963,
0.7771119475364685,
0.06746014952659607,
0.3551492691040039,
-0.6498019695281982,
0.390526682138443,
0.04725145921111107,
0.36366206407546997,
-0.05894531309604645,
-0.5496907234191895,
-0.48149070143699646,
-0.2557106018066406,
0.2711182236671448,
0.46577051281929016,
-0.6442990899085999,
0.982406497001648,
-0.38958555459976196,
-0.8572444319725037,
-0.5833625793457031,
0.09841927886009216,
0.1632017344236374,
0.5125444531440735,
0.36714833974838257,
-0.43999218940734863,
-0.5545250177383423,
-0.6895761489868164,
0.06739640980958939,
-0.2923014163970947,
0.13165521621704102,
0.37383928894996643,
0.8333398103713989,
-0.2115694284439087,
0.770872950553894,
-0.6461859345436096,
-0.21234959363937378,
-0.2108486145734787,
-0.3128635287284851,
0.3245805501937866,
0.8067569136619568,
0.666589081287384,
-0.8528198599815369,
-0.4731341004371643,
-0.25021040439605713,
-0.6800292730331421,
-0.0675659328699112,
-0.05166047438979149,
-0.27613237500190735,
-0.03442898765206337,
0.07646343111991882,
-0.7230022549629211,
0.5530792474746704,
0.42560040950775146,
-0.6869544386863708,
0.5924103260040283,
0.11658111959695816,
0.09342627227306366,
-1.251667857170105,
0.3886543810367584,
0.25578004121780396,
0.10234402120113373,
-0.633985698223114,
-0.2268490493297577,
-0.009341263212263584,
-0.040213510394096375,
-0.10440874844789505,
0.6254783868789673,
-0.3199937343597412,
0.26380228996276855,
0.152566060423851,
0.039530277252197266,
0.08572555333375931,
0.49285638332366943,
-0.10909769684076309,
0.2652011811733246,
1.0741938352584839,
-0.3862471282482147,
0.7601422071456909,
0.5584840774536133,
-0.19163578748703003,
0.8878994584083557,
-0.7539564371109009,
0.015297147445380688,
-0.1954445242881775,
0.40727925300598145,
-0.8170412182807922,
-0.6453049778938293,
0.9042389392852783,
-0.7138844728469849,
0.38443470001220703,
-0.19052216410636902,
-0.5776185989379883,
-0.8195527195930481,
-0.7623738050460815,
0.18185895681381226,
0.5388815402984619,
-0.364379346370697,
0.4211103618144989,
0.576503574848175,
0.13219167292118073,
-0.3807666003704071,
-0.8319438099861145,
-0.18319128453731537,
-0.4419953227043152,
-0.8188818097114563,
0.468300998210907,
-0.31281033158302307,
-0.17817455530166626,
0.1098848506808281,
0.06218007951974869,
0.08928253501653671,
-0.052517086267471313,
0.41192111372947693,
0.3081567883491516,
0.0668342337012291,
0.04290097951889038,
-0.10598496347665787,
-0.2272607535123825,
0.12577012181282043,
-0.2794603705406189,
0.2419825792312622,
-0.2523004412651062,
-0.2413858026266098,
-0.7410451173782349,
0.19879108667373657,
0.4850934147834778,
-0.27976128458976746,
0.6316900849342346,
0.7818561792373657,
-0.3229919970035553,
-0.0443316288292408,
-0.4922280013561249,
-0.22054676711559296,
-0.4171781837940216,
0.0007686553872190416,
-0.19470033049583435,
-0.5628528594970703,
0.9448067545890808,
0.2821172773838043,
0.13326436281204224,
0.6824888586997986,
0.4766063392162323,
-0.07750983536243439,
0.6286716461181641,
0.3987624943256378,
-0.2959528863430023,
0.48646700382232666,
-0.6307029128074646,
-0.16224396228790283,
-0.7579282522201538,
-0.41045671701431274,
-0.5139905214309692,
-0.46441832184791565,
-0.8891783952713013,
-0.4160167872905731,
0.14271771907806396,
0.11586224287748337,
-0.2690698504447937,
0.42056894302368164,
-0.9228623509407043,
0.22627124190330505,
0.3745027780532837,
0.2753593325614929,
-0.11826122552156448,
0.14178988337516785,
0.10106053203344345,
0.11491142958402634,
-0.5038638114929199,
-0.18321765959262848,
1.2110190391540527,
0.4701870083808899,
0.5485503673553467,
-0.0541074201464653,
0.7699233889579773,
0.10507116466760635,
0.15912891924381256,
-0.46764078736305237,
0.463481068611145,
0.06873613595962524,
-0.5085411667823792,
-0.20677779614925385,
-0.4518492817878723,
-0.8812739253044128,
-0.16261224448680878,
-0.4112139344215393,
-0.7270835638046265,
0.491260290145874,
0.08164757490158081,
-0.265489786863327,
0.41068851947784424,
-0.5385774374008179,
0.8386701345443726,
-0.05233342945575714,
-0.4557105302810669,
0.2207372486591339,
-0.9979860782623291,
0.24165616929531097,
0.17004841566085815,
0.27355679869651794,
-0.3888499438762665,
0.03607134893536568,
1.0209625959396362,
-0.8125525712966919,
0.8830791711807251,
-0.2871722877025604,
0.13287003338336945,
0.4900188148021698,
-0.33533018827438354,
0.4291369616985321,
0.15643219649791718,
-0.3102182447910309,
0.2915838360786438,
0.027200672775506973,
-0.5043803453445435,
-0.47848960757255554,
0.6898360252380371,
-0.6999809145927429,
0.009816617704927921,
-0.4017779231071472,
-0.3820750415325165,
0.0414646714925766,
0.1993241012096405,
0.35486385226249695,
0.39736583828926086,
0.03761144354939461,
0.12667056918144226,
0.5237665772438049,
-0.17131979763507843,
0.259878545999527,
0.03216182813048363,
-0.1158156767487526,
-0.8008724451065063,
0.8710891604423523,
0.14585375785827637,
-0.013737889006733894,
0.000979255186393857,
0.4134582281112671,
-0.33819374442100525,
-0.16089707612991333,
-0.5753738880157471,
0.4906345009803772,
-0.4475173056125641,
-0.365948349237442,
-0.507463276386261,
-0.21302174031734467,
-0.7387257218360901,
-0.2128865122795105,
-0.213032066822052,
-0.48622870445251465,
-0.29639726877212524,
-0.24777598679065704,
1.0576796531677246,
0.3893457055091858,
-0.6873185038566589,
0.14604096114635468,
-0.46832433342933655,
0.29875582456588745,
-0.03880899026989937,
0.6665819883346558,
-0.09831845015287399,
-0.3347247242927551,
-0.1716943383216858,
0.09145737439393997,
-0.18085555732250214,
-0.8332180380821228,
0.22350725531578064,
-0.07443247735500336,
0.3886175751686096,
0.2082199901342392,
0.1921994388103485,
0.6749457120895386,
0.0312831774353981,
0.6779509782791138,
0.29157358407974243,
-0.8244127631187439,
0.7277517914772034,
-0.5802624225616455,
0.16457495093345642,
0.7162392735481262,
0.33376988768577576,
-0.67029869556427,
-0.13539348542690277,
-0.9461425542831421,
-0.8263948559761047,
0.7997140884399414,
0.45998623967170715,
0.07209029048681259,
0.23341907560825348,
0.5624929070472717,
-0.1863640546798706,
0.25004416704177856,
-0.6778216361999512,
-0.9303911924362183,
-0.3902820348739624,
-0.33928531408309937,
0.00851726159453392,
-0.10552756488323212,
-0.211917445063591,
-0.7039259672164917,
0.798086941242218,
-0.06686215102672577,
0.24438728392124176,
0.36978331208229065,
0.4151577353477478,
-0.2510235905647278,
0.013144392520189285,
0.233021542429924,
0.41093236207962036,
-0.21629567444324493,
-0.287590891122818,
-0.19278496503829956,
-0.6325648427009583,
-0.12967537343502045,
0.5383077263832092,
-0.37018680572509766,
-0.09298047423362732,
0.3858787715435028,
0.8198978900909424,
0.06475041806697845,
-0.24764175713062286,
0.6005522012710571,
-0.060204893350601196,
-0.35737961530685425,
-0.3843327760696411,
0.01581232063472271,
0.15118379890918732,
0.17742769420146942,
0.10091796517372131,
0.06033662334084511,
-0.04895719513297081,
-0.3892287313938141,
0.4539760947227478,
0.21003861725330353,
-0.3133930265903473,
-0.4901108741760254,
0.5643572211265564,
0.09766659140586853,
-0.19149817526340485,
0.537655770778656,
-0.1455775946378708,
-0.5499865412712097,
0.7362213730812073,
0.05786532908678055,
0.8155319094657898,
-0.22158603370189667,
0.3212757706642151,
0.7299277186393738,
0.21832700073719025,
-0.02379993535578251,
0.5044596195220947,
-0.23034746944904327,
-0.5627707242965698,
0.04615930840373039,
-0.5582160949707031,
-0.08943565934896469,
0.12948448956012726,
-0.8226413726806641,
0.5143381953239441,
-0.5237665772438049,
-0.2030666321516037,
0.09642283618450165,
0.45567062497138977,
-0.6972171664237976,
0.1293066143989563,
-0.06181298568844795,
1.0605322122573853,
-1.038623332977295,
0.5143144130706787,
0.6332544088363647,
-0.6821131110191345,
-1.1853231191635132,
-0.07372921705245972,
0.3159200847148895,
-0.4957893192768097,
0.1370808333158493,
0.1907733529806137,
0.5337575674057007,
-0.07552880048751831,
-0.8429638743400574,
-0.6538274884223938,
1.1714569330215454,
0.044006671756505966,
-0.2201845943927765,
0.27157923579216003,
0.13122022151947021,
0.6257005333900452,
-0.3317990303039551,
0.31290367245674133,
0.6216122508049011,
0.7074750065803528,
0.2717377841472626,
-0.7399498820304871,
0.2786005437374115,
-0.6748644113540649,
-0.2535116970539093,
0.0013205191353335977,
-0.9132785201072693,
0.6511209607124329,
-0.16453184187412262,
-0.10534611344337463,
-0.0529635064303875,
0.6168075799942017,
0.5021616816520691,
0.43140220642089844,
0.41986533999443054,
0.6920620203018188,
0.8511857986450195,
-0.2641740143299103,
1.179714322090149,
-0.306852251291275,
0.586768627166748,
0.8015089631080627,
0.02511977218091488,
0.5061360597610474,
0.2466173768043518,
-0.32862889766693115,
0.5408647060394287,
0.7415361404418945,
-0.4668360948562622,
0.24611620604991913,
0.4303615689277649,
-0.025994235649704933,
-0.058273959904909134,
-0.16625744104385376,
-0.6668527722358704,
0.2998901307582855,
0.21262380480766296,
-0.32030317187309265,
0.018757924437522888,
0.007793475408107042,
0.34570473432540894,
-0.044854357838630676,
-0.24244198203086853,
0.586123526096344,
0.0020298934541642666,
-0.3206620514392853,
0.47273072600364685,
-0.12993036210536957,
0.7309088110923767,
-0.599933385848999,
0.14425204694271088,
-0.1304037719964981,
0.10024900734424591,
-0.6313152313232422,
-1.0241221189498901,
0.3811089098453522,
-0.08625198900699615,
-0.2440136969089508,
-0.3008427619934082,
0.7615806460380554,
-0.4305700361728668,
-0.7871900200843811,
0.2343195527791977,
0.19501323997974396,
0.2704782783985138,
0.14702779054641724,
-1.269721508026123,
0.5888182520866394,
0.13505426049232483,
-0.497707724571228,
0.10442423075437546,
0.5061517357826233,
0.185585618019104,
0.5665165781974792,
0.7481485605239868,
0.288562536239624,
-0.2240982949733734,
0.028515152633190155,
1.058424949645996,
-0.5602586269378662,
-0.5345738530158997,
-0.801517903804779,
0.8601421117782593,
-0.4249960780143738,
-0.391806960105896,
0.7665917873382568,
0.8028817176818848,
0.8841636180877686,
0.04640918970108032,
0.8181200623512268,
-0.6008901596069336,
0.652509331703186,
-0.15418323874473572,
0.9679983854293823,
-0.6915410757064819,
0.008325950242578983,
-0.7513725161552429,
-0.4855351448059082,
-0.39888840913772583,
0.6437792181968689,
-0.2086680680513382,
0.1849525272846222,
0.2866551876068115,
0.9130622148513794,
-0.014747320674359798,
0.19105635583400726,
-0.25213295221328735,
0.2522924244403839,
0.3275052011013031,
0.5547993779182434,
0.35947519540786743,
-0.8871732950210571,
0.35355478525161743,
-0.8648205399513245,
-0.31634294986724854,
-0.0005001361132599413,
-0.7784843444824219,
-0.8759663701057434,
-1.0055370330810547,
-0.6833529472351074,
-0.8079617619514465,
-0.2791961431503296,
1.0630465745925903,
0.74737149477005,
-0.7224056124687195,
-0.27637264132499695,
0.08012000471353531,
0.30522486567497253,
-0.0906141921877861,
-0.32861655950546265,
0.6884403824806213,
0.41523507237434387,
-0.5640576481819153,
-0.17429296672344208,
0.12261141836643219,
0.24509237706661224,
-0.028412291780114174,
-0.09266626089811325,
-0.10554743558168411,
-0.22943809628486633,
0.26788070797920227,
0.5150354504585266,
-0.3960686922073364,
-0.08340103179216385,
-0.21588698029518127,
-0.06677530705928802,
0.13862711191177368,
0.5603878498077393,
-0.47782304883003235,
0.1924441158771515,
0.6944581270217896,
0.30060359835624695,
0.39958545565605164,
0.14714784920215607,
0.05515117198228836,
-0.3952239751815796,
0.04373807832598686,
-0.008182825520634651,
0.29491814970970154,
0.4061585068702698,
-0.5020214915275574,
0.6977279782295227,
0.5946453213691711,
-0.44572433829307556,
-0.8795084357261658,
-0.16197825968265533,
-1.2842026948928833,
0.06896349042654037,
1.0510269403457642,
0.0026453896425664425,
-0.5348907113075256,
0.02670549787580967,
-0.12030161917209625,
0.15591150522232056,
-0.5376536846160889,
0.5123245716094971,
0.5636906027793884,
-0.08822792023420334,
0.07708396762609482,
-0.2834494709968567,
0.7286643385887146,
-0.08097001165151596,
-1.0275754928588867,
0.26192259788513184,
0.45686009526252747,
0.466025173664093,
0.3179517984390259,
0.9082013368606567,
-0.2456909418106079,
0.15977156162261963,
0.004366300534456968,
0.20365844666957855,
-0.24269135296344757,
0.05028940737247467,
-0.40320050716400146,
-0.06606467068195343,
-0.5529919266700745,
-0.1878080517053604
]
|
huggingartists/placebo | huggingartists | 2022-10-25T09:41:38Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/placebo"
## 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.281462 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('https://images.genius.com/c7e467de49cab7cdcc1d52c9c95ccd47.931x931x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/placebo">
<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">Placebo</div>
<a href="https://genius.com/artists/placebo">
<div style="text-align: center; font-size: 14px;">@placebo</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/placebo).
### 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/placebo")
```
## 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|
|------:|---------:|---:|
|255| -| -|
'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/placebo")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.5673016905784607,
-0.5478023886680603,
0.11441390216350555,
0.28804317116737366,
-0.20666855573654175,
-0.021297896280884743,
-0.2899700701236725,
-0.4020524322986603,
0.8975391387939453,
0.3554627299308777,
-0.8203486800193787,
-0.8825613856315613,
-0.6063960194587708,
0.13960646092891693,
-0.0578186996281147,
1.2661490440368652,
-0.28436383605003357,
-0.296340674161911,
-0.3068104386329651,
-0.2755299508571625,
-0.32897666096687317,
-0.33369821310043335,
-0.2916547954082489,
-0.3926945626735687,
0.37373241782188416,
0.4980064034461975,
0.7211371660232544,
0.7783374190330505,
0.5499786138534546,
0.34453755617141724,
-0.12270750105381012,
-0.033789023756980896,
-0.3606804609298706,
-0.19642189145088196,
0.1615324318408966,
-0.33328545093536377,
-0.7222608923912048,
0.2604803740978241,
0.47337648272514343,
0.46622100472450256,
-0.16801296174526215,
0.43568578362464905,
0.06989787518978119,
0.8107001781463623,
-0.29424941539764404,
0.4231525659561157,
-0.20718076825141907,
-0.10708441585302353,
-0.2556290924549103,
0.07209384441375732,
0.18557968735694885,
-0.6162330508232117,
-0.05726521462202072,
-0.7751258611679077,
0.06725560873746872,
0.04538638889789581,
1.0040600299835205,
0.06348223239183426,
0.10427480936050415,
-0.23062703013420105,
-0.11282994598150253,
0.4627143442630768,
-0.6450783610343933,
-0.08218294382095337,
0.6284011006355286,
0.1555418223142624,
-0.06469263136386871,
-0.6214056611061096,
-0.6521355509757996,
0.04999139904975891,
-0.21240893006324768,
0.3112189471721649,
-0.14436915516853333,
-0.3279520571231842,
0.5275360345840454,
0.56977778673172,
-0.5458240509033203,
-0.2811663746833801,
-0.5345595479011536,
-0.10336703807115555,
1.1579965353012085,
0.11567257344722748,
0.43114712834358215,
-0.5361198782920837,
-0.20399513840675354,
-0.3627846837043762,
-0.2717404067516327,
0.3214070200920105,
0.5000776648521423,
0.4295206367969513,
-1.0355807542800903,
0.6694777607917786,
-0.12436653673648834,
0.5253205895423889,
0.13480335474014282,
0.004104971420019865,
0.7956694960594177,
-0.36511874198913574,
-0.14994315803050995,
-0.04900195449590683,
1.0353283882141113,
0.6093676090240479,
0.1015520915389061,
0.11878195405006409,
-0.02858608588576317,
0.046480726450681686,
-0.1071539893746376,
-0.793351411819458,
-0.4275045096874237,
0.7048476338386536,
-0.6200912594795227,
-0.5750460624694824,
0.14674034714698792,
-0.8552526235580444,
-0.2345476895570755,
-0.27323415875434875,
0.3425641357898712,
-0.43438297510147095,
-0.5261414051055908,
0.1834562122821808,
-0.2760891616344452,
0.11059384793043137,
0.029530225321650505,
-0.5832322239875793,
0.19688843190670013,
0.5961592793464661,
0.7934334874153137,
0.17736028134822845,
-0.3174798786640167,
-0.24612385034561157,
-0.16012299060821533,
-0.15757358074188232,
0.7050336599349976,
-0.2908725440502167,
-0.3914264738559723,
-0.16517099738121033,
0.3859905004501343,
-0.05817257612943649,
-0.31376275420188904,
0.8524925112724304,
0.07293020188808441,
0.23363830149173737,
-0.6547507047653198,
-0.46815574169158936,
0.017874151468276978,
0.32176709175109863,
-0.7450753450393677,
1.0710214376449585,
0.33537501096725464,
-0.961573600769043,
0.23451165854930878,
-0.8459588289260864,
-0.373847633600235,
0.048500463366508484,
0.09989362210035324,
-0.7802400588989258,
-0.1296699196100235,
0.15784761309623718,
0.6786486506462097,
-0.2595440745353699,
0.08945148438215256,
-0.6303993463516235,
-0.159759059548378,
0.41434434056282043,
0.28768980503082275,
1.1568056344985962,
0.1321018785238266,
-0.1442089080810547,
0.11598671972751617,
-0.9118870496749878,
0.09660904109477997,
0.4258551001548767,
-0.17933957278728485,
-0.15347294509410858,
-0.268123596906662,
0.3789173364639282,
0.2819671034812927,
0.06712812930345535,
-0.5817965269088745,
0.4287078380584717,
-0.20388749241828918,
0.4838537573814392,
0.6984223127365112,
0.00998937152326107,
0.31693142652511597,
-0.6181945204734802,
0.40464866161346436,
0.11960344761610031,
0.40228307247161865,
0.030740469694137573,
-0.5507752299308777,
-0.4178686738014221,
-0.2334347665309906,
0.3738372027873993,
0.4269416034221649,
-0.687072217464447,
1.0838348865509033,
-0.2768755853176117,
-0.7936545610427856,
-0.6420356631278992,
0.1146324947476387,
0.18470564484596252,
0.5285539031028748,
0.38491690158843994,
-0.4805901348590851,
-0.5427395105361938,
-0.6832091808319092,
0.05569984018802643,
-0.21642324328422546,
0.13045065104961395,
0.4266963303089142,
0.875144362449646,
-0.2377762794494629,
0.8410582542419434,
-0.6958721876144409,
-0.3073651194572449,
-0.2588838040828705,
-0.30613094568252563,
0.4007706046104431,
0.7805113196372986,
0.6416306495666504,
-0.8842253088951111,
-0.4549890458583832,
-0.2882688641548157,
-0.7351593971252441,
-0.09550636261701584,
-0.03251657262444496,
-0.3112969398498535,
-0.04689642786979675,
0.117514967918396,
-0.6912124156951904,
0.5629948377609253,
0.5124302506446838,
-0.6988295912742615,
0.5144657492637634,
0.031238973140716553,
0.059860941022634506,
-1.3437803983688354,
0.40082475543022156,
0.25004568696022034,
0.0545392706990242,
-0.5673763155937195,
-0.32419848442077637,
-0.018291814252734184,
-0.05678020045161247,
-0.11720312386751175,
0.6567026376724243,
-0.32883867621421814,
0.2614119052886963,
0.13240867853164673,
0.11417993158102036,
0.11216049641370773,
0.4476729929447174,
-0.05240336433053017,
0.26658928394317627,
0.947986364364624,
-0.3525890111923218,
0.5941765308380127,
0.6623353958129883,
-0.22224722802639008,
0.8540390729904175,
-0.8141413927078247,
-0.029614927247166634,
-0.22684451937675476,
0.4458416700363159,
-0.8937853574752808,
-0.6095395088195801,
0.832101047039032,
-0.6940031051635742,
0.3704180419445038,
-0.18880191445350647,
-0.4870598018169403,
-0.804917573928833,
-0.6532323360443115,
0.11487653851509094,
0.5143395662307739,
-0.3483077883720398,
0.39912670850753784,
0.617878258228302,
0.10019451379776001,
-0.3684944808483124,
-0.8226625323295593,
-0.10886412858963013,
-0.3885152339935303,
-0.74503493309021,
0.4638330042362213,
-0.28453314304351807,
-0.08172356337308884,
0.1623232215642929,
0.09314146637916565,
0.15534502267837524,
-0.00620541675016284,
0.3917486071586609,
0.2514567971229553,
0.15008196234703064,
0.008291424252092838,
-0.054274726659059525,
-0.272396057844162,
0.07959083467721939,
-0.17380474507808685,
0.20904693007469177,
-0.2532614767551422,
-0.16754020750522614,
-0.6017120480537415,
0.2323382943868637,
0.3617565929889679,
-0.18974104523658752,
0.6910129189491272,
0.7500908374786377,
-0.2668428421020508,
-0.054179638624191284,
-0.4812447726726532,
-0.1811814308166504,
-0.41260015964508057,
0.03909454122185707,
-0.22392874956130981,
-0.5983861088752747,
0.9686814546585083,
0.1914503425359726,
0.02875472418963909,
0.6181357502937317,
0.5155766606330872,
-0.05027955025434494,
0.6595984101295471,
0.33715924620628357,
-0.20177781581878662,
0.5450077056884766,
-0.6451427340507507,
-0.1805116832256317,
-0.8772797584533691,
-0.44031140208244324,
-0.40947210788726807,
-0.5640725493431091,
-0.7628522515296936,
-0.44941961765289307,
0.21470075845718384,
0.18883445858955383,
-0.19508573412895203,
0.4681144952774048,
-0.9841694831848145,
0.2619587182998657,
0.34430333971977234,
0.3222430944442749,
-0.15201392769813538,
0.07619840651750565,
0.05042123422026634,
0.11476697772741318,
-0.6338268518447876,
-0.26437872648239136,
1.1344404220581055,
0.47669118642807007,
0.5645075440406799,
-0.09655746817588806,
0.8045757412910461,
0.09796693176031113,
0.34325188398361206,
-0.5182642340660095,
0.4811377227306366,
0.01714513637125492,
-0.5063354969024658,
-0.10605690628290176,
-0.4877435564994812,
-0.914402186870575,
-0.08573233336210251,
-0.3789198398590088,
-0.650398850440979,
0.5335568785667419,
0.12488234788179398,
-0.26833125948905945,
0.34933024644851685,
-0.6944104433059692,
0.8895331621170044,
-0.1313268542289734,
-0.4513451159000397,
0.32244673371315,
-1.0518041849136353,
0.15682470798492432,
0.23516035079956055,
0.2549031972885132,
-0.4106222987174988,
0.06800390779972076,
1.0291165113449097,
-0.8271317481994629,
0.9372403621673584,
-0.40917596220970154,
0.12048786878585815,
0.5738629102706909,
-0.28782975673675537,
0.43299418687820435,
0.10295317322015762,
-0.24830245971679688,
0.37983590364456177,
0.003924473654478788,
-0.47726452350616455,
-0.4221026301383972,
0.681618332862854,
-0.7054397463798523,
0.04944686219096184,
-0.3465844392776489,
-0.4140917658805847,
0.049153026193380356,
0.17787256836891174,
0.2829338312149048,
0.3523366451263428,
0.004846574738621712,
0.10585985332727432,
0.41857093572616577,
-0.20046022534370422,
0.2825224995613098,
0.053190603852272034,
-0.045210324227809906,
-0.8212769031524658,
0.8360363245010376,
0.18843387067317963,
0.01696007512509823,
-0.03209919109940529,
0.41026023030281067,
-0.36429405212402344,
-0.14441728591918945,
-0.5047592520713806,
0.48841676115989685,
-0.3857188820838928,
-0.3833012580871582,
-0.4838402271270752,
-0.12717124819755554,
-0.6788530349731445,
-0.2142057716846466,
-0.26163551211357117,
-0.4656336307525635,
-0.29527413845062256,
-0.23992924392223358,
1.0160644054412842,
0.42481744289398193,
-0.7067843079566956,
0.17292551696300507,
-0.5072638988494873,
0.29448187351226807,
-0.11585509032011032,
0.6489165425300598,
-0.13055987656116486,
-0.2893046438694,
-0.19076333940029144,
0.0674232617020607,
-0.1951424777507782,
-0.7038929462432861,
0.28411075472831726,
-0.10389000922441483,
0.36916688084602356,
0.07698941230773926,
0.1412593275308609,
0.7176607251167297,
-0.0592951625585556,
0.7013201713562012,
0.31891754269599915,
-0.8241947889328003,
0.6926447153091431,
-0.4648470878601074,
0.17357057332992554,
0.7412992119789124,
0.3677051365375519,
-0.6532426476478577,
-0.10257945209741592,
-0.9641525745391846,
-0.9004939198493958,
0.8198416233062744,
0.4375905394554138,
0.031723953783512115,
0.19349680840969086,
0.6403328776359558,
-0.1500117927789688,
0.34302276372909546,
-0.6914821863174438,
-0.8092793822288513,
-0.4211057424545288,
-0.4278300702571869,
-0.021166367456316948,
-0.09421312808990479,
-0.3392699658870697,
-0.6299298405647278,
0.7289307713508606,
-0.15903131663799286,
0.3529195487499237,
0.4744047522544861,
0.3833377957344055,
-0.19555430114269257,
0.011717153713107109,
0.2573394775390625,
0.4340503513813019,
-0.2389574944972992,
-0.28820791840553284,
-0.13453781604766846,
-0.6091781854629517,
-0.10650134086608887,
0.5095645189285278,
-0.31381356716156006,
-0.10569503903388977,
0.34703052043914795,
0.9073286056518555,
0.043504830449819565,
-0.23654530942440033,
0.5924614667892456,
-0.06211171671748161,
-0.4478679299354553,
-0.40984323620796204,
0.04905349388718605,
0.14142288267612457,
0.2542237639427185,
0.05975760892033577,
0.06606060266494751,
-0.10397782921791077,
-0.3753676414489746,
0.42838528752326965,
0.1964057832956314,
-0.4155466854572296,
-0.5151742100715637,
0.6503385901451111,
0.07330430299043655,
-0.1772463321685791,
0.4367525577545166,
-0.12148701399564743,
-0.570881724357605,
0.7693261504173279,
0.14198963344097137,
0.813288152217865,
-0.14399346709251404,
0.36205941438674927,
0.699230968952179,
0.167307049036026,
-0.10901153832674026,
0.5441597104072571,
-0.21119622886180878,
-0.6639278531074524,
-0.02517109550535679,
-0.6008845567703247,
-0.12377838790416718,
0.07116498053073883,
-0.8170327544212341,
0.4177863895893097,
-0.42672088742256165,
-0.27632707357406616,
0.014682392589747906,
0.3909406363964081,
-0.6455765962600708,
0.16129519045352936,
-0.04494171589612961,
1.0109694004058838,
-1.0654041767120361,
0.45048022270202637,
0.7554441690444946,
-0.6738173365592957,
-1.1601929664611816,
-0.16811083257198334,
0.14790897071361542,
-0.5749305486679077,
0.16010218858718872,
0.1893986463546753,
0.5315408706665039,
-0.09680832177400589,
-0.9505123496055603,
-0.6426119804382324,
1.2001386880874634,
0.013746806420385838,
-0.22429168224334717,
0.31666865944862366,
0.10109997540712357,
0.6446517705917358,
-0.356452077627182,
0.311527281999588,
0.6316768527030945,
0.6794496178627014,
0.3291066884994507,
-0.6787164211273193,
0.32658660411834717,
-0.6049094796180725,
-0.19784730672836304,
0.026614148169755936,
-1.0175559520721436,
0.6337473392486572,
-0.19068096578121185,
0.006149848457425833,
-0.05827080458402634,
0.5588828921318054,
0.5111978650093079,
0.41546276211738586,
0.42623427510261536,
0.7329644560813904,
0.8188909292221069,
-0.36575770378112793,
1.2537864446640015,
-0.2716642916202545,
0.6492617726325989,
0.7796167135238647,
-0.08168389648199081,
0.5211924314498901,
0.2655622363090515,
-0.3585951030254364,
0.5114538073539734,
0.7149266600608826,
-0.44465112686157227,
0.269671231508255,
0.3644423484802246,
0.009762821719050407,
-0.07717464119195938,
-0.18817546963691711,
-0.5787550210952759,
0.23132292926311493,
0.257850706577301,
-0.31410011649131775,
0.012559941038489342,
0.04711232706904411,
0.405130535364151,
-0.07902490347623825,
-0.2412428855895996,
0.6716410517692566,
0.10225316882133484,
-0.3905881643295288,
0.5120142698287964,
-0.18514713644981384,
0.684296190738678,
-0.647892951965332,
0.14753323793411255,
-0.1309414505958557,
0.1952410489320755,
-0.6269065737724304,
-1.0723541975021362,
0.3746771216392517,
-0.11375073343515396,
-0.21034473180770874,
-0.3280447721481323,
0.7292423248291016,
-0.510689914226532,
-0.7567722797393799,
0.2301185429096222,
0.17399747669696808,
0.2967567443847656,
0.17445753514766693,
-1.3315423727035522,
0.5339074730873108,
0.1480800062417984,
-0.5208496451377869,
0.12821835279464722,
0.5047397017478943,
0.13432717323303223,
0.4883898198604584,
0.7179986834526062,
0.2801125943660736,
-0.3121824860572815,
0.0745168924331665,
1.079520583152771,
-0.6135203838348389,
-0.5157164335250854,
-0.7453723549842834,
0.9098320603370667,
-0.3994722068309784,
-0.43542835116386414,
0.731896162033081,
0.7444838285446167,
0.814866840839386,
0.039882875978946686,
0.8032573461532593,
-0.7007519006729126,
0.6444781422615051,
-0.21758611500263214,
0.9660007953643799,
-0.7720385789871216,
-0.06451544910669327,
-0.6979538798332214,
-0.488137423992157,
-0.47476041316986084,
0.6941832304000854,
-0.29128655791282654,
0.1995953470468521,
0.315477579832077,
0.9090980887413025,
0.03548140451312065,
0.11666008085012436,
-0.25571247935295105,
0.3389504551887512,
0.31638529896736145,
0.5215201377868652,
0.38490042090415955,
-0.9246587753295898,
0.31170523166656494,
-0.6892678141593933,
-0.33888083696365356,
0.004132239613682032,
-0.8120683431625366,
-0.8408965468406677,
-0.9117355942726135,
-0.6930381655693054,
-0.8460392951965332,
-0.3228355348110199,
1.0296165943145752,
0.712145209312439,
-0.781701922416687,
-0.2470606416463852,
0.09020379185676575,
0.2753579914569855,
-0.09593385457992554,
-0.3246947228908539,
0.691847026348114,
0.37455952167510986,
-0.5646317005157471,
-0.16923737525939941,
0.03506842255592346,
0.2252807915210724,
0.08071668446063995,
-0.09823080897331238,
-0.14242181181907654,
-0.2965160608291626,
0.3729688227176666,
0.46268507838249207,
-0.3165888786315918,
-0.06215778738260269,
-0.28145840764045715,
0.02703435719013214,
0.2046295702457428,
0.530510663986206,
-0.4952748119831085,
0.20094560086727142,
0.6218119263648987,
0.22270318865776062,
0.45231735706329346,
0.2883591055870056,
0.03641212359070778,
-0.5215624570846558,
0.1462210714817047,
0.012407425791025162,
0.3367907702922821,
0.40325039625167847,
-0.47842273116111755,
0.7826623916625977,
0.5483579635620117,
-0.525733470916748,
-0.8379261493682861,
-0.1961292326450348,
-1.2892991304397583,
-0.0068084681406617165,
1.0848731994628906,
0.017764022573828697,
-0.6583285331726074,
0.07357155531644821,
-0.2677761912345886,
0.13433414697647095,
-0.5785430073738098,
0.512793242931366,
0.5552093386650085,
-0.15441466867923737,
0.2135722041130066,
-0.3424490988254547,
0.6544793248176575,
-0.011225193738937378,
-1.0116562843322754,
0.20068131387233734,
0.44143277406692505,
0.4927598536014557,
0.3263733386993408,
0.8516772985458374,
-0.2948467433452606,
-0.027586448937654495,
-0.024974245578050613,
0.317675918340683,
-0.24555572867393494,
0.06705598533153534,
-0.38599294424057007,
-0.07647272944450378,
-0.5512806177139282,
-0.20657561719417572
]
|
huggingartists/pyrokinesis | huggingartists | 2022-10-25T09:42:04Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/e701c222dfb8725065dd99c8a43988da.1000x1000x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.585580587387085,
-0.5191260576248169,
0.057656437158584595,
0.23485270142555237,
-0.21943241357803345,
-0.0022631166502833366,
-0.3493930995464325,
-0.37950754165649414,
0.8674344420433044,
0.2986883521080017,
-0.8520461320877075,
-0.8002595901489258,
-0.5396229028701782,
0.0847729817032814,
-0.0810735672712326,
1.2741655111312866,
-0.22879460453987122,
-0.3821810781955719,
-0.34579282999038696,
-0.15818405151367188,
-0.22184793651103973,
-0.35294321179389954,
-0.26744645833969116,
-0.3816770315170288,
0.4146648347377777,
0.5311176776885986,
0.758567214012146,
0.85793137550354,
0.5118425488471985,
0.3377157747745514,
-0.10675358027219772,
-0.05926332622766495,
-0.3775062561035156,
-0.09070791304111481,
0.15498824417591095,
-0.27760398387908936,
-0.6261767745018005,
0.2517334520816803,
0.5689713954925537,
0.41258519887924194,
-0.08550367504358292,
0.45664912462234497,
0.034736692905426025,
0.7786183953285217,
-0.30795779824256897,
0.44835641980171204,
-0.24873772263526917,
-0.14957377314567566,
-0.27814576029777527,
0.06979185342788696,
0.15958577394485474,
-0.6023042798042297,
0.023953672498464584,
-0.7489336133003235,
0.08087331056594849,
-0.002849769778549671,
0.9913635849952698,
0.049714576452970505,
0.0952489972114563,
-0.21693845093250275,
-0.1586829274892807,
0.486603319644928,
-0.5641620755195618,
0.0028750032652169466,
0.5730147957801819,
0.13005855679512024,
-0.06360065191984177,
-0.7268272638320923,
-0.6291752457618713,
0.09046372771263123,
-0.17730920016765594,
0.2616978585720062,
-0.15052828192710876,
-0.3068240284919739,
0.5239556431770325,
0.6002844572067261,
-0.547365128993988,
-0.2397834062576294,
-0.5210087895393372,
-0.1569518744945526,
1.1677937507629395,
0.15601640939712524,
0.4238734841346741,
-0.49597421288490295,
-0.16120360791683197,
-0.4443492591381073,
-0.24000318348407745,
0.3620990216732025,
0.5917262434959412,
0.3814071714878082,
-0.9971698522567749,
0.6945719122886658,
-0.16234339773654938,
0.4968886375427246,
0.19160723686218262,
-0.06548140943050385,
0.7844226360321045,
-0.378316193819046,
-0.13806430995464325,
-0.0857054591178894,
1.0753729343414307,
0.6664053797721863,
0.12062589079141617,
0.06171566992998123,
0.016054784879088402,
0.05165307968854904,
-0.12660764157772064,
-0.887350857257843,
-0.5438326597213745,
0.6670922636985779,
-0.6269026398658752,
-0.6013482809066772,
0.16648153960704803,
-1.020158052444458,
-0.2613374590873718,
-0.2819681763648987,
0.28955402970314026,
-0.3730908930301666,
-0.626602053642273,
0.1789298802614212,
-0.3180640935897827,
0.09060610830783844,
0.031584251672029495,
-0.598097026348114,
0.16835249960422516,
0.5752742290496826,
0.7664340138435364,
0.21199063956737518,
-0.3302513360977173,
-0.2278832048177719,
-0.21413390338420868,
-0.08535053580999374,
0.6576654314994812,
-0.32053327560424805,
-0.34572452306747437,
-0.213761568069458,
0.34958845376968384,
-0.14027805626392365,
-0.2953605055809021,
0.8802477121353149,
0.08632657676935196,
0.2275821417570114,
-0.5201413631439209,
-0.4529449939727783,
-0.03162336349487305,
0.1966680884361267,
-0.7408687472343445,
1.083362340927124,
0.2913355529308319,
-1.0309667587280273,
0.1750870943069458,
-0.7395367622375488,
-0.30057305097579956,
0.013829714618623257,
0.09900418668985367,
-0.8447536826133728,
-0.13209639489650726,
0.18032753467559814,
0.7377030849456787,
-0.3460732698440552,
0.036660075187683105,
-0.6076049208641052,
-0.11712609976530075,
0.4140833616256714,
0.23367422819137573,
1.1400198936462402,
0.1333111971616745,
-0.1682126522064209,
0.11189594119787216,
-0.8883635997772217,
0.17295189201831818,
0.4430687129497528,
-0.19487439095973969,
-0.028574451804161072,
-0.2163127362728119,
0.4384145736694336,
0.2980068027973175,
0.06303475797176361,
-0.549325168132782,
0.3754991292953491,
-0.2143312394618988,
0.44508975744247437,
0.7013765573501587,
0.03932488337159157,
0.33055680990219116,
-0.6855186820030212,
0.3908435106277466,
0.05973668023943901,
0.34076887369155884,
-0.001663137343712151,
-0.5853627324104309,
-0.4441470801830292,
-0.32684552669525146,
0.29814428091049194,
0.42028677463531494,
-0.6972442269325256,
1.0349774360656738,
-0.3018476665019989,
-0.8957629203796387,
-0.5623000264167786,
0.1326809525489807,
0.19570593535900116,
0.473018616437912,
0.32855626940727234,
-0.4297947883605957,
-0.6042274236679077,
-0.6264770030975342,
0.04484834149479866,
-0.2757902145385742,
0.1466199904680252,
0.38675186038017273,
0.8628848195075989,
-0.22048690915107727,
0.7963739633560181,
-0.6561751961708069,
-0.2172105461359024,
-0.2789629399776459,
-0.3042556643486023,
0.39764076471328735,
0.7941580414772034,
0.6380420327186584,
-0.8592522144317627,
-0.5009216070175171,
-0.22425289452075958,
-0.6932036876678467,
-0.0677587166428566,
-0.04032714292407036,
-0.25284188985824585,
-0.01755181886255741,
0.12110286951065063,
-0.7319191694259644,
0.579648494720459,
0.4939672350883484,
-0.7111285328865051,
0.5646336674690247,
0.09711368381977081,
0.01936180330812931,
-1.2838082313537598,
0.40436431765556335,
0.24291004240512848,
0.08480340242385864,
-0.6166805624961853,
-0.17916586995124817,
-0.05614655464887619,
-0.0726538896560669,
-0.13285139203071594,
0.6136351227760315,
-0.34472784399986267,
0.2942468523979187,
0.12219486385583878,
0.0036223940551280975,
0.060159049928188324,
0.45305514335632324,
-0.01829071156680584,
0.2712216079235077,
1.0260858535766602,
-0.38138067722320557,
0.7365137934684753,
0.576046347618103,
-0.23338136076927185,
0.8516368269920349,
-0.7674428224563599,
0.05872988700866699,
-0.23615920543670654,
0.4454917311668396,
-0.824962854385376,
-0.64388108253479,
0.8636936545372009,
-0.7468380928039551,
0.3623806834220886,
-0.30188611149787903,
-0.5689455270767212,
-0.8188119530677795,
-0.6508090496063232,
0.15342462062835693,
0.5616766214370728,
-0.40793943405151367,
0.45968785881996155,
0.5886191129684448,
0.10418029874563217,
-0.3154458701610565,
-0.6916460990905762,
-0.1578543335199356,
-0.4355858862400055,
-0.8495083451271057,
0.4098540246486664,
-0.3273196816444397,
-0.09630841016769409,
0.15068888664245605,
0.047223757952451706,
0.09985555708408356,
0.008354200050234795,
0.43112465739250183,
0.231620192527771,
0.08607945591211319,
-0.024609848856925964,
-0.10491060465574265,
-0.19887956976890564,
0.12988193333148956,
-0.2273826003074646,
0.28892195224761963,
-0.22271429002285004,
-0.10742318630218506,
-0.7512934803962708,
0.170568585395813,
0.4941612482070923,
-0.2326764315366745,
0.7005541920661926,
0.7869901061058044,
-0.2923382818698883,
0.014666443690657616,
-0.510846734046936,
-0.16089504957199097,
-0.4073660969734192,
0.03870762139558792,
-0.2615320086479187,
-0.5529277324676514,
0.944148600101471,
0.19303108751773834,
0.05807041376829147,
0.6587709188461304,
0.5382187366485596,
-0.09582183510065079,
0.6702672839164734,
0.27405187487602234,
-0.22102411091327667,
0.5317389369010925,
-0.6749660968780518,
-0.2056950479745865,
-0.8751386404037476,
-0.5086168050765991,
-0.5089521408081055,
-0.5342792868614197,
-0.8208867907524109,
-0.4843805432319641,
0.2343694567680359,
0.16840437054634094,
-0.2135160118341446,
0.41855335235595703,
-0.9328590035438538,
0.29716598987579346,
0.32866233587265015,
0.3195592164993286,
-0.18955719470977783,
0.1611609309911728,
0.06550005078315735,
0.12346377968788147,
-0.6259545087814331,
-0.21378061175346375,
1.2202428579330444,
0.53984135389328,
0.5736330151557922,
-0.08403762429952621,
0.844645619392395,
-0.038618896156549454,
0.20256999135017395,
-0.5406590700149536,
0.43770331144332886,
0.03474105894565582,
-0.5332274436950684,
-0.13552367687225342,
-0.5342498421669006,
-0.9086534380912781,
-0.11214752495288849,
-0.4230484068393707,
-0.710556149482727,
0.5044577121734619,
0.07297834008932114,
-0.19256792962551117,
0.422398179769516,
-0.6660745143890381,
0.8821943998336792,
-0.0873812884092331,
-0.49286407232284546,
0.2699904441833496,
-0.9988994598388672,
0.15883955359458923,
0.21344541013240814,
0.23071731626987457,
-0.3428591787815094,
0.08464260399341583,
1.0431149005889893,
-0.7896621823310852,
0.9042648673057556,
-0.3928002119064331,
0.17723527550697327,
0.588214099407196,
-0.29452288150787354,
0.47898969054222107,
0.14588874578475952,
-0.2512328624725342,
0.2761104702949524,
0.06182729825377464,
-0.4468171000480652,
-0.4690229296684265,
0.7258077263832092,
-0.7462170124053955,
0.04878620803356171,
-0.4158163368701935,
-0.4227684736251831,
0.08848999440670013,
0.15739116072654724,
0.2899421453475952,
0.3706035614013672,
0.02255791611969471,
0.20492151379585266,
0.4821551740169525,
-0.16662627458572388,
0.24598534405231476,
0.00426629651337862,
-0.09863492101430893,
-0.8355673551559448,
0.9426364898681641,
0.12641984224319458,
0.03700805455446243,
-0.10323111712932587,
0.4289817810058594,
-0.3869399130344391,
-0.15862709283828735,
-0.5538895726203918,
0.48970386385917664,
-0.3939678370952606,
-0.3770495653152466,
-0.5217759609222412,
-0.16351114213466644,
-0.6602091789245605,
-0.1732276976108551,
-0.24199555814266205,
-0.5029850602149963,
-0.334493488073349,
-0.18291544914245605,
1.033217191696167,
0.4359447658061981,
-0.6584852337837219,
0.13723500072956085,
-0.451778769493103,
0.3235439360141754,
-0.09965652972459793,
0.6408486366271973,
-0.10371138155460358,
-0.31501010060310364,
-0.19860529899597168,
0.09174906462430954,
-0.21035653352737427,
-0.6819517612457275,
0.24537436664104462,
-0.046148449182510376,
0.39663153886795044,
0.07287567108869553,
0.12293978780508041,
0.6767392158508301,
-0.004774853121489286,
0.674874484539032,
0.3392667770385742,
-0.7787612080574036,
0.648939847946167,
-0.4846544563770294,
0.13953162729740143,
0.7134764790534973,
0.3618801534175873,
-0.6233317255973816,
-0.1260959357023239,
-0.9892488718032837,
-0.8789130449295044,
0.8198335766792297,
0.4572063088417053,
0.041239961981773376,
0.21763356029987335,
0.6109556555747986,
-0.20757029950618744,
0.2557361423969269,
-0.6448593735694885,
-0.8337998986244202,
-0.46705347299575806,
-0.3868845999240875,
-0.03176678344607353,
-0.06800916790962219,
-0.2494048774242401,
-0.7112911939620972,
0.78232342004776,
-0.14043228328227997,
0.3547445833683014,
0.4197050631046295,
0.375575453042984,
-0.23621024191379547,
-0.07229503244161606,
0.23780538141727448,
0.37254247069358826,
-0.2471734583377838,
-0.2592455744743347,
-0.21752013266086578,
-0.6575371623039246,
-0.07708799839019775,
0.47914472222328186,
-0.279930055141449,
-0.09811565279960632,
0.2903532385826111,
0.8661401271820068,
-0.0019434416899457574,
-0.19907592236995697,
0.5591700673103333,
-0.09694276005029678,
-0.43398532271385193,
-0.3795728385448456,
0.021573519334197044,
0.15036317706108093,
0.2348593920469284,
0.06517281383275986,
0.06213294342160225,
-0.13915985822677612,
-0.4299010932445526,
0.42072707414627075,
0.2332717478275299,
-0.2979317307472229,
-0.49996063113212585,
0.5869650840759277,
0.07994715124368668,
-0.11094535142183304,
0.49858394265174866,
-0.12651696801185608,
-0.6085793375968933,
0.7902645468711853,
0.12913599610328674,
0.8145102262496948,
-0.1649179309606552,
0.34582486748695374,
0.7469467520713806,
0.1962018460035324,
-0.11181431263685226,
0.4889317452907562,
-0.19681939482688904,
-0.585020124912262,
-0.007715318817645311,
-0.5699003338813782,
-0.09435990452766418,
0.07990815490484238,
-0.8158754706382751,
0.45407381653785706,
-0.5298258662223816,
-0.21534544229507446,
0.04464852064847946,
0.40897253155708313,
-0.7032492756843567,
0.22848208248615265,
-0.05613110587000847,
1.0190378427505493,
-1.0303372144699097,
0.4844283163547516,
0.7158580422401428,
-0.6399133205413818,
-1.1755127906799316,
-0.06473499536514282,
0.20496931672096252,
-0.4957965314388275,
0.20657823979854584,
0.15450629591941833,
0.5194509625434875,
-0.049411822110414505,
-0.8653311133384705,
-0.6762604713439941,
1.199107050895691,
0.03516145423054695,
-0.20020727813243866,
0.31515252590179443,
0.06187913939356804,
0.6240065097808838,
-0.3502865135669708,
0.3295188248157501,
0.6471294164657593,
0.6905838251113892,
0.36883002519607544,
-0.7545614242553711,
0.29347410798072815,
-0.6192807555198669,
-0.22782273590564728,
0.06865791231393814,
-0.971031904220581,
0.6076717376708984,
-0.13518576323986053,
-0.07747066766023636,
0.05263986065983772,
0.5955337882041931,
0.39755693078041077,
0.4474349915981293,
0.3901078701019287,
0.7899635434150696,
0.8174324631690979,
-0.3385481536388397,
1.2300752401351929,
-0.23251251876354218,
0.6271600723266602,
0.7619897723197937,
0.014977708458900452,
0.4890495240688324,
0.26051148772239685,
-0.3195452392101288,
0.49985870718955994,
0.674448549747467,
-0.4168401062488556,
0.2606963515281677,
0.3923379182815552,
-0.07340037077665329,
-0.07772978395223618,
-0.1882287561893463,
-0.6098828315734863,
0.29543471336364746,
0.2529473602771759,
-0.3421121835708618,
0.03909807279706001,
-0.015544194728136063,
0.39283064007759094,
-0.05646532401442528,
-0.25545814633369446,
0.670474648475647,
-0.006589652970433235,
-0.37288105487823486,
0.5664891004562378,
-0.15720506012439728,
0.6676126718521118,
-0.5601839423179626,
0.19726184010505676,
-0.0847795382142067,
0.14063115417957306,
-0.6862320899963379,
-1.088588833808899,
0.3849479556083679,
-0.07125751674175262,
-0.24119850993156433,
-0.31602469086647034,
0.7020354866981506,
-0.4448821246623993,
-0.7906395196914673,
0.17180442810058594,
0.1577291190624237,
0.3110543191432953,
0.12913450598716736,
-1.2485108375549316,
0.6057065725326538,
0.15913249552249908,
-0.4651557505130768,
0.15109944343566895,
0.49155884981155396,
0.17974312603473663,
0.49907535314559937,
0.7331473231315613,
0.2305557131767273,
-0.2124433070421219,
-0.02291167341172695,
1.1438851356506348,
-0.5210666656494141,
-0.4309689700603485,
-0.6916418075561523,
0.9236787557601929,
-0.3543131947517395,
-0.4028957188129425,
0.7162665724754333,
0.8159819841384888,
0.8674039840698242,
0.021739812567830086,
0.7948703169822693,
-0.6838536262512207,
0.649701714515686,
-0.25105300545692444,
0.9617044925689697,
-0.6671079993247986,
-0.09611424803733826,
-0.7056992650032043,
-0.5407314896583557,
-0.469236820936203,
0.7089813351631165,
-0.2425735890865326,
0.1695326864719391,
0.35370078682899475,
0.9517170786857605,
-0.012488233856856823,
0.12166950851678848,
-0.2726019620895386,
0.28522154688835144,
0.28329363465309143,
0.568954348564148,
0.4580891728401184,
-0.9178228974342346,
0.32802602648735046,
-0.7781569361686707,
-0.30783170461654663,
0.025639476254582405,
-0.7989025712013245,
-0.955498456954956,
-0.9635289311408997,
-0.7225720882415771,
-0.8418841361999512,
-0.2821696698665619,
1.1144335269927979,
0.7022298574447632,
-0.7118982076644897,
-0.2792876660823822,
0.08559124916791916,
0.2860969603061676,
-0.07107840478420258,
-0.3191623091697693,
0.6386705040931702,
0.38843661546707153,
-0.5567501187324524,
-0.13059251010417938,
-0.016317997127771378,
0.20534157752990723,
0.08084861934185028,
-0.12706995010375977,
-0.08780110627412796,
-0.30168724060058594,
0.2810918390750885,
0.4881788492202759,
-0.35563042759895325,
-0.07525942474603653,
-0.28863298892974854,
0.08647246658802032,
0.16459444165229797,
0.578633725643158,
-0.5159705877304077,
0.23377549648284912,
0.6600754261016846,
0.2714163064956665,
0.49420756101608276,
0.1402439922094345,
0.020090855658054352,
-0.45762598514556885,
0.12726496160030365,
0.0010131830349564552,
0.26194167137145996,
0.38765379786491394,
-0.4833328127861023,
0.7072045803070068,
0.5893309116363525,
-0.5061516165733337,
-0.8644663095474243,
-0.14496323466300964,
-1.2411731481552124,
0.09050474315881729,
1.057705044746399,
-0.02254556305706501,
-0.577621340751648,
0.054230187088251114,
-0.24752162396907806,
0.13107140362262726,
-0.5410241484642029,
0.45430538058280945,
0.533523678779602,
-0.09138354659080505,
0.07343315333127975,
-0.29044413566589355,
0.6731158494949341,
-0.04852446913719177,
-0.9692047834396362,
0.21882206201553345,
0.47864875197410583,
0.5075512528419495,
0.3021511733531952,
0.729631245136261,
-0.2914348840713501,
0.13171979784965515,
-0.059365976601839066,
0.2560998201370239,
-0.2629355192184448,
-0.03920958563685417,
-0.4025324285030365,
-0.0839587077498436,
-0.469117134809494,
-0.16118699312210083
]
|
huggingartists/radiohead | huggingartists | 2022-10-25T09:42:18Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/46e691e8700c20eb5f0aaf675b784aed.1000x1000x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.662053644657135,
-0.5220623016357422,
0.09527058899402618,
0.2073165774345398,
-0.20337079465389252,
0.007442397065460682,
-0.32793423533439636,
-0.46702757477760315,
0.8744184374809265,
0.27518561482429504,
-0.9458341598510742,
-0.8100337982177734,
-0.5699586868286133,
0.17195868492126465,
-0.05812668427824974,
1.2044929265975952,
-0.15111446380615234,
-0.37461093068122864,
-0.3256288468837738,
-0.26932892203330994,
-0.37226441502571106,
-0.21754609048366547,
-0.31754547357559204,
-0.3895527124404907,
0.49037837982177734,
0.5046741366386414,
0.8230897188186646,
0.9464925527572632,
0.5183174014091492,
0.3148045539855957,
-0.11373846232891083,
-0.05889430642127991,
-0.39235183596611023,
-0.09973622113466263,
0.15822044014930725,
-0.1847209930419922,
-0.6212276220321655,
0.25407102704048157,
0.5183517932891846,
0.4713401794433594,
-0.047985807061195374,
0.43978866934776306,
0.017401259392499924,
0.7515184879302979,
-0.27585670351982117,
0.44752979278564453,
-0.22075466811656952,
-0.15450677275657654,
-0.2576350271701813,
-0.014945030212402344,
0.15275129675865173,
-0.5826452374458313,
-0.022032761946320534,
-0.8142508268356323,
-0.02469242736697197,
0.031671587377786636,
1.033260464668274,
0.06948552280664444,
0.12355051934719086,
-0.20040686428546906,
-0.16713136434555054,
0.5542831420898438,
-0.5792369246482849,
0.03558816388249397,
0.6032819151878357,
0.2030697464942932,
0.05381489172577858,
-0.6080954670906067,
-0.5955325365066528,
0.08267915993928909,
-0.17317062616348267,
0.2862112820148468,
-0.26597490906715393,
-0.3172146677970886,
0.5372201204299927,
0.5375766754150391,
-0.5801469683647156,
-0.23249486088752747,
-0.5458639860153198,
-0.10141534358263016,
1.0746207237243652,
0.10131041705608368,
0.3880998492240906,
-0.5328904390335083,
-0.18336869776248932,
-0.4571411907672882,
-0.26263517141342163,
0.24578379094600677,
0.4612555205821991,
0.4636481702327728,
-1.068029522895813,
0.5996857285499573,
-0.19436584413051605,
0.5896003246307373,
0.08025012165307999,
-0.05172846093773842,
0.8437342047691345,
-0.28839272260665894,
-0.14967408776283264,
-0.15289345383644104,
1.0795254707336426,
0.6434953212738037,
0.11026900261640549,
0.0805199146270752,
-0.06493581086397171,
0.03371070325374603,
-0.21112556755542755,
-0.8212184309959412,
-0.36226627230644226,
0.7297644019126892,
-0.6650354266166687,
-0.5921470522880554,
0.1515219360589981,
-0.8722867965698242,
-0.18007856607437134,
-0.35861361026763916,
0.3536796569824219,
-0.4490494132041931,
-0.5626383423805237,
0.2391754537820816,
-0.3510534465312958,
0.12370547652244568,
0.025104576721787453,
-0.5198991894721985,
0.09972605109214783,
0.610639214515686,
0.8076180815696716,
0.19796642661094666,
-0.28536656498908997,
-0.19641350209712982,
-0.0931994616985321,
-0.07030671089887619,
0.7173869609832764,
-0.2936917543411255,
-0.3034464418888092,
-0.13677439093589783,
0.35046622157096863,
0.03751467913389206,
-0.27914491295814514,
0.8114426732063293,
-0.014884225092828274,
0.31057748198509216,
-0.572786271572113,
-0.39834436774253845,
-0.03906160965561867,
0.2685268223285675,
-0.742931604385376,
0.9479467272758484,
0.3755066990852356,
-1.0112805366516113,
0.1808805912733078,
-0.844830334186554,
-0.32817521691322327,
0.07818197458982468,
-0.017600318416953087,
-0.7660294771194458,
-0.22885392606258392,
0.14529693126678467,
0.6897440552711487,
-0.39850783348083496,
-0.0009825737215578556,
-0.6438412070274353,
-0.12904030084609985,
0.3923576772212982,
0.2743303179740906,
1.2613276243209839,
0.20333638787269592,
-0.11229634284973145,
0.09981552511453629,
-0.9259756207466125,
0.13830949366092682,
0.3825494945049286,
-0.18685820698738098,
-0.10953138023614883,
-0.25663164258003235,
0.5029705166816711,
0.3017069399356842,
-0.04871298372745514,
-0.531305730342865,
0.37923094630241394,
-0.11622460931539536,
0.5020245313644409,
0.7322655916213989,
0.014490332454442978,
0.26546239852905273,
-0.7369427680969238,
0.4278467893600464,
0.014951508492231369,
0.3505061864852905,
-0.011862551793456078,
-0.5150392651557922,
-0.37352219223976135,
-0.3377175033092499,
0.35548606514930725,
0.4149613678455353,
-0.6660007834434509,
0.9930042624473572,
-0.353667676448822,
-0.807795524597168,
-0.5598160028457642,
0.04002414271235466,
0.18626268208026886,
0.484001487493515,
0.3552080988883972,
-0.44311434030532837,
-0.6174278259277344,
-0.7094919681549072,
0.10813498497009277,
-0.26767492294311523,
0.0327167883515358,
0.4389244019985199,
0.7342530488967896,
-0.34718790650367737,
0.8570634722709656,
-0.6984842419624329,
-0.29685062170028687,
-0.2213243693113327,
-0.2581343352794647,
0.471881628036499,
0.8118970990180969,
0.6524486541748047,
-0.8069857358932495,
-0.4357016980648041,
-0.28393372893333435,
-0.7678325772285461,
-0.1961997002363205,
-0.07748470455408096,
-0.23801934719085693,
-0.07387156784534454,
0.19451262056827545,
-0.6869239807128906,
0.40492507815361023,
0.4801224172115326,
-0.6912926435470581,
0.4670473337173462,
0.16625717282295227,
0.0404907688498497,
-1.2448338270187378,
0.40019190311431885,
0.21559081971645355,
-0.012149681337177753,
-0.549611508846283,
-0.2577873766422272,
-0.04502653330564499,
-0.01057337038218975,
-0.11709683388471603,
0.5346147418022156,
-0.3828992545604706,
0.29973259568214417,
0.10547441989183426,
0.017563803121447563,
0.06304052472114563,
0.40259185433387756,
-0.07038700580596924,
0.23337392508983612,
0.989476203918457,
-0.40020397305488586,
0.5870393514633179,
0.5904339551925659,
-0.20575831830501556,
0.8173584938049316,
-0.7983297109603882,
0.02445637620985508,
-0.323560893535614,
0.3788199722766876,
-0.8053495287895203,
-0.6081600785255432,
0.8069822192192078,
-0.732014536857605,
0.3981166481971741,
-0.2294566035270691,
-0.4843657612800598,
-0.7331716418266296,
-0.6344649195671082,
0.20721887052059174,
0.5461320281028748,
-0.2941950857639313,
0.4620365798473358,
0.671708881855011,
0.14091964066028595,
-0.3582497835159302,
-0.779666006565094,
-0.12736427783966064,
-0.38995906710624695,
-0.8363221883773804,
0.47930243611335754,
-0.2971634864807129,
-0.1427742838859558,
0.15681703388690948,
0.11829182505607605,
0.1270294040441513,
-0.02778143621981144,
0.427146315574646,
0.2730700373649597,
0.06560051441192627,
0.031839869916439056,
-0.11922632157802582,
-0.2581327259540558,
0.1629769206047058,
-0.214364156126976,
0.2851484417915344,
-0.19364698231220245,
-0.08326253294944763,
-0.6559897661209106,
0.20440304279327393,
0.46253064274787903,
-0.1369909644126892,
0.5756731629371643,
0.7437602281570435,
-0.25313466787338257,
-0.003671843558549881,
-0.4869347810745239,
-0.19181717932224274,
-0.4125007092952728,
0.06698738038539886,
-0.22897548973560333,
-0.623489499092102,
0.8919543027877808,
0.25342509150505066,
0.08475706726312637,
0.6803757548332214,
0.48110634088516235,
-0.10621919482946396,
0.6257071495056152,
0.33072033524513245,
-0.24202856421470642,
0.5170055627822876,
-0.6488065719604492,
-0.3311725854873657,
-0.8131219148635864,
-0.38449910283088684,
-0.5046899914741516,
-0.5132333040237427,
-0.8631883859634399,
-0.4773610234260559,
0.24078387022018433,
0.050607383251190186,
-0.25964438915252686,
0.494047075510025,
-0.9413771033287048,
0.2995202839374542,
0.34295719861984253,
0.2706531882286072,
-0.10303416848182678,
0.10362096130847931,
0.12379056215286255,
0.1947181075811386,
-0.5835889577865601,
-0.2074916958808899,
1.1387068033218384,
0.5778235793113708,
0.6024888753890991,
-0.04488976299762726,
0.7329083681106567,
0.06607842445373535,
0.24070239067077637,
-0.5393248796463013,
0.43411657214164734,
0.12896887958049774,
-0.5647643208503723,
-0.13266462087631226,
-0.5329151749610901,
-0.8808627128601074,
-0.09825629740953445,
-0.46902310848236084,
-0.5526926517486572,
0.5343078970909119,
0.08275318145751953,
-0.25758039951324463,
0.31894099712371826,
-0.5759143829345703,
0.8187341690063477,
-0.026436492800712585,
-0.4334411025047302,
0.26480767130851746,
-1.0364805459976196,
0.18589457869529724,
0.18028555810451508,
0.34396860003471375,
-0.39451101422309875,
0.029655499383807182,
1.079841136932373,
-0.7268707156181335,
0.8370314836502075,
-0.3384475111961365,
0.16630730032920837,
0.4952686131000519,
-0.297005295753479,
0.3980400264263153,
0.19517970085144043,
-0.2346908450126648,
0.40023717284202576,
0.03151990473270416,
-0.40514153242111206,
-0.36636829376220703,
0.6430439949035645,
-0.7806378602981567,
0.0378287173807621,
-0.45353376865386963,
-0.5198153853416443,
0.04106532782316208,
0.2278745472431183,
0.2870655357837677,
0.3131044805049896,
0.012946086935698986,
0.18499237298965454,
0.49763932824134827,
-0.1917027235031128,
0.28919002413749695,
0.09070539474487305,
-0.10135874897241592,
-0.874904215335846,
0.7703336477279663,
0.11887091398239136,
0.079502172768116,
-0.015774117782711983,
0.4514213800430298,
-0.3054197132587433,
-0.11504565924406052,
-0.5195007920265198,
0.4926033318042755,
-0.42323166131973267,
-0.45084935426712036,
-0.580748975276947,
-0.13388225436210632,
-0.6550066471099854,
-0.18459253013134003,
-0.2207254022359848,
-0.573749303817749,
-0.28514254093170166,
-0.1438456028699875,
1.061232089996338,
0.4533529579639435,
-0.7856500148773193,
0.1645859181880951,
-0.44343146681785583,
0.3324646055698395,
-0.07285802066326141,
0.6300967335700989,
-0.14775791764259338,
-0.356251984834671,
-0.1852060854434967,
0.044563088566064835,
-0.2080395221710205,
-0.6937570571899414,
0.2194250375032425,
-0.07790304720401764,
0.29754215478897095,
0.16639821231365204,
0.08556187897920609,
0.680644690990448,
-0.038975201547145844,
0.5487557053565979,
0.3261915445327759,
-0.759493350982666,
0.6566269397735596,
-0.583808958530426,
0.23872128129005432,
0.7733144760131836,
0.38590118288993835,
-0.7238470315933228,
-0.16664539277553558,
-0.924022912979126,
-0.8581191301345825,
0.8460258841514587,
0.43129438161849976,
0.04616248607635498,
0.20518964529037476,
0.4987085163593292,
-0.18600913882255554,
0.21635757386684418,
-0.7188950181007385,
-0.8783829212188721,
-0.40184134244918823,
-0.31709596514701843,
0.022849855944514275,
-0.062287308275699615,
-0.3017936944961548,
-0.6902083158493042,
0.7699350714683533,
-0.08719231188297272,
0.3767060339450836,
0.40116575360298157,
0.42520806193351746,
-0.29438266158103943,
-0.022112276405096054,
0.28544387221336365,
0.4454014003276825,
-0.38429781794548035,
-0.250056654214859,
-0.21317145228385925,
-0.6167433857917786,
-0.12998740375041962,
0.4555818736553192,
-0.384689062833786,
-0.00036742197698913515,
0.3615383803844452,
0.7980861067771912,
-0.05283353477716446,
-0.21953780949115753,
0.5767937898635864,
-0.1183401495218277,
-0.4215414822101593,
-0.46541813015937805,
-0.017269538715481758,
0.17692197859287262,
0.16142676770687103,
0.13159669935703278,
0.1084899753332138,
-0.12858422100543976,
-0.40567004680633545,
0.4830194115638733,
0.28892120718955994,
-0.42629337310791016,
-0.41785526275634766,
0.6388474702835083,
0.022268693894147873,
-0.13209211826324463,
0.41699573397636414,
-0.10326127707958221,
-0.5231790542602539,
0.7122793197631836,
0.15752078592777252,
0.8690130114555359,
-0.11747787892818451,
0.26884979009628296,
0.7439450025558472,
0.2662520110607147,
-0.021053772419691086,
0.5009907484054565,
-0.16624006628990173,
-0.6044225096702576,
-0.11375594884157181,
-0.5080615282058716,
-0.11680484563112259,
0.15892073512077332,
-0.8108428716659546,
0.531832754611969,
-0.5146797299385071,
-0.22981709241867065,
0.12708155810832977,
0.2715153992176056,
-0.6847899556159973,
0.1889573335647583,
-0.06598806381225586,
1.076256513595581,
-1.0859155654907227,
0.5022864937782288,
0.6420072913169861,
-0.698029637336731,
-1.1694382429122925,
-0.1344926655292511,
0.23665648698806763,
-0.538594663143158,
0.24180477857589722,
0.17988872528076172,
0.5303506851196289,
-0.10404756665229797,
-0.8470193147659302,
-0.7250369191169739,
1.1847107410430908,
0.03418508172035217,
-0.2212214171886444,
0.31187406182289124,
0.14556710422039032,
0.5231640934944153,
-0.39430177211761475,
0.45189517736434937,
0.5618049502372742,
0.7215145230293274,
0.3311951756477356,
-0.6779478192329407,
0.341518372297287,
-0.5440576076507568,
-0.1908545345067978,
0.033552005887031555,
-0.9556419849395752,
0.6487340331077576,
-0.0660705715417862,
-0.06474064290523529,
-0.14377960562705994,
0.6532264947891235,
0.4438946843147278,
0.3656344413757324,
0.5354607701301575,
0.7492846846580505,
0.7356281280517578,
-0.32909253239631653,
1.1952645778656006,
-0.2271016389131546,
0.5950108766555786,
0.7317312955856323,
0.056993238627910614,
0.45321619510650635,
0.29343751072883606,
-0.2980435788631439,
0.5136471390724182,
0.6460905075073242,
-0.4180908799171448,
0.3094693422317505,
0.3752766251564026,
-0.0059576695784926414,
-0.09417401254177094,
-0.20261608064174652,
-0.648504376411438,
0.33015739917755127,
0.16683021187782288,
-0.386582612991333,
-0.001042092451825738,
0.019597971811890602,
0.4075658321380615,
-0.102058045566082,
-0.20761792361736298,
0.6515199542045593,
0.02363457903265953,
-0.347382515668869,
0.6291508078575134,
-0.15707825124263763,
0.7385455965995789,
-0.5613986849784851,
0.12224069237709045,
-0.09721064567565918,
0.09873773157596588,
-0.6370896100997925,
-1.035718321800232,
0.4241721034049988,
-0.14388559758663177,
-0.3047232925891876,
-0.378670334815979,
0.6818996667861938,
-0.4057365953922272,
-0.7415481209754944,
0.24045784771442413,
0.16579276323318481,
0.30565688014030457,
0.19722522795200348,
-1.25900399684906,
0.6682126522064209,
0.19172635674476624,
-0.4484030306339264,
0.09093131124973297,
0.4800260066986084,
0.2181786447763443,
0.49526527523994446,
0.709782600402832,
0.29356247186660767,
-0.3562556505203247,
0.05743847414851189,
1.131983757019043,
-0.6259845495223999,
-0.4323587119579315,
-0.7096702456474304,
0.8788501024246216,
-0.3864104449748993,
-0.44573161005973816,
0.6591172218322754,
0.8314763903617859,
0.9398872256278992,
-0.02905358374118805,
0.8279485702514648,
-0.7527995109558105,
0.7582590579986572,
-0.2158498615026474,
0.9971647262573242,
-0.6940433979034424,
0.03601161390542984,
-0.7432957291603088,
-0.5314722657203674,
-0.48745837807655334,
0.7209362983703613,
-0.13443920016288757,
0.193594291806221,
0.3360254466533661,
0.9776097536087036,
-0.054133325815200806,
0.09723091870546341,
-0.2362457662820816,
0.26668593287467957,
0.30373138189315796,
0.5659973621368408,
0.44668418169021606,
-0.9412723779678345,
0.3682558834552765,
-0.7524085640907288,
-0.3920312523841858,
0.05568383261561394,
-0.8505857586860657,
-0.8612754940986633,
-0.9301807880401611,
-0.7742996215820312,
-0.8785109519958496,
-0.2885005474090576,
1.130262851715088,
0.7098053693771362,
-0.7265312671661377,
-0.32604795694351196,
0.11850946396589279,
0.29794561862945557,
-0.1064457893371582,
-0.3263765573501587,
0.6376821398735046,
0.383442223072052,
-0.5413428544998169,
-0.11311235278844833,
-0.004663810133934021,
0.16896916925907135,
0.080976702272892,
-0.07599595934152603,
-0.11791753023862839,
-0.3212452530860901,
0.3415541350841522,
0.5023900866508484,
-0.3301156461238861,
-0.15504634380340576,
-0.2537974715232849,
0.0015460556605830789,
0.19926048815250397,
0.4963262975215912,
-0.5579827427864075,
0.14166295528411865,
0.6863673329353333,
0.2486400157213211,
0.41109347343444824,
0.1651739478111267,
0.04111895337700844,
-0.46464407444000244,
0.08084043115377426,
0.05703291296958923,
0.2639264464378357,
0.34762322902679443,
-0.4102209508419037,
0.785286545753479,
0.5354524254798889,
-0.5635203719139099,
-0.8845744729042053,
-0.14995473623275757,
-1.3656072616577148,
0.005374742206186056,
1.1191790103912354,
0.12969402968883514,
-0.5473366379737854,
0.0020768572576344013,
-0.16367904841899872,
0.14329202473163605,
-0.5519266724586487,
0.4948106110095978,
0.4440303444862366,
-0.08521579951047897,
0.10992815345525742,
-0.3795461058616638,
0.6943798065185547,
-0.009889962151646614,
-0.9294724464416504,
0.20903509855270386,
0.5026405453681946,
0.4978550672531128,
0.3663802444934845,
0.7764273881912231,
-0.3148316442966461,
0.10413841903209686,
-0.10154739767313004,
0.3299669027328491,
-0.317008912563324,
0.10163639485836029,
-0.38740119338035583,
-0.08433252573013306,
-0.46627482771873474,
-0.20239026844501495
]
|
huggingartists/rammstein | huggingartists | 2022-10-25T09:42:37Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/29cedf8dd30a7458f4fca47d1c0f0eab.1000x1000x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6703174710273743,
-0.5044195652008057,
0.06252020597457886,
0.2607598602771759,
-0.25981780886650085,
-0.03769383579492569,
-0.33485352993011475,
-0.4372318387031555,
0.806662917137146,
0.3113965392112732,
-0.9337855577468872,
-0.8475629091262817,
-0.6008824706077576,
0.1350347250699997,
-0.12479103356599808,
1.3635164499282837,
-0.2145163118839264,
-0.30072522163391113,
-0.290252685546875,
-0.2709943652153015,
-0.295501172542572,
-0.25065746903419495,
-0.3101520538330078,
-0.3858092129230499,
0.38933420181274414,
0.4425468146800995,
0.734076976776123,
0.882910430431366,
0.5054539442062378,
0.3380926549434662,
-0.13712547719478607,
0.0016438072780147195,
-0.41642582416534424,
-0.10411082208156586,
0.16607940196990967,
-0.26928484439849854,
-0.6567995548248291,
0.22071902453899384,
0.5992249846458435,
0.39607200026512146,
-0.12844979763031006,
0.4857998192310333,
0.07874656468629837,
0.853697657585144,
-0.2514609098434448,
0.4562966823577881,
-0.2511667013168335,
-0.1374540776014328,
-0.2727208435535431,
0.03223056346178055,
0.15773580968379974,
-0.5664475560188293,
0.015410738065838814,
-0.7318201065063477,
0.055448178201913834,
0.020468296483159065,
1.070333480834961,
0.07049316167831421,
0.1338789016008377,
-0.18647406995296478,
-0.15695630013942719,
0.5909247994422913,
-0.5762937664985657,
0.004986729472875595,
0.5760746002197266,
0.1508471965789795,
0.0257733091711998,
-0.5771530866622925,
-0.5620439052581787,
0.0909370556473732,
-0.19940711557865143,
0.28850647807121277,
-0.21589311957359314,
-0.35667216777801514,
0.5354926586151123,
0.5299923419952393,
-0.5665205717086792,
-0.2312288135290146,
-0.5766894221305847,
-0.15458066761493683,
1.1380679607391357,
0.17534558475017548,
0.3912104666233063,
-0.46741509437561035,
-0.23972482979297638,
-0.4011317491531372,
-0.25707554817199707,
0.2729237675666809,
0.5489418506622314,
0.391129732131958,
-1.0183815956115723,
0.6304420828819275,
-0.1631108969449997,
0.5984547138214111,
0.11003351956605911,
-0.01490844413638115,
0.8121392130851746,
-0.37731122970581055,
-0.09525495767593384,
-0.08572348207235336,
1.0762969255447388,
0.6660516262054443,
0.19747863709926605,
0.08437317609786987,
-0.11365839838981628,
0.07536119967699051,
-0.17011144757270813,
-0.9140313863754272,
-0.38150113821029663,
0.6437951922416687,
-0.6123115420341492,
-0.5736008882522583,
0.11833295226097107,
-0.9745942950248718,
-0.18851298093795776,
-0.304868221282959,
0.31384915113449097,
-0.45187175273895264,
-0.54323810338974,
0.20376086235046387,
-0.3104877173900604,
0.1493624597787857,
0.036127109080553055,
-0.5901304483413696,
0.2082248479127884,
0.5810420513153076,
0.7909408807754517,
0.14209578931331635,
-0.3418974280357361,
-0.26957064867019653,
-0.1263568103313446,
-0.13639871776103973,
0.718151330947876,
-0.2847461998462677,
-0.3772207498550415,
-0.1644451916217804,
0.30629217624664307,
-0.04757966101169586,
-0.3330306112766266,
0.8837186098098755,
0.011977179907262325,
0.20372843742370605,
-0.49476510286331177,
-0.47543567419052124,
0.010245957411825657,
0.265347421169281,
-0.7601596117019653,
1.0390654802322388,
0.28755760192871094,
-1.0488041639328003,
0.17136912047863007,
-0.8004730343818665,
-0.3083136975765228,
-0.010896052233874798,
0.012339238077402115,
-0.7816632390022278,
-0.15200138092041016,
0.1811579018831253,
0.7136209607124329,
-0.33451026678085327,
0.030048182234168053,
-0.577709436416626,
-0.1426127403974533,
0.4252512454986572,
0.216802716255188,
1.18658447265625,
0.16034358739852905,
-0.09092351049184799,
0.08840504288673401,
-0.9727582335472107,
0.11403563618659973,
0.42288312315940857,
-0.19755369424819946,
-0.07018318772315979,
-0.2109026163816452,
0.45258089900016785,
0.28418684005737305,
0.07138297706842422,
-0.5823460221290588,
0.3289981782436371,
-0.20814314484596252,
0.43023332953453064,
0.7836707830429077,
0.004493411630392075,
0.28967657685279846,
-0.6690232753753662,
0.3909626007080078,
0.1473003327846527,
0.3406238257884979,
-0.0005681624752469361,
-0.5437939167022705,
-0.43089666962623596,
-0.2910751402378082,
0.30652984976768494,
0.47328534722328186,
-0.6250960826873779,
0.9881574511528015,
-0.3348522484302521,
-0.8435581922531128,
-0.6546271443367004,
0.15435151755809784,
0.19977986812591553,
0.5163291692733765,
0.36552444100379944,
-0.40361544489860535,
-0.5768771171569824,
-0.7346919178962708,
0.05494565889239311,
-0.2175903022289276,
0.18837954103946686,
0.36781102418899536,
0.7980291843414307,
-0.250447154045105,
0.8305116891860962,
-0.755120575428009,
-0.3015614151954651,
-0.2521311044692993,
-0.2955564856529236,
0.4201681315898895,
0.8409725427627563,
0.6454874873161316,
-0.8681210875511169,
-0.46513983607292175,
-0.264617383480072,
-0.728809654712677,
-0.10439986735582352,
0.027000559493899345,
-0.2794717252254486,
0.041193656623363495,
0.13016358017921448,
-0.7530574798583984,
0.48788055777549744,
0.5097064971923828,
-0.6429912447929382,
0.5756427049636841,
0.09653333574533463,
0.00514861149713397,
-1.2899680137634277,
0.3472200334072113,
0.2579330503940582,
0.05102786794304848,
-0.5972961187362671,
-0.28163689374923706,
-0.08466692268848419,
-0.07376132905483246,
-0.1438358724117279,
0.618394672870636,
-0.31230565905570984,
0.2940389811992645,
0.13061337172985077,
0.06406976282596588,
0.07987359911203384,
0.4396895468235016,
-0.0861920416355133,
0.3218187987804413,
1.067777395248413,
-0.3774040639400482,
0.6235719323158264,
0.6065682768821716,
-0.28964006900787354,
0.8790745735168457,
-0.806903064250946,
-0.04236415773630142,
-0.3174802362918854,
0.39653727412223816,
-0.8279539346694946,
-0.5272043347358704,
0.8020554184913635,
-0.7154328227043152,
0.4282277524471283,
-0.2227402627468109,
-0.6228631734848022,
-0.6876453161239624,
-0.6410307884216309,
0.1656603068113327,
0.5892494916915894,
-0.31380584836006165,
0.4043554365634918,
0.6050843596458435,
0.12891525030136108,
-0.3560868203639984,
-0.800597071647644,
-0.16559135913848877,
-0.4131655991077423,
-0.8087450861930847,
0.4116688370704651,
-0.3724476397037506,
-0.10323471575975418,
0.18892447650432587,
0.07510511577129364,
0.09184883534908295,
-0.00482868542894721,
0.3772318661212921,
0.32792192697525024,
0.07918770611286163,
0.046835388988256454,
-0.08441601693630219,
-0.3344420790672302,
0.09273921698331833,
-0.21663188934326172,
0.25715798139572144,
-0.32588547468185425,
-0.0952611118555069,
-0.6985324025154114,
0.2450995296239853,
0.42264875769615173,
-0.25914397835731506,
0.6623886227607727,
0.8658015131950378,
-0.24717964231967926,
-0.034419264644384384,
-0.49419668316841125,
-0.20791226625442505,
-0.41490450501441956,
0.08113115280866623,
-0.204778790473938,
-0.6564775109291077,
0.9026314616203308,
0.197397843003273,
0.09934388101100922,
0.67218017578125,
0.504867434501648,
-0.0786466971039772,
0.7344505190849304,
0.36082354187965393,
-0.2505975365638733,
0.48215723037719727,
-0.6768690347671509,
-0.28738003969192505,
-0.8739116191864014,
-0.3959770202636719,
-0.4999854564666748,
-0.5276429057121277,
-0.8825260996818542,
-0.43062669038772583,
0.2102428525686264,
0.08944888412952423,
-0.2081398367881775,
0.4568481147289276,
-0.9242541790008545,
0.2559269964694977,
0.28324443101882935,
0.26007792353630066,
-0.09119230508804321,
0.12230642884969711,
0.10597281157970428,
0.11769163608551025,
-0.576883852481842,
-0.24732418358325958,
1.093496561050415,
0.4811839461326599,
0.5947009325027466,
-0.09796195477247238,
0.8268350958824158,
0.032198306173086166,
0.23086130619049072,
-0.5350974798202515,
0.5363523960113525,
0.032451946288347244,
-0.5774180889129639,
-0.13079339265823364,
-0.5330153107643127,
-0.9217959642410278,
-0.06197630241513252,
-0.4029090404510498,
-0.7089570164680481,
0.43113717436790466,
0.08965624123811722,
-0.19591563940048218,
0.36063897609710693,
-0.6182332634925842,
0.8500467538833618,
-0.0275573767721653,
-0.41973546147346497,
0.1947106420993805,
-1.02692711353302,
0.17302094399929047,
0.17027504742145538,
0.29750460386276245,
-0.4703660309314728,
-0.01364373043179512,
1.061993956565857,
-0.7171441316604614,
0.9150651693344116,
-0.33089616894721985,
0.13514886796474457,
0.5503531694412231,
-0.28084447979927063,
0.4435833990573883,
0.11147475987672806,
-0.31351569294929504,
0.3367162048816681,
0.050132397562265396,
-0.4666912853717804,
-0.4620523154735565,
0.7268508076667786,
-0.7613045573234558,
0.019343608990311623,
-0.3624780774116516,
-0.5198565125465393,
0.033559225499629974,
0.19582191109657288,
0.25908756256103516,
0.4127143919467926,
0.02244342863559723,
0.11505929380655289,
0.5038646459579468,
-0.1540820449590683,
0.2540845572948456,
0.07915786653757095,
-0.11984691768884659,
-0.8038768172264099,
0.9238722324371338,
0.1957550346851349,
0.052272893488407135,
-0.051608286798000336,
0.45303618907928467,
-0.3191545605659485,
-0.13080260157585144,
-0.630097508430481,
0.499935507774353,
-0.44206225872039795,
-0.36849164962768555,
-0.49799829721450806,
-0.1728164404630661,
-0.5694236755371094,
-0.14219705760478973,
-0.24236716330051422,
-0.5143942832946777,
-0.32175105810165405,
-0.20340482890605927,
1.0699142217636108,
0.4343770444393158,
-0.6873528361320496,
0.1407800167798996,
-0.5441179275512695,
0.2748216688632965,
-0.12704992294311523,
0.6672506928443909,
-0.08806740492582321,
-0.33802685141563416,
-0.24869851768016815,
0.028128204867243767,
-0.1889481544494629,
-0.691731333732605,
0.23083339631557465,
-0.038113079965114594,
0.37517285346984863,
0.11663857847452164,
0.08383839577436447,
0.6692672371864319,
-0.1320919692516327,
0.6114383935928345,
0.30821311473846436,
-0.7509621977806091,
0.6792473196983337,
-0.4934437870979309,
0.18855614960193634,
0.7538833618164062,
0.40706324577331543,
-0.5851759910583496,
-0.15342582762241364,
-0.9569299817085266,
-0.8334957957267761,
0.8332679271697998,
0.42303523421287537,
0.0936194434762001,
0.22391076385974884,
0.48496806621551514,
-0.15356838703155518,
0.2953900396823883,
-0.6259573101997375,
-0.8578624129295349,
-0.3650608956813812,
-0.3529987931251526,
-0.06355688720941544,
-0.05392736196517944,
-0.3001662492752075,
-0.6745673418045044,
0.7991424202919006,
-0.08346226066350937,
0.29749971628189087,
0.4124288260936737,
0.4068966507911682,
-0.22937645018100739,
-0.006860108580440283,
0.3081499934196472,
0.40358224511146545,
-0.26560044288635254,
-0.2504560053348541,
-0.12684153020381927,
-0.5914081335067749,
-0.0802510678768158,
0.48242560029029846,
-0.37461158633232117,
-0.04500778391957283,
0.2633315324783325,
0.9154991507530212,
0.007206256501376629,
-0.30096620321273804,
0.5733469128608704,
-0.041008733212947845,
-0.3831830620765686,
-0.39835959672927856,
0.004194315522909164,
0.16095377504825592,
0.23185952007770538,
0.040742725133895874,
0.10991903394460678,
-0.10278859734535217,
-0.33270731568336487,
0.46624940633773804,
0.249178946018219,
-0.4356706440448761,
-0.48621824383735657,
0.5377110838890076,
-0.000261494453297928,
-0.12828411161899567,
0.455188125371933,
-0.12345830351114273,
-0.5426301956176758,
0.722351610660553,
0.15459737181663513,
0.830970823764801,
-0.10259546339511871,
0.3147411048412323,
0.7139748334884644,
0.20088277757167816,
-0.06034517660737038,
0.4830878973007202,
-0.2017252892255783,
-0.6374450922012329,
-0.08120415359735489,
-0.622153103351593,
-0.055563874542713165,
0.06072995066642761,
-0.8307979106903076,
0.4586408734321594,
-0.44999411702156067,
-0.2364317774772644,
0.05150829628109932,
0.3292919099330902,
-0.6852484345436096,
0.14749836921691895,
-0.07030756771564484,
1.072839379310608,
-1.0414702892303467,
0.49335309863090515,
0.6985502243041992,
-0.6561334133148193,
-1.1214971542358398,
-0.13550962507724762,
0.20179152488708496,
-0.6064090132713318,
0.26600369811058044,
0.23323926329612732,
0.46756765246391296,
0.01559157483279705,
-0.899465799331665,
-0.6886194944381714,
1.1621958017349243,
0.025202855467796326,
-0.14145083725452423,
0.38050198554992676,
0.08685268461704254,
0.601344645023346,
-0.3220992088317871,
0.2874452769756317,
0.6206417679786682,
0.6926214694976807,
0.3021174669265747,
-0.673062264919281,
0.29072242975234985,
-0.6072505116462708,
-0.20536550879478455,
0.11384624987840652,
-0.9937782883644104,
0.6082569360733032,
-0.11376369744539261,
-0.03693516179919243,
-0.018865233287215233,
0.6766083240509033,
0.4901745915412903,
0.3397797644138336,
0.47141212224960327,
0.8348016142845154,
0.7389060854911804,
-0.2786530554294586,
1.2096296548843384,
-0.2695598602294922,
0.6455546617507935,
0.729597270488739,
0.012377743609249592,
0.5193402171134949,
0.29746851325035095,
-0.3395920693874359,
0.5321783423423767,
0.6321178078651428,
-0.509762704372406,
0.2746962308883667,
0.4193364381790161,
-0.05154617875814438,
-0.10243742913007736,
-0.2737817168235779,
-0.5728362798690796,
0.26410844922065735,
0.2529109716415405,
-0.2924387454986572,
-0.09046173840761185,
-0.00692795729264617,
0.4053240716457367,
-0.0696081817150116,
-0.23267291486263275,
0.6416345238685608,
0.07027845829725266,
-0.37971359491348267,
0.5680323839187622,
-0.1810835301876068,
0.6888520121574402,
-0.6461679935455322,
0.15498290956020355,
-0.05056895688176155,
0.15777413547039032,
-0.608307421207428,
-1.1348117589950562,
0.42496076226234436,
-0.05962735414505005,
-0.2751091420650482,
-0.33253297209739685,
0.739998459815979,
-0.4536822736263275,
-0.7844265699386597,
0.2493458092212677,
0.21488440036773682,
0.383992999792099,
0.21659348905086517,
-1.3007805347442627,
0.6329125165939331,
0.11257854849100113,
-0.494517058134079,
0.17949442565441132,
0.4971030056476593,
0.20769429206848145,
0.5375650525093079,
0.6881588697433472,
0.27578550577163696,
-0.26822203397750854,
0.04074292257428169,
1.100913166999817,
-0.519814670085907,
-0.4158749282360077,
-0.7901442050933838,
0.8816826939582825,
-0.3584615886211395,
-0.42062142491340637,
0.7014032006263733,
0.8123891949653625,
0.8940635323524475,
-0.013128279708325863,
0.7756227850914001,
-0.620498538017273,
0.6520745754241943,
-0.22665347158908844,
0.971214234828949,
-0.739021897315979,
-0.08287299424409866,
-0.6731646656990051,
-0.5122045874595642,
-0.41671982407569885,
0.6555013060569763,
-0.18788902461528778,
0.17432360351085663,
0.28143391013145447,
0.976356029510498,
-0.012523548677563667,
0.10761876404285431,
-0.20692409574985504,
0.30576661229133606,
0.2491336613893509,
0.5371012091636658,
0.44213250279426575,
-0.8842645287513733,
0.40804362297058105,
-0.7337647676467896,
-0.32047420740127563,
0.03942546993494034,
-0.8317782878875732,
-0.8832641839981079,
-0.9680883288383484,
-0.6969147324562073,
-0.8052430748939514,
-0.2982865571975708,
1.0876320600509644,
0.6928159594535828,
-0.7035863995552063,
-0.3327387571334839,
0.11007921397686005,
0.26670771837234497,
-0.09195466339588165,
-0.32067620754241943,
0.6791965961456299,
0.29171809554100037,
-0.5910093188285828,
-0.16604645550251007,
0.036406680941581726,
0.2319270819425583,
0.030092675238847733,
-0.10617947578430176,
-0.1260353922843933,
-0.27075615525245667,
0.3372514545917511,
0.40589064359664917,
-0.3446976840496063,
-0.05362123250961304,
-0.27787870168685913,
0.02283008024096489,
0.19839966297149658,
0.4568966031074524,
-0.5139557719230652,
0.15806393325328827,
0.6696168780326843,
0.30769410729408264,
0.4453098475933075,
0.1572209596633911,
-0.0009082495816983283,
-0.46484825015068054,
0.11136925965547562,
-0.011204489506781101,
0.29774707555770874,
0.37949419021606445,
-0.3916880190372467,
0.7529309391975403,
0.5649354457855225,
-0.5277106761932373,
-0.8642524480819702,
-0.08554751425981522,
-1.3373446464538574,
0.06446918845176697,
1.0788360834121704,
0.03044094704091549,
-0.5834890007972717,
0.09831365197896957,
-0.2337016761302948,
0.15418504178524017,
-0.5701655149459839,
0.4566243886947632,
0.5694966912269592,
-0.10376214981079102,
0.13137726485729218,
-0.4406580626964569,
0.6410812735557556,
0.031569406390190125,
-0.9400148987770081,
0.203937366604805,
0.44801899790763855,
0.46414557099342346,
0.3317567706108093,
0.7443274259567261,
-0.34694424271583557,
0.047868434339761734,
-0.10489562898874283,
0.27572327852249146,
-0.24825137853622437,
0.07055728137493134,
-0.38114020228385925,
-0.13473749160766602,
-0.47698307037353516,
-0.19963371753692627
]
|
huggingartists/red-hot-chili-peppers | huggingartists | 2022-10-25T09:42:43Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/2879181f9522394ad29c16478421aa77.1000x1000x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6249759197235107,
-0.5408136248588562,
0.07452299445867538,
0.31492868065834045,
-0.1812555491924286,
0.032347314059734344,
-0.38421526551246643,
-0.36814817786216736,
0.8471603989601135,
0.31132686138153076,
-0.9094434976577759,
-0.8541299700737,
-0.5694613456726074,
0.16485391557216644,
-0.11230231821537018,
1.2640255689620972,
-0.156476691365242,
-0.40996837615966797,
-0.2964005172252655,
-0.22158090770244598,
-0.2564866840839386,
-0.25998789072036743,
-0.2809188961982727,
-0.35874366760253906,
0.42272964119911194,
0.5215887427330017,
0.8220058679580688,
0.9002881646156311,
0.5550680160522461,
0.3405205011367798,
-0.11411305516958237,
-0.027500635012984276,
-0.377133846282959,
-0.08307722955942154,
0.13459984958171844,
-0.23635292053222656,
-0.5579038858413696,
0.2444523572921753,
0.49447372555732727,
0.33332908153533936,
-0.042430635541677475,
0.41492828726768494,
0.026664428412914276,
0.8146237730979919,
-0.27182161808013916,
0.39380186796188354,
-0.3084527552127838,
-0.12728340923786163,
-0.23426932096481323,
-0.023009389638900757,
0.16326087713241577,
-0.6586407423019409,
-0.071525938808918,
-0.7652800679206848,
0.05033846199512482,
-0.046851951628923416,
1.0481150150299072,
0.14230327308177948,
0.1495807021856308,
-0.21933943033218384,
-0.254856675863266,
0.4961262047290802,
-0.5708192586898804,
-0.023738550022244453,
0.5549408197402954,
0.17465154826641083,
-0.010897736996412277,
-0.6011204123497009,
-0.6642613410949707,
0.06216065213084221,
-0.15500931441783905,
0.2919839918613434,
-0.18682029843330383,
-0.3811790943145752,
0.4962242841720581,
0.5597970485687256,
-0.5553717017173767,
-0.2060500681400299,
-0.5187140703201294,
-0.036111980676651,
1.1350914239883423,
0.11105028539896011,
0.4316079914569855,
-0.4772908687591553,
-0.25644779205322266,
-0.4522417485713959,
-0.29036998748779297,
0.24643701314926147,
0.5074371099472046,
0.5074020028114319,
-1.058119297027588,
0.6388439536094666,
-0.13276556134223938,
0.5594991445541382,
0.1160932406783104,
-0.049724895507097244,
0.8405652046203613,
-0.4308789074420929,
-0.1685132533311844,
-0.20196761190891266,
1.1714024543762207,
0.6364949345588684,
0.1994248330593109,
0.05534689128398895,
-0.026212943717837334,
0.06855960190296173,
-0.1805434226989746,
-0.76331627368927,
-0.4669150114059448,
0.6970659494400024,
-0.4995787739753723,
-0.579736053943634,
0.16205675899982452,
-0.9964084625244141,
-0.2668592631816864,
-0.36284226179122925,
0.23249758780002594,
-0.4195857346057892,
-0.558269202709198,
0.10793314129114151,
-0.38465994596481323,
0.12070591747760773,
0.03511841967701912,
-0.5421103239059448,
0.16194656491279602,
0.5710031390190125,
0.7923693060874939,
0.1864880621433258,
-0.3120094835758209,
-0.21766027808189392,
-0.148695170879364,
-0.07481618225574493,
0.7094760537147522,
-0.35520949959754944,
-0.3497738540172577,
-0.15161709487438202,
0.35745108127593994,
-0.09903191775083542,
-0.3346236050128937,
0.8926429152488708,
0.0867905542254448,
0.13457055389881134,
-0.5958887338638306,
-0.39483222365379333,
0.07875249534845352,
0.3167646527290344,
-0.7330460548400879,
1.117968201637268,
0.3024420738220215,
-0.9912010431289673,
0.1961793303489685,
-0.8210031986236572,
-0.38862234354019165,
0.013043113052845001,
-0.00736994668841362,
-0.7908012866973877,
-0.2118287980556488,
0.19505161046981812,
0.7157758474349976,
-0.34454789757728577,
-0.009224742650985718,
-0.5888391137123108,
-0.1517014503479004,
0.4422457218170166,
0.23271271586418152,
1.194803237915039,
0.19341735541820526,
-0.17173248529434204,
0.1416350156068802,
-0.9385244846343994,
0.1018393486738205,
0.42800480127334595,
-0.17079654335975647,
-0.09778617322444916,
-0.24961994588375092,
0.4539308249950409,
0.2998102307319641,
-0.0023413372691720724,
-0.5308252573013306,
0.3781125843524933,
-0.1308513879776001,
0.5213021636009216,
0.7513845562934875,
-0.001855556620284915,
0.331175833940506,
-0.584967315196991,
0.4107834994792938,
0.10870230942964554,
0.3442557454109192,
0.03174435347318649,
-0.5338857173919678,
-0.40718546509742737,
-0.2900403141975403,
0.3559895157814026,
0.517775297164917,
-0.7505077719688416,
1.0162745714187622,
-0.3584616184234619,
-0.868697464466095,
-0.5729405283927917,
0.14959146082401276,
0.16097021102905273,
0.41362783312797546,
0.3557024896144867,
-0.3666192889213562,
-0.5983304977416992,
-0.6529841423034668,
0.08326403796672821,
-0.1915402114391327,
0.12388233840465546,
0.45137155055999756,
0.8338339924812317,
-0.2837720513343811,
0.8629477024078369,
-0.7128459215164185,
-0.2940156161785126,
-0.28700101375579834,
-0.2784450948238373,
0.43512919545173645,
0.78672194480896,
0.7208532094955444,
-0.8998549580574036,
-0.5413851737976074,
-0.19295130670070648,
-0.7009713053703308,
-0.08223901689052582,
-0.07008833438158035,
-0.2587515413761139,
-0.09206174314022064,
0.16238106787204742,
-0.699738621711731,
0.4940764307975769,
0.4978135824203491,
-0.6670843958854675,
0.5011078119277954,
0.08364102244377136,
0.08395158499479294,
-1.2631123065948486,
0.35055026412010193,
0.337944358587265,
0.08222134411334991,
-0.6102678179740906,
-0.2262151688337326,
-0.04093495383858681,
-0.07280725240707397,
-0.16968445479869843,
0.5634850859642029,
-0.35991957783699036,
0.27313297986984253,
0.11927525699138641,
0.0827704593539238,
0.053732823580503464,
0.4486986994743347,
-0.07670630514621735,
0.34693771600723267,
0.9876599311828613,
-0.445930540561676,
0.6897843480110168,
0.4841051995754242,
-0.22595861554145813,
0.8102363348007202,
-0.7837765216827393,
-0.0012494652764871716,
-0.26274117827415466,
0.3718746304512024,
-0.8313250541687012,
-0.5482842922210693,
0.8412178754806519,
-0.7114195823669434,
0.3475627601146698,
-0.262160062789917,
-0.6292945146560669,
-0.8333068490028381,
-0.6094762086868286,
0.11612655967473984,
0.5133110284805298,
-0.361806720495224,
0.3740749955177307,
0.621184229850769,
0.12639488279819489,
-0.32780686020851135,
-0.7786647081375122,
-0.1654047966003418,
-0.43333354592323303,
-0.7676382660865784,
0.41629651188850403,
-0.3320910930633545,
-0.13276022672653198,
0.14028169214725494,
0.13808725774288177,
0.06455804407596588,
-0.005641270894557238,
0.3950868248939514,
0.22401529550552368,
0.1405327469110489,
0.028243636712431908,
-0.10190724581480026,
-0.18738286197185516,
0.08687885105609894,
-0.1634165197610855,
0.29117852449417114,
-0.2145872563123703,
-0.0500389039516449,
-0.6482745409011841,
0.16273002326488495,
0.5014384388923645,
-0.25105175375938416,
0.6949244737625122,
0.8224116563796997,
-0.2338639795780182,
0.02712705172598362,
-0.453540176153183,
-0.14088782668113708,
-0.40650731325149536,
0.017001209780573845,
-0.24015341699123383,
-0.5695582032203674,
0.9074700474739075,
0.21673683822155,
0.06364002078771591,
0.651283323764801,
0.5123214721679688,
-0.0693356990814209,
0.5955657958984375,
0.27920493483543396,
-0.2717353105545044,
0.5251907110214233,
-0.6506861448287964,
-0.2403404712677002,
-0.7934094071388245,
-0.4170713424682617,
-0.5932399034500122,
-0.48855578899383545,
-0.8642461895942688,
-0.5305284261703491,
0.2234656661748886,
0.06475405395030975,
-0.2317596822977066,
0.5044739246368408,
-0.977374792098999,
0.3675728738307953,
0.38100042939186096,
0.34395289421081543,
-0.17666281759738922,
0.12530416250228882,
0.10729261487722397,
0.15024614334106445,
-0.5761802196502686,
-0.17411589622497559,
1.140365719795227,
0.5284584164619446,
0.6071932315826416,
-0.0602555051445961,
0.7726844549179077,
0.09920237958431244,
0.19999584555625916,
-0.4839622676372528,
0.46588876843452454,
-0.0471300408244133,
-0.49702033400535583,
-0.17148301005363464,
-0.5582951903343201,
-0.8563873767852783,
-0.13168758153915405,
-0.4364968538284302,
-0.6321451663970947,
0.4960866868495941,
0.12137055397033691,
-0.2620372772216797,
0.36311495304107666,
-0.6638062596321106,
0.8761153221130371,
-0.11286528408527374,
-0.4882816970348358,
0.36900466680526733,
-0.9825279116630554,
0.14208020269870758,
0.27216479182243347,
0.34811919927597046,
-0.40073496103286743,
0.09086485207080841,
1.0007109642028809,
-0.7556003332138062,
0.9129200577735901,
-0.3577687740325928,
0.13199718296527863,
0.5871830582618713,
-0.3621910512447357,
0.4978724718093872,
0.13141538202762604,
-0.2762129604816437,
0.3018614947795868,
-0.056269191205501556,
-0.4007180631160736,
-0.47727176547050476,
0.7640019655227661,
-0.7394586205482483,
0.05688159540295601,
-0.3891809284687042,
-0.46772152185440063,
0.0975402295589447,
0.15649506449699402,
0.30481892824172974,
0.27003201842308044,
0.00888708047568798,
0.1174728125333786,
0.501336932182312,
-0.1838911473751068,
0.25993409752845764,
-0.0031595921609550714,
-0.0341079942882061,
-0.7978697419166565,
0.9384374618530273,
0.13605254888534546,
0.04017017036676407,
0.018906544893980026,
0.433923602104187,
-0.3681800961494446,
-0.11711157858371735,
-0.5418378710746765,
0.45902979373931885,
-0.3820559084415436,
-0.3924427032470703,
-0.5110334157943726,
-0.12850601971149445,
-0.7399330139160156,
-0.1433519870042801,
-0.26944389939308167,
-0.512605607509613,
-0.37388232350349426,
-0.21956972777843475,
1.0997463464736938,
0.4587027430534363,
-0.7311573624610901,
0.13030563294887543,
-0.4702816605567932,
0.34069588780403137,
-0.10315670073032379,
0.6369449496269226,
-0.16101224720478058,
-0.2930867671966553,
-0.19636303186416626,
0.0926680937409401,
-0.23745210468769073,
-0.7446136474609375,
0.3070388436317444,
-0.08738352358341217,
0.32139089703559875,
0.12504319846630096,
0.16277490556240082,
0.6955901384353638,
-0.062053680419921875,
0.6410796642303467,
0.3587290048599243,
-0.7415806651115417,
0.7248592972755432,
-0.50604248046875,
0.21786858141422272,
0.7324321269989014,
0.3730570375919342,
-0.5806271433830261,
-0.18063794076442719,
-0.8945111036300659,
-0.8660326600074768,
0.7687135338783264,
0.5127177834510803,
0.024081289768218994,
0.11930666118860245,
0.49106740951538086,
-0.19969481229782104,
0.2330452799797058,
-0.7226892113685608,
-0.9136929512023926,
-0.43052566051483154,
-0.32085397839546204,
-0.07890016585588455,
-0.03322918713092804,
-0.2840864360332489,
-0.7095406651496887,
0.7540189623832703,
-0.07108032703399658,
0.3600423336029053,
0.38628414273262024,
0.4495351314544678,
-0.20646648108959198,
0.10419970005750656,
0.33294254541397095,
0.3512379229068756,
-0.26354122161865234,
-0.26820361614227295,
-0.21887366473674774,
-0.5659530162811279,
-0.10686711966991425,
0.4980900287628174,
-0.35721755027770996,
-0.03348074108362198,
0.19088499248027802,
0.8500105738639832,
-0.012133382260799408,
-0.23759937286376953,
0.5352674126625061,
-0.09239958971738815,
-0.38091665506362915,
-0.4590417444705963,
0.006792107596993446,
0.11566194891929626,
0.2023988664150238,
0.06524671614170074,
0.1172945573925972,
-0.12307214736938477,
-0.45523056387901306,
0.39385390281677246,
0.24769282341003418,
-0.40475672483444214,
-0.41972875595092773,
0.6004095673561096,
0.10186624526977539,
-0.12521152198314667,
0.4777930676937103,
-0.14887021481990814,
-0.6198562979698181,
0.7965609431266785,
0.12591588497161865,
0.7969433069229126,
-0.141226664185524,
0.36061784625053406,
0.7524787783622742,
0.25605326890945435,
-0.05567727982997894,
0.5107879042625427,
-0.20346765220165253,
-0.6041203141212463,
-0.003003016347065568,
-0.5169187188148499,
-0.07204311341047287,
0.1143764927983284,
-0.8153364062309265,
0.42513957619667053,
-0.4769511818885803,
-0.283705472946167,
0.04311253875494003,
0.3003752529621124,
-0.7503721714019775,
0.2382357269525528,
-0.12138821184635162,
1.030593991279602,
-1.1238229274749756,
0.4889264702796936,
0.6931440234184265,
-0.6857133507728577,
-1.112116813659668,
-0.13870058953762054,
0.17952889204025269,
-0.5152855515480042,
0.2422506958246231,
0.12344281375408173,
0.5628925561904907,
-0.12804391980171204,
-0.8837016820907593,
-0.6812497973442078,
1.1519790887832642,
0.012196274474263191,
-0.2393629550933838,
0.33059611916542053,
0.16311532258987427,
0.609761118888855,
-0.3489994704723358,
0.35946017503738403,
0.6762056350708008,
0.7045789957046509,
0.38065120577812195,
-0.6950046420097351,
0.27467888593673706,
-0.616404116153717,
-0.2057514786720276,
0.07448861747980118,
-0.9541669487953186,
0.6083110570907593,
-0.19206124544143677,
-0.0637446865439415,
-0.01191555242985487,
0.6413241028785706,
0.4405290484428406,
0.41400012373924255,
0.42584216594696045,
0.7960324883460999,
0.7734732627868652,
-0.41303688287734985,
1.2368178367614746,
-0.22365199029445648,
0.6095327734947205,
0.8378943204879761,
0.04203910008072853,
0.5111098885536194,
0.29703402519226074,
-0.3488936126232147,
0.47964170575141907,
0.6651651263237,
-0.46070414781570435,
0.3007582128047943,
0.4121856987476349,
-0.01903991587460041,
-0.06644238531589508,
-0.22191347181797028,
-0.6326571106910706,
0.2307606041431427,
0.2631229758262634,
-0.435696005821228,
0.08332769572734833,
0.003804412204772234,
0.39828211069107056,
0.005418947897851467,
-0.2509058713912964,
0.6322444081306458,
-0.002390459878370166,
-0.396884948015213,
0.549979031085968,
-0.21011292934417725,
0.6872713565826416,
-0.5185464024543762,
0.15224726498126984,
-0.11235707998275757,
0.1407674103975296,
-0.6436660289764404,
-1.1371041536331177,
0.3647790551185608,
-0.028931381180882454,
-0.29628899693489075,
-0.29668381810188293,
0.6266260147094727,
-0.44343486428260803,
-0.8251598477363586,
0.2114083468914032,
0.1203325018286705,
0.3100574314594269,
0.16403049230575562,
-1.2958056926727295,
0.6965216994285583,
0.18727414309978485,
-0.39810842275619507,
0.09883967787027359,
0.5402204394340515,
0.30015262961387634,
0.49795061349868774,
0.6791651844978333,
0.23593676090240479,
-0.20238834619522095,
0.12240912020206451,
1.1394262313842773,
-0.5953751802444458,
-0.45609477162361145,
-0.7357742786407471,
0.9069464802742004,
-0.40125972032546997,
-0.38465574383735657,
0.7272492051124573,
0.8009834289550781,
0.897896945476532,
-0.03819561377167702,
0.8554978966712952,
-0.6903176307678223,
0.7231240272521973,
-0.2286655306816101,
0.9367266297340393,
-0.6990653872489929,
0.04476555436849594,
-0.7952229976654053,
-0.53272545337677,
-0.45343253016471863,
0.6449941992759705,
-0.22650255262851715,
0.2042609453201294,
0.26353517174720764,
0.9346287846565247,
0.011653727851808071,
0.1022985652089119,
-0.24983945488929749,
0.3200880289077759,
0.2750745117664337,
0.540488600730896,
0.3855946958065033,
-0.9430164694786072,
0.40824487805366516,
-0.809669017791748,
-0.33949217200279236,
0.08320488035678864,
-0.7889028191566467,
-0.8968655467033386,
-0.9197521805763245,
-0.7453625798225403,
-0.8235129714012146,
-0.2504485249519348,
1.039757251739502,
0.6716668605804443,
-0.7011100649833679,
-0.3091040551662445,
0.04094605892896652,
0.33755144476890564,
-0.12252770364284515,
-0.3429650366306305,
0.6306515336036682,
0.37210315465927124,
-0.6074120998382568,
-0.09228187054395676,
0.004276333376765251,
0.22308652102947235,
0.12193313241004944,
-0.11666674166917801,
-0.14423897862434387,
-0.32143035531044006,
0.3731509745121002,
0.5735217928886414,
-0.35263049602508545,
-0.0482458733022213,
-0.24250219762325287,
0.046701204031705856,
0.1974218785762787,
0.5270674824714661,
-0.5366021394729614,
0.16532638669013977,
0.634023129940033,
0.23567235469818115,
0.4007379412651062,
0.19270163774490356,
0.05074970796704292,
-0.5202520489692688,
0.08506673574447632,
-0.02193680964410305,
0.2653263807296753,
0.4068808853626251,
-0.4386633336544037,
0.7924495935440063,
0.5246202945709229,
-0.5075576305389404,
-0.8434284925460815,
-0.14861418306827545,
-1.3145817518234253,
0.03673901781439781,
1.135939598083496,
0.021945025771856308,
-0.5419895648956299,
0.06757836788892746,
-0.1503959447145462,
0.1475331336259842,
-0.6294925212860107,
0.4251677393913269,
0.41726353764533997,
-0.10115225613117218,
0.02992604486644268,
-0.25115352869033813,
0.6284886598587036,
-0.09045279026031494,
-0.9917445182800293,
0.19307802617549896,
0.42757904529571533,
0.457162469625473,
0.37302345037460327,
0.7429103255271912,
-0.2690277099609375,
0.08428069204092026,
-0.07959715276956558,
0.22108390927314758,
-0.22054357826709747,
-0.03706735745072365,
-0.2969471514225006,
-0.05635244399309158,
-0.5135496854782104,
-0.22938643395900726
]
|
huggingartists/rocket | huggingartists | 2022-10-25T09:43:03Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/0fb709925134799103886db5e722ef73.1000x1000x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.5711522698402405,
-0.4871448874473572,
0.05384572222828865,
0.3222976624965668,
-0.191637322306633,
0.08124052733182907,
-0.2961675822734833,
-0.4201243817806244,
0.8480839729309082,
0.29207944869995117,
-0.9309483766555786,
-0.8387165665626526,
-0.564717710018158,
0.10719121247529984,
-0.09309224784374237,
1.289379358291626,
-0.17612698674201965,
-0.4162701368331909,
-0.3229176998138428,
-0.17659497261047363,
-0.3254854679107666,
-0.27145519852638245,
-0.2785033583641052,
-0.349823921918869,
0.3543979227542877,
0.5341396331787109,
0.7369566559791565,
0.9351662397384644,
0.5533231496810913,
0.3433179557323456,
-0.11883443593978882,
-0.026158934459090233,
-0.42730873823165894,
-0.11737144738435745,
0.1853000521659851,
-0.27315327525138855,
-0.6278170943260193,
0.22641675174236298,
0.5603706240653992,
0.40582355856895447,
-0.08071573823690414,
0.4655986726284027,
0.0685630664229393,
0.8588356971740723,
-0.27842023968696594,
0.5371342301368713,
-0.25336673855781555,
-0.14733415842056274,
-0.2674981355667114,
0.02635238878428936,
0.18577183783054352,
-0.6026189923286438,
-0.024931304156780243,
-0.8132771849632263,
0.024378126487135887,
0.043216269463300705,
1.0121357440948486,
0.11694207787513733,
0.15134884417057037,
-0.21842807531356812,
-0.16533038020133972,
0.560608983039856,
-0.5397964119911194,
-0.03338566794991493,
0.5250436663627625,
0.1885625571012497,
-0.011918662115931511,
-0.6432870626449585,
-0.5880968570709229,
0.07085293531417847,
-0.14481396973133087,
0.3144516348838806,
-0.17985184490680695,
-0.3245365619659424,
0.45235124230384827,
0.5209138989448547,
-0.5463241934776306,
-0.24201896786689758,
-0.5483736991882324,
-0.13455909490585327,
1.1390552520751953,
0.1484731286764145,
0.409911185503006,
-0.5181062817573547,
-0.2323308289051056,
-0.4405433237552643,
-0.3110343813896179,
0.386907160282135,
0.549802839756012,
0.5075740814208984,
-1.0095852613449097,
0.6699263453483582,
-0.194825679063797,
0.5129398703575134,
0.1619296669960022,
-0.058152034878730774,
0.7924601435661316,
-0.42842620611190796,
-0.12190087139606476,
-0.1062428206205368,
1.0796154737472534,
0.6591356992721558,
0.18197497725486755,
0.09024547040462494,
-0.016712544485926628,
0.04346548765897751,
-0.15197235345840454,
-0.8694203495979309,
-0.42473557591438293,
0.6664537191390991,
-0.598272442817688,
-0.57561194896698,
0.14717422425746918,
-0.9797938466072083,
-0.2295311987400055,
-0.27289652824401855,
0.2563752830028534,
-0.35869309306144714,
-0.5075783729553223,
0.22242991626262665,
-0.3007003366947174,
0.08036567270755768,
0.008213911205530167,
-0.5827527642250061,
0.19300799071788788,
0.6308807134628296,
0.742312490940094,
0.2323848307132721,
-0.32166436314582825,
-0.2789290249347687,
-0.16435258090496063,
-0.07824841141700745,
0.694415271282196,
-0.3872928023338318,
-0.40991339087486267,
-0.14736516773700714,
0.319402813911438,
-0.07478086650371552,
-0.2976270616054535,
0.8943827152252197,
0.08423947542905807,
0.1917884647846222,
-0.6030876636505127,
-0.4592188000679016,
0.010960954241454601,
0.25305837392807007,
-0.6714938282966614,
1.0928837060928345,
0.2597881555557251,
-0.9771836400032043,
0.21350643038749695,
-0.8316090703010559,
-0.304472953081131,
0.029765168204903603,
0.06699054688215256,
-0.7926645278930664,
-0.20920731127262115,
0.2007073611021042,
0.738944411277771,
-0.31528887152671814,
-0.019341735169291496,
-0.5765938758850098,
-0.12587480247020721,
0.3342319130897522,
0.30288493633270264,
1.1328362226486206,
0.13545449078083038,
-0.13788332045078278,
0.12170619517564774,
-0.9280036687850952,
0.13757415115833282,
0.42752090096473694,
-0.18086494505405426,
-0.06435046344995499,
-0.19710254669189453,
0.4207356870174408,
0.27531006932258606,
0.12303799390792847,
-0.6180236339569092,
0.4404633641242981,
-0.21172787249088287,
0.4201027750968933,
0.704906702041626,
-0.004377929028123617,
0.30533865094184875,
-0.6329373717308044,
0.427013099193573,
0.06917551904916763,
0.3827145993709564,
-0.02011873759329319,
-0.6235566735267639,
-0.43682143092155457,
-0.25520336627960205,
0.2235310822725296,
0.4510565996170044,
-0.6410990953445435,
0.9800131916999817,
-0.34294527769088745,
-0.8913667798042297,
-0.5965941548347473,
0.1275387853384018,
0.24183613061904907,
0.5332514047622681,
0.4022025167942047,
-0.3521547019481659,
-0.6072717308998108,
-0.665188193321228,
0.0309766735881567,
-0.3064217269420624,
0.19411195814609528,
0.4481658935546875,
0.8400335311889648,
-0.2335023283958435,
0.8270976543426514,
-0.698265552520752,
-0.26300445199012756,
-0.2624404728412628,
-0.29031768441200256,
0.3977903127670288,
0.7948981523513794,
0.6698805689811707,
-0.8181573748588562,
-0.5196401476860046,
-0.20847682654857635,
-0.6716477870941162,
-0.11906018108129501,
-0.037203650921583176,
-0.24527724087238312,
-0.05257668346166611,
0.13062603771686554,
-0.7252541184425354,
0.5434016585350037,
0.48777204751968384,
-0.711521565914154,
0.5734638571739197,
0.08302119374275208,
0.04089320823550224,
-1.2721067667007446,
0.37514179944992065,
0.26866787672042847,
0.07483655959367752,
-0.5977739095687866,
-0.22303393483161926,
-0.046013180166482925,
-0.03826184943318367,
-0.13680796325206757,
0.6138482689857483,
-0.3357149660587311,
0.28396379947662354,
0.09414206445217133,
0.04750808700919151,
0.07716679573059082,
0.40119752287864685,
-0.05644059553742409,
0.29372087121009827,
1.0322160720825195,
-0.35772067308425903,
0.6692939400672913,
0.6039385795593262,
-0.21440325677394867,
0.8112620115280151,
-0.8277862668037415,
-0.018099069595336914,
-0.2838347852230072,
0.42081958055496216,
-0.913668692111969,
-0.5401521325111389,
0.8036646246910095,
-0.7095357179641724,
0.38254514336586,
-0.23600053787231445,
-0.5647040605545044,
-0.8421304821968079,
-0.6624228954315186,
0.14331349730491638,
0.5843290090560913,
-0.3903171420097351,
0.35800743103027344,
0.6042776107788086,
0.10045640915632248,
-0.42819735407829285,
-0.7390411496162415,
-0.13484345376491547,
-0.3905530273914337,
-0.817051887512207,
0.4288930296897888,
-0.3485754132270813,
-0.06772193312644958,
0.14422525465488434,
0.08912219852209091,
0.10363153368234634,
-0.026418469846248627,
0.461811363697052,
0.2891370356082916,
0.10671719908714294,
-0.023223083466291428,
-0.09134291857481003,
-0.2476465404033661,
0.1238575205206871,
-0.22780734300613403,
0.22601908445358276,
-0.30889424681663513,
-0.12475472688674927,
-0.6737587451934814,
0.15332920849323273,
0.44637176394462585,
-0.21651846170425415,
0.6648068428039551,
0.780903697013855,
-0.23434089124202728,
-0.02184801734983921,
-0.48557597398757935,
-0.1667785793542862,
-0.423580527305603,
0.06781681627035141,
-0.2105615735054016,
-0.6168555021286011,
0.945746898651123,
0.22931575775146484,
0.09770747274160385,
0.6619795560836792,
0.5042591691017151,
-0.06153007596731186,
0.6426578164100647,
0.3621164858341217,
-0.29298529028892517,
0.4412594735622406,
-0.6474756002426147,
-0.23959453403949738,
-0.8165467381477356,
-0.5169215798377991,
-0.5652660131454468,
-0.5275596380233765,
-0.8267245888710022,
-0.4898791015148163,
0.20482616126537323,
0.10554509609937668,
-0.21250709891319275,
0.49325886368751526,
-0.9821421504020691,
0.335419237613678,
0.2855038344860077,
0.23299427330493927,
-0.11534199118614197,
0.07338207215070724,
0.07218588143587112,
0.10319201648235321,
-0.604107141494751,
-0.212197408080101,
1.165327548980713,
0.5022808909416199,
0.5913580060005188,
-0.13557042181491852,
0.8049780130386353,
-0.03311498090624809,
0.22154571115970612,
-0.5227267742156982,
0.49945691227912903,
0.0259631909430027,
-0.5356925129890442,
-0.10057205706834793,
-0.4942188560962677,
-0.912780225276947,
-0.16688977181911469,
-0.41379696130752563,
-0.6832206845283508,
0.45243722200393677,
0.09178537130355835,
-0.22921091318130493,
0.37973469495773315,
-0.6141373515129089,
0.8712931871414185,
-0.03625506907701492,
-0.44828957319259644,
0.25966763496398926,
-1.0453137159347534,
0.17288190126419067,
0.2095438688993454,
0.28580349683761597,
-0.387012779712677,
0.01169753260910511,
1.0143920183181763,
-0.7732755541801453,
0.9277276396751404,
-0.3934853971004486,
0.18128326535224915,
0.6038658618927002,
-0.3195861876010895,
0.4662078320980072,
0.08262483030557632,
-0.24519139528274536,
0.29549485445022583,
0.022814422845840454,
-0.4513840675354004,
-0.4249587059020996,
0.7179403305053711,
-0.747870683670044,
0.05030744895339012,
-0.3470155596733093,
-0.49455082416534424,
0.06147534400224686,
0.16029560565948486,
0.23906491696834564,
0.3185864984989166,
0.0052571711130440235,
0.20095951855182648,
0.40313902497291565,
-0.18227605521678925,
0.2938744127750397,
0.05002078413963318,
-0.1384008675813675,
-0.727802038192749,
0.9339780807495117,
0.13682213425636292,
0.015488185919821262,
0.011272155679762363,
0.4610779583454132,
-0.4293892979621887,
-0.16288135945796967,
-0.5344942212104797,
0.47890111804008484,
-0.39841368794441223,
-0.3709806501865387,
-0.48665156960487366,
-0.1372038722038269,
-0.6178358197212219,
-0.15389703214168549,
-0.3092721104621887,
-0.5543647408485413,
-0.35025566816329956,
-0.18541745841503143,
1.045517921447754,
0.5141034126281738,
-0.6474516987800598,
0.11707650125026703,
-0.5221759676933289,
0.25913265347480774,
-0.10404300689697266,
0.6002944707870483,
-0.1189245954155922,
-0.349231094121933,
-0.24701406061649323,
0.06773117184638977,
-0.21574445068836212,
-0.6526300311088562,
0.27660897374153137,
-0.02370978705585003,
0.36215740442276,
0.08563759922981262,
0.07810983061790466,
0.7072606086730957,
-0.08964572846889496,
0.6783230900764465,
0.3109796643257141,
-0.7714230418205261,
0.6971421241760254,
-0.541723370552063,
0.16735395789146423,
0.7102200984954834,
0.40056464076042175,
-0.5902454853057861,
-0.14703164994716644,
-0.9305810928344727,
-0.7968028783798218,
0.7575976252555847,
0.4583309590816498,
0.03260321170091629,
0.2090120017528534,
0.5889972448348999,
-0.17774805426597595,
0.28297755122184753,
-0.6418038010597229,
-0.889234721660614,
-0.47226405143737793,
-0.3383305072784424,
-0.047052741050720215,
-0.02119826152920723,
-0.21950668096542358,
-0.6835444569587708,
0.7658154368400574,
-0.12958870828151703,
0.298455148935318,
0.3824118673801422,
0.4871159791946411,
-0.23092932999134064,
-0.02632555365562439,
0.2721680700778961,
0.3694291114807129,
-0.269942045211792,
-0.325517863035202,
-0.2328796237707138,
-0.6356605291366577,
-0.09974951297044754,
0.5020965337753296,
-0.2787177562713623,
-0.11757387965917587,
0.2442891001701355,
0.8411394357681274,
0.0014074256177991629,
-0.27932247519493103,
0.5748478174209595,
-0.06721939891576767,
-0.4221784770488739,
-0.31722578406333923,
0.01646406203508377,
0.17474596202373505,
0.22071057558059692,
0.08867152035236359,
0.12293022871017456,
-0.12573418021202087,
-0.38908928632736206,
0.39449843764305115,
0.30345749855041504,
-0.3544570505619049,
-0.5191011428833008,
0.6488313674926758,
0.08046647161245346,
-0.10391638427972794,
0.4012167453765869,
-0.13986286520957947,
-0.5923051834106445,
0.792899489402771,
0.15763337910175323,
0.8057191371917725,
-0.14017197489738464,
0.35267144441604614,
0.7452759146690369,
0.23402325809001923,
-0.06980688124895096,
0.5518379807472229,
-0.17379482090473175,
-0.6021477580070496,
-0.10918005555868149,
-0.5396918654441833,
-0.14400237798690796,
0.06497937440872192,
-0.7904335260391235,
0.42933493852615356,
-0.5157007575035095,
-0.19005800783634186,
0.010717350989580154,
0.39269644021987915,
-0.7006740570068359,
0.18722890317440033,
-0.053280916064977646,
1.03585684299469,
-1.0394357442855835,
0.45808207988739014,
0.7022766470909119,
-0.6329922080039978,
-1.1986043453216553,
-0.17738983035087585,
0.22143016755580902,
-0.6198168992996216,
0.3179371654987335,
0.17238749563694,
0.4872044622898102,
-0.07876145839691162,
-0.8754863142967224,
-0.6847615242004395,
1.1660114526748657,
0.0048973532393574715,
-0.22470787167549133,
0.34022894501686096,
0.16065528988838196,
0.6344316601753235,
-0.3760765492916107,
0.3442786633968353,
0.6087896823883057,
0.737726628780365,
0.3333882689476013,
-0.7461196780204773,
0.29805174469947815,
-0.6318230032920837,
-0.2621036469936371,
0.04652363434433937,
-1.0283623933792114,
0.614240825176239,
-0.1750313639640808,
-0.019350465387105942,
0.04198320582509041,
0.6175317764282227,
0.47039225697517395,
0.38015246391296387,
0.401965856552124,
0.761660635471344,
0.8038297295570374,
-0.34559282660484314,
1.2419068813323975,
-0.27427542209625244,
0.6387694478034973,
0.723267138004303,
0.020932070910930634,
0.5216522812843323,
0.2632575035095215,
-0.3549001216888428,
0.5371012091636658,
0.6296740174293518,
-0.4227568507194519,
0.24513940513134003,
0.3849491477012634,
-0.01801327057182789,
-0.058010172098875046,
-0.259624183177948,
-0.636722207069397,
0.30231404304504395,
0.23680920898914337,
-0.2851283848285675,
0.01129953097552061,
-0.04295583814382553,
0.3700472116470337,
-0.024911679327487946,
-0.26202186942100525,
0.5972064137458801,
0.004623130429536104,
-0.37549227476119995,
0.5700601935386658,
-0.2324192076921463,
0.7000309824943542,
-0.5869365334510803,
0.18159620463848114,
-0.0737418606877327,
0.1240147203207016,
-0.6610239744186401,
-1.1289955377578735,
0.37126079201698303,
-0.04970547929406166,
-0.24659065902233124,
-0.3461206257343292,
0.72027987241745,
-0.4434625506401062,
-0.8085653185844421,
0.20829284191131592,
0.21593376994132996,
0.3290840685367584,
0.14830592274665833,
-1.315214991569519,
0.6028040051460266,
0.16760413348674774,
-0.4820023477077484,
0.12273115664720535,
0.47949814796447754,
0.27410387992858887,
0.5735747814178467,
0.7282500267028809,
0.25659316778182983,
-0.2079554796218872,
0.0433497317135334,
1.123015284538269,
-0.5589472651481628,
-0.48030585050582886,
-0.7258270382881165,
0.9299634099006653,
-0.33892157673835754,
-0.4023153781890869,
0.767117977142334,
0.8186367750167847,
0.8097860217094421,
-0.028931258246302605,
0.8006134033203125,
-0.6130455136299133,
0.7227910757064819,
-0.18590618669986725,
0.9497637748718262,
-0.7288327813148499,
-0.0139132309705019,
-0.7458624839782715,
-0.5665404796600342,
-0.4615393579006195,
0.6373820304870605,
-0.18684910237789154,
0.2009056806564331,
0.3049405813217163,
0.9594362378120422,
0.009467068128287792,
0.14669440686702728,
-0.2670154273509979,
0.3167806565761566,
0.3508022725582123,
0.5886906981468201,
0.45708826184272766,
-0.9147932529449463,
0.42118918895721436,
-0.7612497806549072,
-0.29780226945877075,
0.030080579221248627,
-0.8766821622848511,
-0.9297897219657898,
-0.9256060719490051,
-0.7116262316703796,
-0.7567623257637024,
-0.2876170873641968,
1.043051838874817,
0.7463502287864685,
-0.6909821629524231,
-0.30397963523864746,
0.030096694827079773,
0.2551230490207672,
-0.04336975887417793,
-0.3239593803882599,
0.6378800868988037,
0.34620338678359985,
-0.5983655452728271,
-0.03551792725920677,
0.05976805463433266,
0.21830348670482635,
0.06032252311706543,
-0.11841902881860733,
-0.07560756802558899,
-0.30762583017349243,
0.31179308891296387,
0.5493085980415344,
-0.33987605571746826,
-0.13266995549201965,
-0.20529359579086304,
0.08868592232465744,
0.20070597529411316,
0.46825650334358215,
-0.5816137790679932,
0.2174694687128067,
0.6531427502632141,
0.32641494274139404,
0.45439639687538147,
0.19936954975128174,
-0.030109746381640434,
-0.5221928954124451,
0.11298731714487076,
-0.026258273050189018,
0.28985849022865295,
0.39611274003982544,
-0.4443814754486084,
0.7392258644104004,
0.5736191272735596,
-0.5775762796401978,
-0.8125046491622925,
-0.15813463926315308,
-1.3492003679275513,
0.08927265554666519,
1.0527856349945068,
0.03420840576291084,
-0.5505185127258301,
0.08681430667638779,
-0.23335222899913788,
0.09476356208324432,
-0.6142394542694092,
0.46126919984817505,
0.5092867016792297,
-0.12363774329423904,
0.1660802662372589,
-0.295025497674942,
0.6441982388496399,
-0.0036200135946273804,
-1.0261589288711548,
0.18508438766002655,
0.4395141899585724,
0.4513649046421051,
0.34346210956573486,
0.7132543921470642,
-0.2633386552333832,
0.061538998037576675,
-0.05957659333944321,
0.2315705418586731,
-0.28571847081184387,
-0.016631953418254852,
-0.30880308151245117,
-0.07655386626720428,
-0.5192775130271912,
-0.21086366474628448
]
|
huggingartists/sam-kim | huggingartists | 2022-10-25T09:43:10Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/03634b3c46e2357fa70d455446936297.800x800x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6032675504684448,
-0.4876461625099182,
0.13047124445438385,
0.2639223337173462,
-0.27709272503852844,
0.02454383485019207,
-0.2682211995124817,
-0.41059184074401855,
0.8685204386711121,
0.3375444710254669,
-0.9003332257270813,
-0.85465008020401,
-0.5647507309913635,
0.134214386343956,
-0.02520834654569626,
1.2683162689208984,
-0.19959093630313873,
-0.34543538093566895,
-0.31987079977989197,
-0.22934576869010925,
-0.2796882092952728,
-0.3147684931755066,
-0.2879038453102112,
-0.32985496520996094,
0.31130251288414,
0.513262152671814,
0.7274400591850281,
0.895233154296875,
0.523701012134552,
0.3462521731853485,
-0.13060590624809265,
-0.0047491067089140415,
-0.35327252745628357,
-0.11352326720952988,
0.16634009778499603,
-0.3067886531352997,
-0.7129092812538147,
0.2706277370452881,
0.5550976395606995,
0.40350496768951416,
-0.043265167623758316,
0.5148187279701233,
0.040871042758226395,
0.9002277255058289,
-0.2798416316509247,
0.4921310245990753,
-0.24407173693180084,
-0.15288019180297852,
-0.25700777769088745,
0.06923767179250717,
0.18920454382896423,
-0.6156474947929382,
-0.021159719675779343,
-0.7384848594665527,
0.03032608889043331,
0.006167180836200714,
1.0490728616714478,
0.06821224838495255,
0.06532100588083267,
-0.20927713811397552,
-0.15774671733379364,
0.5393784046173096,
-0.5987598299980164,
-0.02108803018927574,
0.6065841913223267,
0.15872487425804138,
0.009942942298948765,
-0.613377571105957,
-0.6060599684715271,
0.05075666680932045,
-0.18486438691616058,
0.29312044382095337,
-0.11988281458616257,
-0.29925885796546936,
0.525352954864502,
0.5493395924568176,
-0.5209997892379761,
-0.2712844908237457,
-0.5058649778366089,
-0.09380732476711273,
1.2187381982803345,
0.15466828644275665,
0.43940335512161255,
-0.539151668548584,
-0.19619326293468475,
-0.359264612197876,
-0.2618638575077057,
0.3321059048175812,
0.5609101057052612,
0.4379328489303589,
-1.0253489017486572,
0.671966552734375,
-0.21102853119373322,
0.5312002301216125,
0.1453370451927185,
-0.09345068782567978,
0.7903609871864319,
-0.4206453859806061,
-0.12934470176696777,
-0.12648224830627441,
1.0294400453567505,
0.6952387094497681,
0.1714485138654709,
0.09230741113424301,
-0.04030138999223709,
0.0698353722691536,
-0.17603282630443573,
-0.830976665019989,
-0.472567081451416,
0.6528640985488892,
-0.6407327055931091,
-0.5835872292518616,
0.18914519250392914,
-1.0259006023406982,
-0.24864867329597473,
-0.33203208446502686,
0.27306699752807617,
-0.33309856057167053,
-0.540331244468689,
0.14931581914424896,
-0.27057987451553345,
0.07466502487659454,
0.017690056934952736,
-0.5499094128608704,
0.17942892014980316,
0.559452474117279,
0.7651272416114807,
0.2438933253288269,
-0.2932797968387604,
-0.2679119408130646,
-0.15411017835140228,
-0.1234423965215683,
0.6342570781707764,
-0.30675432085990906,
-0.34561651945114136,
-0.19275061786174774,
0.3654579222202301,
-0.08421830832958221,
-0.30812883377075195,
0.8885619640350342,
0.08715566992759705,
0.15406297147274017,
-0.5950127243995667,
-0.45200520753860474,
-0.007198854815214872,
0.24432624876499176,
-0.7647526264190674,
1.0530649423599243,
0.33307257294654846,
-0.9923583269119263,
0.22300845384597778,
-0.8284447193145752,
-0.30458831787109375,
0.057748064398765564,
0.09415537118911743,
-0.8052455186843872,
-0.18277810513973236,
0.2031083106994629,
0.7696489691734314,
-0.2898499071598053,
0.01733977720141411,
-0.6304176449775696,
-0.133311465382576,
0.3792869448661804,
0.29663172364234924,
1.1632359027862549,
0.1331818550825119,
-0.14150266349315643,
0.09603019058704376,
-0.9737994074821472,
0.1580987572669983,
0.4806824326515198,
-0.13480539619922638,
-0.13215067982673645,
-0.2396976500749588,
0.3472746014595032,
0.3112906515598297,
0.08238538354635239,
-0.5890958905220032,
0.4101245701313019,
-0.1350048929452896,
0.4595010578632355,
0.7164691090583801,
0.019749676808714867,
0.3420639634132385,
-0.6622083187103271,
0.4391273558139801,
0.0572732612490654,
0.3613729476928711,
-0.05984889343380928,
-0.5494576096534729,
-0.4660429358482361,
-0.33049601316452026,
0.3286294937133789,
0.4740912616252899,
-0.6825596690177917,
1.0238863229751587,
-0.3197249174118042,
-0.8562071323394775,
-0.7109659314155579,
0.12893277406692505,
0.18688301742076874,
0.46872368454933167,
0.34546101093292236,
-0.39447444677352905,
-0.6310581564903259,
-0.628097653388977,
0.05116341635584831,
-0.2707149088382721,
0.15380187332630157,
0.4705665707588196,
0.8301745057106018,
-0.25787097215652466,
0.8214603662490845,
-0.698117196559906,
-0.24847178161144257,
-0.265319287776947,
-0.3101467490196228,
0.3501341640949249,
0.7846513390541077,
0.673590898513794,
-0.8545439839363098,
-0.5284292101860046,
-0.24242167174816132,
-0.7225303053855896,
-0.10971032828092575,
-0.07386211305856705,
-0.2802959382534027,
0.04310039058327675,
0.16015306115150452,
-0.7171927094459534,
0.5861279368400574,
0.5156946182250977,
-0.7072625756263733,
0.5864595770835876,
0.1241740807890892,
0.044990722090005875,
-1.2865614891052246,
0.38014596700668335,
0.22801147401332855,
0.00022481984342448413,
-0.597381591796875,
-0.18788264691829681,
-0.0656408816576004,
-0.04039015993475914,
-0.07624669373035431,
0.6146710515022278,
-0.3352699279785156,
0.2627163827419281,
0.1146601140499115,
0.09422672539949417,
0.10040033608675003,
0.43678590655326843,
-0.10180166363716125,
0.2780703604221344,
0.9898532629013062,
-0.4005269706249237,
0.6789864897727966,
0.5902395248413086,
-0.23299916088581085,
0.8523796796798706,
-0.793451726436615,
0.046568337827920914,
-0.2760562598705292,
0.414165198802948,
-0.8753373026847839,
-0.5571290254592896,
0.845150887966156,
-0.6941438317298889,
0.37312960624694824,
-0.2886446714401245,
-0.559419572353363,
-0.8207206130027771,
-0.672493040561676,
0.12424078583717346,
0.5385913252830505,
-0.3964359164237976,
0.40179386734962463,
0.6015691757202148,
0.031192118301987648,
-0.3086758255958557,
-0.7468113899230957,
-0.144584059715271,
-0.40278348326683044,
-0.7995625734329224,
0.40118682384490967,
-0.33082109689712524,
-0.10474929213523865,
0.19748693704605103,
0.08624133467674255,
0.12659509479999542,
0.005381700117141008,
0.41289952397346497,
0.34757745265960693,
0.11660230159759521,
-0.0004907884285785258,
-0.08401894569396973,
-0.24616269767284393,
0.10500955581665039,
-0.18050016462802887,
0.2768309414386749,
-0.3029343783855438,
-0.13014182448387146,
-0.7065832018852234,
0.20892933011054993,
0.47196489572525024,
-0.21461938321590424,
0.7095076441764832,
0.792054295539856,
-0.2325206696987152,
0.033109426498413086,
-0.4748225808143616,
-0.1434750109910965,
-0.40894949436187744,
0.06751112639904022,
-0.28452810645103455,
-0.6182234883308411,
0.9517742395401001,
0.15978722274303436,
0.03524044528603554,
0.6594804525375366,
0.45371025800704956,
-0.0789063349366188,
0.7403794527053833,
0.3642966151237488,
-0.2930421829223633,
0.48085227608680725,
-0.6528448462486267,
-0.16652582585811615,
-0.8876903057098389,
-0.47018375992774963,
-0.48014160990715027,
-0.5102407932281494,
-0.8917282819747925,
-0.408242404460907,
0.16306975483894348,
0.18553568422794342,
-0.2370331883430481,
0.4500041604042053,
-0.9178856611251831,
0.28277796506881714,
0.34429651498794556,
0.2968132495880127,
-0.1247999519109726,
0.04670625180006027,
0.0857299417257309,
0.11559530347585678,
-0.5978145599365234,
-0.2832883894443512,
1.1354178190231323,
0.5113896131515503,
0.569542646408081,
-0.11549516022205353,
0.8254145383834839,
0.0063798436895012856,
0.18286289274692535,
-0.5204710364341736,
0.53745037317276,
0.024978002533316612,
-0.4723869860172272,
-0.15781360864639282,
-0.5165865421295166,
-0.8554661870002747,
-0.14580903947353363,
-0.3952997624874115,
-0.6931106448173523,
0.45228317379951477,
0.08101225644350052,
-0.2210499793291092,
0.3934268355369568,
-0.6444870829582214,
0.8358501195907593,
-0.054371219128370285,
-0.3915309011936188,
0.3064465820789337,
-1.048295021057129,
0.20136356353759766,
0.18832923471927643,
0.23513220250606537,
-0.4314309060573578,
0.02448885701596737,
0.986829400062561,
-0.7735134959220886,
0.9063411355018616,
-0.3834986388683319,
0.17424403131008148,
0.5777237415313721,
-0.30999085307121277,
0.4861985743045807,
0.12986648082733154,
-0.24616502225399017,
0.31944289803504944,
0.038512829691171646,
-0.47024643421173096,
-0.4632100462913513,
0.6586390733718872,
-0.6981899738311768,
0.05923416092991829,
-0.3518564999103546,
-0.47827452421188354,
0.07479935139417648,
0.15976598858833313,
0.27705633640289307,
0.2944008409976959,
0.06680059432983398,
0.11337506026029587,
0.3975505828857422,
-0.14393781125545502,
0.2624731659889221,
0.01266133226454258,
-0.13608451187610626,
-0.8183507919311523,
0.9266870021820068,
0.16550874710083008,
0.08869870007038116,
-0.10773516446352005,
0.39369654655456543,
-0.36497044563293457,
-0.07468055933713913,
-0.6015964150428772,
0.5158941149711609,
-0.3978153169155121,
-0.3870673179626465,
-0.48329195380210876,
-0.20054659247398376,
-0.6576035618782043,
-0.1857362687587738,
-0.2560638189315796,
-0.5099231600761414,
-0.3311850130558014,
-0.21223084628582,
1.016141653060913,
0.45364534854888916,
-0.6513751149177551,
0.14070388674736023,
-0.5430100560188293,
0.29325374960899353,
-0.06919839978218079,
0.6707005500793457,
-0.09281317889690399,
-0.30910027027130127,
-0.21473778784275055,
0.10069862008094788,
-0.16328053176403046,
-0.6703672409057617,
0.2652984857559204,
-0.04795227572321892,
0.3634432256221771,
0.13413996994495392,
0.14455671608448029,
0.7244864702224731,
-0.0574394166469574,
0.6784945726394653,
0.26817625761032104,
-0.816683828830719,
0.6875736117362976,
-0.48197105526924133,
0.17658953368663788,
0.745033860206604,
0.3890793025493622,
-0.6293491125106812,
-0.11176476627588272,
-0.9682333469390869,
-0.8306673169136047,
0.8064801692962646,
0.41669192910194397,
0.035128191113471985,
0.2542363703250885,
0.5874987244606018,
-0.1846022605895996,
0.31028053164482117,
-0.6461865305900574,
-0.8597333431243896,
-0.39507633447647095,
-0.3492543697357178,
-0.030978718772530556,
-0.13338087499141693,
-0.2500615119934082,
-0.6924645304679871,
0.8132988810539246,
-0.12277685105800629,
0.364277720451355,
0.3918667733669281,
0.4376601576805115,
-0.2254728078842163,
-0.026745067909359932,
0.27984166145324707,
0.3585105240345001,
-0.24044522643089294,
-0.3036472797393799,
-0.18724708259105682,
-0.6285890936851501,
-0.0858485996723175,
0.5028858184814453,
-0.3743794858455658,
-0.06678124517202377,
0.2858276963233948,
0.9208096861839294,
-0.04473326355218887,
-0.2558339536190033,
0.5573636293411255,
-0.0517662838101387,
-0.42632076144218445,
-0.3537365794181824,
-0.014746925793588161,
0.14061762392520905,
0.2468997985124588,
0.045094896107912064,
0.06488137692213058,
-0.1294480711221695,
-0.41005808115005493,
0.40763455629348755,
0.24618184566497803,
-0.3581065237522125,
-0.49795669317245483,
0.5788811445236206,
0.06338787078857422,
-0.12469641119241714,
0.4744046926498413,
-0.2533022165298462,
-0.6746242046356201,
0.7659216523170471,
0.15775302052497864,
0.8270928859710693,
-0.1828443706035614,
0.38157880306243896,
0.7423573136329651,
0.20060233771800995,
-0.062301915138959885,
0.5902256369590759,
-0.16369397938251495,
-0.5922118425369263,
-0.07233431935310364,
-0.5472779273986816,
-0.08792858570814133,
0.11238043755292892,
-0.8295711874961853,
0.4339520037174225,
-0.47877371311187744,
-0.2353750765323639,
-0.011962116695940495,
0.42260536551475525,
-0.6833354234695435,
0.18362407386302948,
-0.08603499084711075,
0.991092324256897,
-1.089377522468567,
0.43073660135269165,
0.7420703172683716,
-0.6215046644210815,
-1.178925633430481,
-0.09732799977064133,
0.20096637308597565,
-0.5411113500595093,
0.18937942385673523,
0.20348499715328217,
0.5289368033409119,
-0.06916997581720352,
-0.9278479814529419,
-0.6873897314071655,
1.193176507949829,
0.02418297901749611,
-0.20058834552764893,
0.3809116780757904,
0.11274344474077225,
0.5962548851966858,
-0.3828663229942322,
0.24580644071102142,
0.6502698063850403,
0.672339141368866,
0.3236972391605377,
-0.6994260549545288,
0.3065186142921448,
-0.6303183436393738,
-0.21865320205688477,
0.08718041330575943,
-1.0124139785766602,
0.6154810786247253,
-0.20017527043819427,
-0.04370851069688797,
0.05217099189758301,
0.6165106296539307,
0.49642127752304077,
0.48144814372062683,
0.4409126937389374,
0.7675377726554871,
0.8476879000663757,
-0.3058823347091675,
1.1777136325836182,
-0.2664036154747009,
0.6096146106719971,
0.8046903014183044,
-0.01734801009297371,
0.4785768389701843,
0.2191075086593628,
-0.35801711678504944,
0.5305287837982178,
0.6615206599235535,
-0.4648621678352356,
0.27084365487098694,
0.3787536323070526,
-0.07752427458763123,
-0.05864688381552696,
-0.2768336236476898,
-0.5805415511131287,
0.2916613519191742,
0.1966332197189331,
-0.3233819007873535,
0.07809270173311234,
-0.008907413110136986,
0.4127218425273895,
-0.04594430699944496,
-0.30446410179138184,
0.6433261632919312,
0.045317184180021286,
-0.35501670837402344,
0.4726458489894867,
-0.19920556247234344,
0.6597133278846741,
-0.5574393272399902,
0.14684630930423737,
-0.07693465799093246,
0.1020951122045517,
-0.6213700175285339,
-1.070687174797058,
0.3642982840538025,
-0.06533055752515793,
-0.24958138167858124,
-0.2777160108089447,
0.7791954278945923,
-0.5044653415679932,
-0.8122363090515137,
0.184351846575737,
0.17594373226165771,
0.35567158460617065,
0.14494070410728455,
-1.271592140197754,
0.578011691570282,
0.17030180990695953,
-0.4300881624221802,
0.1312948763370514,
0.5031459927558899,
0.178073450922966,
0.5500848889350891,
0.7092815041542053,
0.26300477981567383,
-0.23572731018066406,
0.060227327048778534,
1.0894646644592285,
-0.5481560230255127,
-0.4896088242530823,
-0.7788752913475037,
0.9185501933097839,
-0.3962249457836151,
-0.36750009655952454,
0.7399911284446716,
0.7602719664573669,
0.8783402442932129,
0.008347749710083008,
0.8375266194343567,
-0.6350343227386475,
0.7071431875228882,
-0.2229650467634201,
0.947281002998352,
-0.6897452473640442,
-0.07304982095956802,
-0.7784463167190552,
-0.5344455242156982,
-0.4295789301395416,
0.6691471934318542,
-0.1727411448955536,
0.2367863953113556,
0.26287391781806946,
0.8875179290771484,
0.05869954079389572,
0.15372909605503082,
-0.24504214525222778,
0.27350711822509766,
0.2842915952205658,
0.5064600706100464,
0.3958098292350769,
-0.9074589610099792,
0.329484760761261,
-0.7915306091308594,
-0.31070947647094727,
0.0223664790391922,
-0.8590530157089233,
-0.9324283003807068,
-0.9554952383041382,
-0.6978853344917297,
-0.7830880284309387,
-0.295586496591568,
1.08488130569458,
0.7164744138717651,
-0.6936265826225281,
-0.22189019620418549,
0.08029866963624954,
0.2631013095378876,
-0.09632337838411331,
-0.315000057220459,
0.6894146800041199,
0.3558366298675537,
-0.6035275459289551,
-0.15389440953731537,
0.014991283416748047,
0.29382753372192383,
0.0740712434053421,
-0.1370045691728592,
-0.12521561980247498,
-0.2978995740413666,
0.3728543221950531,
0.4574701488018036,
-0.3259222209453583,
-0.07634025067090988,
-0.22217999398708344,
0.027114806696772575,
0.13797487318515778,
0.4695146977901459,
-0.5277639627456665,
0.21607644855976105,
0.6377115249633789,
0.30501383543014526,
0.4176062047481537,
0.25733184814453125,
-0.0033042177092283964,
-0.4736650884151459,
0.07689300179481506,
-0.017529720440506935,
0.26092609763145447,
0.40281301736831665,
-0.4855746924877167,
0.822901725769043,
0.5875064730644226,
-0.5620482563972473,
-0.8749720454216003,
-0.13285285234451294,
-1.2940161228179932,
0.08824170380830765,
1.0707426071166992,
-0.03307029604911804,
-0.5327669978141785,
0.06362093985080719,
-0.25405773520469666,
0.16151899099349976,
-0.547048032283783,
0.48291876912117004,
0.5618712306022644,
-0.10916972160339355,
0.12400840222835541,
-0.35462361574172974,
0.6494258642196655,
-0.016504254192113876,
-0.9896270036697388,
0.18621616065502167,
0.40411192178726196,
0.42656588554382324,
0.3029712438583374,
0.773503839969635,
-0.26539868116378784,
0.0616985447704792,
-0.06165292486548424,
0.2600834369659424,
-0.2721273899078369,
-0.024046553298830986,
-0.38665661215782166,
-0.18143270909786224,
-0.529378354549408,
-0.26981014013290405
]
|
huggingartists/shadowraze | huggingartists | 2022-10-25T09:44:30Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/e2576b95c2049862de20cbd0f1a4e0d7.1000x1000x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.5985944271087646,
-0.5074922442436218,
0.1069561019539833,
0.27733203768730164,
-0.2293633222579956,
0.03185076266527176,
-0.3012878894805908,
-0.4491344094276428,
0.8890842199325562,
0.38964760303497314,
-0.9325618743896484,
-0.8395196795463562,
-0.5134494304656982,
0.09170147031545639,
-0.1372651606798172,
1.2966748476028442,
-0.20923319458961487,
-0.3482377827167511,
-0.27038732171058655,
-0.22344307601451874,
-0.2889900207519531,
-0.3104724586009979,
-0.30669307708740234,
-0.34894680976867676,
0.3565255403518677,
0.5048778057098389,
0.7034804224967957,
0.8665835857391357,
0.4858524799346924,
0.34988150000572205,
-0.09990650415420532,
-0.023323118686676025,
-0.36176639795303345,
-0.11545749008655548,
0.16369301080703735,
-0.2981264293193817,
-0.704027533531189,
0.26035475730895996,
0.5470695495605469,
0.4689064025878906,
-0.12939970195293427,
0.4937073290348053,
0.08580616116523743,
0.8563627004623413,
-0.35112497210502625,
0.4470535218715668,
-0.21545106172561646,
-0.16063593327999115,
-0.3139975368976593,
0.044276267290115356,
0.16733233630657196,
-0.5823355317115784,
-0.02726474590599537,
-0.7472720146179199,
0.07620953768491745,
0.022174105048179626,
1.0125659704208374,
0.06601561605930328,
0.14514411985874176,
-0.15961816906929016,
-0.2048937827348709,
0.5057975053787231,
-0.5789816379547119,
0.005415840540081263,
0.5631074905395508,
0.15934012830257416,
0.03874656930565834,
-0.6369144320487976,
-0.6363649368286133,
0.06925541907548904,
-0.16435395181179047,
0.2945367693901062,
-0.19780071079730988,
-0.2868554890155792,
0.5245383381843567,
0.5522748827934265,
-0.5198911428451538,
-0.24378646910190582,
-0.5010870099067688,
-0.11876389384269714,
1.1192153692245483,
0.17408710718154907,
0.3911052942276001,
-0.5036690831184387,
-0.20926672220230103,
-0.4115407466888428,
-0.2604808807373047,
0.34634754061698914,
0.6107954382896423,
0.42100587487220764,
-1.0309807062149048,
0.594154417514801,
-0.16455115377902985,
0.5554595589637756,
0.1691916286945343,
0.018078085035085678,
0.7753193974494934,
-0.41946178674697876,
-0.1283927708864212,
-0.15105892717838287,
1.0649166107177734,
0.6875072717666626,
0.14936941862106323,
0.06108114495873451,
-0.030794698745012283,
0.018060093745589256,
-0.15116272866725922,
-0.8483248949050903,
-0.414713054895401,
0.6483266353607178,
-0.5932945013046265,
-0.6205476522445679,
0.19009454548358917,
-1.0285279750823975,
-0.2509762644767761,
-0.2694045305252075,
0.24448256194591522,
-0.36657142639160156,
-0.532169759273529,
0.18728333711624146,
-0.29154303669929504,
0.11341430246829987,
0.0544164814054966,
-0.6250767111778259,
0.254442036151886,
0.5516358613967896,
0.7471933364868164,
0.1730019897222519,
-0.30806437134742737,
-0.2671016454696655,
-0.1765747368335724,
-0.15173210203647614,
0.6383798718452454,
-0.28521761298179626,
-0.2991015613079071,
-0.1763225495815277,
0.3683202266693115,
-0.0852866843342781,
-0.29428431391716003,
0.8686805367469788,
0.08499713987112045,
0.2365974634885788,
-0.5635133385658264,
-0.3801060914993286,
-0.04019583761692047,
0.2489318549633026,
-0.7660322189331055,
1.0800576210021973,
0.35176652669906616,
-0.998005747795105,
0.20158745348453522,
-0.7826032638549805,
-0.269298255443573,
0.05239402875304222,
0.100616954267025,
-0.7794638872146606,
-0.16962496936321259,
0.17565585672855377,
0.7284747958183289,
-0.3313750624656677,
0.014183556661009789,
-0.5744531750679016,
-0.1553400307893753,
0.3741616904735565,
0.22210846841335297,
1.2028974294662476,
0.06695693731307983,
-0.1842571496963501,
0.0739176869392395,
-0.9639828205108643,
0.15775549411773682,
0.45478007197380066,
-0.11980602145195007,
-0.11591027677059174,
-0.22551237046718597,
0.44881191849708557,
0.2656310498714447,
0.06415405124425888,
-0.5595704317092896,
0.4211212396621704,
-0.22386124730110168,
0.4526171386241913,
0.7547092437744141,
-0.0017028340371325612,
0.32557356357574463,
-0.609869658946991,
0.4432130753993988,
0.03840013965964317,
0.3871534466743469,
-0.008748156949877739,
-0.4800948202610016,
-0.52740478515625,
-0.22961504757404327,
0.354079931974411,
0.48757413029670715,
-0.7477266192436218,
1.006563663482666,
-0.33877262473106384,
-0.8179883360862732,
-0.6215049028396606,
0.13099239766597748,
0.20515893399715424,
0.4729621708393097,
0.37699055671691895,
-0.4621603488922119,
-0.5915940999984741,
-0.6742457747459412,
0.12900792062282562,
-0.23978692293167114,
0.19063861668109894,
0.4423893690109253,
0.8457252383232117,
-0.21296831965446472,
0.8120932579040527,
-0.6693879961967468,
-0.26645082235336304,
-0.3007594645023346,
-0.3430776596069336,
0.37969252467155457,
0.7796331644058228,
0.7287457585334778,
-0.8274192214012146,
-0.4692537486553192,
-0.264777272939682,
-0.7289503812789917,
-0.13648691773414612,
-0.05026772618293762,
-0.2636619806289673,
0.0007385379867628217,
0.12226292490959167,
-0.6692085266113281,
0.5441121459007263,
0.5490875840187073,
-0.6844041347503662,
0.5598470568656921,
0.1007477343082428,
0.04431704431772232,
-1.3030179738998413,
0.38276082277297974,
0.2273087501525879,
0.02181529812514782,
-0.6185904145240784,
-0.1858997344970703,
-0.05715389549732208,
-0.014133705757558346,
-0.1237119659781456,
0.6188499331474304,
-0.3565937578678131,
0.3021882176399231,
0.11076278239488602,
0.06619305163621902,
0.07085087895393372,
0.47606536746025085,
-0.08779101073741913,
0.3089136481285095,
1.0345183610916138,
-0.36117613315582275,
0.7134550213813782,
0.5205486416816711,
-0.20610997080802917,
0.843622624874115,
-0.7894284725189209,
0.050387974828481674,
-0.22376863658428192,
0.39228489995002747,
-0.816546618938446,
-0.5360277891159058,
0.8668239116668701,
-0.6610375046730042,
0.37730684876441956,
-0.23385629057884216,
-0.5874016880989075,
-0.8318188190460205,
-0.6981634497642517,
0.14677537977695465,
0.5144187808036804,
-0.390167772769928,
0.45598897337913513,
0.5613535642623901,
0.11146260052919388,
-0.40198034048080444,
-0.7653452157974243,
-0.09525132924318314,
-0.3843870460987091,
-0.8250151872634888,
0.45078369975090027,
-0.3320270776748657,
-0.11461614817380905,
0.16439189016819,
0.1003766655921936,
0.1151488795876503,
0.014849391765892506,
0.4270058572292328,
0.31172123551368713,
0.09211787581443787,
-0.031168410554528236,
-0.09826818853616714,
-0.27741849422454834,
0.09071491658687592,
-0.23381246626377106,
0.31837204098701477,
-0.26863282918930054,
-0.14081871509552002,
-0.6637840270996094,
0.2050425112247467,
0.41282710433006287,
-0.2138453722000122,
0.6987348794937134,
0.784786581993103,
-0.24151980876922607,
-0.09108752012252808,
-0.526970624923706,
-0.17011043429374695,
-0.4222312271595001,
0.03981718420982361,
-0.1910998821258545,
-0.5727864503860474,
0.9651122689247131,
0.20700684189796448,
0.013045387342572212,
0.6302744150161743,
0.4529506266117096,
-0.0929071381688118,
0.6511974334716797,
0.45837053656578064,
-0.28049612045288086,
0.5559118390083313,
-0.7250767946243286,
-0.2661292850971222,
-0.8810112476348877,
-0.4405009150505066,
-0.4686380624771118,
-0.4958409368991852,
-0.8481501936912537,
-0.4524436593055725,
0.1850830316543579,
0.1797632873058319,
-0.16445761919021606,
0.49131256341934204,
-0.9657994508743286,
0.3186603784561157,
0.33510422706604004,
0.2877262830734253,
-0.12103555351495743,
0.08642951399087906,
0.08629091084003448,
0.137616828083992,
-0.5723316669464111,
-0.2383013516664505,
1.125869631767273,
0.4440399706363678,
0.5548866987228394,
-0.0974869504570961,
0.8249886631965637,
0.01636127568781376,
0.19039075076580048,
-0.4914717674255371,
0.5264117121696472,
0.00827792938798666,
-0.46910858154296875,
-0.10731027275323868,
-0.5021493434906006,
-0.9094059467315674,
-0.11283987760543823,
-0.43902063369750977,
-0.732222855091095,
0.49630627036094666,
0.09621037542819977,
-0.22240620851516724,
0.3935531675815582,
-0.6222785711288452,
0.8604891300201416,
-0.06458347290754318,
-0.48681503534317017,
0.28722429275512695,
-1.0135200023651123,
0.1836957186460495,
0.2063072919845581,
0.2381076067686081,
-0.38425037264823914,
0.02070150524377823,
1.014613151550293,
-0.823781430721283,
0.9408159852027893,
-0.35655418038368225,
0.1714002639055252,
0.5528939962387085,
-0.30414411425590515,
0.45335623621940613,
0.08010867983102798,
-0.2558693289756775,
0.34624043107032776,
-0.0016488791443407536,
-0.43379345536231995,
-0.4674493372440338,
0.642770528793335,
-0.6966708898544312,
0.025732459500432014,
-0.3841269314289093,
-0.423847496509552,
0.08051761239767075,
0.17146818339824677,
0.3014654815196991,
0.3446502685546875,
0.00211395719088614,
0.12909206748008728,
0.4241037368774414,
-0.13142551481723785,
0.3208506107330322,
0.0836002454161644,
-0.10599761456251144,
-0.7810308933258057,
0.9081906080245972,
0.1841634213924408,
0.06668652594089508,
-0.06023814156651497,
0.4126312732696533,
-0.3016761541366577,
-0.1465093344449997,
-0.628192126750946,
0.4644125998020172,
-0.3961312770843506,
-0.3713132441043854,
-0.4833211898803711,
-0.20278599858283997,
-0.6037415862083435,
-0.18815118074417114,
-0.25065314769744873,
-0.5052415132522583,
-0.2862171232700348,
-0.2101745307445526,
1.0260030031204224,
0.4381822645664215,
-0.6737383008003235,
0.16003093123435974,
-0.46057480573654175,
0.2631959319114685,
-0.09655299037694931,
0.6380574107170105,
-0.08303888887166977,
-0.2987835109233856,
-0.215314120054245,
0.07553618401288986,
-0.20594699680805206,
-0.7194758653640747,
0.25978076457977295,
-0.08122725039720535,
0.3990040421485901,
0.07481592893600464,
0.08869048953056335,
0.6807595491409302,
-0.057561155408620834,
0.6839542984962463,
0.3045452833175659,
-0.8389908671379089,
0.7024784088134766,
-0.5132811665534973,
0.11452008038759232,
0.72764652967453,
0.3225916624069214,
-0.6505892872810364,
-0.15983428061008453,
-0.9910970330238342,
-0.8663254380226135,
0.834616482257843,
0.4625427722930908,
0.07901500165462494,
0.28937697410583496,
0.6037678122520447,
-0.20379649102687836,
0.2961408793926239,
-0.690171480178833,
-0.910071611404419,
-0.3918346166610718,
-0.3424060642719269,
-0.028304319828748703,
-0.049739155918359756,
-0.23951178789138794,
-0.6718525886535645,
0.7631797790527344,
-0.13602794706821442,
0.29757726192474365,
0.3456387519836426,
0.4244028925895691,
-0.2376256138086319,
-0.014695936813950539,
0.26290005445480347,
0.3484155535697937,
-0.2285781055688858,
-0.2976742684841156,
-0.11989207565784454,
-0.6554333567619324,
-0.09339827299118042,
0.536438524723053,
-0.4001309871673584,
-0.10932876169681549,
0.3468194305896759,
0.88754802942276,
-0.014724135398864746,
-0.23120100796222687,
0.6460472941398621,
-0.032700929790735245,
-0.39857032895088196,
-0.40333816409111023,
0.0613519623875618,
0.11633464694023132,
0.22742511332035065,
0.08697089552879333,
0.11884494125843048,
-0.09416037797927856,
-0.41054701805114746,
0.38608652353286743,
0.2604123651981354,
-0.3836860954761505,
-0.49908605217933655,
0.6183072328567505,
0.062116749584674835,
-0.11698641628026962,
0.45493456721305847,
-0.17285026609897614,
-0.6139425039291382,
0.7869767546653748,
0.09398069977760315,
0.8437997102737427,
-0.15787649154663086,
0.3301445245742798,
0.7080639600753784,
0.23753267526626587,
-0.07150784879922867,
0.5166757106781006,
-0.19644318521022797,
-0.6416946649551392,
-0.06439409404993057,
-0.5474089980125427,
-0.0928904190659523,
0.0813271552324295,
-0.8287577033042908,
0.47028040885925293,
-0.5016424655914307,
-0.23198272287845612,
0.04494994506239891,
0.40256378054618835,
-0.7010111808776855,
0.13747598230838776,
-0.05664525926113129,
0.9779127836227417,
-1.0592275857925415,
0.47511398792266846,
0.6401220560073853,
-0.715878427028656,
-1.1857929229736328,
-0.1160002127289772,
0.20504477620124817,
-0.5913936495780945,
0.20364785194396973,
0.18260076642036438,
0.43917545676231384,
-0.06974247843027115,
-0.9593164920806885,
-0.650355339050293,
1.2085129022598267,
0.07826872915029526,
-0.1985972672700882,
0.3169008791446686,
0.08450740575790405,
0.648889422416687,
-0.3483969271183014,
0.3177972435951233,
0.6082735061645508,
0.6868160367012024,
0.3083069622516632,
-0.7383448481559753,
0.31124475598335266,
-0.6241199374198914,
-0.22170767188072205,
0.07801741361618042,
-1.0289859771728516,
0.6496201157569885,
-0.18856845796108246,
-0.07643523067235947,
0.034154362976551056,
0.5676833987236023,
0.4109152853488922,
0.3930312693119049,
0.44421371817588806,
0.7393229007720947,
0.798590898513794,
-0.3690904378890991,
1.2287442684173584,
-0.2584848701953888,
0.6021593809127808,
0.7731301188468933,
0.014304776675999165,
0.49281197786331177,
0.21122591197490692,
-0.31158655881881714,
0.6127550601959229,
0.6422711610794067,
-0.5079628229141235,
0.23517802357673645,
0.3800320625305176,
-0.029862770810723305,
-0.09452744573354721,
-0.2517128586769104,
-0.5847603678703308,
0.3005172908306122,
0.19997577369213104,
-0.34739434719085693,
0.026763001456856728,
0.011116866953670979,
0.37147367000579834,
-0.02830161340534687,
-0.254262238740921,
0.647794783115387,
0.028702063485980034,
-0.32542672753334045,
0.5259327292442322,
-0.16672681272029877,
0.6978299617767334,
-0.5844269394874573,
0.11897941678762436,
-0.08585096895694733,
0.1355331987142563,
-0.6381878852844238,
-1.0934644937515259,
0.33417773246765137,
-0.07377918809652328,
-0.2739468514919281,
-0.3519703447818756,
0.6941577196121216,
-0.45350974798202515,
-0.812652051448822,
0.27005085349082947,
0.2483142614364624,
0.3093396723270416,
0.16452500224113464,
-1.2909842729568481,
0.571266233921051,
0.13836166262626648,
-0.46803703904151917,
0.10265626758337021,
0.49421197175979614,
0.1425447314977646,
0.548636257648468,
0.7161014676094055,
0.29185885190963745,
-0.26415297389030457,
0.10268373787403107,
1.1096035242080688,
-0.5707837343215942,
-0.45890676975250244,
-0.7710597515106201,
0.895413875579834,
-0.4054451584815979,
-0.39930909872055054,
0.7313511967658997,
0.7845244407653809,
0.8489408493041992,
0.05228840187191963,
0.7737246751785278,
-0.6400788426399231,
0.6475645899772644,
-0.25126132369041443,
0.9352337718009949,
-0.7124844193458557,
-0.03725459426641464,
-0.7658423781394958,
-0.5455412864685059,
-0.40235862135887146,
0.6587613224983215,
-0.16792240738868713,
0.23982219398021698,
0.31051644682884216,
0.9301080703735352,
0.034942034631967545,
0.10025735199451447,
-0.2587844729423523,
0.2716788649559021,
0.250279039144516,
0.5890979170799255,
0.44174912571907043,
-0.9204686880111694,
0.3552308976650238,
-0.803021252155304,
-0.302099347114563,
0.04554988071322441,
-0.8367975354194641,
-0.9070860743522644,
-0.9688257575035095,
-0.6745182275772095,
-0.8241522312164307,
-0.27046433091163635,
1.0499355792999268,
0.7619019150733948,
-0.6954667568206787,
-0.2597150206565857,
0.07671958953142166,
0.27454617619514465,
-0.14822182059288025,
-0.3262333869934082,
0.6805033683776855,
0.42513367533683777,
-0.6223070025444031,
-0.14413434267044067,
0.019984472543001175,
0.2733897864818573,
0.02851037122309208,
-0.06574622541666031,
-0.042350221425294876,
-0.31178703904151917,
0.2985469400882721,
0.4467228949069977,
-0.35471972823143005,
-0.09150855243206024,
-0.24459333717823029,
-0.0016674144426360726,
0.15208543837070465,
0.5064460635185242,
-0.5538594722747803,
0.19113360345363617,
0.622014045715332,
0.21464265882968903,
0.49027469754219055,
0.1962244063615799,
0.0018022762378677726,
-0.5168535113334656,
0.13140125572681427,
-0.01714196614921093,
0.3082462549209595,
0.398412823677063,
-0.47533079981803894,
0.8171822428703308,
0.5973249673843384,
-0.456468790769577,
-0.8406236171722412,
-0.16245141625404358,
-1.345146894454956,
0.07256720215082169,
1.0525975227355957,
0.05163230374455452,
-0.5638585686683655,
0.08168599009513855,
-0.20952308177947998,
0.09505622088909149,
-0.5660596489906311,
0.4369029998779297,
0.5420731902122498,
-0.09699652343988419,
0.08123856037855148,
-0.3859402537345886,
0.632133424282074,
-0.04435870796442032,
-1.0099098682403564,
0.22727936506271362,
0.4472653269767761,
0.47710832953453064,
0.3531776964664459,
0.8129546046257019,
-0.23403102159500122,
0.08722832053899765,
-0.03546074032783508,
0.3260965645313263,
-0.30704814195632935,
0.007351695094257593,
-0.3598949909210205,
-0.11068500578403473,
-0.5575217604637146,
-0.1916489452123642
]
|
huggingartists/sid-sriram | huggingartists | 2022-10-25T09:44:43Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://assets.genius.com/images/default_avatar_300.png?1629387721')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.599962055683136,
-0.5176341533660889,
0.06254379451274872,
0.2776501476764679,
-0.27991893887519836,
0.02620997279882431,
-0.34361353516578674,
-0.42544424533843994,
0.8604146838188171,
0.28322258591651917,
-0.9020472168922424,
-0.819020688533783,
-0.5605795383453369,
0.09390436857938766,
-0.08056455105543137,
1.304517149925232,
-0.1809520274400711,
-0.34426000714302063,
-0.3309825658798218,
-0.27461203932762146,
-0.3160514533519745,
-0.3055208623409271,
-0.3063438832759857,
-0.30714067816734314,
0.30860137939453125,
0.5033549666404724,
0.6931498646736145,
0.8384605050086975,
0.536357581615448,
0.35007625818252563,
-0.12895774841308594,
0.0252373144030571,
-0.3745763301849365,
-0.06080958619713783,
0.14758199453353882,
-0.2973232567310333,
-0.6979409456253052,
0.23967590928077698,
0.5827447175979614,
0.3852302134037018,
-0.09585239738225937,
0.4927739202976227,
0.05794741213321686,
0.8455268144607544,
-0.28807151317596436,
0.5094581842422485,
-0.2519795894622803,
-0.16238272190093994,
-0.3057209551334381,
0.0486825667321682,
0.19637040793895721,
-0.6251511573791504,
-0.01251691859215498,
-0.7295923829078674,
0.07014445215463638,
0.025535140186548233,
1.003364086151123,
0.0957292914390564,
0.15210892260074615,
-0.215799018740654,
-0.14897368848323822,
0.5669339895248413,
-0.6062011122703552,
-0.029619934037327766,
0.598537802696228,
0.16028118133544922,
0.06739156693220139,
-0.5980439186096191,
-0.6366233229637146,
0.08356724679470062,
-0.1523154079914093,
0.27269601821899414,
-0.13015517592430115,
-0.31668418645858765,
0.5307180285453796,
0.5437886118888855,
-0.49226346611976624,
-0.2579716145992279,
-0.5744396448135376,
-0.1287301629781723,
1.181518316268921,
0.16467420756816864,
0.41735580563545227,
-0.5301276445388794,
-0.2165130078792572,
-0.39147162437438965,
-0.248014897108078,
0.32567283511161804,
0.5319216847419739,
0.42802315950393677,
-1.0220184326171875,
0.6412559747695923,
-0.1313057243824005,
0.5659675002098083,
0.13553141057491302,
-0.06226380541920662,
0.7843559384346008,
-0.45116126537323,
-0.1321706771850586,
-0.09305096417665482,
1.0408402681350708,
0.6490892767906189,
0.17449545860290527,
0.13393095135688782,
-0.05826076120138168,
0.06753409653902054,
-0.1290593147277832,
-0.8200398683547974,
-0.3766018748283386,
0.6170150637626648,
-0.590950608253479,
-0.5954607725143433,
0.12967942655086517,
-0.9977607727050781,
-0.23381130397319794,
-0.30388593673706055,
0.23339691758155823,
-0.4217693507671356,
-0.56329345703125,
0.11306393891572952,
-0.2706683874130249,
0.19090761244297028,
0.044366318732500076,
-0.6163067817687988,
0.1960168033838272,
0.5961236357688904,
0.7796144485473633,
0.15467970073223114,
-0.329495370388031,
-0.25237178802490234,
-0.16860221326351166,
-0.11410766839981079,
0.6731250882148743,
-0.3189869225025177,
-0.3880269527435303,
-0.18370512127876282,
0.2889205813407898,
-0.12000944465398788,
-0.2845782935619354,
0.8863955736160278,
0.03121218830347061,
0.19014078378677368,
-0.5649334788322449,
-0.43738222122192383,
0.01952747441828251,
0.2645595371723175,
-0.7130607962608337,
1.0538891553878784,
0.320682555437088,
-0.9961420297622681,
0.18047776818275452,
-0.8294817805290222,
-0.3463989496231079,
0.05840897187590599,
0.018558036535978317,
-0.7918582558631897,
-0.1590431183576584,
0.19251933693885803,
0.7221439480781555,
-0.33648309111595154,
0.03945907950401306,
-0.5789260268211365,
-0.15035755932331085,
0.3538084626197815,
0.23154479265213013,
1.2032639980316162,
0.1314699649810791,
-0.14393728971481323,
0.11974522471427917,
-0.9381481409072876,
0.14061285555362701,
0.443989634513855,
-0.14039701223373413,
-0.10388068109750748,
-0.24816417694091797,
0.40665867924690247,
0.2517857253551483,
0.07207292318344116,
-0.5886068940162659,
0.4023003876209259,
-0.17300397157669067,
0.5042165517807007,
0.7782201170921326,
0.005281658843159676,
0.31509631872177124,
-0.6593823432922363,
0.45890316367149353,
0.08725157380104065,
0.3583812713623047,
-0.021446241065859795,
-0.5897517204284668,
-0.44799160957336426,
-0.30520153045654297,
0.3059389889240265,
0.4499957263469696,
-0.6475462317466736,
0.9881137013435364,
-0.31861311197280884,
-0.8608734011650085,
-0.6911230683326721,
0.13273762166500092,
0.20148831605911255,
0.5401031970977783,
0.3746858239173889,
-0.44941946864128113,
-0.6018412709236145,
-0.6318188309669495,
0.09886176139116287,
-0.2762906849384308,
0.23791304230690002,
0.4220688045024872,
0.8191666007041931,
-0.26779863238334656,
0.8569418787956238,
-0.7009069323539734,
-0.2791796326637268,
-0.2725813090801239,
-0.2995889186859131,
0.3640187680721283,
0.7960680723190308,
0.651174783706665,
-0.8668091297149658,
-0.485005259513855,
-0.29392150044441223,
-0.7173747420310974,
-0.08826122432947159,
-0.03904547169804573,
-0.24995078146457672,
0.0746653750538826,
0.1453736424446106,
-0.7405487895011902,
0.5679430961608887,
0.47652119398117065,
-0.6383708119392395,
0.5850494503974915,
0.08898624032735825,
-0.005761031527072191,
-1.2966848611831665,
0.3613779842853546,
0.22199811041355133,
0.06297075748443604,
-0.5526177883148193,
-0.19829344749450684,
-0.035773273557424545,
-0.04499957710504532,
-0.11267382651567459,
0.607499361038208,
-0.3314262330532074,
0.26863980293273926,
0.15072479844093323,
0.06153831630945206,
0.07837635278701782,
0.4585418105125427,
-0.08621686697006226,
0.33150559663772583,
1.023041844367981,
-0.3697200119495392,
0.6789535880088806,
0.6136979460716248,
-0.23913930356502533,
0.8872987627983093,
-0.8339362740516663,
0.009464642032980919,
-0.2835121154785156,
0.3868354856967926,
-0.8782798051834106,
-0.5411942005157471,
0.8035691380500793,
-0.718532383441925,
0.41734498739242554,
-0.22624298930168152,
-0.5541446208953857,
-0.7890990972518921,
-0.7023058533668518,
0.173374205827713,
0.5560266375541687,
-0.36003735661506653,
0.3969549834728241,
0.6062551736831665,
0.06414132565259933,
-0.35472431778907776,
-0.7888076901435852,
-0.15373031795024872,
-0.38564184308052063,
-0.8001748323440552,
0.42435190081596375,
-0.3958999812602997,
-0.10628833621740341,
0.1810266226530075,
0.07531312853097916,
0.10167813301086426,
-0.0008127840119414032,
0.4221530556678772,
0.35974636673927307,
0.07064592838287354,
-0.0036025044973939657,
-0.06471320986747742,
-0.2471250295639038,
0.09235680848360062,
-0.16126307845115662,
0.2785848081111908,
-0.3461717963218689,
-0.14082813262939453,
-0.6672288775444031,
0.19445914030075073,
0.4838114380836487,
-0.26851555705070496,
0.6858006715774536,
0.817266583442688,
-0.2651864290237427,
-0.0006924178451299667,
-0.5107946991920471,
-0.12940360605716705,
-0.4152347147464752,
0.026477938517928123,
-0.22015619277954102,
-0.6051740050315857,
0.916888952255249,
0.22938521206378937,
0.04383595660328865,
0.6872696280479431,
0.48695239424705505,
-0.06816281378269196,
0.6661451458930969,
0.3732929825782776,
-0.29011502861976624,
0.4926726222038269,
-0.6837698817253113,
-0.19443301856517792,
-0.9273479580879211,
-0.46163520216941833,
-0.46376341581344604,
-0.48272648453712463,
-0.8649219870567322,
-0.45710238814353943,
0.2008119374513626,
0.1479921191930771,
-0.19962503015995026,
0.4569452106952667,
-0.9863007664680481,
0.27236196398735046,
0.36211222410202026,
0.23651625216007233,
-0.14669132232666016,
0.07857493311166763,
0.049825649708509445,
0.10560168325901031,
-0.564228892326355,
-0.22439683973789215,
1.1520730257034302,
0.4669486880302429,
0.5671085715293884,
-0.07617299258708954,
0.8448567390441895,
0.03464833274483681,
0.2172495573759079,
-0.5159387588500977,
0.5251032114028931,
0.06762270629405975,
-0.503490686416626,
-0.15197160840034485,
-0.46991166472435,
-0.8543469905853271,
-0.1519608050584793,
-0.4008117616176605,
-0.6505330204963684,
0.46197640895843506,
0.01944892667233944,
-0.27031129598617554,
0.3686823546886444,
-0.6463225483894348,
0.7943095564842224,
-0.09060242772102356,
-0.44726207852363586,
0.23258845508098602,
-1.046103596687317,
0.2002924233675003,
0.18243035674095154,
0.25437262654304504,
-0.41490185260772705,
0.02867112308740616,
1.0270880460739136,
-0.7914283275604248,
0.9331835508346558,
-0.3672459125518799,
0.19665701687335968,
0.595676839351654,
-0.34327998757362366,
0.40467798709869385,
0.14424140751361847,
-0.2899395525455475,
0.3174934387207031,
0.03905933350324631,
-0.4766497015953064,
-0.4335671067237854,
0.714574933052063,
-0.7561419606208801,
0.02204401232302189,
-0.42039015889167786,
-0.4720044434070587,
0.06096949428319931,
0.19614508748054504,
0.2522687315940857,
0.3722424805164337,
0.04205337539315224,
0.11135619878768921,
0.471268892288208,
-0.15820641815662384,
0.30558982491493225,
0.037206217646598816,
-0.06250414997339249,
-0.8005267977714539,
0.9154421091079712,
0.19110609591007233,
0.02586863748729229,
-0.08116239309310913,
0.40576064586639404,
-0.36196139454841614,
-0.1422615796327591,
-0.6225186586380005,
0.4984006881713867,
-0.4034171998500824,
-0.40662258863449097,
-0.4905744791030884,
-0.23035575449466705,
-0.6942598223686218,
-0.16970853507518768,
-0.22225961089134216,
-0.5212652087211609,
-0.3274901509284973,
-0.22114527225494385,
1.0589619874954224,
0.4948762059211731,
-0.6904788017272949,
0.1005900651216507,
-0.5034593343734741,
0.2853282690048218,
-0.02985699102282524,
0.661975085735321,
-0.06663790345191956,
-0.3227475583553314,
-0.1829206496477127,
0.07806738466024399,
-0.19139797985553741,
-0.6749062538146973,
0.2676139771938324,
-0.02545737288892269,
0.379853755235672,
0.12220853567123413,
0.1236007884144783,
0.7173380255699158,
-0.03846518695354462,
0.684747576713562,
0.2747238874435425,
-0.7955839037895203,
0.7205232977867126,
-0.4865837097167969,
0.1609801948070526,
0.7533698678016663,
0.3899577260017395,
-0.595078706741333,
-0.08707772195339203,
-0.9810310006141663,
-0.8777344226837158,
0.827207624912262,
0.39561933279037476,
0.0711885392665863,
0.21051828563213348,
0.5511037707328796,
-0.17488344013690948,
0.29941439628601074,
-0.5970258116722107,
-0.8453493714332581,
-0.41106539964675903,
-0.3523831069469452,
-0.03570680320262909,
-0.12256688624620438,
-0.23935233056545258,
-0.733562707901001,
0.7684254050254822,
-0.08754044026136398,
0.3492443263530731,
0.4068462550640106,
0.37953853607177734,
-0.22074943780899048,
-0.021929694339632988,
0.33573323488235474,
0.3961608409881592,
-0.2649092376232147,
-0.29138433933258057,
-0.16098380088806152,
-0.6476959586143494,
-0.11911947280168533,
0.5042902231216431,
-0.34797224402427673,
-0.10887905955314636,
0.3103275001049042,
0.8981606960296631,
-0.010193818248808384,
-0.2571046054363251,
0.5819390416145325,
-0.07319048792123795,
-0.3451847434043884,
-0.4166918098926544,
0.03323407471179962,
0.16397902369499207,
0.20336727797985077,
0.0735507532954216,
0.12920601665973663,
-0.1666363626718521,
-0.4045965373516083,
0.39116761088371277,
0.23954585194587708,
-0.3709482252597809,
-0.49621066451072693,
0.605140209197998,
0.050988949835300446,
-0.17556321620941162,
0.5105938911437988,
-0.1882399320602417,
-0.626520574092865,
0.7732554078102112,
0.13729383051395416,
0.8039597272872925,
-0.16663777828216553,
0.3420664966106415,
0.7273536920547485,
0.20598948001861572,
-0.054789911955595016,
0.540444016456604,
-0.2527250647544861,
-0.6215869188308716,
-0.039241719990968704,
-0.5972029566764832,
-0.14003221690654755,
0.034010838717222214,
-0.8487993478775024,
0.4307393729686737,
-0.5351752042770386,
-0.21685001254081726,
0.033500343561172485,
0.42020726203918457,
-0.718493640422821,
0.1606546938419342,
-0.046819061040878296,
1.0229710340499878,
-1.0190740823745728,
0.49153363704681396,
0.7270103693008423,
-0.7101691365242004,
-1.148396611213684,
-0.14054259657859802,
0.19441258907318115,
-0.6441546082496643,
0.20793163776397705,
0.20412209630012512,
0.49008452892303467,
-0.053194619715213776,
-0.920629620552063,
-0.6751857995986938,
1.220932960510254,
0.005890053231269121,
-0.17547863721847534,
0.3408975899219513,
0.11553803831338882,
0.6434360146522522,
-0.3509652614593506,
0.3191603720188141,
0.6434705257415771,
0.67896968126297,
0.31921717524528503,
-0.6983017325401306,
0.2991144061088562,
-0.6620244979858398,
-0.20720405876636505,
0.05122208967804909,
-1.0292257070541382,
0.6140244603157043,
-0.21043479442596436,
-0.023463435471057892,
-0.016452601179480553,
0.6453101634979248,
0.48850956559181213,
0.4272671341896057,
0.4165639281272888,
0.800269365310669,
0.8558129668235779,
-0.2753613591194153,
1.1974611282348633,
-0.28721222281455994,
0.6008526086807251,
0.7773469090461731,
-0.018495192751288414,
0.5274927020072937,
0.2417251318693161,
-0.350355863571167,
0.5489038825035095,
0.637235164642334,
-0.44902727007865906,
0.26312223076820374,
0.3903932571411133,
-0.06318307667970657,
-0.03970209136605263,
-0.27666497230529785,
-0.6192329525947571,
0.2874724268913269,
0.27265942096710205,
-0.2890898287296295,
0.036068737506866455,
-0.018421193584799767,
0.36838915944099426,
-0.0408625453710556,
-0.2645415961742401,
0.6128689646720886,
0.049941401928663254,
-0.3811423182487488,
0.5500130653381348,
-0.18739072978496552,
0.7484177947044373,
-0.5916128754615784,
0.16380120813846588,
-0.11513624340295792,
0.12201699614524841,
-0.6227748990058899,
-1.0821523666381836,
0.4289623498916626,
-0.07071006298065186,
-0.24857045710086823,
-0.35909393429756165,
0.7684997320175171,
-0.4513802230358124,
-0.7888174653053284,
0.18850122392177582,
0.19713613390922546,
0.31986498832702637,
0.18636003136634827,
-1.2842344045639038,
0.5972094535827637,
0.1338348537683487,
-0.4303300380706787,
0.1358334720134735,
0.4771444499492645,
0.15527582168579102,
0.5235377550125122,
0.7156757116317749,
0.27204495668411255,
-0.22338435053825378,
0.03207229822874069,
1.0939204692840576,
-0.5789726376533508,
-0.4288099408149719,
-0.7436403036117554,
0.8464971780776978,
-0.38653630018234253,
-0.420996755361557,
0.7004284262657166,
0.7528421878814697,
0.8605287671089172,
0.04079006612300873,
0.8249474167823792,
-0.6625155806541443,
0.6784969568252563,
-0.16927097737789154,
0.98587965965271,
-0.680363118648529,
-0.05067072808742523,
-0.6992928981781006,
-0.5183611512184143,
-0.4086531400680542,
0.6760942935943604,
-0.20695067942142487,
0.2069419026374817,
0.29483750462532043,
0.918738842010498,
0.022383490577340126,
0.17265944182872772,
-0.26381295919418335,
0.3168482482433319,
0.26204782724380493,
0.5359129309654236,
0.3992322087287903,
-0.8942689895629883,
0.3360023498535156,
-0.7682705521583557,
-0.31937482953071594,
0.028990592807531357,
-0.8284209370613098,
-0.8913429975509644,
-0.9862668514251709,
-0.6896340847015381,
-0.789240837097168,
-0.29141876101493835,
1.1038198471069336,
0.7182759046554565,
-0.7288631796836853,
-0.2517397999763489,
0.0936097651720047,
0.31788599491119385,
-0.07453805953264236,
-0.32010287046432495,
0.7005647420883179,
0.32708171010017395,
-0.5752862691879272,
-0.12476585060358047,
0.03876275196671486,
0.22887244820594788,
0.021204669028520584,
-0.08043041080236435,
-0.1433754861354828,
-0.26880329847335815,
0.3606356382369995,
0.49233657121658325,
-0.3134059011936188,
-0.0707964226603508,
-0.23513928055763245,
0.006035758648067713,
0.16425825655460358,
0.4662959575653076,
-0.5451913475990295,
0.19464455544948578,
0.6577121019363403,
0.30733928084373474,
0.4462205171585083,
0.185748890042305,
-0.01783105731010437,
-0.47716641426086426,
0.08899752795696259,
0.014459085650742054,
0.2826603353023529,
0.4218812882900238,
-0.4446609914302826,
0.7981282472610474,
0.5919771194458008,
-0.5081701874732971,
-0.877285361289978,
-0.1558598130941391,
-1.3285517692565918,
0.11466936022043228,
1.0778605937957764,
0.011292915791273117,
-0.5787195563316345,
0.07421515136957169,
-0.22403092682361603,
0.1631929874420166,
-0.5612984895706177,
0.4834272861480713,
0.5389564633369446,
-0.10825884342193604,
0.14172297716140747,
-0.33507031202316284,
0.6395404934883118,
0.03266249969601631,
-0.9629230499267578,
0.16945230960845947,
0.39724645018577576,
0.45781853795051575,
0.31111860275268555,
0.8257736563682556,
-0.29073652625083923,
0.061714790761470795,
-0.09952576458454132,
0.2407967448234558,
-0.2845512926578522,
0.02319597452878952,
-0.396541953086853,
-0.13157235085964203,
-0.5002620816230774,
-0.2209254801273346
]
|
huggingartists/skillet | huggingartists | 2022-10-25T09:44:48Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/c42b7baa88dae01013eebc53c0aed177.1000x1000x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.5855106711387634,
-0.4932742714881897,
0.03691069781780243,
0.2766488492488861,
-0.18831852078437805,
-0.049583759158849716,
-0.31591352820396423,
-0.43099135160446167,
0.8396345376968384,
0.387123703956604,
-0.849157989025116,
-0.8324066400527954,
-0.5716974139213562,
0.1418813019990921,
-0.08678271621465683,
1.2373243570327759,
-0.1813625991344452,
-0.36348286271095276,
-0.3503858149051666,
-0.20266522467136383,
-0.32167693972587585,
-0.2510107159614563,
-0.3435540497303009,
-0.33426862955093384,
0.34319981932640076,
0.5798551440238953,
0.723659873008728,
0.9375402927398682,
0.5018935203552246,
0.3645574748516083,
-0.03116963803768158,
0.012254650704562664,
-0.3439290523529053,
-0.09868857264518738,
0.20088328421115875,
-0.30424878001213074,
-0.6718583106994629,
0.2510703206062317,
0.488456666469574,
0.4251837432384491,
-0.047898609191179276,
0.46431460976600647,
0.06677106022834778,
0.8668022751808167,
-0.3131391108036041,
0.5334133505821228,
-0.22549530863761902,
-0.15158765017986298,
-0.2964555025100708,
0.0816521868109703,
0.13521267473697662,
-0.6368363499641418,
-0.016107533127069473,
-0.7630712985992432,
0.05899738520383835,
-0.05207441747188568,
0.9671705961227417,
0.07952451705932617,
0.08865074068307877,
-0.23562555015087128,
-0.1705007404088974,
0.5629123449325562,
-0.636320948600769,
0.0021729483269155025,
0.6677355170249939,
0.17152580618858337,
0.033235326409339905,
-0.6547738313674927,
-0.6289626955986023,
0.06959117203950882,
-0.17524059116840363,
0.30186954140663147,
-0.09340442717075348,
-0.37243393063545227,
0.4928601384162903,
0.5296303629875183,
-0.5319226384162903,
-0.23079359531402588,
-0.5079904794692993,
-0.07732237130403519,
1.209873914718628,
0.1474570482969284,
0.41440141201019287,
-0.471519410610199,
-0.19748622179031372,
-0.4350909888744354,
-0.2387833446264267,
0.3684864342212677,
0.5402185320854187,
0.47048237919807434,
-1.0179555416107178,
0.6051119565963745,
-0.15505275130271912,
0.5636621117591858,
0.11224493384361267,
-0.0392463319003582,
0.7459257245063782,
-0.3764829933643341,
-0.11213208734989166,
-0.08522151410579681,
1.0569552183151245,
0.7338118553161621,
0.19267889857292175,
0.10583395510911942,
-0.009859591722488403,
0.03407026454806328,
-0.11830689013004303,
-0.8061564564704895,
-0.45208969712257385,
0.6649042963981628,
-0.533302903175354,
-0.6297754645347595,
0.17369359731674194,
-0.9805258512496948,
-0.26169902086257935,
-0.26182302832603455,
0.1939321905374527,
-0.3647748529911041,
-0.5557572841644287,
0.1298946589231491,
-0.2659657597541809,
0.16810476779937744,
0.035195548087358475,
-0.6536952257156372,
0.20225156843662262,
0.5725778937339783,
0.7395363450050354,
0.24368582665920258,
-0.3121219873428345,
-0.24717119336128235,
-0.15135879814624786,
-0.12359046190977097,
0.6501759886741638,
-0.35965123772621155,
-0.35092800855636597,
-0.1441258192062378,
0.36526474356651306,
-0.07248400151729584,
-0.2967711389064789,
0.8935527205467224,
0.007823836989700794,
0.15989135205745697,
-0.6827990412712097,
-0.45057106018066406,
-0.004720843397080898,
0.2628147304058075,
-0.8138522505760193,
1.122750163078308,
0.3022090792655945,
-0.9955182671546936,
0.2240205556154251,
-0.7980544567108154,
-0.35793620347976685,
0.01582612283527851,
0.08687293529510498,
-0.7823979258537292,
-0.21871347725391388,
0.21632952988147736,
0.7233327627182007,
-0.3605864644050598,
-0.07028660178184509,
-0.6021653413772583,
-0.12711840867996216,
0.38020095229148865,
0.25939154624938965,
1.155523419380188,
0.11558172851800919,
-0.1551409810781479,
0.0421757735311985,
-0.9226797819137573,
0.1476639360189438,
0.47583115100860596,
-0.14252397418022156,
-0.12766973674297333,
-0.21200290322303772,
0.37302061915397644,
0.266119122505188,
0.09762824326753616,
-0.5671176314353943,
0.40507271885871887,
-0.21896179020404816,
0.47471174597740173,
0.7378613948822021,
-0.03608618304133415,
0.330971896648407,
-0.6553099155426025,
0.36075571179389954,
0.08886952698230743,
0.3728848993778229,
0.012703698128461838,
-0.5262174010276794,
-0.48417991399765015,
-0.21468059718608856,
0.3288256525993347,
0.48906347155570984,
-0.7082592844963074,
0.9950552582740784,
-0.309705913066864,
-0.8409222960472107,
-0.6448836326599121,
0.14054609835147858,
0.17365890741348267,
0.5090548396110535,
0.3756651282310486,
-0.4287116825580597,
-0.5782018303871155,
-0.6242254376411438,
0.07634159922599792,
-0.18564872443675995,
0.16907286643981934,
0.40928319096565247,
0.7680484056472778,
-0.18722473084926605,
0.8472654223442078,
-0.681369960308075,
-0.25700774788856506,
-0.2637643814086914,
-0.3325769007205963,
0.37917548418045044,
0.777034342288971,
0.6982983350753784,
-0.8704143166542053,
-0.5880406498908997,
-0.19173628091812134,
-0.7612898945808411,
-0.06875987350940704,
-0.007032123394310474,
-0.23827284574508667,
0.01606917195022106,
0.13428589701652527,
-0.6792031526565552,
0.5527216196060181,
0.4757421612739563,
-0.6446318626403809,
0.5739082098007202,
0.13045112788677216,
0.01998928003013134,
-1.2969601154327393,
0.3365979492664337,
0.2680526375770569,
0.05896269530057907,
-0.5916140079498291,
-0.22373226284980774,
-0.04728683456778526,
-0.0513789989054203,
-0.0940534919500351,
0.6384514570236206,
-0.3465040922164917,
0.2572989761829376,
0.11538328975439072,
0.061789371073246,
0.09271552413702011,
0.44499480724334717,
-0.09005013853311539,
0.32629910111427307,
1.0024281740188599,
-0.37761253118515015,
0.7247248888015747,
0.5823191404342651,
-0.1969892382621765,
0.8363944292068481,
-0.8141061067581177,
0.029664352536201477,
-0.1851966828107834,
0.3442705273628235,
-0.8478593826293945,
-0.544235348701477,
0.7932659983634949,
-0.6499763131141663,
0.37317293882369995,
-0.2593168318271637,
-0.5357315540313721,
-0.8143134713172913,
-0.7073571085929871,
0.11399860680103302,
0.4881768226623535,
-0.35813894867897034,
0.3899640738964081,
0.5430787801742554,
0.06376688182353973,
-0.4104407727718353,
-0.8003111481666565,
-0.15660478174686432,
-0.3434651494026184,
-0.8149673342704773,
0.3884179890155792,
-0.3208131492137909,
-0.10803553462028503,
0.17536720633506775,
0.05216510593891144,
0.06551468372344971,
-0.02147720567882061,
0.39141401648521423,
0.2683895528316498,
0.10683654993772507,
-0.03800836578011513,
-0.0813576951622963,
-0.2382040172815323,
0.11392365396022797,
-0.20014455914497375,
0.27565982937812805,
-0.3046967089176178,
-0.12924490869045258,
-0.6469147801399231,
0.20316611230373383,
0.46844229102134705,
-0.2724190950393677,
0.6978393197059631,
0.8480271100997925,
-0.2272568941116333,
-0.025170452892780304,
-0.5156398415565491,
-0.18699778616428375,
-0.4306158721446991,
0.02464987337589264,
-0.21510644257068634,
-0.5601779818534851,
0.995905876159668,
0.2228730022907257,
0.11483312398195267,
0.6276943683624268,
0.4299032390117645,
-0.10037089139223099,
0.6099845767021179,
0.3350585997104645,
-0.25172924995422363,
0.4923766851425171,
-0.684411883354187,
-0.23715528845787048,
-0.8631013035774231,
-0.41222450137138367,
-0.4734514057636261,
-0.5144082307815552,
-0.8787117600440979,
-0.43094930052757263,
0.2254992574453354,
0.111515112221241,
-0.19968517124652863,
0.4558950662612915,
-0.9529104828834534,
0.3191850185394287,
0.3725403845310211,
0.33632126450538635,
-0.14706476032733917,
0.0656585618853569,
0.044738490134477615,
0.11799092590808868,
-0.5898374319076538,
-0.27618905901908875,
1.1824918985366821,
0.44679975509643555,
0.5550535917282104,
-0.10350414365530014,
0.8440675735473633,
0.08910593390464783,
0.1977105587720871,
-0.5187774896621704,
0.4958827495574951,
-0.04408590868115425,
-0.4668988287448883,
-0.21178658306598663,
-0.4989805817604065,
-0.9089617729187012,
-0.13862118124961853,
-0.3807264268398285,
-0.6411604881286621,
0.46408331394195557,
0.0763583853840828,
-0.1998130977153778,
0.39079028367996216,
-0.6819080114364624,
0.8915442228317261,
-0.09638599306344986,
-0.515667200088501,
0.3222077190876007,
-1.0187984704971313,
0.1516968160867691,
0.23887494206428528,
0.2813739478588104,
-0.367215633392334,
0.06099403649568558,
0.9911488890647888,
-0.847536563873291,
1.0052958726882935,
-0.4034399390220642,
0.12800896167755127,
0.560177743434906,
-0.27173349261283875,
0.48978278040885925,
0.10388161242008209,
-0.33260631561279297,
0.29066458344459534,
0.042865853756666183,
-0.47894835472106934,
-0.4673078656196594,
0.7148923873901367,
-0.7667774558067322,
0.055437829345464706,
-0.3500020205974579,
-0.489605575799942,
0.05373690649867058,
0.2238585650920868,
0.24338115751743317,
0.3597570061683655,
0.02927924320101738,
0.11195071786642075,
0.4394369125366211,
-0.11876555532217026,
0.32289066910743713,
0.015047121793031693,
-0.01726718246936798,
-0.7499595880508423,
0.9490175843238831,
0.22316016256809235,
0.01850173994898796,
-0.05272397771477699,
0.41245797276496887,
-0.34460726380348206,
-0.08693273365497589,
-0.5840927958488464,
0.45295026898384094,
-0.41014373302459717,
-0.39290687441825867,
-0.45077434182167053,
-0.17239712178707123,
-0.6578516364097595,
-0.22062382102012634,
-0.2841504216194153,
-0.4716489017009735,
-0.325446754693985,
-0.19914750754833221,
1.0461173057556152,
0.47236254811286926,
-0.6524134278297424,
0.12557277083396912,
-0.5066596269607544,
0.22640728950500488,
-0.015284363180398941,
0.6459429264068604,
-0.04068597033619881,
-0.26597902178764343,
-0.249558225274086,
0.10534363240003586,
-0.20903800427913666,
-0.6679013967514038,
0.2863384485244751,
-0.05495660752058029,
0.34462058544158936,
0.09842710196971893,
0.1990528255701065,
0.6198092103004456,
-0.02659757249057293,
0.6755458116531372,
0.2743615210056305,
-0.7737310528755188,
0.6534554958343506,
-0.4786824882030487,
0.20537784695625305,
0.7204148769378662,
0.4364435374736786,
-0.6149742603302002,
-0.11511576920747757,
-0.9054657816886902,
-0.876599133014679,
0.7921621799468994,
0.35696953535079956,
0.04274699091911316,
0.19666080176830292,
0.5461000800132751,
-0.13749787211418152,
0.2688360810279846,
-0.6716558933258057,
-0.8284639120101929,
-0.4525711238384247,
-0.36124470829963684,
0.02294273115694523,
-0.0844610258936882,
-0.2842804193496704,
-0.6611612439155579,
0.7596866488456726,
-0.12212275713682175,
0.3648976981639862,
0.3654122054576874,
0.3837263584136963,
-0.2176152765750885,
-0.0162495169788599,
0.2937704622745514,
0.38981810212135315,
-0.23633180558681488,
-0.28076431155204773,
-0.14400140941143036,
-0.6459077000617981,
-0.11423014849424362,
0.4982588589191437,
-0.30060675740242004,
-0.14248321950435638,
0.3619552552700043,
0.8574973940849304,
0.01489727757871151,
-0.16663740575313568,
0.5724756717681885,
-0.058320946991443634,
-0.40150508284568787,
-0.4156343340873718,
0.013658533804118633,
0.16365653276443481,
0.25941842794418335,
0.08023665845394135,
0.037303514778614044,
-0.1383245885372162,
-0.3585311770439148,
0.41206565499305725,
0.222001850605011,
-0.3284838795661926,
-0.47734132409095764,
0.5574220418930054,
0.09288787841796875,
-0.08655014634132385,
0.5384688377380371,
-0.16629566252231598,
-0.5866888165473938,
0.7963703870773315,
0.12894144654273987,
0.7766720652580261,
-0.20069214701652527,
0.34545543789863586,
0.711601197719574,
0.23365361988544464,
-0.01574280485510826,
0.5484143495559692,
-0.205887570977211,
-0.6658935546875,
-0.06880876421928406,
-0.5749634504318237,
-0.11257520318031311,
0.06459816545248032,
-0.8633931279182434,
0.4227880835533142,
-0.5055128931999207,
-0.22103379666805267,
0.043389707803726196,
0.419302374124527,
-0.7366365790367126,
0.19220170378684998,
-0.096421979367733,
1.0186185836791992,
-1.0722532272338867,
0.4774344563484192,
0.7074981927871704,
-0.6835091710090637,
-1.1859568357467651,
-0.132782444357872,
0.17030790448188782,
-0.6258590817451477,
0.23334062099456787,
0.15820249915122986,
0.5372782349586487,
-0.05211776867508888,
-0.8971373438835144,
-0.6469345092773438,
1.2029513120651245,
0.0309025626629591,
-0.189829483628273,
0.32024556398391724,
0.17633694410324097,
0.5676602721214294,
-0.3286973834037781,
0.35917583107948303,
0.6479681134223938,
0.7436925768852234,
0.3464430868625641,
-0.7540320158004761,
0.3034006357192993,
-0.6207948923110962,
-0.2118781954050064,
0.045543424785137177,
-1.0201970338821411,
0.6243272423744202,
-0.17045797407627106,
0.013906671665608883,
-0.06297561526298523,
0.6112147569656372,
0.3583354949951172,
0.3996067941188812,
0.4032796025276184,
0.7765855193138123,
0.780440628528595,
-0.3420896828174591,
1.2181800603866577,
-0.2319340854883194,
0.6008669137954712,
0.7780813574790955,
-0.04667489975690842,
0.4815119206905365,
0.19660690426826477,
-0.34896695613861084,
0.5365457534790039,
0.6565271019935608,
-0.46236714720726013,
0.2711082994937897,
0.33678996562957764,
-0.04327032342553139,
-0.0678914487361908,
-0.25792697072029114,
-0.6208550930023193,
0.33825668692588806,
0.22797569632530212,
-0.304573118686676,
-0.012352283112704754,
-0.0021191544365137815,
0.3948679268360138,
-0.0328981950879097,
-0.2488202005624771,
0.6653321385383606,
0.04691968858242035,
-0.3065494894981384,
0.5776421427726746,
-0.19797538220882416,
0.6688938736915588,
-0.5990498661994934,
0.1126471534371376,
-0.12043728679418564,
0.08722130954265594,
-0.6561486721038818,
-1.100131630897522,
0.3879469335079193,
-0.11039676517248154,
-0.28097331523895264,
-0.29074734449386597,
0.7276896238327026,
-0.47340261936187744,
-0.777223527431488,
0.18587429821491241,
0.18352511525154114,
0.30191320180892944,
0.21367257833480835,
-1.2845019102096558,
0.6501861810684204,
0.12523153424263,
-0.45981788635253906,
0.12069986015558243,
0.5025286078453064,
0.17150908708572388,
0.5060983300209045,
0.6897644400596619,
0.20225152373313904,
-0.22978715598583221,
0.03569624200463295,
1.131672978401184,
-0.5279610753059387,
-0.473697304725647,
-0.7253392934799194,
0.9253862500190735,
-0.3772055208683014,
-0.3369031548500061,
0.7304492592811584,
0.7331738471984863,
0.906609058380127,
-0.02951972186565399,
0.8439911007881165,
-0.6754202842712402,
0.6492306590080261,
-0.2057463675737381,
0.9530923366546631,
-0.6978222131729126,
-0.07006531208753586,
-0.7119724750518799,
-0.5260962247848511,
-0.41173672676086426,
0.6959429383277893,
-0.28164055943489075,
0.26829928159713745,
0.28644314408302307,
0.9127197861671448,
0.000619555707089603,
0.15286363661289215,
-0.21119424700737,
0.3030872642993927,
0.26737600564956665,
0.5194172859191895,
0.35196858644485474,
-0.9293923377990723,
0.3037731647491455,
-0.7899150848388672,
-0.32815277576446533,
-0.004056902136653662,
-0.8468493819236755,
-0.8761234879493713,
-0.9663170576095581,
-0.6530485153198242,
-0.7482991218566895,
-0.28038734197616577,
1.063654899597168,
0.7347975969314575,
-0.726265013217926,
-0.3241347670555115,
0.1051207035779953,
0.27357998490333557,
-0.15944737195968628,
-0.33739709854125977,
0.6797235608100891,
0.32285645604133606,
-0.6011658906936646,
-0.11512526869773865,
-0.04357163608074188,
0.1854480803012848,
0.0751953050494194,
-0.07438910007476807,
-0.1463366001844406,
-0.2971310019493103,
0.3832494020462036,
0.5161282420158386,
-0.2982214391231537,
-0.08411818742752075,
-0.2455586940050125,
0.05534657835960388,
0.12349346280097961,
0.4659068286418915,
-0.4700942933559418,
0.259784072637558,
0.584270179271698,
0.3231719434261322,
0.47317373752593994,
0.12956856191158295,
0.03928956016898155,
-0.5647218227386475,
0.09918186068534851,
-0.012968409806489944,
0.24835005402565002,
0.39785051345825195,
-0.5053128600120544,
0.8007754683494568,
0.5389361381530762,
-0.5331598520278931,
-0.8235111832618713,
-0.14433243870735168,
-1.3097389936447144,
0.09950628131628036,
1.0095760822296143,
-0.01736474223434925,
-0.5768828988075256,
0.07715155929327011,
-0.15079404413700104,
0.1778014600276947,
-0.582037627696991,
0.4840785562992096,
0.5549508929252625,
-0.10740087181329727,
0.07149633020162582,
-0.3670433461666107,
0.6352295279502869,
-0.0019027641974389553,
-1.0012445449829102,
0.23062263429164886,
0.41703957319259644,
0.4735316336154938,
0.30087435245513916,
0.7303589582443237,
-0.2641620337963104,
0.08697736263275146,
-0.055513348430395126,
0.31992772221565247,
-0.3452622890472412,
-0.0032986802980303764,
-0.25704237818717957,
-0.12953519821166992,
-0.4673641622066498,
-0.21202971041202545
]
|
huggingartists/slava-kpss | huggingartists | 2022-10-25T09:44:55Z | 260 | 1 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/slava-kpss"
## 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:** 3.88329 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('https://images.genius.com/e63e3a804916ed71bf2941ac4e190063.847x847x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/slava-kpss">
<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 KPSS)</div>
<a href="https://genius.com/artists/slava-kpss">
<div style="text-align: center; font-size: 14px;">@slava-kpss</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-kpss).
### 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-kpss")
```
## 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|
|------:|---------:|---:|
|897| -| -|
'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-kpss")
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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.5920454859733582,
-0.48245346546173096,
0.09581223875284195,
0.3008958399295807,
-0.27411532402038574,
0.018022969365119934,
-0.29201218485832214,
-0.4627472460269928,
0.8981150388717651,
0.325238436460495,
-0.8663461208343506,
-0.7751956582069397,
-0.5961472988128662,
0.09339331090450287,
-0.0600125752389431,
1.3163766860961914,
-0.19442367553710938,
-0.3412220776081085,
-0.3224938213825226,
-0.24684108793735504,
-0.2943679690361023,
-0.3042021691799164,
-0.2589665651321411,
-0.35419777035713196,
0.32218316197395325,
0.505327582359314,
0.6839590072631836,
0.7995405793190002,
0.46794745326042175,
0.35118770599365234,
-0.1445448100566864,
0.009358495473861694,
-0.3479417860507965,
-0.029909001663327217,
0.19305869936943054,
-0.2968462407588959,
-0.6888777613639832,
0.19739069044589996,
0.6049147248268127,
0.40974169969558716,
-0.08256762474775314,
0.5301318764686584,
0.08529962599277496,
0.8654377460479736,
-0.34418174624443054,
0.5116579532623291,
-0.24160298705101013,
-0.13879495859146118,
-0.30112388730049133,
0.07712146639823914,
0.1391407549381256,
-0.6210124492645264,
0.012747830711305141,
-0.7297661900520325,
0.0040281834080815315,
-0.022042231634259224,
1.0472595691680908,
0.04225745052099228,
0.12313009798526764,
-0.2389378547668457,
-0.15272977948188782,
0.5572895407676697,
-0.6086254715919495,
-0.014602658338844776,
0.5879500508308411,
0.15412992238998413,
0.02038111910223961,
-0.5988687872886658,
-0.5692788362503052,
0.08295013755559921,
-0.1964472085237503,
0.23213538527488708,
-0.12799862027168274,
-0.32124748826026917,
0.51973557472229,
0.5178384780883789,
-0.49196919798851013,
-0.26177534461021423,
-0.5487455129623413,
-0.151903435587883,
1.1807681322097778,
0.15210747718811035,
0.40067702531814575,
-0.4768369197845459,
-0.20871686935424805,
-0.3597922921180725,
-0.23755306005477905,
0.3819693922996521,
0.5430976748466492,
0.46113643050193787,
-0.9983024001121521,
0.641900360584259,
-0.1726689338684082,
0.5472062230110168,
0.17708206176757812,
-0.12055714428424835,
0.8347921371459961,
-0.39877235889434814,
-0.13363473117351532,
-0.11502061784267426,
1.025604009628296,
0.6554113626480103,
0.15534119307994843,
0.12955045700073242,
-0.08096417039632797,
0.07983820885419846,
-0.16531617939472198,
-0.8278775811195374,
-0.3890669345855713,
0.6198363900184631,
-0.5988417267799377,
-0.599439263343811,
0.06279787421226501,
-1.0275676250457764,
-0.23674221336841583,
-0.31367364525794983,
0.24979154765605927,
-0.38265058398246765,
-0.5584596991539001,
0.17409399151802063,
-0.259735107421875,
0.15793493390083313,
0.04121578857302666,
-0.6112078428268433,
0.20648381114006042,
0.5633041858673096,
0.772652804851532,
0.21354861557483673,
-0.3181537687778473,
-0.2718430161476135,
-0.2010876089334488,
-0.11868046969175339,
0.6696544289588928,
-0.28809210658073425,
-0.31873854994773865,
-0.154745414853096,
0.3263682723045349,
-0.09450233727693558,
-0.23221085965633392,
0.9103644490242004,
0.06427907198667526,
0.16313065588474274,
-0.584964394569397,
-0.4487335681915283,
0.051731470972299576,
0.2412775456905365,
-0.6878620386123657,
1.0989023447036743,
0.27686023712158203,
-1.0053222179412842,
0.2015877664089203,
-0.7878053784370422,
-0.30587318539619446,
0.06674662977457047,
0.07108452916145325,
-0.8245815634727478,
-0.14049062132835388,
0.17228537797927856,
0.7372159957885742,
-0.250663697719574,
0.030380219221115112,
-0.616192102432251,
-0.11425326019525528,
0.3346770107746124,
0.3437275290489197,
1.1784685850143433,
0.13467709720134735,
-0.13910818099975586,
0.08053494244813919,
-0.9321547746658325,
0.1848255842924118,
0.46928539872169495,
-0.11831628531217575,
-0.16071173548698425,
-0.2452600747346878,
0.3751430809497833,
0.323718398809433,
0.09888157993555069,
-0.6220865249633789,
0.41549962759017944,
-0.21295683085918427,
0.4799458980560303,
0.7595945596694946,
-0.012262457981705666,
0.36384379863739014,
-0.6231675744056702,
0.4423143267631531,
0.056235674768686295,
0.37915584444999695,
-0.03041633777320385,
-0.5922272205352783,
-0.47319918870925903,
-0.26288720965385437,
0.31286588311195374,
0.4347085654735565,
-0.6740280985832214,
0.96173095703125,
-0.2921524941921234,
-0.8877885937690735,
-0.6680644750595093,
0.09641219675540924,
0.22311295568943024,
0.5167837738990784,
0.32458192110061646,
-0.41384732723236084,
-0.6445433497428894,
-0.6739546060562134,
0.06433127075433731,
-0.24435248970985413,
0.21980102360248566,
0.3884173333644867,
0.8695545196533203,
-0.1721339374780655,
0.8158841729164124,
-0.6986209750175476,
-0.24795402586460114,
-0.2529444098472595,
-0.34287774562835693,
0.36742401123046875,
0.7730954885482788,
0.6799681782722473,
-0.8349363803863525,
-0.5622803568840027,
-0.28033316135406494,
-0.7215747833251953,
-0.12364424020051956,
-0.004491842817515135,
-0.23218291997909546,
0.08187276870012283,
0.09996923804283142,
-0.7699840068817139,
0.5542802810668945,
0.49793654680252075,
-0.7178061604499817,
0.6456936001777649,
0.09279915690422058,
-0.015607722103595734,
-1.2391730546951294,
0.3811197280883789,
0.23291015625,
0.01972910761833191,
-0.6537277698516846,
-0.1401452124118805,
-0.061206359416246414,
-0.08477358520030975,
-0.1269414871931076,
0.6145156621932983,
-0.3487779498100281,
0.19769559800624847,
0.14242754876613617,
0.06798973679542542,
0.09989546239376068,
0.46008938550949097,
-0.0715717226266861,
0.2947080731391907,
1.0338103771209717,
-0.34852662682533264,
0.6119442582130432,
0.6166043877601624,
-0.2451217770576477,
0.8735965490341187,
-0.8265048861503601,
0.01735137216746807,
-0.29753831028938293,
0.42446213960647583,
-0.8219720125198364,
-0.5140282511711121,
0.8291705250740051,
-0.6993657946586609,
0.38248810172080994,
-0.24036060273647308,
-0.5533230900764465,
-0.768273651599884,
-0.6824333071708679,
0.11140560358762741,
0.5524771809577942,
-0.33212044835090637,
0.3990470767021179,
0.6475068926811218,
0.03149259462952614,
-0.3988878130912781,
-0.7683154344558716,
-0.1437782645225525,
-0.39511585235595703,
-0.8127100467681885,
0.37580475211143494,
-0.35985568165779114,
-0.09207688271999359,
0.13029122352600098,
0.08925919234752655,
0.10675022006034851,
-0.019840016961097717,
0.4232766926288605,
0.324306845664978,
0.10540436208248138,
0.0090764369815588,
-0.09786012023687363,
-0.24353688955307007,
0.08616815507411957,
-0.1822405755519867,
0.29261332750320435,
-0.3460504412651062,
-0.10621310025453568,
-0.664169430732727,
0.2337259203195572,
0.4813474416732788,
-0.2716620862483978,
0.6770737171173096,
0.7848575711250305,
-0.2448546290397644,
0.013417266309261322,
-0.5070063471794128,
-0.1228903979063034,
-0.4108445346355438,
0.01890329085290432,
-0.2549843490123749,
-0.6202375888824463,
0.9272447228431702,
0.2476910948753357,
0.06975027918815613,
0.6292542815208435,
0.48375585675239563,
-0.08912335336208344,
0.713150680065155,
0.3751581013202667,
-0.27163219451904297,
0.4752286970615387,
-0.6675435304641724,
-0.20005196332931519,
-0.8572551012039185,
-0.4885920286178589,
-0.5084905624389648,
-0.4933253526687622,
-0.8460150361061096,
-0.4095016121864319,
0.1902536004781723,
0.14929409325122833,
-0.22524990141391754,
0.4451102614402771,
-0.971974790096283,
0.2795708477497101,
0.31994354724884033,
0.25975775718688965,
-0.14791244268417358,
0.09575540572404861,
0.06544295698404312,
0.07072698324918747,
-0.5875416994094849,
-0.22504299879074097,
1.1171903610229492,
0.5395292639732361,
0.5406078100204468,
-0.13348618149757385,
0.8636837601661682,
0.03555639460682869,
0.16664835810661316,
-0.5107496976852417,
0.5421774387359619,
0.053050655871629715,
-0.4634622633457184,
-0.14771823585033417,
-0.4424695372581482,
-0.8885325193405151,
-0.10317010432481766,
-0.4334142208099365,
-0.7245689034461975,
0.505940854549408,
0.08571287989616394,
-0.20610471069812775,
0.383539617061615,
-0.6334983706474304,
0.8108665347099304,
-0.03652897849678993,
-0.4237210154533386,
0.284791499376297,
-1.0410714149475098,
0.2008502036333084,
0.20953284204006195,
0.274944543838501,
-0.4165222942829132,
-0.0071555026806890965,
0.9711612462997437,
-0.8071680665016174,
0.9553597569465637,
-0.4320123493671417,
0.14821164309978485,
0.5686994791030884,
-0.3185654282569885,
0.48090726137161255,
0.07393228262662888,
-0.26418250799179077,
0.32382285594940186,
0.057869911193847656,
-0.5078815817832947,
-0.42780646681785583,
0.6885226368904114,
-0.7297236323356628,
0.08154802769422531,
-0.4064776599407196,
-0.4896550178527832,
0.06137274578213692,
0.19735851883888245,
0.2393898367881775,
0.33084529638290405,
0.09505956619977951,
0.11722936481237411,
0.457185298204422,
-0.13409532606601715,
0.2773553431034088,
0.05442608520388603,
-0.12890006601810455,
-0.7812219262123108,
0.9210386872291565,
0.1856072098016739,
0.05453072488307953,
-0.110805943608284,
0.4282936453819275,
-0.3615305721759796,
-0.1358087807893753,
-0.5961026549339294,
0.4909394681453705,
-0.41107964515686035,
-0.40380072593688965,
-0.49090802669525146,
-0.18928688764572144,
-0.6548858284950256,
-0.1490524411201477,
-0.25314953923225403,
-0.5375303626060486,
-0.2602282762527466,
-0.1845410317182541,
0.9979970455169678,
0.4632261395454407,
-0.6554550528526306,
0.11755501478910446,
-0.5137063264846802,
0.26311150193214417,
-0.08073636889457703,
0.6664493680000305,
-0.08252546936273575,
-0.3096127212047577,
-0.21340234577655792,
0.08693567663431168,
-0.1940336376428604,
-0.7181895971298218,
0.28845855593681335,
-0.008982199244201183,
0.3680524528026581,
0.05682164058089256,
0.10630276799201965,
0.6884708404541016,
-0.06484948843717575,
0.6795719861984253,
0.29604464769363403,
-0.8119099140167236,
0.7119616866111755,
-0.493611216545105,
0.20188404619693756,
0.721477746963501,
0.39384785294532776,
-0.6042494773864746,
-0.13843286037445068,
-0.9671856760978699,
-0.8433353900909424,
0.81168532371521,
0.4293908178806305,
0.026031354442238808,
0.24681897461414337,
0.5759601593017578,
-0.1758192479610443,
0.2932978868484497,
-0.6737041473388672,
-0.8509510159492493,
-0.4069344103336334,
-0.29587826132774353,
-0.03869215026497841,
-0.14035314321517944,
-0.2272767424583435,
-0.6883471608161926,
0.8110296726226807,
-0.12198792397975922,
0.3109007179737091,
0.4007822275161743,
0.39732852578163147,
-0.23171530663967133,
-0.009923767298460007,
0.35280945897102356,
0.37718310952186584,
-0.2294069081544876,
-0.3227790594100952,
-0.13671106100082397,
-0.6342383027076721,
-0.07162818312644958,
0.4755195081233978,
-0.4182952642440796,
-0.042125578969717026,
0.27889904379844666,
0.9202695488929749,
0.0017546896124258637,
-0.2693198025226593,
0.5953267812728882,
-0.05544532835483551,
-0.41206905245780945,
-0.4016992151737213,
-0.05933256819844246,
0.16193874180316925,
0.23797520995140076,
0.07097240537405014,
0.11507082730531693,
-0.14061900973320007,
-0.3528980314731598,
0.39153754711151123,
0.24772761762142181,
-0.35008934140205383,
-0.5065413117408752,
0.5303073525428772,
0.0424819178879261,
-0.1628614217042923,
0.41986745595932007,
-0.18943177163600922,
-0.605974018573761,
0.7455403804779053,
0.14011599123477936,
0.784504234790802,
-0.22034256160259247,
0.37072065472602844,
0.7427715063095093,
0.20443670451641083,
-0.0718398466706276,
0.5582011938095093,
-0.20400121808052063,
-0.60361647605896,
-0.11743422597646713,
-0.6214922666549683,
-0.07457153499126434,
0.112544484436512,
-0.8501295447349548,
0.4594786465167999,
-0.473584920167923,
-0.22444432973861694,
0.04645003378391266,
0.4109356105327606,
-0.6723392605781555,
0.14580096304416656,
-0.035603683441877365,
1.0396950244903564,
-1.1124510765075684,
0.47103360295295715,
0.7418481111526489,
-0.6475796699523926,
-1.1323204040527344,
-0.1882699579000473,
0.15970072150230408,
-0.6167103052139282,
0.24215862154960632,
0.17708563804626465,
0.5231063961982727,
-0.13229520618915558,
-0.8944859504699707,
-0.7054354548454285,
1.178544282913208,
0.050386711955070496,
-0.20756004750728607,
0.2886073887348175,
0.14382310211658478,
0.651037871837616,
-0.3607913553714752,
0.294983834028244,
0.6426961421966553,
0.6767024993896484,
0.2797236740589142,
-0.7685118913650513,
0.278852254152298,
-0.6376504898071289,
-0.20466695725917816,
0.1221410259604454,
-1.000861406326294,
0.6360439658164978,
-0.16171777248382568,
-0.00528571056202054,
0.02221107855439186,
0.6043033003807068,
0.5102330446243286,
0.4279998540878296,
0.4847203493118286,
0.7963556051254272,
0.7757430076599121,
-0.2635403275489807,
1.1544314622879028,
-0.2809666097164154,
0.6349865198135376,
0.7987074255943298,
0.001130440621636808,
0.5198882818222046,
0.2838382124900818,
-0.3519876301288605,
0.5432344675064087,
0.6366245746612549,
-0.41251951456069946,
0.26767659187316895,
0.37321797013282776,
-0.0568588487803936,
-0.08452273160219193,
-0.2839708626270294,
-0.5940962433815002,
0.33524706959724426,
0.2750171720981598,
-0.31562355160713196,
-0.02362091839313507,
-0.005334107205271721,
0.3671140670776367,
-0.02022831328213215,
-0.2896997332572937,
0.6315518021583557,
0.05827350914478302,
-0.3758610486984253,
0.5578413605690002,
-0.24464952945709229,
0.7056007981300354,
-0.6376568675041199,
0.13631954789161682,
-0.07689649611711502,
0.09958191215991974,
-0.6210880279541016,
-1.110905408859253,
0.4257374107837677,
-0.10404300689697266,
-0.2487419694662094,
-0.37237945199012756,
0.8627052903175354,
-0.47160372138023376,
-0.7833186984062195,
0.20867106318473816,
0.18779680132865906,
0.3594454526901245,
0.1910780370235443,
-1.3025275468826294,
0.6093736290931702,
0.1452317088842392,
-0.4359232187271118,
0.20008213818073273,
0.4467701017856598,
0.1592634916305542,
0.5647248029708862,
0.6764524579048157,
0.3005659878253937,
-0.24969758093357086,
0.004821337293833494,
1.0944827795028687,
-0.4742797315120697,
-0.5014291405677795,
-0.7179602384567261,
0.914713978767395,
-0.394917368888855,
-0.3849743902683258,
0.7224001884460449,
0.7488700151443481,
0.8260458707809448,
-0.014767318964004517,
0.8013100028038025,
-0.6499650478363037,
0.6881321668624878,
-0.16695952415466309,
0.9381594061851501,
-0.6810529828071594,
-0.0932622104883194,
-0.7284801006317139,
-0.5102533102035522,
-0.3680609166622162,
0.6378390192985535,
-0.19399181008338928,
0.1357179433107376,
0.23442170023918152,
0.8975896835327148,
0.03536243736743927,
0.13230693340301514,
-0.24216195940971375,
0.30626988410949707,
0.23861417174339294,
0.5582037568092346,
0.4099002778530121,
-0.9137248992919922,
0.3415766954421997,
-0.8073646426200867,
-0.31697824597358704,
0.03467029333114624,
-0.8697836995124817,
-0.8684317469596863,
-0.9984462261199951,
-0.6602077484130859,
-0.7969937920570374,
-0.25588420033454895,
1.0586576461791992,
0.7286825180053711,
-0.6967470049858093,
-0.266407310962677,
0.11102292686700821,
0.2657548487186432,
-0.06930849701166153,
-0.3173142373561859,
0.662316620349884,
0.30119413137435913,
-0.5728076696395874,
-0.14606930315494537,
0.026920227333903313,
0.21876229345798492,
0.017090417444705963,
-0.11258209496736526,
-0.14435188472270966,
-0.30462053418159485,
0.3916274309158325,
0.5039966702461243,
-0.3475576639175415,
-0.09314097464084625,
-0.2443312704563141,
0.03964207321405411,
0.13876689970493317,
0.47249168157577515,
-0.5255368947982788,
0.2126084566116333,
0.6731970310211182,
0.258917897939682,
0.4630966782569885,
0.13016453385353088,
-0.01927730068564415,
-0.5214748978614807,
0.1464519202709198,
0.020074186846613884,
0.314814031124115,
0.3745909035205841,
-0.45282548666000366,
0.7588561773300171,
0.5667924284934998,
-0.5726825594902039,
-0.9174377918243408,
-0.12355712801218033,
-1.2845252752304077,
0.11705838143825531,
1.0433396100997925,
-0.031830575317144394,
-0.5646945834159851,
0.06308069825172424,
-0.22442245483398438,
0.0975549966096878,
-0.5843861103057861,
0.4736431837081909,
0.5273483991622925,
-0.12483707815408707,
0.12370506674051285,
-0.37231147289276123,
0.6493040919303894,
0.04494833946228027,
-0.9487206935882568,
0.18975768983364105,
0.4066644608974457,
0.46455490589141846,
0.34429070353507996,
0.847944438457489,
-0.26595577597618103,
0.07512573897838593,
-0.07381707429885864,
0.29175928235054016,
-0.2483631819486618,
0.04548312723636627,
-0.4023979902267456,
-0.12172020226716995,
-0.4871829152107239,
-0.21722668409347534
]
|
huggingartists/tanzy-minus | huggingartists | 2022-10-25T09:45:59Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/73716ad8dca0ea2fd5f02924ffcbcdad.639x639x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6462340950965881,
-0.4849183261394501,
0.07961743324995041,
0.2807694673538208,
-0.2338089495897293,
-0.010361112654209137,
-0.31578508019447327,
-0.47412168979644775,
0.8732309341430664,
0.32075169682502747,
-0.9741783142089844,
-0.8384606242179871,
-0.5477495193481445,
0.1308111846446991,
-0.0891457125544548,
1.273829698562622,
-0.1896522492170334,
-0.34403926134109497,
-0.2904358506202698,
-0.2308346927165985,
-0.2994096577167511,
-0.3092750608921051,
-0.3108636438846588,
-0.39408397674560547,
0.3476705551147461,
0.5343052744865417,
0.7036318778991699,
0.8590673208236694,
0.48983439803123474,
0.35239696502685547,
-0.08907921612262726,
-0.034877147525548935,
-0.3734298646450043,
-0.08674930036067963,
0.1662091314792633,
-0.34794220328330994,
-0.691697895526886,
0.2650046646595001,
0.5165793895721436,
0.37075841426849365,
-0.0684502124786377,
0.5096874237060547,
-0.0011107478057965636,
0.8489792943000793,
-0.3053199350833893,
0.4684572219848633,
-0.24457606673240662,
-0.15057222545146942,
-0.2837665379047394,
0.046354539692401886,
0.177909716963768,
-0.5978347063064575,
-0.03629719838500023,
-0.7290024757385254,
0.099091537296772,
-0.017945051193237305,
1.0157489776611328,
0.05456792190670967,
0.1272246390581131,
-0.14674179255962372,
-0.12448161095380783,
0.539454996585846,
-0.5937016010284424,
-0.0012341666733846068,
0.5924312472343445,
0.1469936966896057,
0.021219011396169662,
-0.5846556425094604,
-0.6218329668045044,
0.05763379484415054,
-0.16930171847343445,
0.28194111585617065,
-0.15770813822746277,
-0.27528879046440125,
0.5278319716453552,
0.5660520195960999,
-0.4752964675426483,
-0.21193218231201172,
-0.5301706790924072,
-0.13496778905391693,
1.1940466165542603,
0.1424763947725296,
0.44149816036224365,
-0.49419644474983215,
-0.214236319065094,
-0.3953806161880493,
-0.296095073223114,
0.3180634379386902,
0.5558682084083557,
0.4704187214374542,
-1.0254130363464355,
0.6627748012542725,
-0.17040622234344482,
0.5304355621337891,
0.12685804069042206,
0.006852007005363703,
0.7885434627532959,
-0.4121365249156952,
-0.13850979506969452,
-0.14602544903755188,
1.0565896034240723,
0.6575860381126404,
0.20070546865463257,
0.076823890209198,
-0.07696247845888138,
0.07610756903886795,
-0.1993597149848938,
-0.8630212545394897,
-0.40335410833358765,
0.6625868678092957,
-0.564149796962738,
-0.5927501916885376,
0.15029175579547882,
-0.982307493686676,
-0.26902690529823303,
-0.29629161953926086,
0.27581438422203064,
-0.40476545691490173,
-0.5499585866928101,
0.162742018699646,
-0.32723912596702576,
0.12737464904785156,
0.05163121968507767,
-0.5785775780677795,
0.21337537467479706,
0.5657901763916016,
0.7882131338119507,
0.22180622816085815,
-0.2966946065425873,
-0.2783835232257843,
-0.20513789355754852,
-0.11453282088041306,
0.6312049627304077,
-0.2923049032688141,
-0.35898393392562866,
-0.1815902590751648,
0.3347371816635132,
-0.09473001956939697,
-0.28103935718536377,
0.8648158311843872,
0.0766730085015297,
0.19860969483852386,
-0.5881041884422302,
-0.4411102533340454,
-0.012004229240119457,
0.2862127125263214,
-0.7756893634796143,
1.0424389839172363,
0.33207833766937256,
-0.9825801253318787,
0.16158732771873474,
-0.8391947150230408,
-0.29492607712745667,
0.0031386285554617643,
0.09001446515321732,
-0.7683029174804688,
-0.1505001038312912,
0.1721392124891281,
0.7166996002197266,
-0.3389197587966919,
-0.014532036148011684,
-0.6068627238273621,
-0.15953049063682556,
0.41197991371154785,
0.2381231188774109,
1.220351219177246,
0.10069677233695984,
-0.18720291554927826,
0.08041935414075851,
-0.9749255776405334,
0.16771183907985687,
0.42770135402679443,
-0.11227434128522873,
-0.08983761072158813,
-0.2738054096698761,
0.421394020318985,
0.33180442452430725,
0.06647942215204239,
-0.6316232085227966,
0.39760488271713257,
-0.2234310358762741,
0.4562264680862427,
0.7307301759719849,
0.0003445729671511799,
0.29772835969924927,
-0.6752683520317078,
0.44229477643966675,
0.06159171834588051,
0.327193945646286,
0.01114613562822342,
-0.5364152193069458,
-0.49672332406044006,
-0.27482035756111145,
0.3036179840564728,
0.4579353928565979,
-0.6868461966514587,
0.9670394659042358,
-0.322285920381546,
-0.8510631322860718,
-0.6538941860198975,
0.12897980213165283,
0.22128215432167053,
0.49926596879959106,
0.38759931921958923,
-0.3990875780582428,
-0.6328631043434143,
-0.6014997363090515,
0.07914364337921143,
-0.25345098972320557,
0.1822500228881836,
0.39115282893180847,
0.8186729550361633,
-0.2652808725833893,
0.8234022855758667,
-0.6666520833969116,
-0.2735324203968048,
-0.2724311649799347,
-0.30148348212242126,
0.37315261363983154,
0.808327317237854,
0.688773512840271,
-0.8654388189315796,
-0.47416213154792786,
-0.24547624588012695,
-0.6422474384307861,
-0.12521865963935852,
-0.022802408784627914,
-0.25944942235946655,
0.05836137756705284,
0.13994672894477844,
-0.7574305534362793,
0.5659499764442444,
0.5092952251434326,
-0.7320230603218079,
0.6002349257469177,
0.08964396268129349,
0.01997421309351921,
-1.2646209001541138,
0.3896738290786743,
0.28041842579841614,
0.008534204214811325,
-0.6067669987678528,
-0.17075122892856598,
-0.08343701809644699,
-0.03655737638473511,
-0.09894964843988419,
0.6349680423736572,
-0.32419103384017944,
0.28994834423065186,
0.15280862152576447,
0.08637892454862595,
0.09989035874605179,
0.457810640335083,
-0.06734208017587662,
0.3044672906398773,
0.9762706160545349,
-0.36114904284477234,
0.6949017643928528,
0.5633110404014587,
-0.19028611481189728,
0.8170470595359802,
-0.7994862794876099,
0.0012877997942268848,
-0.2612481117248535,
0.3621622323989868,
-0.9048188328742981,
-0.5252065658569336,
0.83608078956604,
-0.7037025690078735,
0.40065333247184753,
-0.2153507024049759,
-0.5597417950630188,
-0.7977290749549866,
-0.7312530875205994,
0.14325019717216492,
0.5053057670593262,
-0.35365191102027893,
0.3890855312347412,
0.5703449845314026,
0.0896189883351326,
-0.3692881762981415,
-0.8307819366455078,
-0.16335584223270416,
-0.36375853419303894,
-0.8001102209091187,
0.4181731045246124,
-0.33211347460746765,
-0.1050722673535347,
0.1677180975675583,
0.06699541956186295,
0.09944547712802887,
0.029203319922089577,
0.40634170174598694,
0.31283801794052124,
0.06293484568595886,
0.04866701364517212,
-0.11225123703479767,
-0.26891082525253296,
0.07613271474838257,
-0.18301409482955933,
0.29933086037635803,
-0.3192015290260315,
-0.13001038134098053,
-0.6956647038459778,
0.18724030256271362,
0.4674278497695923,
-0.2517377734184265,
0.6877634525299072,
0.8203384876251221,
-0.2292923778295517,
-0.00908910483121872,
-0.5056430697441101,
-0.15761905908584595,
-0.4171857535839081,
0.053484998643398285,
-0.21040797233581543,
-0.5676987171173096,
0.9591369032859802,
0.24669799208641052,
0.06047220528125763,
0.6682172417640686,
0.45193955302238464,
-0.0904696062207222,
0.6490376591682434,
0.42733684182167053,
-0.23509126901626587,
0.564180850982666,
-0.7141979932785034,
-0.2529987096786499,
-0.8316910266876221,
-0.4480299651622772,
-0.4939531981945038,
-0.527726948261261,
-0.9028652906417847,
-0.43965446949005127,
0.15271730720996857,
0.11533825844526291,
-0.2448282092809677,
0.4826360046863556,
-0.905858039855957,
0.29486793279647827,
0.3541153371334076,
0.30195721983909607,
-0.10084313899278641,
0.037831567227840424,
0.11641305685043335,
0.12190841138362885,
-0.5774324536323547,
-0.1965499222278595,
1.1295967102050781,
0.46901875734329224,
0.5557690858840942,
-0.09292861819267273,
0.8753295540809631,
0.03199179098010063,
0.249236598610878,
-0.5599170923233032,
0.5063287019729614,
-0.0016444874927401543,
-0.5174794793128967,
-0.17201639711856842,
-0.5265048146247864,
-0.8703625202178955,
-0.1139998584985733,
-0.4290030896663666,
-0.7445244789123535,
0.5008114576339722,
0.09050518274307251,
-0.23415794968605042,
0.38011670112609863,
-0.6894459128379822,
0.8615841269493103,
-0.039867911487817764,
-0.4281410574913025,
0.27741435170173645,
-1.0332748889923096,
0.19086317718029022,
0.23740866780281067,
0.2631915807723999,
-0.4299875795841217,
-0.004353038966655731,
0.9789948463439941,
-0.8188056349754333,
0.9478474855422974,
-0.383492648601532,
0.1386830359697342,
0.5710424184799194,
-0.28928133845329285,
0.4248650372028351,
0.10031549632549286,
-0.2788280248641968,
0.3044966459274292,
0.08503499627113342,
-0.44319283962249756,
-0.45050048828125,
0.6568098664283752,
-0.7454527020454407,
0.03634847328066826,
-0.33072948455810547,
-0.46427151560783386,
0.03164399787783623,
0.1988348662853241,
0.3035869598388672,
0.3830585777759552,
0.04637374356389046,
0.1248573586344719,
0.41613245010375977,
-0.12417568266391754,
0.31326228380203247,
0.019026493653655052,
-0.11290105432271957,
-0.7734870314598083,
0.9382352232933044,
0.18857263028621674,
0.07097988575696945,
-0.00800454244017601,
0.4391043186187744,
-0.3710907995700836,
-0.08941741287708282,
-0.5549205541610718,
0.48675182461738586,
-0.40681323409080505,
-0.43122732639312744,
-0.4525829255580902,
-0.19541504979133606,
-0.6337494850158691,
-0.15058328211307526,
-0.2777867317199707,
-0.5666748285293579,
-0.3118778467178345,
-0.23101814091205597,
1.032826542854309,
0.3998588025569916,
-0.6964143514633179,
0.15947382152080536,
-0.5228444337844849,
0.32583117485046387,
-0.10066171735525131,
0.6903835535049438,
-0.09023983776569366,
-0.2712034285068512,
-0.1813575178384781,
0.13947182893753052,
-0.16990238428115845,
-0.6911207437515259,
0.2630198895931244,
-0.028791505843400955,
0.3405502140522003,
0.0940295159816742,
0.1445886194705963,
0.6991319060325623,
-0.0009303088882006705,
0.6255735158920288,
0.3328610956668854,
-0.8409220576286316,
0.6530233025550842,
-0.4838508367538452,
0.16173389554023743,
0.7414572238922119,
0.3425530195236206,
-0.6374425888061523,
-0.14459826052188873,
-0.9779226779937744,
-0.8434176445007324,
0.844395101070404,
0.41241249442100525,
0.048910364508628845,
0.25015363097190857,
0.5471426844596863,
-0.1541902720928192,
0.30757641792297363,
-0.6844631433486938,
-0.8764300346374512,
-0.4104924201965332,
-0.3611488938331604,
-0.06774446368217468,
-0.0800967738032341,
-0.2532501220703125,
-0.6911003589630127,
0.8062846064567566,
-0.10622315108776093,
0.31496843695640564,
0.4012892246246338,
0.4052782654762268,
-0.2309676557779312,
0.009124699980020523,
0.2687406837940216,
0.3621276021003723,
-0.2593938112258911,
-0.3176408112049103,
-0.2034231424331665,
-0.6231061816215515,
-0.06957685947418213,
0.5192061066627502,
-0.3588060736656189,
-0.059727028012275696,
0.29788193106651306,
0.873869001865387,
-0.006052028853446245,
-0.2683137059211731,
0.6135833263397217,
-0.06688346713781357,
-0.38496217131614685,
-0.36123183369636536,
0.034210510551929474,
0.12247005850076675,
0.24594084918498993,
0.03427429124712944,
0.12800073623657227,
-0.14383965730667114,
-0.41495540738105774,
0.4174913763999939,
0.2319854348897934,
-0.37842437624931335,
-0.5089194774627686,
0.5642869472503662,
0.07789328694343567,
-0.12505538761615753,
0.4527655839920044,
-0.15468446910381317,
-0.5897714495658875,
0.796240508556366,
0.13316036760807037,
0.8429974317550659,
-0.13240638375282288,
0.39455723762512207,
0.7102263569831848,
0.2087872177362442,
-0.07007856667041779,
0.5583040118217468,
-0.2463546246290207,
-0.6550216674804688,
-0.08004511147737503,
-0.5191646218299866,
-0.08508052676916122,
0.08435626327991486,
-0.8450586199760437,
0.46719595789909363,
-0.5011023283004761,
-0.26360026001930237,
0.02375325746834278,
0.45041850209236145,
-0.7397139668464661,
0.185111865401268,
-0.04157102853059769,
1.0529804229736328,
-1.0460383892059326,
0.4444032907485962,
0.6851382851600647,
-0.6829288601875305,
-1.1522289514541626,
-0.12874475121498108,
0.18922829627990723,
-0.6035966277122498,
0.1994447261095047,
0.22572925686836243,
0.43824872374534607,
-0.07023870199918747,
-0.9272359609603882,
-0.6540270447731018,
1.1788570880889893,
0.09769150614738464,
-0.1900910586118698,
0.31309449672698975,
0.0905441865324974,
0.6516520380973816,
-0.3148563802242279,
0.3066108524799347,
0.636868953704834,
0.6838609576225281,
0.34222686290740967,
-0.704081118106842,
0.32084858417510986,
-0.6198803782463074,
-0.23598513007164001,
0.0653376653790474,
-1.03603196144104,
0.6537244319915771,
-0.2325286716222763,
-0.08308031409978867,
0.059252187609672546,
0.5526240468025208,
0.4499583840370178,
0.4153761863708496,
0.3824615478515625,
0.7443013191223145,
0.8065168261528015,
-0.3292170763015747,
1.1914170980453491,
-0.2556705176830292,
0.6328842639923096,
0.8095151782035828,
0.07901227474212646,
0.49881067872047424,
0.27292194962501526,
-0.32386884093284607,
0.5618115067481995,
0.6260594725608826,
-0.43690842390060425,
0.23538662493228912,
0.3768640160560608,
-0.026565372943878174,
-0.09724987298250198,
-0.2460288554430008,
-0.5987924337387085,
0.32883647084236145,
0.2403046041727066,
-0.30047914385795593,
-0.010025784373283386,
-0.04879063367843628,
0.36510762572288513,
-0.032874058932065964,
-0.30513158440589905,
0.6303507089614868,
0.051711004227399826,
-0.3401730954647064,
0.5302551984786987,
-0.16827139258384705,
0.6908066868782043,
-0.5832818150520325,
0.17087030410766602,
-0.10597419738769531,
0.13320788741111755,
-0.6423671841621399,
-1.0784573554992676,
0.3394485414028168,
-0.075252965092659,
-0.2492445707321167,
-0.3303573429584503,
0.7337480187416077,
-0.48150065541267395,
-0.7949665188789368,
0.22269389033317566,
0.23755986988544464,
0.259351521730423,
0.15553508698940277,
-1.2467514276504517,
0.5394507646560669,
0.12998783588409424,
-0.4594305753707886,
0.09210347384214401,
0.5394190549850464,
0.18272802233695984,
0.5747190713882446,
0.6837019920349121,
0.29721200466156006,
-0.24825365841388702,
0.07921454310417175,
1.081486701965332,
-0.580561637878418,
-0.4909309148788452,
-0.792902410030365,
0.8947349190711975,
-0.3794463872909546,
-0.38714468479156494,
0.6984884738922119,
0.7131047248840332,
0.8906080722808838,
0.022222192957997322,
0.8030814528465271,
-0.6577346920967102,
0.6351237893104553,
-0.20613592863082886,
0.9399569630622864,
-0.7075389623641968,
-0.057860780507326126,
-0.7405773997306824,
-0.501331090927124,
-0.44538068771362305,
0.6313635110855103,
-0.21354269981384277,
0.19871383905410767,
0.2452942579984665,
0.9034245610237122,
0.046871915459632874,
0.13077640533447266,
-0.24593669176101685,
0.28926801681518555,
0.287090927362442,
0.5599533319473267,
0.4385562241077423,
-0.91530442237854,
0.34618085622787476,
-0.7818459868431091,
-0.2788739502429962,
0.03472862020134926,
-0.8398789763450623,
-0.9098020792007446,
-0.9583535194396973,
-0.6611435413360596,
-0.7822245359420776,
-0.3238062560558319,
1.1230056285858154,
0.6987060308456421,
-0.7376947999000549,
-0.2617291510105133,
0.02772216871380806,
0.3265622854232788,
-0.09335209429264069,
-0.3277990221977234,
0.6461173295974731,
0.3482688367366791,
-0.5758620500564575,
-0.20246030390262604,
0.0020935076754540205,
0.2804356515407562,
0.08415340632200241,
-0.07979490607976913,
-0.10858537256717682,
-0.3063773810863495,
0.31528905034065247,
0.5024704933166504,
-0.3180491626262665,
-0.11371913552284241,
-0.25233983993530273,
0.028271345421671867,
0.16810671985149384,
0.5062879323959351,
-0.5371869802474976,
0.22057925164699554,
0.6537357568740845,
0.2674295902252197,
0.4426792860031128,
0.20274010300636292,
0.03021818958222866,
-0.5333196520805359,
0.14258885383605957,
0.008269378915429115,
0.31246843934059143,
0.40525659918785095,
-0.42934751510620117,
0.7717857956886292,
0.5936499238014221,
-0.4282805919647217,
-0.8514430522918701,
-0.1370820701122284,
-1.2710820436477661,
0.09960654377937317,
1.0691814422607422,
0.012410658411681652,
-0.5700240135192871,
0.10712676495313644,
-0.23884353041648865,
0.14623643457889557,
-0.5706002712249756,
0.49059149622917175,
0.5196516513824463,
-0.12111568450927734,
0.1155402809381485,
-0.2999347150325775,
0.653962254524231,
-0.05862237140536308,
-0.9488411545753479,
0.21628451347351074,
0.4404107332229614,
0.4634400010108948,
0.32653117179870605,
0.817435622215271,
-0.26988154649734497,
0.10372328758239746,
-0.034178610891103745,
0.26504695415496826,
-0.3185594975948334,
0.02758661098778248,
-0.3657585084438324,
-0.12710823118686676,
-0.5268524885177612,
-0.25617000460624695
]
|
huggingartists/tyler-the-creator | huggingartists | 2022-10-25T09:49:07Z | 260 | 1 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/80c9c64ebed6a29681aaeaebe57edf91.984x984x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6661986112594604,
-0.5478903651237488,
0.12920761108398438,
0.2779688239097595,
-0.25653496384620667,
0.02825877256691456,
-0.31213319301605225,
-0.4526975750923157,
0.9164928197860718,
0.3691583275794983,
-0.9076225757598877,
-0.845491349697113,
-0.614442765712738,
0.16953876614570618,
-0.1672830730676651,
1.2626099586486816,
-0.20393620431423187,
-0.4232604503631592,
-0.31638088822364807,
-0.21950332820415497,
-0.3388954997062683,
-0.3261939585208893,
-0.3838426172733307,
-0.3106413781642914,
0.3890809416770935,
0.4953031837940216,
0.7383182644844055,
0.9044840335845947,
0.5137313604354858,
0.3547860085964203,
-0.12214744091033936,
-0.01391766220331192,
-0.4189617335796356,
-0.06587452441453934,
0.0971880555152893,
-0.24280290305614471,
-0.6325668096542358,
0.2137037217617035,
0.5324063301086426,
0.3415939211845398,
-0.053401920944452286,
0.47347232699394226,
0.08713424950838089,
0.7821515202522278,
-0.28370100259780884,
0.45617860555648804,
-0.28100335597991943,
-0.1464645117521286,
-0.2581310570240021,
0.053083401173353195,
0.17904072999954224,
-0.6080304980278015,
0.016550343483686447,
-0.7296377420425415,
0.08611597865819931,
-0.014738009311258793,
1.0060315132141113,
0.0561157688498497,
0.07273434847593307,
-0.21528494358062744,
-0.180253803730011,
0.5791910290718079,
-0.539620041847229,
-0.016106650233268738,
0.5081487894058228,
0.09582636505365372,
0.0008437385549768806,
-0.687245786190033,
-0.6356621980667114,
0.13233716785907745,
-0.1547163426876068,
0.2684048116207123,
-0.18459168076515198,
-0.3010577857494354,
0.501338005065918,
0.5854770541191101,
-0.47530868649482727,
-0.25490328669548035,
-0.5069571733474731,
-0.1388639211654663,
1.1975826025009155,
0.14216375350952148,
0.4619600474834442,
-0.513218879699707,
-0.2651943862438202,
-0.41243624687194824,
-0.23828385770320892,
0.33816197514533997,
0.5410447120666504,
0.44864368438720703,
-0.9915059208869934,
0.6566704511642456,
-0.07956314086914062,
0.517844021320343,
0.18136461079120636,
0.0032570709008723497,
0.7702234387397766,
-0.4279937446117401,
-0.09955684095621109,
-0.07939017564058304,
1.0697020292282104,
0.658845841884613,
0.1842862069606781,
0.08244581520557404,
-0.06968700140714645,
0.031236132606863976,
-0.13909222185611725,
-0.8562816977500916,
-0.42636004090309143,
0.6710222363471985,
-0.6068016290664673,
-0.6072825193405151,
0.16276142001152039,
-0.9621862173080444,
-0.2618115246295929,
-0.3261701166629791,
0.3204247057437897,
-0.3459179103374481,
-0.550102174282074,
0.16175532341003418,
-0.30561771988868713,
0.0956801027059555,
0.027633776888251305,
-0.5868018865585327,
0.18632349371910095,
0.5591486096382141,
0.7194506525993347,
0.1891183853149414,
-0.26636725664138794,
-0.27676257491111755,
-0.1902044117450714,
-0.08945323526859283,
0.6156296133995056,
-0.29591020941734314,
-0.3937331438064575,
-0.1884930282831192,
0.35317280888557434,
-0.06446278095245361,
-0.25636789202690125,
0.9018521904945374,
0.08030593395233154,
0.1756087839603424,
-0.6084825396537781,
-0.4819188714027405,
0.02454778552055359,
0.2243005335330963,
-0.7640306353569031,
1.1093096733093262,
0.27490532398223877,
-0.9850806593894958,
0.17279091477394104,
-0.7881188988685608,
-0.2681838572025299,
0.011150877922773361,
0.06454460322856903,
-0.7600580453872681,
-0.1368345022201538,
0.20466159284114838,
0.7258970737457275,
-0.2645586133003235,
0.045293450355529785,
-0.5977969765663147,
-0.09797906875610352,
0.34581485390663147,
0.2824806571006775,
1.1879007816314697,
0.13311079144477844,
-0.14570817351341248,
0.060642268508672714,
-0.9209781885147095,
0.1860724240541458,
0.4726298153400421,
-0.1418609619140625,
-0.10262025147676468,
-0.22745977342128754,
0.4422186017036438,
0.29792875051498413,
0.10961692780256271,
-0.6570518016815186,
0.37043997645378113,
-0.1935393512248993,
0.40361344814300537,
0.7682722806930542,
0.032670341432094574,
0.27891117334365845,
-0.6279633045196533,
0.3997076153755188,
0.04558132588863373,
0.3682388663291931,
0.030525457113981247,
-0.5757827758789062,
-0.42785176634788513,
-0.2517397701740265,
0.32325252890586853,
0.457806259393692,
-0.6511513590812683,
1.0177198648452759,
-0.3046937882900238,
-0.8438224196434021,
-0.588224470615387,
0.15603242814540863,
0.21938981115818024,
0.5054014921188354,
0.3849160075187683,
-0.5266743898391724,
-0.6389898061752319,
-0.6479957699775696,
0.054657500237226486,
-0.22422721982002258,
0.17263595759868622,
0.43903830647468567,
0.8074774146080017,
-0.22091731429100037,
0.8650710582733154,
-0.6776200532913208,
-0.2738221287727356,
-0.3285762667655945,
-0.34737685322761536,
0.3784640431404114,
0.8114423751831055,
0.7303977012634277,
-0.8117951154708862,
-0.4891095757484436,
-0.2835124731063843,
-0.7010294795036316,
-0.10646816343069077,
-0.01605389080941677,
-0.3170256018638611,
-0.043063633143901825,
0.16211268305778503,
-0.6975324153900146,
0.5847861170768738,
0.5236366391181946,
-0.7371429204940796,
0.5443781018257141,
0.10202192515134811,
-0.005288001149892807,
-1.3533772230148315,
0.33541348576545715,
0.23529884219169617,
0.016646839678287506,
-0.5698180794715881,
-0.21805794537067413,
-0.11627276241779327,
-0.056056246161460876,
-0.08883432298898697,
0.6349301338195801,
-0.28445762395858765,
0.31030818819999695,
0.11169154196977615,
0.12924210727214813,
0.09133423864841461,
0.4190831482410431,
-0.07079527527093887,
0.27000391483306885,
1.0034795999526978,
-0.36264660954475403,
0.6797876358032227,
0.6396839022636414,
-0.20252856612205505,
0.8299264311790466,
-0.8350863456726074,
0.052362821996212006,
-0.31682536005973816,
0.41124019026756287,
-0.8517028093338013,
-0.5238065719604492,
0.7956652045249939,
-0.7067411541938782,
0.3594193458557129,
-0.22867074608802795,
-0.6147280335426331,
-0.8052404522895813,
-0.6441919207572937,
0.152380108833313,
0.541533887386322,
-0.39922034740448,
0.4335831105709076,
0.580698549747467,
0.10095655173063278,
-0.36138826608657837,
-0.7619072794914246,
-0.1337001621723175,
-0.34548673033714294,
-0.8382914066314697,
0.49165430665016174,
-0.32873019576072693,
-0.08676965534687042,
0.21233248710632324,
0.045557908713817596,
0.0665443018078804,
-0.007193149533122778,
0.40773633122444153,
0.2707517445087433,
0.09684769809246063,
0.064108707010746,
-0.11049340665340424,
-0.24294611811637878,
0.14916899800300598,
-0.2473609298467636,
0.24673999845981598,
-0.2579900324344635,
-0.11571426689624786,
-0.7053818702697754,
0.1666308045387268,
0.4060470163822174,
-0.22334958612918854,
0.6725132465362549,
0.8175398111343384,
-0.24283236265182495,
-0.048906512558460236,
-0.4877399802207947,
-0.2236063927412033,
-0.4136147201061249,
0.030982719734311104,
-0.22597205638885498,
-0.5908085703849792,
0.9310728311538696,
0.23770852386951447,
0.13848088681697845,
0.7060196399688721,
0.4421815574169159,
-0.06310097873210907,
0.6611225605010986,
0.38200560212135315,
-0.2607618570327759,
0.5147287249565125,
-0.6717661619186401,
-0.16160057485103607,
-0.8139943480491638,
-0.4269948899745941,
-0.5150986909866333,
-0.5812462568283081,
-0.8666500449180603,
-0.40077638626098633,
0.17594791948795319,
0.12058988958597183,
-0.22830025851726532,
0.5342117547988892,
-0.9744779467582703,
0.3548625409603119,
0.37253862619400024,
0.330390065908432,
-0.08833324164152145,
0.1031089648604393,
0.04488953948020935,
0.12086886167526245,
-0.5534948110580444,
-0.24155759811401367,
1.1871647834777832,
0.4651474952697754,
0.5424262881278992,
-0.058731649070978165,
0.8771946430206299,
0.03468886762857437,
0.18299880623817444,
-0.49824365973472595,
0.4926222562789917,
-0.004350351169705391,
-0.5506401062011719,
-0.17327263951301575,
-0.4602297246456146,
-0.8977309465408325,
-0.14115706086158752,
-0.42592981457710266,
-0.7501056790351868,
0.4593101739883423,
0.13323251903057098,
-0.22588811814785004,
0.4373456835746765,
-0.6625511050224304,
0.8758261203765869,
-0.03913063928484917,
-0.455840140581131,
0.2853862941265106,
-1.0075829029083252,
0.1590656191110611,
0.1829134225845337,
0.22605657577514648,
-0.38763728737831116,
0.049435000866651535,
0.9830902218818665,
-0.8418403267860413,
0.9381943345069885,
-0.38594764471054077,
0.1262504607439041,
0.6239933967590332,
-0.3065733015537262,
0.49536871910095215,
0.1557360291481018,
-0.2536577880382538,
0.2671848237514496,
0.05627553164958954,
-0.4562781751155853,
-0.4526141583919525,
0.7029826641082764,
-0.7291110157966614,
0.043408770114183426,
-0.32005149126052856,
-0.392404705286026,
0.03023025020956993,
0.150908961892128,
0.3013710081577301,
0.3916131854057312,
0.07337097823619843,
0.1884256899356842,
0.4677862226963043,
-0.14477331936359406,
0.3037560284137726,
-0.05307096615433693,
-0.1370275765657425,
-0.7660720348358154,
0.8762000799179077,
0.11340784281492233,
0.03813813626766205,
-0.05429023504257202,
0.41977086663246155,
-0.4163396954536438,
-0.094702810049057,
-0.5606189966201782,
0.4494786858558655,
-0.41487935185432434,
-0.35565561056137085,
-0.5106619596481323,
-0.21015378832817078,
-0.562660813331604,
-0.18259172141551971,
-0.27380216121673584,
-0.5300887227058411,
-0.3210652768611908,
-0.2299225628376007,
1.0641671419143677,
0.46716415882110596,
-0.6300209760665894,
0.10236117243766785,
-0.5086829662322998,
0.23846767842769623,
-0.05872654542326927,
0.6708282232284546,
-0.04132794216275215,
-0.32410532236099243,
-0.14695608615875244,
0.06035156175494194,
-0.2611197233200073,
-0.6642715334892273,
0.21824516355991364,
-0.06798510253429413,
0.35042327642440796,
0.07292308658361435,
0.127136692404747,
0.6980240345001221,
-0.00849489588290453,
0.6659149527549744,
0.32004866003990173,
-0.8382082581520081,
0.6980334520339966,
-0.45380160212516785,
0.15819787979125977,
0.7382718920707703,
0.31847095489501953,
-0.6019476056098938,
-0.16882771253585815,
-0.9862163066864014,
-0.854390025138855,
0.7660192251205444,
0.5096755623817444,
0.14759473502635956,
0.19927546381950378,
0.5439762473106384,
-0.1901429146528244,
0.24732720851898193,
-0.6960622072219849,
-0.8633730411529541,
-0.39226505160331726,
-0.3978881239891052,
-0.020614810287952423,
-0.08611616492271423,
-0.19174128770828247,
-0.6968904137611389,
0.7742124795913696,
-0.0815080776810646,
0.3271806538105011,
0.45496898889541626,
0.4258112907409668,
-0.19208690524101257,
-0.023254400119185448,
0.24148502945899963,
0.3635132908821106,
-0.23893731832504272,
-0.2988928258419037,
-0.1645868569612503,
-0.6526909470558167,
-0.12193448096513748,
0.48469725251197815,
-0.3168911337852478,
-0.020742634311318398,
0.2769891023635864,
0.8713885545730591,
0.0030503040179610252,
-0.25086256861686707,
0.6100110411643982,
-0.07087718695402145,
-0.43568912148475647,
-0.4396834075450897,
0.007182243745774031,
0.11731494218111038,
0.20723013579845428,
0.039180006831884384,
0.09398855268955231,
-0.173160582780838,
-0.3547340929508209,
0.4294677674770355,
0.2097705900669098,
-0.4256438612937927,
-0.5120049715042114,
0.6652262210845947,
0.1159396693110466,
-0.07057803869247437,
0.47504711151123047,
-0.14970886707305908,
-0.5390598773956299,
0.8145603537559509,
0.13754640519618988,
0.8607044816017151,
-0.10657935589551926,
0.31700921058654785,
0.7639570832252502,
0.17660054564476013,
-0.02454017475247383,
0.6032956838607788,
-0.21103423833847046,
-0.6439684629440308,
-0.10050643980503082,
-0.5754865407943726,
-0.03874964267015457,
0.09075677394866943,
-0.7786787152290344,
0.48627784848213196,
-0.5299510955810547,
-0.28413981199264526,
0.07612144201993942,
0.33884379267692566,
-0.7448899149894714,
0.17692457139492035,
-0.07686033844947815,
1.0410234928131104,
-0.9840125441551208,
0.42146536707878113,
0.6714595556259155,
-0.6475738286972046,
-1.2279571294784546,
-0.1568230539560318,
0.2489471435546875,
-0.5564650297164917,
0.25264355540275574,
0.1803690642118454,
0.4893394410610199,
0.0071477885358035564,
-0.929801344871521,
-0.6936711072921753,
1.1648712158203125,
-0.004177413880825043,
-0.21949636936187744,
0.34146809577941895,
0.07979795336723328,
0.6407825946807861,
-0.35649576783180237,
0.29096519947052,
0.5662732720375061,
0.6564657688140869,
0.3112580478191376,
-0.7234042286872864,
0.3235659599304199,
-0.5857049822807312,
-0.20112161338329315,
0.11810185015201569,
-0.9515735507011414,
0.5929011702537537,
-0.19671179354190826,
-0.06654254347085953,
0.03934440016746521,
0.5458998680114746,
0.41916078329086304,
0.4132091701030731,
0.46418678760528564,
0.7976180911064148,
0.7726742625236511,
-0.36010459065437317,
1.2044439315795898,
-0.31485530734062195,
0.6589937806129456,
0.7889755964279175,
0.055232029408216476,
0.4859984815120697,
0.2504312992095947,
-0.30385905504226685,
0.5626873970031738,
0.6267553567886353,
-0.4624515473842621,
0.21588705480098724,
0.4339008033275604,
-0.08480709791183472,
-0.09075912088155746,
-0.28019362688064575,
-0.5882432460784912,
0.3044449985027313,
0.18355202674865723,
-0.442505806684494,
-0.014019233174622059,
-0.06131689250469208,
0.40892767906188965,
-0.01649976707994938,
-0.27727389335632324,
0.6519418358802795,
0.044507887214422226,
-0.3442992568016052,
0.49899932742118835,
-0.1945015788078308,
0.6366806626319885,
-0.5351086854934692,
0.17504289746284485,
-0.07442385703325272,
0.11065904796123505,
-0.6169180870056152,
-1.1442533731460571,
0.38060462474823,
-0.048994310200214386,
-0.2599989175796509,
-0.3693411648273468,
0.7290070652961731,
-0.41993433237075806,
-0.7740358114242554,
0.21559523046016693,
0.2189064472913742,
0.2999064326286316,
0.13991831243038177,
-1.2500406503677368,
0.5600588917732239,
0.1666094809770584,
-0.42974135279655457,
0.04571336880326271,
0.5027289986610413,
0.15784935653209686,
0.5061038136482239,
0.7123426198959351,
0.20155806839466095,
-0.24327799677848816,
0.06608954071998596,
1.0561554431915283,
-0.584427535533905,
-0.43014857172966003,
-0.7819241285324097,
0.9228335022926331,
-0.40925130248069763,
-0.43935301899909973,
0.6826211810112,
0.7894332408905029,
0.919384777545929,
-0.019315775483846664,
0.8241071105003357,
-0.6918214559555054,
0.670332670211792,
-0.18919844925403595,
0.8916303515434265,
-0.7172427177429199,
-0.07155103981494904,
-0.7630732655525208,
-0.5659934878349304,
-0.41216981410980225,
0.5682641863822937,
-0.1662386655807495,
0.21854686737060547,
0.2880987823009491,
0.8937312364578247,
0.005963434465229511,
0.13940799236297607,
-0.28481367230415344,
0.2785179913043976,
0.27800506353378296,
0.5412006974220276,
0.4010666608810425,
-0.8895747661590576,
0.4177694320678711,
-0.7945663332939148,
-0.24484698474407196,
0.07140589505434036,
-0.8339851498603821,
-0.926488995552063,
-0.9587311744689941,
-0.6682267189025879,
-0.8268012404441833,
-0.3089180886745453,
1.1110600233078003,
0.7106833457946777,
-0.7395904064178467,
-0.20233823359012604,
0.01305389404296875,
0.30105918645858765,
-0.05523744970560074,
-0.32475802302360535,
0.6740907430648804,
0.3465651869773865,
-0.6303021311759949,
-0.20275716483592987,
-0.012111550197005272,
0.2905728816986084,
0.08994165807962418,
-0.055148154497146606,
-0.026276668533682823,
-0.27743053436279297,
0.3961457312107086,
0.4672972559928894,
-0.3895464539527893,
-0.13766653835773468,
-0.20848865807056427,
0.04066263139247894,
0.14414748549461365,
0.4665737450122833,
-0.5343485474586487,
0.2636488974094391,
0.6581510305404663,
0.3229360282421112,
0.44280871748924255,
0.2584967315196991,
0.008876179344952106,
-0.5468928813934326,
0.045908939093351364,
-0.03044251725077629,
0.2764325737953186,
0.34859198331832886,
-0.46054592728614807,
0.789954423904419,
0.5939722061157227,
-0.5062911510467529,
-0.79613196849823,
-0.12693168222904205,
-1.3025039434432983,
0.12479286640882492,
1.004595398902893,
0.0673191174864769,
-0.5168923735618591,
0.07876623421907425,
-0.2516961097717285,
0.07397878170013428,
-0.602760910987854,
0.500142514705658,
0.5762616991996765,
-0.1080244705080986,
0.11268775910139084,
-0.35938987135887146,
0.6413649916648865,
-0.033045265823602676,
-0.9347970485687256,
0.11904959380626678,
0.40834420919418335,
0.47014015913009644,
0.31313440203666687,
0.7536664605140686,
-0.2952384948730469,
0.06521397083997726,
-0.06314121186733246,
0.30553677678108215,
-0.22786006331443787,
0.058262407779693604,
-0.28246116638183594,
-0.15499497950077057,
-0.490077942609787,
-0.24958577752113342
]
|
huggingartists/zemfira | huggingartists | 2022-10-25T09:50:39Z | 260 | 0 | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
]
| null | 2022-03-02T23:29:22Z | ---
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('https://images.genius.com/df440220b2dd0a34a119db791da90e59.1000x1000x1.jpg')">
</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*
[](https://github.com/AlekseyKorshuk)
[](https://twitter.com/intent/follow?screen_name=alekseykorshuk)
[](https://t.me/joinchat/_CQ04KjcJ-4yZTky)
For more details, visit the project repository.
[](https://github.com/AlekseyKorshuk/huggingartists)
| [
-0.6018100380897522,
-0.5237863063812256,
0.09886503964662552,
0.2563244700431824,
-0.2467603236436844,
-0.036018405109643936,
-0.27831798791885376,
-0.4763522148132324,
0.8692662715911865,
0.322013258934021,
-0.922239363193512,
-0.8244713544845581,
-0.5627467632293701,
0.09519647061824799,
-0.09456001967191696,
1.240299940109253,
-0.18558470904827118,
-0.3665088713169098,
-0.2982006371021271,
-0.2918654978275299,
-0.3126443326473236,
-0.313286155462265,
-0.2537202835083008,
-0.37821221351623535,
0.42467114329338074,
0.5409055352210999,
0.782319188117981,
0.821174681186676,
0.44466134905815125,
0.34237757325172424,
-0.11800135672092438,
-0.02319124899804592,
-0.37750062346458435,
-0.1093386709690094,
0.16357168555259705,
-0.3185729384422302,
-0.6926571130752563,
0.2214760035276413,
0.552069365978241,
0.40864577889442444,
-0.04380693659186363,
0.492915540933609,
0.08832849562168121,
0.8372296690940857,
-0.30102550983428955,
0.49702906608581543,
-0.22818981111049652,
-0.17682254314422607,
-0.3264595866203308,
0.07560539990663528,
0.20665964484214783,
-0.5607929229736328,
0.010342870838940144,
-0.7456717491149902,
0.06993991136550903,
-0.01469472423195839,
1.0406397581100464,
0.007254041265696287,
0.07598122209310532,
-0.17494073510169983,
-0.25969380140304565,
0.514734148979187,
-0.582321286201477,
-0.006426537875086069,
0.5359755158424377,
0.20566269755363464,
0.00010377268336014822,
-0.6545845866203308,
-0.6503543257713318,
0.12847432494163513,
-0.1244921162724495,
0.2501485347747803,
-0.23498696088790894,
-0.32517528533935547,
0.5017898082733154,
0.5353049635887146,
-0.5094254612922668,
-0.3097640872001648,
-0.509976863861084,
-0.1512974351644516,
1.1199296712875366,
0.17678025364875793,
0.44714871048927307,
-0.3951118588447571,
-0.24581488966941833,
-0.4002915620803833,
-0.32284605503082275,
0.3521929085254669,
0.5705918669700623,
0.3855285048484802,
-0.9286336898803711,
0.6133580803871155,
-0.21979141235351562,
0.5722904205322266,
0.06206861883401871,
-0.028964117169380188,
0.8376128077507019,
-0.3770136833190918,
-0.10337036848068237,
-0.11694502830505371,
1.0288408994674683,
0.7265012264251709,
0.15123765170574188,
0.05186885595321655,
-0.08722209185361862,
0.08580486476421356,
-0.1629451960325241,
-0.8963686227798462,
-0.3689544200897217,
0.6218814253807068,
-0.5742008686065674,
-0.5943095684051514,
0.13308289647102356,
-0.9790337681770325,
-0.18048350512981415,
-0.23951669037342072,
0.39032769203186035,
-0.3743763566017151,
-0.5325673818588257,
0.2231316715478897,
-0.30233508348464966,
0.09554444998502731,
0.06422339379787445,
-0.591843843460083,
0.16783016920089722,
0.5418050289154053,
0.8000292181968689,
0.27067747712135315,
-0.29206347465515137,
-0.2589903175830841,
-0.16788965463638306,
-0.09631387889385223,
0.6962117552757263,
-0.2905407249927521,
-0.31392040848731995,
-0.17024926841259003,
0.3915890157222748,
-0.13165973126888275,
-0.2545168995857239,
0.9166795611381531,
-0.004662998951971531,
0.1806260496377945,
-0.5865375399589539,
-0.4278455376625061,
-0.12099740654230118,
0.23828212916851044,
-0.7921833395957947,
0.967293918132782,
0.4015769064426422,
-1.020819902420044,
0.1824580878019333,
-0.7873557806015015,
-0.28317007422447205,
0.05266890302300453,
0.07676542550325394,
-0.7870516180992126,
-0.21134427189826965,
0.1541943997144699,
0.7097244262695312,
-0.374240517616272,
0.00794452615082264,
-0.5961703658103943,
-0.14436878263950348,
0.3768448531627655,
0.23045505583286285,
1.191894769668579,
0.13408435881137848,
-0.20069684088230133,
0.09465683251619339,
-0.9231386780738831,
0.15036244690418243,
0.4930630028247833,
-0.11408288776874542,
-0.08405032753944397,
-0.18426936864852905,
0.41792166233062744,
0.3215261697769165,
0.05505646392703056,
-0.6052772402763367,
0.3289527893066406,
-0.20849381387233734,
0.5172987580299377,
0.7055760622024536,
0.002919869963079691,
0.30958208441734314,
-0.730827271938324,
0.4431089460849762,
0.08346426486968994,
0.3742023706436157,
0.012698168866336346,
-0.6037995219230652,
-0.4882522225379944,
-0.17330653965473175,
0.3127020299434662,
0.4775441288948059,
-0.7078704833984375,
0.9768591523170471,
-0.33506232500076294,
-0.9145435690879822,
-0.5998365879058838,
0.15813793241977692,
0.18335561454296112,
0.5584605932235718,
0.39301276206970215,
-0.37102705240249634,
-0.5446947813034058,
-0.682137131690979,
0.10031317174434662,
-0.2568722069263458,
0.1881304681301117,
0.41322508454322815,
0.7964313626289368,
-0.30067259073257446,
0.8715534210205078,
-0.6802193522453308,
-0.30140259861946106,
-0.3184601068496704,
-0.33593010902404785,
0.4191736578941345,
0.7930198907852173,
0.7753357887268066,
-0.8820516467094421,
-0.49123749136924744,
-0.2575255036354065,
-0.6592839956283569,
-0.13119225203990936,
-0.01149338111281395,
-0.30037304759025574,
-0.02361382730305195,
0.06814584881067276,
-0.677008867263794,
0.5392215847969055,
0.5437449216842651,
-0.7724440097808838,
0.5271471738815308,
0.09719134122133255,
0.010749493725597858,
-1.2813611030578613,
0.37033259868621826,
0.20958730578422546,
0.05209828540682793,
-0.6766260862350464,
-0.25378093123435974,
-0.010729307308793068,
0.01203093770891428,
-0.12917928397655487,
0.5983834266662598,
-0.3663332462310791,
0.31106138229370117,
0.1175270825624466,
-0.0024702937807887793,
0.12606480717658997,
0.4624560475349426,
-0.05619208887219429,
0.2810768783092499,
1.0148067474365234,
-0.38642191886901855,
0.6454428434371948,
0.5757009387016296,
-0.287779837846756,
0.7673319578170776,
-0.856529176235199,
0.009686620905995369,
-0.2782653570175171,
0.3505987823009491,
-0.8455479741096497,
-0.4816422760486603,
0.8567816615104675,
-0.7015846967697144,
0.32993456721305847,
-0.26229798793792725,
-0.5341331362724304,
-0.7350050806999207,
-0.6456628441810608,
0.1441100835800171,
0.5673943161964417,
-0.34417855739593506,
0.41015076637268066,
0.6028496623039246,
0.060681067407131195,
-0.36018937826156616,
-0.7020074129104614,
-0.15017181634902954,
-0.3966352939605713,
-0.879206120967865,
0.4734804034233093,
-0.3592158257961273,
-0.0992795079946518,
0.15782976150512695,
0.1255193054676056,
0.11790724098682404,
0.06680718809366226,
0.433887779712677,
0.3145897388458252,
0.02434299886226654,
0.006036838982254267,
-0.057004500180482864,
-0.2576161026954651,
0.12055157124996185,
-0.18729427456855774,
0.30512017011642456,
-0.2982991337776184,
-0.12618602812290192,
-0.5724062919616699,
0.20816752314567566,
0.4514757990837097,
-0.2520398199558258,
0.7081516981124878,
0.846592128276825,
-0.26782405376434326,
-0.012342681176960468,
-0.4966042637825012,
-0.11836212128400803,
-0.4076179265975952,
0.02072460949420929,
-0.2065291553735733,
-0.6385759711265564,
0.9666231274604797,
0.2443922609090805,
0.12622693181037903,
0.7347366213798523,
0.46755263209342957,
-0.02459973469376564,
0.7223902344703674,
0.40090322494506836,
-0.2488218992948532,
0.5414870381355286,
-0.7127283811569214,
-0.28379741311073303,
-0.8683680295944214,
-0.4520243704319,
-0.5180906057357788,
-0.5620871186256409,
-0.7446073293685913,
-0.47812607884407043,
0.21047095954418182,
0.18659578263759613,
-0.15815532207489014,
0.46982377767562866,
-0.8689306378364563,
0.26297029852867126,
0.2869946360588074,
0.27010029554367065,
-0.13969120383262634,
0.0943310409784317,
0.06553538888692856,
0.14362159371376038,
-0.6520743370056152,
-0.26393985748291016,
1.113547921180725,
0.4876234233379364,
0.5272648930549622,
-0.04316447675228119,
0.800961971282959,
0.027754496783018112,
0.2545161843299866,
-0.5063511729240417,
0.46587610244750977,
0.08823582530021667,
-0.4963548183441162,
-0.162782222032547,
-0.4996187090873718,
-0.9441626071929932,
-0.014515011571347713,
-0.47077393531799316,
-0.6854532957077026,
0.5703502893447876,
0.08749278634786606,
-0.2912052571773529,
0.4078413248062134,
-0.633502721786499,
0.9261094331741333,
-0.02831036038696766,
-0.4595206081867218,
0.26841408014297485,
-1.0244125127792358,
0.16759194433689117,
0.20000775158405304,
0.2819897532463074,
-0.46314769983291626,
0.015120317228138447,
1.0450056791305542,
-0.8300972580909729,
0.9432178735733032,
-0.4000158905982971,
0.16509093344211578,
0.6045642495155334,
-0.3134414851665497,
0.41707077622413635,
0.1162882074713707,
-0.2845199406147003,
0.34081172943115234,
0.03478580713272095,
-0.44893044233322144,
-0.40803179144859314,
0.6461131572723389,
-0.7352891564369202,
0.013390175998210907,
-0.33432212471961975,
-0.450010746717453,
0.050625450909137726,
0.1966707706451416,
0.3199988603591919,
0.41463181376457214,
-0.029464678838849068,
0.1686292588710785,
0.44297438859939575,
-0.12547947466373444,
0.2682420313358307,
0.09310148656368256,
-0.08281027525663376,
-0.7782501578330994,
0.9236506223678589,
0.23707813024520874,
0.046265486627817154,
-0.08263572305440903,
0.45267006754875183,
-0.33421826362609863,
-0.14198940992355347,
-0.6718034148216248,
0.43126147985458374,
-0.3923012912273407,
-0.4207318127155304,
-0.5853787660598755,
-0.17282702028751373,
-0.6626514196395874,
-0.15770785510540009,
-0.17880773544311523,
-0.5255196690559387,
-0.33192571997642517,
-0.17754411697387695,
1.040169358253479,
0.43687769770622253,
-0.6345107555389404,
0.1541396975517273,
-0.6422339081764221,
0.24604779481887817,
-0.07409942150115967,
0.5733746886253357,
-0.06748385727405548,
-0.34891465306282043,
-0.24032188951969147,
0.13602690398693085,
-0.1535642147064209,
-0.7637633085250854,
0.3054189383983612,
0.002329998416826129,
0.4595392942428589,
0.14889566600322723,
0.13446417450904846,
0.6347907185554504,
-0.054196860641241074,
0.6278868913650513,
0.27340108156204224,
-0.775156557559967,
0.6803664565086365,
-0.4704563021659851,
0.15439581871032715,
0.69700688123703,
0.38480281829833984,
-0.6302545666694641,
-0.11511443555355072,
-0.9823512434959412,
-0.8787869811058044,
0.8054776787757874,
0.4469277560710907,
0.0966191366314888,
0.1914791464805603,
0.5258830785751343,
-0.20811417698860168,
0.24114800989627838,
-0.6249620318412781,
-0.8309012055397034,
-0.3836594521999359,
-0.32276707887649536,
-0.10303743183612823,
-0.1498175859451294,
-0.2434823215007782,
-0.6684207320213318,
0.7661318182945251,
-0.1368137001991272,
0.3057088255882263,
0.4400728642940521,
0.3117586374282837,
-0.25724345445632935,
-0.004097467288374901,
0.33277562260627747,
0.3850606381893158,
-0.24899780750274658,
-0.30598971247673035,
-0.18433326482772827,
-0.6337666511535645,
-0.0715605616569519,
0.4842778742313385,
-0.40364646911621094,
-0.033520180732011795,
0.31779590249061584,
0.8887354731559753,
-0.01948125846683979,
-0.26254406571388245,
0.6360471248626709,
-0.07742684334516525,
-0.45277202129364014,
-0.3979998826980591,
0.09468457102775574,
0.18931397795677185,
0.27870869636535645,
0.05429621413350105,
0.10479015111923218,
-0.09356976300477982,
-0.38685736060142517,
0.3904622793197632,
0.23907878994941711,
-0.41923147439956665,
-0.5477797985076904,
0.6387380361557007,
0.06925728172063828,
-0.09748360514640808,
0.45187610387802124,
-0.14186474680900574,
-0.6589123010635376,
0.8262817859649658,
0.17125187814235687,
0.8376929759979248,
-0.17399734258651733,
0.3499283492565155,
0.7298252582550049,
0.2200620323419571,
-0.08973599225282669,
0.5453931093215942,
-0.21675777435302734,
-0.7335091233253479,
-0.008769386447966099,
-0.5751111507415771,
-0.07331166416406631,
0.0036625429056584835,
-0.8107571601867676,
0.4031960070133209,
-0.4383270740509033,
-0.2823973596096039,
0.04433096945285797,
0.3698159456253052,
-0.6880655884742737,
0.14055010676383972,
-0.07941610366106033,
1.0347179174423218,
-1.0891714096069336,
0.5488932728767395,
0.6888463497161865,
-0.6750505566596985,
-1.1502678394317627,
-0.19947418570518494,
0.17217522859573364,
-0.5787156820297241,
0.22381946444511414,
0.22212672233581543,
0.4767037332057953,
-0.052087828516960144,
-0.8389551043510437,
-0.6553702354431152,
1.2763925790786743,
0.036022208631038666,
-0.22316335141658783,
0.33895939588546753,
0.10576122999191284,
0.6143835783004761,
-0.3882162868976593,
0.2967984974384308,
0.6269729137420654,
0.6765143275260925,
0.3239935636520386,
-0.6395348310470581,
0.279758095741272,
-0.668818473815918,
-0.23988674581050873,
0.09263823926448822,
-1.0247488021850586,
0.7126792073249817,
-0.19818048179149628,
-0.07481283694505692,
-0.027428098022937775,
0.6378594636917114,
0.3641667664051056,
0.38911035656929016,
0.5591625571250916,
0.742027223110199,
0.7544584274291992,
-0.2992970645427704,
1.1374471187591553,
-0.30802953243255615,
0.5894715785980225,
0.7323921322822571,
-0.034608203917741776,
0.4732864797115326,
0.21302923560142517,
-0.2817874550819397,
0.5457550287246704,
0.5914255380630493,
-0.4218282103538513,
0.20920349657535553,
0.35554108023643494,
-0.08699899166822433,
-0.10616928339004517,
-0.23960569500923157,
-0.607151985168457,
0.2506159842014313,
0.27978894114494324,
-0.35941994190216064,
-0.06472436338663101,
-0.03265101835131645,
0.3570229113101959,
-0.09122181683778763,
-0.2527514696121216,
0.6272209286689758,
0.03542635962367058,
-0.31442126631736755,
0.5230321288108826,
-0.16455799341201782,
0.6773067712783813,
-0.5824530124664307,
0.092573381960392,
-0.09473501145839691,
0.11136287450790405,
-0.6096657514572144,
-1.080155849456787,
0.38908663392066956,
-0.06531933695077896,
-0.26089251041412354,
-0.3276650011539459,
0.8214361071586609,
-0.4858580231666565,
-0.7745519280433655,
0.27081751823425293,
0.23988445103168488,
0.30888789892196655,
0.0925096869468689,
-1.2633967399597168,
0.5300137400627136,
0.17030306160449982,
-0.48803478479385376,
0.1652524769306183,
0.5023977756500244,
0.11611088365316391,
0.5276881456375122,
0.7207856774330139,
0.23968732357025146,
-0.2611303925514221,
0.0681590810418129,
1.1401523351669312,
-0.5582560300827026,
-0.44940415024757385,
-0.7479196786880493,
0.8499558568000793,
-0.32688212394714355,
-0.3920957148075104,
0.7005088925361633,
0.7592085599899292,
0.8529962301254272,
0.015134262852370739,
0.7524694204330444,
-0.6648293733596802,
0.6814290881156921,
-0.23400183022022247,
1.001278281211853,
-0.6862109303474426,
-0.09274351596832275,
-0.7066489458084106,
-0.5590097904205322,
-0.3770473897457123,
0.6506829857826233,
-0.16508331894874573,
0.15439511835575104,
0.21213485300540924,
0.9688307046890259,
0.04221438243985176,
0.1029980406165123,
-0.16879723966121674,
0.23808805644512177,
0.2691197693347931,
0.6236452460289001,
0.4712649881839752,
-0.9033592343330383,
0.38122791051864624,
-0.795610785484314,
-0.3056775629520416,
-0.01750333234667778,
-0.8059960007667542,
-0.8652693629264832,
-0.9346135258674622,
-0.6380535364151001,
-0.7934277653694153,
-0.3120330572128296,
1.0623952150344849,
0.6596071720123291,
-0.6860171556472778,
-0.24452711641788483,
0.14367517828941345,
0.29294341802597046,
-0.12162713706493378,
-0.30281394720077515,
0.6197240352630615,
0.3505362570285797,
-0.5803424119949341,
-0.12433692812919617,
0.0030789875891059637,
0.27141857147216797,
0.07843388617038727,
-0.12992221117019653,
-0.08981003612279892,
-0.2938193678855896,
0.3524143099784851,
0.4467390775680542,
-0.26531821489334106,
-0.09790109843015671,
-0.23106874525547028,
0.011235199868679047,
0.16522793471813202,
0.4853275418281555,
-0.5416556000709534,
0.17927022278308868,
0.7415708303451538,
0.2689678966999054,
0.3885670006275177,
0.16116221249103546,
0.04506680741906166,
-0.3991134464740753,
0.09558426588773727,
0.011776790954172611,
0.35927632451057434,
0.2938263714313507,
-0.4491320848464966,
0.7847297191619873,
0.5937550663948059,
-0.48357877135276794,
-0.8066675066947937,
-0.16295644640922546,
-1.3041032552719116,
0.09814788401126862,
1.0417190790176392,
-0.051490601152181625,
-0.6170294284820557,
0.05391669273376465,
-0.2120417207479477,
0.12736007571220398,
-0.5149999856948853,
0.3979920446872711,
0.5308747887611389,
-0.044599175453186035,
0.167778879404068,
-0.3949865698814392,
0.6211098432540894,
0.016906103119254112,
-0.9384816884994507,
0.1796572357416153,
0.4701295495033264,
0.5134966373443604,
0.2980121374130249,
0.8144674301147461,
-0.3024454712867737,
0.12112203240394592,
-0.05242369696497917,
0.3239009380340576,
-0.2839568853378296,
0.012863767333328724,
-0.39126136898994446,
-0.12843652069568634,
-0.4713587164878845,
-0.1973513960838318
]
|
open-source-metrics/stars | open-source-metrics | 2023-11-22T17:41:45Z | 260 | 0 | [
"region:us"
]
| null | 2023-03-23T12:51:59Z | ---
dataset_info:
features:
- name: login
dtype: string
- name: dates
dtype: string
splits:
- name: transformers
num_bytes: 4306654
num_examples: 115428
- name: peft
num_bytes: 409503
num_examples: 11016
- name: evaluate
num_bytes: 60067
num_examples: 1604
- name: huggingface_hub
num_bytes: 50035
num_examples: 1330
- name: accelerate
num_bytes: 225215
num_examples: 6039
- name: datasets
num_bytes: 660148
num_examples: 17582
- name: optimum
num_bytes: 65326
num_examples: 1743
- name: pytorch_image_models
num_bytes: 1032799
num_examples: 27698
- name: gradio
num_bytes: 879324
num_examples: 23641
- name: tokenizers
num_bytes: 289780
num_examples: 7815
- name: diffusers
num_bytes: 710122
num_examples: 19098
- name: safetensors
num_bytes: 65000
num_examples: 1754
- name: candle
num_bytes: 374881
num_examples: 10113
- name: text_generation_inference
num_bytes: 222899
num_examples: 5985
- name: chat_ui
num_bytes: 154888
num_examples: 4168
- name: hub_docs
num_bytes: 7344
num_examples: 196
download_size: 5247081
dataset_size: 9513985
configs:
- config_name: default
data_files:
- split: peft
path: data/peft-*
- split: hub_docs
path: data/hub_docs-*
- split: evaluate
path: data/evaluate-*
- split: huggingface_hub
path: data/huggingface_hub-*
- split: accelerate
path: data/accelerate-*
- split: datasets
path: data/datasets-*
- split: optimum
path: data/optimum-*
- split: pytorch_image_models
path: data/pytorch_image_models-*
- split: gradio
path: data/gradio-*
- split: tokenizers
path: data/tokenizers-*
- split: diffusers
path: data/diffusers-*
- split: transformers
path: data/transformers-*
- split: safetensors
path: data/safetensors-*
---
# Dataset Card for "stars"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) | [
-0.5984753966331482,
-0.22877976298332214,
0.2701195776462555,
0.13335929811000824,
-0.15832726657390594,
0.09262318164110184,
0.2335996776819229,
-0.36751607060432434,
0.8979538083076477,
0.6083541512489319,
-0.9309117794036865,
-0.7032533884048462,
-0.7162213325500488,
-0.25374269485473633,
-0.17688021063804626,
1.4583061933517456,
0.1629149168729782,
0.053126994520425797,
-0.514954149723053,
-0.025269722566008568,
-0.5395556092262268,
-0.36479756236076355,
-0.5471133589744568,
-0.4558461904525757,
1.16301429271698,
1.0000810623168945,
0.665881335735321,
0.57538241147995,
1.1502975225448608,
0.12645503878593445,
0.192079558968544,
-0.2091514766216278,
-0.4748484492301941,
-0.06901483237743378,
-0.23625917732715607,
-0.48006707429885864,
-1.0189908742904663,
0.19774092733860016,
0.5754174590110779,
0.6151027679443359,
0.09693428874015808,
1.0117002725601196,
-0.2007611095905304,
0.956152617931366,
-0.4095990061759949,
0.6777714490890503,
-0.03826363384723663,
-0.1417171061038971,
-0.7821328639984131,
-0.20626644790172577,
0.44320711493492126,
-0.5550258159637451,
-0.20730380713939667,
-1.1285523176193237,
0.0578368604183197,
0.0962318405508995,
0.9328022599220276,
0.17060810327529907,
0.1098983883857727,
-0.28832465410232544,
-0.5243789553642273,
0.10453759878873825,
0.007473429664969444,
0.18822301924228668,
0.7188501954078674,
0.7502480149269104,
0.17643654346466064,
-0.627291202545166,
-0.4107351303100586,
-0.004285047762095928,
-0.08592116087675095,
0.29799792170524597,
0.23735696077346802,
-0.04193068668246269,
0.5677346587181091,
0.6709357500076294,
-0.4009789824485779,
-0.2976497411727905,
-0.6726767420768738,
-0.3187873661518097,
0.7531390190124512,
0.058337219059467316,
0.22011029720306396,
-0.24210448563098907,
-0.14653156697750092,
-0.33306699991226196,
-0.5177152156829834,
0.07808219641447067,
0.47339576482772827,
0.31947314739227295,
-1.2128427028656006,
0.8718762397766113,
-0.10929597169160843,
0.35872191190719604,
0.1574534773826599,
0.5882388353347778,
0.5161073207855225,
-0.4515020549297333,
-0.02080659195780754,
-0.278090238571167,
0.14509521424770355,
0.5614808797836304,
0.17312964797019958,
0.04631495103240013,
-0.10187970846891403,
0.34620389342308044,
-0.056840408593416214,
-0.9898858666419983,
-0.9115555882453918,
0.31257086992263794,
-0.7513460516929626,
-0.28280317783355713,
0.2875647246837616,
-0.9810822606086731,
-0.6465789675712585,
-0.5274707674980164,
0.3775864541530609,
0.15978385508060455,
-0.6553511619567871,
-0.4881826937198639,
-0.7438986301422119,
0.21810413897037506,
0.007881782948970795,
-0.7671898007392883,
0.24978381395339966,
0.6912155747413635,
0.34702661633491516,
0.4484618604183197,
-0.3807006776332855,
-0.9547121524810791,
-0.0025332237128168344,
0.006803019437938929,
1.0088717937469482,
-0.826050877571106,
-0.3039322793483734,
-0.003367206547409296,
0.26518821716308594,
0.2079569697380066,
-0.23995546996593475,
0.877885639667511,
-0.4096187651157379,
-0.2616550624370575,
-1.0996965169906616,
-0.6303474307060242,
-0.10081607848405838,
0.2258491814136505,
-0.9727872014045715,
0.8077119588851929,
0.477695494890213,
-0.4965570569038391,
0.6030889749526978,
-1.272934913635254,
-0.0381590835750103,
0.692653477191925,
-0.06881392747163773,
-0.4217830002307892,
0.35698893666267395,
0.00930751021951437,
0.7328752875328064,
-0.1767835021018982,
0.27951866388320923,
-0.8667236566543579,
-0.17473746836185455,
0.19136714935302734,
0.4845704734325409,
0.5678009390830994,
0.4840373992919922,
0.5316162705421448,
0.22568880021572113,
-0.8315711617469788,
-0.26351508498191833,
0.21690401434898376,
0.1044875979423523,
-0.2509726583957672,
-0.29293039441108704,
0.6664175987243652,
-0.08684438467025757,
0.4111519157886505,
-0.44550010561943054,
0.4500090181827545,
0.49090099334716797,
-0.18090711534023285,
0.455366849899292,
0.08894477784633636,
0.39361754059791565,
-0.6458408236503601,
0.4973846971988678,
0.0197051540017128,
0.5254600048065186,
-0.04786786437034607,
-0.3560313582420349,
-0.7586733102798462,
0.11794555932283401,
0.5637019872665405,
0.588172435760498,
-0.6713675260543823,
0.7918021082878113,
0.24681714177131653,
-0.87052321434021,
-0.27089616656303406,
0.06949544697999954,
0.25455525517463684,
0.3272818922996521,
0.28271129727363586,
-0.5608052015304565,
-0.8110469579696655,
-0.6960722804069519,
0.2812207043170929,
-0.09154871106147766,
0.32122284173965454,
0.5114763975143433,
1.0172547101974487,
-0.5429379940032959,
0.684439480304718,
-0.7316684126853943,
-0.36653709411621094,
0.15623240172863007,
-0.5007779002189636,
0.26604869961738586,
0.7679417133331299,
0.8866145014762878,
-0.7102112770080566,
-0.37158042192459106,
-0.4811147451400757,
-0.6095925569534302,
-0.10048510879278183,
0.1593993902206421,
-0.5949994325637817,
-0.4092506468296051,
0.09087638556957245,
-0.3038793206214905,
0.4715127646923065,
1.1209745407104492,
-0.9867576360702515,
0.31396806240081787,
0.19462183117866516,
0.33568981289863586,
-1.199051022529602,
0.5737318992614746,
0.08144643157720566,
-0.16446465253829956,
-0.5019018650054932,
0.08194751292467117,
0.21102458238601685,
-0.4763917922973633,
0.1614978015422821,
0.5674090385437012,
-0.47200483083724976,
-0.20016512274742126,
-0.1985265612602234,
0.12618626654148102,
-0.23165389895439148,
0.1964857131242752,
0.22347764670848846,
0.360084593296051,
1.3978064060211182,
-0.503314197063446,
0.8708851337432861,
0.6265535950660706,
-0.08716259151697159,
1.2012834548950195,
-0.6011977791786194,
-0.04353540763258934,
-0.23644474148750305,
0.23887252807617188,
-0.700467586517334,
-0.7810549736022949,
0.6784924268722534,
-0.46594342589378357,
0.3169253170490265,
-0.5679493546485901,
-0.40912774205207825,
-0.6603200435638428,
-0.19186776876449585,
0.6252310276031494,
0.6690984964370728,
-0.7795888781547546,
0.06803657114505768,
0.9484686851501465,
-0.15432830154895782,
-0.057695940136909485,
-0.5845909118652344,
0.09907693415880203,
-0.2541046142578125,
-0.09998351335525513,
0.309102326631546,
-0.49254873394966125,
-0.0024967638310045004,
-0.021196432411670685,
0.5077425241470337,
-0.0538984090089798,
-0.1823272556066513,
0.5256933569908142,
0.2511071264743805,
-0.1868058145046234,
0.47319063544273376,
-0.15815195441246033,
-0.8087714910507202,
-0.03123931773006916,
-0.16532813012599945,
0.29565054178237915,
-0.1303313672542572,
-0.13918325304985046,
-0.496724009513855,
0.49678748846054077,
0.2653658390045166,
-0.24898312985897064,
0.3428087830543518,
1.0864174365997314,
-0.7925307154655457,
-0.06917526572942734,
-0.5982515811920166,
-0.3035162687301636,
-0.42621633410453796,
0.059531692415475845,
-0.2110932171344757,
-0.6410409808158875,
0.7872146964073181,
0.08164183795452118,
0.03700350970029831,
0.9099892377853394,
0.631905734539032,
-0.10980401933193207,
0.29827558994293213,
0.769579291343689,
-0.2848934829235077,
0.4212168753147125,
-0.3023722469806671,
-0.48523053526878357,
-0.7894589900970459,
-0.4459396004676819,
-0.5923906564712524,
-0.5905710458755493,
-0.7113510370254517,
-0.5718135833740234,
-0.05010350048542023,
0.29044947028160095,
-0.09139085561037064,
0.8174782395362854,
-0.8149336576461792,
0.44920089840888977,
0.45039570331573486,
0.08128417283296585,
-0.09931277483701706,
-0.19150151312351227,
0.5002011656761169,
0.2665688991546631,
-0.6753639578819275,
-0.1907062977552414,
1.1292191743850708,
0.6849735975265503,
1.0213098526000977,
0.13084980845451355,
0.8855684399604797,
0.20663760602474213,
0.4932914972305298,
-0.33435502648353577,
0.2541132867336273,
-0.027425184845924377,
-0.6994693279266357,
-0.08024126291275024,
-0.19846220314502716,
-0.6605411171913147,
-0.5224616527557373,
-0.6400755643844604,
-0.08257004618644714,
0.5656853914260864,
0.6427792906761169,
-0.2934557795524597,
0.2133711874485016,
-0.7829620242118835,
0.9478155970573425,
-0.20048047602176666,
-0.016261933371424675,
-0.21060873568058014,
-0.452119916677475,
0.07595930248498917,
0.11638012528419495,
0.04637255519628525,
-0.42184871435165405,
-0.06859268248081207,
1.046256184577942,
-0.3289799094200134,
1.1751656532287598,
-0.8026589751243591,
0.16668199002742767,
0.25199460983276367,
-0.35881903767585754,
0.4330313503742218,
0.6489719152450562,
0.057882629334926605,
0.2175312638282776,
0.044649675488471985,
-0.5593579411506653,
-0.1154789924621582,
0.935520589351654,
-0.6862679123878479,
0.2979279160499573,
-0.38339588046073914,
-0.5699865221977234,
0.038207292556762695,
0.23628300428390503,
0.20640963315963745,
0.5992679595947266,
-0.35713881254196167,
-0.04151812940835953,
0.42649754881858826,
0.326873242855072,
0.29016727209091187,
0.19021748006343842,
-0.37128138542175293,
-0.5877676606178284,
0.9963341355323792,
0.29553136229515076,
-0.45268410444259644,
0.2856180667877197,
0.4079132676124573,
-0.4140688180923462,
-0.5071428418159485,
-0.516359269618988,
0.367628812789917,
-0.40381941199302673,
-0.5145149827003479,
-0.16778074204921722,
-0.18465487658977509,
-0.37503668665885925,
-0.3597981929779053,
-0.3533785045146942,
-0.6583247184753418,
-0.631837785243988,
-0.32795724272727966,
1.1457219123840332,
0.8002482652664185,
-0.5985137820243835,
0.4093015789985657,
-0.972216010093689,
0.49218079447746277,
0.06732640415430069,
1.2584521770477295,
-0.37437912821769714,
-0.2974039316177368,
-0.6122071743011475,
-0.22713705897331238,
0.059443674981594086,
-0.4977487325668335,
-0.09298387169837952,
0.24648307263851166,
0.6381999850273132,
0.22945855557918549,
-0.10326483845710754,
0.7934015393257141,
-0.05272764340043068,
0.6862541437149048,
0.3582007884979248,
-0.5994512438774109,
0.7205722332000732,
-0.4213554263114929,
0.3174973726272583,
0.9885878562927246,
0.365292489528656,
-0.5799978971481323,
0.047181643545627594,
-1.0534359216690063,
-0.26017066836357117,
0.45301535725593567,
0.21027053892612457,
0.09850217401981354,
0.2340550720691681,
0.7103400230407715,
0.22488245368003845,
0.3235718607902527,
-0.6900269985198975,
-0.9097278714179993,
-0.14065967500209808,
-0.11860524863004684,
-0.3141462206840515,
-0.4399902820587158,
-0.28355738520622253,
-0.4322217106819153,
0.5596697330474854,
-0.03207983449101448,
0.4676862955093384,
0.11539602279663086,
0.24401286244392395,
-0.4204584062099457,
-0.2575174570083618,
0.41646966338157654,
0.6852042078971863,
-0.40751880407333374,
-0.15737013518810272,
-0.20418322086334229,
-0.3787026107311249,
-0.5511511564254761,
0.8066138029098511,
0.05224218592047691,
-0.309548020362854,
0.4997543692588806,
0.841661810874939,
-0.3735195994377136,
0.017117252573370934,
0.15200020372867584,
-0.040395818650722504,
-0.3001008927822113,
-0.5950443744659424,
0.310843825340271,
0.2544582486152649,
0.3419892191886902,
-0.01663997769355774,
0.24842648208141327,
0.10239043831825256,
-0.6225597858428955,
0.6143558025360107,
0.08466209471225739,
-0.8678871393203735,
-0.6680742502212524,
0.6086045503616333,
0.8043249845504761,
-0.4678109288215637,
0.6346521973609924,
-0.05774713307619095,
-0.38222536444664,
0.6400572657585144,
0.13978952169418335,
0.7340993285179138,
-0.3414307236671448,
0.5131394267082214,
0.6832436919212341,
0.03489469364285469,
0.22524282336235046,
0.7993663549423218,
-0.466401070356369,
-0.5696803331375122,
-0.002259609056636691,
-0.3965838551521301,
-0.5014458298683167,
-0.20323388278484344,
-0.7409047484397888,
0.2705201208591461,
-0.6389140486717224,
-0.361578106880188,
0.09226591885089874,
0.39690154790878296,
-1.0260056257247925,
0.1974596083164215,
0.39577561616897583,
1.2133495807647705,
-0.9927042722702026,
0.6749629378318787,
0.8792628049850464,
-0.4769911468029022,
-0.6524711847305298,
-0.30186769366264343,
0.13175418972969055,
-0.6669882535934448,
0.03657681122422218,
0.11159489303827286,
0.5566839575767517,
-0.2695908844470978,
-0.596636950969696,
-0.8827643394470215,
1.1566417217254639,
0.043869372457265854,
-0.9505284428596497,
0.49133509397506714,
-0.19139070808887482,
0.4161771535873413,
-0.4759807884693146,
0.31462693214416504,
0.4686809182167053,
1.0303713083267212,
0.2887938320636749,
-0.6368960738182068,
-0.01844632998108864,
-0.6028701066970825,
-0.35503050684928894,
0.36897140741348267,
-0.744268536567688,
0.2580054998397827,
-0.2909894287586212,
0.10678525269031525,
0.025742921978235245,
0.819709837436676,
0.08925452083349228,
0.4353880286216736,
0.44990453124046326,
0.5062589645385742,
1.084957480430603,
-0.42021170258522034,
1.081827998161316,
-0.08216063678264618,
0.6431687474250793,
0.8497352600097656,
-0.1534309983253479,
0.2569533586502075,
0.525747537612915,
0.04156574606895447,
0.13675425946712494,
0.6957948803901672,
-0.8196998834609985,
0.25041696429252625,
0.3001519441604614,
-0.01129878219217062,
-0.3414234220981598,
-0.19827915728092194,
-0.7694383263587952,
0.19413965940475464,
0.4236189126968384,
-0.39310845732688904,
-0.030917108058929443,
-0.044361405074596405,
-0.036436665803194046,
-0.08440551906824112,
-0.6397655010223389,
0.5816658735275269,
0.0668337345123291,
-0.5308687686920166,
-0.07443231344223022,
-0.2320975661277771,
0.3673400282859802,
-0.8098569512367249,
-0.35718512535095215,
0.006451386492699385,
0.19208313524723053,
-0.7693654894828796,
-1.3136727809906006,
0.7065887451171875,
-0.19244655966758728,
-0.38047513365745544,
0.03111976757645607,
0.7003364562988281,
-0.559814453125,
-0.9783393144607544,
0.24874192476272583,
0.1745092272758484,
0.21050319075584412,
0.19304202497005463,
-1.297271490097046,
0.2296665757894516,
-0.19636158645153046,
-0.14460653066635132,
0.11826387047767639,
-0.22174209356307983,
0.11323944479227066,
0.5232110619544983,
0.7873353362083435,
0.11676237732172012,
-0.6901710033416748,
0.4445576071739197,
0.9495492577552795,
-0.7804796695709229,
-0.5592635869979858,
-0.4200446605682373,
0.9339269399642944,
-0.3607855439186096,
-0.6980505585670471,
0.6603339910507202,
0.9631606936454773,
0.7939741015434265,
-0.3859427571296692,
0.6680429577827454,
-0.5934134721755981,
0.6860630512237549,
-0.3624345660209656,
0.9134572744369507,
-0.3833625018596649,
-0.11812234669923782,
-0.3259137272834778,
-0.9934079647064209,
-0.884021520614624,
0.5367641448974609,
0.17909133434295654,
0.09574657678604126,
0.4989687502384186,
0.987257719039917,
-0.18032434582710266,
0.05928722769021988,
0.1964920312166214,
0.010804909281432629,
0.2520151734352112,
0.44621559977531433,
0.5711246132850647,
-0.5392042398452759,
0.14393752813339233,
-0.41167008876800537,
-0.738292932510376,
-0.028221987187862396,
-1.0627872943878174,
-1.1213115453720093,
-0.9039732813835144,
-0.8864529728889465,
-0.4061160981655121,
-0.08579160273075104,
0.865234911441803,
1.1242502927780151,
-1.0259082317352295,
-0.37578389048576355,
0.17028813064098358,
0.28332993388175964,
-0.2585444748401642,
-0.08035144954919815,
0.7656800746917725,
0.22600823640823364,
-0.5743312239646912,
-0.18913167715072632,
-0.07826222479343414,
0.033992134034633636,
-0.08357498049736023,
-0.10843773186206818,
0.29175442457199097,
-0.1497858762741089,
0.3642069101333618,
0.5398586392402649,
-0.035708311945199966,
-0.6131284236907959,
-0.5106537938117981,
0.12057000398635864,
-0.053226470947265625,
0.9465450048446655,
-0.5133523344993591,
0.1673843413591385,
0.6799802184104919,
0.2269609123468399,
0.48967838287353516,
0.09570085257291794,
0.3701499402523041,
-0.49557629227638245,
-0.12214519083499908,
-0.05931255593895912,
0.41083768010139465,
0.11872030049562454,
-0.6789723038673401,
0.7172049283981323,
0.5439253449440002,
-0.7544613480567932,
-0.43551668524742126,
0.2496950775384903,
-1.6281046867370605,
0.4673652648925781,
0.861146867275238,
0.31681692600250244,
-0.2340756058692932,
-0.10145402699708939,
-0.41700050234794617,
0.12212371826171875,
-0.8913392424583435,
0.3878903090953827,
0.3934667408466339,
0.009474906139075756,
-0.37262189388275146,
-0.17517882585525513,
0.8291805982589722,
-0.3927595913410187,
-1.2942675352096558,
0.3142286539077759,
0.5712302923202515,
0.20512455701828003,
0.26559633016586304,
0.7051716446876526,
-0.27336522936820984,
0.520690381526947,
0.3885315954685211,
0.36939844489097595,
-0.5067101120948792,
-0.6876530051231384,
-0.21975237131118774,
0.0670311376452446,
-0.11016159504652023,
-0.44182854890823364
]
|
edarchimbaud/perimeter-stocks | edarchimbaud | 2023-11-21T15:00:09Z | 260 | 1 | [
"region:us"
]
| null | 2023-08-12T20:21:35Z | ---
dataset_info:
features:
- name: symbol
dtype: string
- name: security
dtype: string
- name: gics_sector
dtype: string
- name: gics_sub_industry
dtype: string
splits:
- name: train
num_bytes: 111992
num_examples: 1500
download_size: 44216
dataset_size: 111992
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
---
# Dataset Card for "perimeter-stocks"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) | [
-0.6919535994529724,
-0.37220028042793274,
0.12801748514175415,
0.16070111095905304,
-0.019506124779582024,
-0.0007072130683809519,
0.3620566129684448,
-0.08176492154598236,
0.8816408514976501,
0.40612608194351196,
-0.7163705229759216,
-0.8981179594993591,
-0.5701846480369568,
-0.6873043179512024,
-0.10008440911769867,
1.238269329071045,
-0.011853172443807125,
-0.04397035762667656,
-0.3258433938026428,
-0.08767033368349075,
-0.5184386968612671,
-0.6126928329467773,
-0.4754154086112976,
-0.5517256855964661,
0.602218508720398,
0.8131645917892456,
0.60820072889328,
0.7265692949295044,
0.8466697335243225,
0.20164711773395538,
0.16070368885993958,
-0.2701592743396759,
-0.3712542653083801,
-0.2869635224342346,
-0.16684189438819885,
-0.29098400473594666,
-1.2569986581802368,
0.06087600439786911,
0.6819928288459778,
0.6344581246376038,
-0.33884474635124207,
0.8218024969100952,
-0.098236583173275,
0.8317037224769592,
-0.5598954558372498,
0.29151955246925354,
-0.062253933399915695,
0.08664470165967941,
-0.9531238675117493,
-0.18825571238994598,
0.34808456897735596,
-0.5235463976860046,
0.08045592159032822,
-1.0816940069198608,
-0.07697512209415436,
0.2602037489414215,
0.9835749864578247,
-0.09254655987024307,
0.0984996035695076,
-0.20034907758235931,
-0.22777441143989563,
0.17210803925991058,
-0.15842466056346893,
0.3631323575973511,
0.7170525789260864,
0.5769419074058533,
0.1790272742509842,
-0.6004199385643005,
-0.09388258308172226,
0.3774026036262512,
-0.04805932566523552,
0.30632737278938293,
-0.1583753228187561,
-0.04514460638165474,
0.5882588028907776,
0.8730236291885376,
-0.4632936418056488,
-0.13501188158988953,
-0.8332085013389587,
-0.38081270456314087,
0.6663070917129517,
0.3965861201286316,
0.294528067111969,
0.011181783862411976,
-0.18525813519954681,
-0.4266738295555115,
-0.3670450747013092,
0.20444825291633606,
0.7744587659835815,
0.12846489250659943,
-0.9973686337471008,
0.7656599879264832,
-0.13123127818107605,
0.3203200101852417,
0.11409447342157364,
0.45111003518104553,
0.6796567440032959,
-0.22325290739536285,
-0.3207208514213562,
-0.12082608789205551,
0.24021244049072266,
0.6328550577163696,
0.1342894732952118,
0.2955488860607147,
-0.19368791580200195,
-0.17522232234477997,
0.011793558485805988,
-0.9736993312835693,
-0.9692096710205078,
0.2985459566116333,
-0.5615953207015991,
-0.0117631945759058,
0.46739280223846436,
-1.0240899324417114,
-0.13853928446769714,
-0.4227551221847534,
0.29632654786109924,
-0.1448255181312561,
-0.5530148148536682,
-0.0692526176571846,
-1.143293857574463,
0.5529797077178955,
-0.06877781450748444,
-0.6723016500473022,
0.6126953363418579,
0.7847914099693298,
0.7965731024742126,
0.1935424506664276,
-0.3614477217197418,
-0.8449833989143372,
0.23050625622272491,
-0.12918367981910706,
1.1013745069503784,
-0.6288517117500305,
-0.41915303468704224,
-0.04446367919445038,
0.0596361979842186,
0.13774871826171875,
-0.3708541989326477,
0.7410557270050049,
-0.5079200267791748,
-0.19778749346733093,
-1.0220115184783936,
-0.6444090604782104,
0.0182181429117918,
0.5698432922363281,
-0.8920320272445679,
0.9108132719993591,
0.14762470126152039,
-0.8844476342201233,
0.45033109188079834,
-1.3446027040481567,
-0.2354496568441391,
0.6421053409576416,
-0.03283773735165596,
-0.5048976540565491,
0.03157804161310196,
0.14676091074943542,
0.3751431107521057,
0.21848921477794647,
0.060631826519966125,
-0.9083438515663147,
0.06503181159496307,
0.24322675168514252,
0.38341426849365234,
0.7241043448448181,
0.25011587142944336,
0.6849930882453918,
-0.011752414517104626,
-0.8459987044334412,
-0.16503848135471344,
0.2067369520664215,
0.24381694197654724,
-0.49813926219940186,
-0.4979155957698822,
0.29188549518585205,
-0.2684246301651001,
0.6025128960609436,
-0.3245941698551178,
0.3272327184677124,
0.2920057475566864,
-0.1760362982749939,
0.7827959656715393,
0.13130514323711395,
0.5411728620529175,
-0.7669851183891296,
0.6519234776496887,
0.00464979000389576,
0.3119570314884186,
-0.033191729336977005,
-0.16341419517993927,
-0.3937327563762665,
-0.3121417462825775,
0.5615900754928589,
0.8819075226783752,
-0.2130475640296936,
0.6350882649421692,
0.23708675801753998,
-0.7093654870986938,
0.22596554458141327,
-0.041206762194633484,
0.04766649752855301,
0.19180475175380707,
0.2582233250141144,
-0.7213640809059143,
-0.8190666437149048,
-0.8245413303375244,
0.25901806354522705,
0.1308925896883011,
0.033305224031209946,
0.38950100541114807,
0.8314446806907654,
-0.38895317912101746,
0.8857836127281189,
-1.200256109237671,
-0.31278282403945923,
0.2406422346830368,
-0.21545468270778656,
0.5461626648902893,
0.48033031821250916,
0.9210530519485474,
-0.514281153678894,
-0.2619416117668152,
-0.3895214796066284,
-0.3916788697242737,
-0.08081810921430588,
0.27410009503364563,
-0.7782023549079895,
-0.7294690608978271,
0.1894555389881134,
-0.4358074963092804,
0.8428695797920227,
0.755450963973999,
-0.5017327070236206,
0.49017345905303955,
0.07792115211486816,
-0.04496270790696144,
-1.382597804069519,
0.3815552592277527,
0.2773406207561493,
-0.15609455108642578,
-0.4478408694267273,
-0.06710053235292435,
-0.030724916607141495,
-0.35775166749954224,
0.20093481242656708,
0.5523622035980225,
-0.4825458228588104,
-0.4361962080001831,
0.008694318123161793,
0.07828963547945023,
-0.0043746777810156345,
0.19196341931819916,
0.0328621007502079,
0.731826663017273,
1.2465475797653198,
-0.7107191681861877,
0.8053343296051025,
0.8171866536140442,
0.034745216369628906,
1.1536198854446411,
-0.6641734838485718,
-0.21325677633285522,
0.05424761772155762,
0.3533852696418762,
-0.6426928043365479,
-0.7176358699798584,
0.5367287993431091,
-0.27117258310317993,
0.19826096296310425,
-0.5471665859222412,
-0.421354740858078,
-0.7590712308883667,
-0.712719738483429,
0.7060806155204773,
0.4178406298160553,
-0.6053848266601562,
0.1409880667924881,
0.9714234471321106,
-0.21161691844463348,
-0.05804252251982689,
-1.0949060916900635,
0.042644523084163666,
-0.3960009813308716,
-0.2364443838596344,
0.38527536392211914,
-0.4494408369064331,
-0.2732863128185272,
-0.2588742673397064,
0.502731204032898,
-0.23274293541908264,
-0.3175278306007385,
0.4287702441215515,
0.15966130793094635,
-0.15127189457416534,
0.5433067083358765,
-0.04856546223163605,
-0.6707953214645386,
0.19684764742851257,
-0.423440545797348,
0.3910769522190094,
-0.23803819715976715,
-0.285645991563797,
-0.47550150752067566,
0.32363149523735046,
0.18248488008975983,
-0.2968723177909851,
0.4495429992675781,
0.8882990479469299,
-0.8661028146743774,
0.037804678082466125,
-0.4680779278278351,
-0.10422532260417938,
-0.5099454522132874,
-0.028706228360533714,
-0.370379775762558,
-0.5621088743209839,
0.9130412936210632,
-0.15507327020168304,
-0.0015842776047065854,
1.0704855918884277,
0.6645183563232422,
-0.006952232215553522,
0.21350683271884918,
0.7791455984115601,
-0.3134765923023224,
0.4170566499233246,
-0.371157705783844,
-0.10165398567914963,
-0.8504331111907959,
-0.3176082372665405,
-0.42619508504867554,
-0.5886355042457581,
-0.5990043878555298,
-0.18356792628765106,
0.2660439610481262,
0.18330444395542145,
-0.30273136496543884,
0.8374704122543335,
-0.6624308824539185,
0.41168829798698425,
0.7412706613540649,
0.05963139981031418,
-0.12079598754644394,
0.0833607017993927,
-0.09731537848711014,
0.07690902054309845,
-0.67463219165802,
-0.1317782700061798,
1.1664257049560547,
0.7832318544387817,
0.9801740050315857,
0.14643599092960358,
0.803939163684845,
0.43213701248168945,
0.035986680537462234,
-0.34189653396606445,
0.2239484339952469,
0.22895698249340057,
-0.5502071380615234,
-0.2571209967136383,
-0.23844100534915924,
-0.5257890820503235,
-0.6555493474006653,
-0.2073197215795517,
-0.5290776491165161,
0.5011646747589111,
0.3282080292701721,
-0.5379934906959534,
0.5402344465255737,
-0.7992990016937256,
0.9598283171653748,
-0.18994998931884766,
-0.021333400160074234,
-0.14145486056804657,
-0.19375108182430267,
0.12067091464996338,
0.11702942848205566,
0.0992448627948761,
-0.405341774225235,
-0.041228778660297394,
1.0739768743515015,
-0.7653971910476685,
0.9930763840675354,
-0.5683318376541138,
-0.17123670876026154,
0.4289056658744812,
-0.18610797822475433,
0.25429555773735046,
0.6398935914039612,
0.02693198435008526,
0.17057567834854126,
0.26053082942962646,
-0.5904268622398376,
0.05411331355571747,
0.43963682651519775,
-0.7358969449996948,
0.258507639169693,
-0.6042810678482056,
-0.6917231678962708,
0.06096029654145241,
0.2608635127544403,
0.23975998163223267,
0.7717688083648682,
-0.5559892058372498,
-0.1035330593585968,
0.571761429309845,
0.3290275037288666,
0.3340672552585602,
-0.03729040548205376,
-0.40174737572669983,
-0.7430348992347717,
0.8544826507568359,
0.44518524408340454,
-0.551864504814148,
0.32520538568496704,
0.35333773493766785,
-0.4477814733982086,
-0.47148942947387695,
-0.5121379494667053,
-0.0008769388077780604,
-0.3903924524784088,
-0.6657127737998962,
-0.36605918407440186,
-0.607716977596283,
-0.5465298891067505,
-0.3611815273761749,
-0.2781938314437866,
-0.4875931441783905,
-0.6896134614944458,
-0.5770347714424133,
1.2916209697723389,
0.6181050539016724,
-1.0762593746185303,
0.5768648982048035,
-0.95040363073349,
0.4782400131225586,
0.41395270824432373,
1.0477629899978638,
-0.23998793959617615,
-0.5183271765708923,
-0.6199007630348206,
0.12794658541679382,
-0.31532415747642517,
-0.454586923122406,
-0.0690883919596672,
0.20342563092708588,
0.48759785294532776,
0.5198465585708618,
0.09997104108333588,
0.9038464426994324,
-0.10228969901800156,
0.41153138875961304,
0.3409586548805237,
-0.8597745895385742,
0.5087641477584839,
-0.5314961671829224,
0.5210333466529846,
0.7593798041343689,
0.5672748684883118,
-0.5627912878990173,
0.22624093294143677,
-0.9175319671630859,
-0.5806685090065002,
0.2042134553194046,
0.16935616731643677,
0.12401604652404785,
0.241145521402359,
0.49367618560791016,
0.08322548866271973,
0.1541072279214859,
-0.5155765414237976,
-0.5324383974075317,
-0.13345184922218323,
-0.07775546610355377,
0.45757442712783813,
-0.5987730026245117,
-0.5044788122177124,
-0.5222464799880981,
0.667847216129303,
-0.03071902133524418,
0.3669753670692444,
0.13576547801494598,
0.23652178049087524,
-0.24852831661701202,
-0.17166633903980255,
0.41490936279296875,
1.0670098066329956,
-0.5675994157791138,
-0.2689531743526459,
0.45583805441856384,
-0.31139564514160156,
-0.6190364956855774,
0.7244600653648376,
0.15454810857772827,
-0.4252796173095703,
0.44729000329971313,
0.6250501275062561,
-0.4926133453845978,
-0.15152093768119812,
0.42889127135276794,
-0.01165440957993269,
-0.5095460414886475,
-0.743916928768158,
-0.053643129765987396,
0.027891721576452255,
0.5179163217544556,
0.3207666277885437,
-0.10724160075187683,
0.37951400876045227,
-0.4994831681251526,
0.9111423492431641,
0.13384224474430084,
-0.6995148062705994,
-0.49763837456703186,
0.23630860447883606,
0.35576117038726807,
-0.25702613592147827,
0.7622326016426086,
-0.32422563433647156,
-0.6514859795570374,
0.6028086543083191,
0.10137482732534409,
0.6966298818588257,
-0.09718012809753418,
0.3551368713378906,
0.6101357936859131,
0.24322538077831268,
0.2462921142578125,
0.5603681802749634,
-0.36227142810821533,
-0.7182411551475525,
0.017464492470026016,
-0.235459104180336,
-0.7338812351226807,
-0.29791516065597534,
-1.0680038928985596,
0.3111916184425354,
-0.8903096318244934,
-0.5253797769546509,
-0.12250898778438568,
0.33230718970298767,
-0.701801061630249,
0.16534234583377838,
0.4261857271194458,
1.4312037229537964,
-0.8444737792015076,
0.4820241928100586,
0.7041184306144714,
-0.14169727265834808,
-0.29312223196029663,
-0.15374349057674408,
0.03430425375699997,
-0.7928749322891235,
-0.2477644383907318,
0.1663595288991928,
0.25254857540130615,
-0.528192937374115,
-0.7987589240074158,
-0.7294380068778992,
1.2863233089447021,
-0.17475365102291107,
-0.8685837984085083,
0.38466116786003113,
-0.12364204972982407,
0.34741368889808655,
-0.2899441421031952,
0.2666114568710327,
0.5922778844833374,
0.8265770077705383,
0.38634392619132996,
-0.4789960980415344,
-0.21602265536785126,
-0.4953819215297699,
-0.33701857924461365,
0.44621142745018005,
-0.9100728631019592,
0.33342960476875305,
0.005722147412598133,
0.023996353149414062,
-0.03611962869763374,
0.9626973271369934,
0.2624616324901581,
0.7428893446922302,
0.342459112405777,
1.09673011302948,
1.1448665857315063,
-0.24418430030345917,
0.7529164552688599,
-0.12506696581840515,
0.5256918668746948,
1.1612874269485474,
-0.31549760699272156,
0.45577895641326904,
0.20113173127174377,
-0.06958058476448059,
0.22097600996494293,
0.7640300393104553,
-0.7098050713539124,
0.2600858509540558,
0.4782261848449707,
0.1514924317598343,
-0.25853869318962097,
-0.29372361302375793,
-0.9427052736282349,
0.17355041205883026,
0.5346277952194214,
0.03892970830202103,
-0.05332166701555252,
-0.3033720850944519,
0.009737891145050526,
-0.11128627508878708,
-0.5816217064857483,
0.6167176961898804,
0.23771150410175323,
0.13713808357715607,
-0.43758249282836914,
0.07742001116275787,
0.37277474999427795,
-0.8406773209571838,
0.011686780489981174,
-0.031368039548397064,
0.2065749168395996,
-0.4072394371032715,
-1.398390531539917,
0.9859973192214966,
-0.25064805150032043,
-0.21364903450012207,
-0.07567895948886871,
0.6431173086166382,
-0.3432692289352417,
-0.862918496131897,
0.287090003490448,
0.20117822289466858,
-0.010425299406051636,
-0.03023204579949379,
-1.1835784912109375,
0.015434948727488518,
-0.3935505449771881,
-0.046640049666166306,
-0.008070065639913082,
0.32912394404411316,
0.1418217271566391,
0.5176867842674255,
0.8833458423614502,
-0.21579506993293762,
-0.4550482928752899,
0.028319211676716805,
1.1402652263641357,
-0.9010841846466064,
-0.7352842092514038,
-0.6804365515708923,
0.576887845993042,
-0.6105767488479614,
-0.7740181684494019,
0.579621434211731,
1.244574785232544,
0.9004866480827332,
0.03344440832734108,
0.630039632320404,
-0.2019806206226349,
0.5220097899436951,
-0.37898609042167664,
0.7204056978225708,
-0.3471169173717499,
-0.3439658284187317,
-0.20231936872005463,
-0.8587268590927124,
-0.7314664125442505,
0.34625980257987976,
-0.20353879034519196,
-0.08466676622629166,
0.4580637812614441,
0.9073277711868286,
-0.4846181273460388,
0.15349194407463074,
0.11936568468809128,
0.04761360585689545,
0.08343977481126785,
0.3146742582321167,
0.4953320324420929,
-0.6201108694076538,
0.19507437944412231,
-0.24711564183235168,
-0.5799014568328857,
0.011259650811553001,
-1.0866113901138306,
-1.0770550966262817,
-0.5182287693023682,
-0.7133244872093201,
-0.3830731511116028,
-0.1418728530406952,
0.8933858275413513,
1.072126030921936,
-0.9441126585006714,
-0.6040292382240295,
0.20815187692642212,
0.16957208514213562,
0.08207504451274872,
-0.08909637480974197,
0.7145205140113831,
0.3021875321865082,
-0.24644853174686432,
-0.308437705039978,
0.3961097300052643,
0.31107011437416077,
0.037846919149160385,
-0.07445232570171356,
-0.026806553825736046,
0.1344446986913681,
0.2834204435348511,
0.615922212600708,
0.2901507318019867,
-0.13897806406021118,
-0.44752946496009827,
0.10081744194030762,
0.1885603964328766,
0.9277913570404053,
-0.12151307612657547,
-0.011917090974748135,
0.8000079393386841,
0.4914703369140625,
0.6847855448722839,
0.12405546754598618,
0.6856240630149841,
-0.6327915191650391,
0.1567036658525467,
-0.3465421497821808,
0.4538731575012207,
0.03512749448418617,
-0.5096276998519897,
0.5871106386184692,
0.47042933106422424,
-0.33288827538490295,
-0.22262901067733765,
0.17804692685604095,
-1.2566746473312378,
0.4383293390274048,
0.6758602857589722,
0.24868954718112946,
-0.5022351741790771,
0.16879679262638092,
-0.30417385697364807,
0.004138459917157888,
-0.8768904805183411,
0.10017326474189758,
0.6755473613739014,
0.4326290488243103,
-0.32922542095184326,
-0.13716915249824524,
0.38846057653427124,
-0.4889240562915802,
-1.1161612272262573,
0.14185909926891327,
0.38422125577926636,
0.05116938054561615,
0.09478645026683807,
0.6644043326377869,
-0.15222306549549103,
0.3521207869052887,
0.38458436727523804,
0.3536263108253479,
-0.2516067922115326,
-0.6614019870758057,
-0.1059269905090332,
0.06636302173137665,
-0.25313007831573486,
-0.6920245885848999
]
|
open-llm-leaderboard/details_OptimalScale__robin-65b-v2-delta | open-llm-leaderboard | 2023-08-27T12:24:43Z | 260 | 0 | [
"region:us"
]
| null | 2023-08-17T23:52:14Z | ---
pretty_name: Evaluation run of OptimalScale/robin-65b-v2-delta
dataset_summary: "Dataset automatically created during the evaluation run of model\
\ [OptimalScale/robin-65b-v2-delta](https://huggingface.co/OptimalScale/robin-65b-v2-delta)\
\ on the [Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard).\n\
\nThe dataset is composed of 61 configuration, each one coresponding to one of the\
\ evaluated task.\n\nThe dataset has been created from 1 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_OptimalScale__robin-65b-v2-delta\"\
,\n\t\"harness_truthfulqa_mc_0\",\n\tsplit=\"train\")\n```\n\n## Latest results\n\
\nThese are the [latest results from run 2023-08-08T22:36:48.972258](https://huggingface.co/datasets/open-llm-leaderboard/details_OptimalScale__robin-65b-v2-delta/blob/main/results_2023-08-08T22%3A36%3A48.972258.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.6078684635354565,\n\
\ \"acc_stderr\": 0.03335692759261142,\n \"acc_norm\": 0.6117336666004985,\n\
\ \"acc_norm_stderr\": 0.03333764223356639,\n \"mc1\": 0.3072215422276622,\n\
\ \"mc1_stderr\": 0.016150201321323013,\n \"mc2\": 0.4474047797612128,\n\
\ \"mc2_stderr\": 0.014194757681816514\n },\n \"harness|arc:challenge|25\"\
: {\n \"acc\": 0.5819112627986348,\n \"acc_stderr\": 0.014413988396996074,\n\
\ \"acc_norm\": 0.6075085324232082,\n \"acc_norm_stderr\": 0.014269634635670731\n\
\ },\n \"harness|hellaswag|10\": {\n \"acc\": 0.6137223660625374,\n\
\ \"acc_stderr\": 0.004859004184694605,\n \"acc_norm\": 0.8161720772754432,\n\
\ \"acc_norm_stderr\": 0.0038655217623631624\n },\n \"harness|hendrycksTest-abstract_algebra|5\"\
: {\n \"acc\": 0.3,\n \"acc_stderr\": 0.046056618647183814,\n \
\ \"acc_norm\": 0.3,\n \"acc_norm_stderr\": 0.046056618647183814\n \
\ },\n \"harness|hendrycksTest-anatomy|5\": {\n \"acc\": 0.562962962962963,\n\
\ \"acc_stderr\": 0.04284958639753401,\n \"acc_norm\": 0.562962962962963,\n\
\ \"acc_norm_stderr\": 0.04284958639753401\n },\n \"harness|hendrycksTest-astronomy|5\"\
: {\n \"acc\": 0.6776315789473685,\n \"acc_stderr\": 0.03803510248351585,\n\
\ \"acc_norm\": 0.6776315789473685,\n \"acc_norm_stderr\": 0.03803510248351585\n\
\ },\n \"harness|hendrycksTest-business_ethics|5\": {\n \"acc\": 0.56,\n\
\ \"acc_stderr\": 0.04988876515698589,\n \"acc_norm\": 0.56,\n \
\ \"acc_norm_stderr\": 0.04988876515698589\n },\n \"harness|hendrycksTest-clinical_knowledge|5\"\
: {\n \"acc\": 0.6264150943396226,\n \"acc_stderr\": 0.029773082713319875,\n\
\ \"acc_norm\": 0.6264150943396226,\n \"acc_norm_stderr\": 0.029773082713319875\n\
\ },\n \"harness|hendrycksTest-college_biology|5\": {\n \"acc\": 0.6597222222222222,\n\
\ \"acc_stderr\": 0.039621355734862175,\n \"acc_norm\": 0.6597222222222222,\n\
\ \"acc_norm_stderr\": 0.039621355734862175\n },\n \"harness|hendrycksTest-college_chemistry|5\"\
: {\n \"acc\": 0.4,\n \"acc_stderr\": 0.049236596391733084,\n \
\ \"acc_norm\": 0.4,\n \"acc_norm_stderr\": 0.049236596391733084\n \
\ },\n \"harness|hendrycksTest-college_computer_science|5\": {\n \"acc\"\
: 0.47,\n \"acc_stderr\": 0.05016135580465919,\n \"acc_norm\": 0.47,\n\
\ \"acc_norm_stderr\": 0.05016135580465919\n },\n \"harness|hendrycksTest-college_mathematics|5\"\
: {\n \"acc\": 0.35,\n \"acc_stderr\": 0.0479372485441102,\n \
\ \"acc_norm\": 0.35,\n \"acc_norm_stderr\": 0.0479372485441102\n },\n\
\ \"harness|hendrycksTest-college_medicine|5\": {\n \"acc\": 0.5895953757225434,\n\
\ \"acc_stderr\": 0.03750757044895537,\n \"acc_norm\": 0.5895953757225434,\n\
\ \"acc_norm_stderr\": 0.03750757044895537\n },\n \"harness|hendrycksTest-college_physics|5\"\
: {\n \"acc\": 0.38235294117647056,\n \"acc_stderr\": 0.04835503696107223,\n\
\ \"acc_norm\": 0.38235294117647056,\n \"acc_norm_stderr\": 0.04835503696107223\n\
\ },\n \"harness|hendrycksTest-computer_security|5\": {\n \"acc\":\
\ 0.79,\n \"acc_stderr\": 0.040936018074033256,\n \"acc_norm\": 0.79,\n\
\ \"acc_norm_stderr\": 0.040936018074033256\n },\n \"harness|hendrycksTest-conceptual_physics|5\"\
: {\n \"acc\": 0.5702127659574469,\n \"acc_stderr\": 0.03236214467715563,\n\
\ \"acc_norm\": 0.5702127659574469,\n \"acc_norm_stderr\": 0.03236214467715563\n\
\ },\n \"harness|hendrycksTest-econometrics|5\": {\n \"acc\": 0.37719298245614036,\n\
\ \"acc_stderr\": 0.04559522141958216,\n \"acc_norm\": 0.37719298245614036,\n\
\ \"acc_norm_stderr\": 0.04559522141958216\n },\n \"harness|hendrycksTest-electrical_engineering|5\"\
: {\n \"acc\": 0.5103448275862069,\n \"acc_stderr\": 0.04165774775728762,\n\
\ \"acc_norm\": 0.5103448275862069,\n \"acc_norm_stderr\": 0.04165774775728762\n\
\ },\n \"harness|hendrycksTest-elementary_mathematics|5\": {\n \"acc\"\
: 0.3835978835978836,\n \"acc_stderr\": 0.0250437573185202,\n \"acc_norm\"\
: 0.3835978835978836,\n \"acc_norm_stderr\": 0.0250437573185202\n },\n\
\ \"harness|hendrycksTest-formal_logic|5\": {\n \"acc\": 0.3333333333333333,\n\
\ \"acc_stderr\": 0.04216370213557835,\n \"acc_norm\": 0.3333333333333333,\n\
\ \"acc_norm_stderr\": 0.04216370213557835\n },\n \"harness|hendrycksTest-global_facts|5\"\
: {\n \"acc\": 0.37,\n \"acc_stderr\": 0.04852365870939099,\n \
\ \"acc_norm\": 0.37,\n \"acc_norm_stderr\": 0.04852365870939099\n \
\ },\n \"harness|hendrycksTest-high_school_biology|5\": {\n \"acc\": 0.7322580645161291,\n\
\ \"acc_stderr\": 0.02518900666021238,\n \"acc_norm\": 0.7322580645161291,\n\
\ \"acc_norm_stderr\": 0.02518900666021238\n },\n \"harness|hendrycksTest-high_school_chemistry|5\"\
: {\n \"acc\": 0.3793103448275862,\n \"acc_stderr\": 0.034139638059062345,\n\
\ \"acc_norm\": 0.3793103448275862,\n \"acc_norm_stderr\": 0.034139638059062345\n\
\ },\n \"harness|hendrycksTest-high_school_computer_science|5\": {\n \
\ \"acc\": 0.64,\n \"acc_stderr\": 0.048241815132442176,\n \"acc_norm\"\
: 0.64,\n \"acc_norm_stderr\": 0.048241815132442176\n },\n \"harness|hendrycksTest-high_school_european_history|5\"\
: {\n \"acc\": 0.7696969696969697,\n \"acc_stderr\": 0.032876667586034906,\n\
\ \"acc_norm\": 0.7696969696969697,\n \"acc_norm_stderr\": 0.032876667586034906\n\
\ },\n \"harness|hendrycksTest-high_school_geography|5\": {\n \"acc\"\
: 0.7777777777777778,\n \"acc_stderr\": 0.029620227874790482,\n \"\
acc_norm\": 0.7777777777777778,\n \"acc_norm_stderr\": 0.029620227874790482\n\
\ },\n \"harness|hendrycksTest-high_school_government_and_politics|5\": {\n\
\ \"acc\": 0.8808290155440415,\n \"acc_stderr\": 0.02338193534812143,\n\
\ \"acc_norm\": 0.8808290155440415,\n \"acc_norm_stderr\": 0.02338193534812143\n\
\ },\n \"harness|hendrycksTest-high_school_macroeconomics|5\": {\n \
\ \"acc\": 0.6102564102564103,\n \"acc_stderr\": 0.024726967886647078,\n\
\ \"acc_norm\": 0.6102564102564103,\n \"acc_norm_stderr\": 0.024726967886647078\n\
\ },\n \"harness|hendrycksTest-high_school_mathematics|5\": {\n \"\
acc\": 0.26296296296296295,\n \"acc_stderr\": 0.02684205787383371,\n \
\ \"acc_norm\": 0.26296296296296295,\n \"acc_norm_stderr\": 0.02684205787383371\n\
\ },\n \"harness|hendrycksTest-high_school_microeconomics|5\": {\n \
\ \"acc\": 0.6260504201680672,\n \"acc_stderr\": 0.03142946637883708,\n \
\ \"acc_norm\": 0.6260504201680672,\n \"acc_norm_stderr\": 0.03142946637883708\n\
\ },\n \"harness|hendrycksTest-high_school_physics|5\": {\n \"acc\"\
: 0.3509933774834437,\n \"acc_stderr\": 0.03896981964257375,\n \"\
acc_norm\": 0.3509933774834437,\n \"acc_norm_stderr\": 0.03896981964257375\n\
\ },\n \"harness|hendrycksTest-high_school_psychology|5\": {\n \"acc\"\
: 0.8036697247706422,\n \"acc_stderr\": 0.017030719339154333,\n \"\
acc_norm\": 0.8036697247706422,\n \"acc_norm_stderr\": 0.017030719339154333\n\
\ },\n \"harness|hendrycksTest-high_school_statistics|5\": {\n \"acc\"\
: 0.49537037037037035,\n \"acc_stderr\": 0.03409825519163572,\n \"\
acc_norm\": 0.49537037037037035,\n \"acc_norm_stderr\": 0.03409825519163572\n\
\ },\n \"harness|hendrycksTest-high_school_us_history|5\": {\n \"acc\"\
: 0.8088235294117647,\n \"acc_stderr\": 0.02759917430064077,\n \"\
acc_norm\": 0.8088235294117647,\n \"acc_norm_stderr\": 0.02759917430064077\n\
\ },\n \"harness|hendrycksTest-high_school_world_history|5\": {\n \"\
acc\": 0.8185654008438819,\n \"acc_stderr\": 0.025085961144579654,\n \
\ \"acc_norm\": 0.8185654008438819,\n \"acc_norm_stderr\": 0.025085961144579654\n\
\ },\n \"harness|hendrycksTest-human_aging|5\": {\n \"acc\": 0.6636771300448431,\n\
\ \"acc_stderr\": 0.031708824268455,\n \"acc_norm\": 0.6636771300448431,\n\
\ \"acc_norm_stderr\": 0.031708824268455\n },\n \"harness|hendrycksTest-human_sexuality|5\"\
: {\n \"acc\": 0.6870229007633588,\n \"acc_stderr\": 0.04066962905677698,\n\
\ \"acc_norm\": 0.6870229007633588,\n \"acc_norm_stderr\": 0.04066962905677698\n\
\ },\n \"harness|hendrycksTest-international_law|5\": {\n \"acc\":\
\ 0.7851239669421488,\n \"acc_stderr\": 0.037494924487096966,\n \"\
acc_norm\": 0.7851239669421488,\n \"acc_norm_stderr\": 0.037494924487096966\n\
\ },\n \"harness|hendrycksTest-jurisprudence|5\": {\n \"acc\": 0.7037037037037037,\n\
\ \"acc_stderr\": 0.044143436668549335,\n \"acc_norm\": 0.7037037037037037,\n\
\ \"acc_norm_stderr\": 0.044143436668549335\n },\n \"harness|hendrycksTest-logical_fallacies|5\"\
: {\n \"acc\": 0.7423312883435583,\n \"acc_stderr\": 0.03436150827846917,\n\
\ \"acc_norm\": 0.7423312883435583,\n \"acc_norm_stderr\": 0.03436150827846917\n\
\ },\n \"harness|hendrycksTest-machine_learning|5\": {\n \"acc\": 0.39285714285714285,\n\
\ \"acc_stderr\": 0.04635550135609976,\n \"acc_norm\": 0.39285714285714285,\n\
\ \"acc_norm_stderr\": 0.04635550135609976\n },\n \"harness|hendrycksTest-management|5\"\
: {\n \"acc\": 0.7281553398058253,\n \"acc_stderr\": 0.044052680241409216,\n\
\ \"acc_norm\": 0.7281553398058253,\n \"acc_norm_stderr\": 0.044052680241409216\n\
\ },\n \"harness|hendrycksTest-marketing|5\": {\n \"acc\": 0.8675213675213675,\n\
\ \"acc_stderr\": 0.022209309073165616,\n \"acc_norm\": 0.8675213675213675,\n\
\ \"acc_norm_stderr\": 0.022209309073165616\n },\n \"harness|hendrycksTest-medical_genetics|5\"\
: {\n \"acc\": 0.66,\n \"acc_stderr\": 0.04760952285695237,\n \
\ \"acc_norm\": 0.66,\n \"acc_norm_stderr\": 0.04760952285695237\n \
\ },\n \"harness|hendrycksTest-miscellaneous|5\": {\n \"acc\": 0.7994891443167306,\n\
\ \"acc_stderr\": 0.014317653708594207,\n \"acc_norm\": 0.7994891443167306,\n\
\ \"acc_norm_stderr\": 0.014317653708594207\n },\n \"harness|hendrycksTest-moral_disputes|5\"\
: {\n \"acc\": 0.6907514450867052,\n \"acc_stderr\": 0.02488314057007176,\n\
\ \"acc_norm\": 0.6907514450867052,\n \"acc_norm_stderr\": 0.02488314057007176\n\
\ },\n \"harness|hendrycksTest-moral_scenarios|5\": {\n \"acc\": 0.34413407821229053,\n\
\ \"acc_stderr\": 0.015889221313307094,\n \"acc_norm\": 0.34413407821229053,\n\
\ \"acc_norm_stderr\": 0.015889221313307094\n },\n \"harness|hendrycksTest-nutrition|5\"\
: {\n \"acc\": 0.6405228758169934,\n \"acc_stderr\": 0.027475969910660952,\n\
\ \"acc_norm\": 0.6405228758169934,\n \"acc_norm_stderr\": 0.027475969910660952\n\
\ },\n \"harness|hendrycksTest-philosophy|5\": {\n \"acc\": 0.7106109324758842,\n\
\ \"acc_stderr\": 0.025755865922632945,\n \"acc_norm\": 0.7106109324758842,\n\
\ \"acc_norm_stderr\": 0.025755865922632945\n },\n \"harness|hendrycksTest-prehistory|5\"\
: {\n \"acc\": 0.7314814814814815,\n \"acc_stderr\": 0.024659685185967294,\n\
\ \"acc_norm\": 0.7314814814814815,\n \"acc_norm_stderr\": 0.024659685185967294\n\
\ },\n \"harness|hendrycksTest-professional_accounting|5\": {\n \"\
acc\": 0.4716312056737589,\n \"acc_stderr\": 0.029779450957303062,\n \
\ \"acc_norm\": 0.4716312056737589,\n \"acc_norm_stderr\": 0.029779450957303062\n\
\ },\n \"harness|hendrycksTest-professional_law|5\": {\n \"acc\": 0.4654498044328553,\n\
\ \"acc_stderr\": 0.012739711554045708,\n \"acc_norm\": 0.4654498044328553,\n\
\ \"acc_norm_stderr\": 0.012739711554045708\n },\n \"harness|hendrycksTest-professional_medicine|5\"\
: {\n \"acc\": 0.5808823529411765,\n \"acc_stderr\": 0.029972807170464622,\n\
\ \"acc_norm\": 0.5808823529411765,\n \"acc_norm_stderr\": 0.029972807170464622\n\
\ },\n \"harness|hendrycksTest-professional_psychology|5\": {\n \"\
acc\": 0.6666666666666666,\n \"acc_stderr\": 0.0190709855896875,\n \
\ \"acc_norm\": 0.6666666666666666,\n \"acc_norm_stderr\": 0.0190709855896875\n\
\ },\n \"harness|hendrycksTest-public_relations|5\": {\n \"acc\": 0.7,\n\
\ \"acc_stderr\": 0.04389311454644287,\n \"acc_norm\": 0.7,\n \
\ \"acc_norm_stderr\": 0.04389311454644287\n },\n \"harness|hendrycksTest-security_studies|5\"\
: {\n \"acc\": 0.6979591836734694,\n \"acc_stderr\": 0.0293936093198798,\n\
\ \"acc_norm\": 0.6979591836734694,\n \"acc_norm_stderr\": 0.0293936093198798\n\
\ },\n \"harness|hendrycksTest-sociology|5\": {\n \"acc\": 0.8557213930348259,\n\
\ \"acc_stderr\": 0.024845753212306046,\n \"acc_norm\": 0.8557213930348259,\n\
\ \"acc_norm_stderr\": 0.024845753212306046\n },\n \"harness|hendrycksTest-us_foreign_policy|5\"\
: {\n \"acc\": 0.87,\n \"acc_stderr\": 0.033799766898963086,\n \
\ \"acc_norm\": 0.87,\n \"acc_norm_stderr\": 0.033799766898963086\n \
\ },\n \"harness|hendrycksTest-virology|5\": {\n \"acc\": 0.5301204819277109,\n\
\ \"acc_stderr\": 0.03885425420866767,\n \"acc_norm\": 0.5301204819277109,\n\
\ \"acc_norm_stderr\": 0.03885425420866767\n },\n \"harness|hendrycksTest-world_religions|5\"\
: {\n \"acc\": 0.8128654970760234,\n \"acc_stderr\": 0.029913127232368036,\n\
\ \"acc_norm\": 0.8128654970760234,\n \"acc_norm_stderr\": 0.029913127232368036\n\
\ },\n \"harness|truthfulqa:mc|0\": {\n \"mc1\": 0.3072215422276622,\n\
\ \"mc1_stderr\": 0.016150201321323013,\n \"mc2\": 0.4474047797612128,\n\
\ \"mc2_stderr\": 0.014194757681816514\n }\n}\n```"
repo_url: https://huggingface.co/OptimalScale/robin-65b-v2-delta
leaderboard_url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard
point_of_contact: [email protected]
configs:
- config_name: harness_arc_challenge_25
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|arc:challenge|25_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|arc:challenge|25_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hellaswag_10
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hellaswag|10_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hellaswag|10_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-anatomy|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-astronomy|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-business_ethics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-college_biology|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-college_medicine|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-college_physics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-computer_security|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-econometrics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-formal_logic|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-global_facts|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-human_aging|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-international_law|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-machine_learning|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-management|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-marketing|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-nutrition|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-philosophy|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-prehistory|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-professional_law|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-public_relations|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-security_studies|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-sociology|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-virology|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-world_religions|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-anatomy|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-astronomy|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-business_ethics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-college_biology|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-college_medicine|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-college_physics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-computer_security|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-econometrics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-formal_logic|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-global_facts|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-human_aging|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-international_law|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-machine_learning|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-management|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-marketing|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-nutrition|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-philosophy|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-prehistory|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-professional_law|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-public_relations|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-security_studies|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-sociology|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-virology|5_2023-08-08T22:36:48.972258.parquet'
- '**/details_harness|hendrycksTest-world_religions|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_abstract_algebra_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_anatomy_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-anatomy|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-anatomy|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_astronomy_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-astronomy|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-astronomy|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_business_ethics_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-business_ethics|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-business_ethics|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_clinical_knowledge_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_college_biology_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-college_biology|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_biology|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_college_chemistry_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_college_computer_science_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_college_mathematics_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_college_medicine_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-college_medicine|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_medicine|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_college_physics_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-college_physics|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_physics|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_computer_security_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-computer_security|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-computer_security|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_conceptual_physics_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_econometrics_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-econometrics|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-econometrics|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_electrical_engineering_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_elementary_mathematics_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_formal_logic_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-formal_logic|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-formal_logic|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_global_facts_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-global_facts|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-global_facts|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_high_school_biology_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_high_school_chemistry_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_high_school_computer_science_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_high_school_european_history_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_high_school_geography_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_high_school_government_and_politics_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_high_school_macroeconomics_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_high_school_mathematics_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_high_school_microeconomics_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_high_school_physics_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_high_school_psychology_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_high_school_statistics_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_high_school_us_history_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_high_school_world_history_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_human_aging_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-human_aging|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-human_aging|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_human_sexuality_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_international_law_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-international_law|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-international_law|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_jurisprudence_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_logical_fallacies_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_machine_learning_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-machine_learning|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-machine_learning|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_management_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-management|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-management|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_marketing_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-marketing|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-marketing|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_medical_genetics_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_miscellaneous_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_moral_disputes_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_moral_scenarios_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_nutrition_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-nutrition|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-nutrition|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_philosophy_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-philosophy|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-philosophy|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_prehistory_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-prehistory|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-prehistory|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_professional_accounting_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_professional_law_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-professional_law|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_law|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_professional_medicine_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_professional_psychology_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_public_relations_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-public_relations|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-public_relations|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_security_studies_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-security_studies|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-security_studies|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_sociology_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-sociology|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-sociology|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_us_foreign_policy_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_virology_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-virology|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-virology|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_hendrycksTest_world_religions_5
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|hendrycksTest-world_religions|5_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-world_religions|5_2023-08-08T22:36:48.972258.parquet'
- config_name: harness_truthfulqa_mc_0
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- '**/details_harness|truthfulqa:mc|0_2023-08-08T22:36:48.972258.parquet'
- split: latest
path:
- '**/details_harness|truthfulqa:mc|0_2023-08-08T22:36:48.972258.parquet'
- config_name: results
data_files:
- split: 2023_08_08T22_36_48.972258
path:
- results_2023-08-08T22:36:48.972258.parquet
- split: latest
path:
- results_2023-08-08T22:36:48.972258.parquet
---
# Dataset Card for Evaluation run of OptimalScale/robin-65b-v2-delta
## Dataset Description
- **Homepage:**
- **Repository:** https://huggingface.co/OptimalScale/robin-65b-v2-delta
- **Paper:**
- **Leaderboard:** https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard
- **Point of Contact:** [email protected]
### Dataset Summary
Dataset automatically created during the evaluation run of model [OptimalScale/robin-65b-v2-delta](https://huggingface.co/OptimalScale/robin-65b-v2-delta) on the [Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard).
The dataset is composed of 61 configuration, each one coresponding to one of the evaluated task.
The dataset has been created from 1 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_OptimalScale__robin-65b-v2-delta",
"harness_truthfulqa_mc_0",
split="train")
```
## Latest results
These are the [latest results from run 2023-08-08T22:36:48.972258](https://huggingface.co/datasets/open-llm-leaderboard/details_OptimalScale__robin-65b-v2-delta/blob/main/results_2023-08-08T22%3A36%3A48.972258.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.6078684635354565,
"acc_stderr": 0.03335692759261142,
"acc_norm": 0.6117336666004985,
"acc_norm_stderr": 0.03333764223356639,
"mc1": 0.3072215422276622,
"mc1_stderr": 0.016150201321323013,
"mc2": 0.4474047797612128,
"mc2_stderr": 0.014194757681816514
},
"harness|arc:challenge|25": {
"acc": 0.5819112627986348,
"acc_stderr": 0.014413988396996074,
"acc_norm": 0.6075085324232082,
"acc_norm_stderr": 0.014269634635670731
},
"harness|hellaswag|10": {
"acc": 0.6137223660625374,
"acc_stderr": 0.004859004184694605,
"acc_norm": 0.8161720772754432,
"acc_norm_stderr": 0.0038655217623631624
},
"harness|hendrycksTest-abstract_algebra|5": {
"acc": 0.3,
"acc_stderr": 0.046056618647183814,
"acc_norm": 0.3,
"acc_norm_stderr": 0.046056618647183814
},
"harness|hendrycksTest-anatomy|5": {
"acc": 0.562962962962963,
"acc_stderr": 0.04284958639753401,
"acc_norm": 0.562962962962963,
"acc_norm_stderr": 0.04284958639753401
},
"harness|hendrycksTest-astronomy|5": {
"acc": 0.6776315789473685,
"acc_stderr": 0.03803510248351585,
"acc_norm": 0.6776315789473685,
"acc_norm_stderr": 0.03803510248351585
},
"harness|hendrycksTest-business_ethics|5": {
"acc": 0.56,
"acc_stderr": 0.04988876515698589,
"acc_norm": 0.56,
"acc_norm_stderr": 0.04988876515698589
},
"harness|hendrycksTest-clinical_knowledge|5": {
"acc": 0.6264150943396226,
"acc_stderr": 0.029773082713319875,
"acc_norm": 0.6264150943396226,
"acc_norm_stderr": 0.029773082713319875
},
"harness|hendrycksTest-college_biology|5": {
"acc": 0.6597222222222222,
"acc_stderr": 0.039621355734862175,
"acc_norm": 0.6597222222222222,
"acc_norm_stderr": 0.039621355734862175
},
"harness|hendrycksTest-college_chemistry|5": {
"acc": 0.4,
"acc_stderr": 0.049236596391733084,
"acc_norm": 0.4,
"acc_norm_stderr": 0.049236596391733084
},
"harness|hendrycksTest-college_computer_science|5": {
"acc": 0.47,
"acc_stderr": 0.05016135580465919,
"acc_norm": 0.47,
"acc_norm_stderr": 0.05016135580465919
},
"harness|hendrycksTest-college_mathematics|5": {
"acc": 0.35,
"acc_stderr": 0.0479372485441102,
"acc_norm": 0.35,
"acc_norm_stderr": 0.0479372485441102
},
"harness|hendrycksTest-college_medicine|5": {
"acc": 0.5895953757225434,
"acc_stderr": 0.03750757044895537,
"acc_norm": 0.5895953757225434,
"acc_norm_stderr": 0.03750757044895537
},
"harness|hendrycksTest-college_physics|5": {
"acc": 0.38235294117647056,
"acc_stderr": 0.04835503696107223,
"acc_norm": 0.38235294117647056,
"acc_norm_stderr": 0.04835503696107223
},
"harness|hendrycksTest-computer_security|5": {
"acc": 0.79,
"acc_stderr": 0.040936018074033256,
"acc_norm": 0.79,
"acc_norm_stderr": 0.040936018074033256
},
"harness|hendrycksTest-conceptual_physics|5": {
"acc": 0.5702127659574469,
"acc_stderr": 0.03236214467715563,
"acc_norm": 0.5702127659574469,
"acc_norm_stderr": 0.03236214467715563
},
"harness|hendrycksTest-econometrics|5": {
"acc": 0.37719298245614036,
"acc_stderr": 0.04559522141958216,
"acc_norm": 0.37719298245614036,
"acc_norm_stderr": 0.04559522141958216
},
"harness|hendrycksTest-electrical_engineering|5": {
"acc": 0.5103448275862069,
"acc_stderr": 0.04165774775728762,
"acc_norm": 0.5103448275862069,
"acc_norm_stderr": 0.04165774775728762
},
"harness|hendrycksTest-elementary_mathematics|5": {
"acc": 0.3835978835978836,
"acc_stderr": 0.0250437573185202,
"acc_norm": 0.3835978835978836,
"acc_norm_stderr": 0.0250437573185202
},
"harness|hendrycksTest-formal_logic|5": {
"acc": 0.3333333333333333,
"acc_stderr": 0.04216370213557835,
"acc_norm": 0.3333333333333333,
"acc_norm_stderr": 0.04216370213557835
},
"harness|hendrycksTest-global_facts|5": {
"acc": 0.37,
"acc_stderr": 0.04852365870939099,
"acc_norm": 0.37,
"acc_norm_stderr": 0.04852365870939099
},
"harness|hendrycksTest-high_school_biology|5": {
"acc": 0.7322580645161291,
"acc_stderr": 0.02518900666021238,
"acc_norm": 0.7322580645161291,
"acc_norm_stderr": 0.02518900666021238
},
"harness|hendrycksTest-high_school_chemistry|5": {
"acc": 0.3793103448275862,
"acc_stderr": 0.034139638059062345,
"acc_norm": 0.3793103448275862,
"acc_norm_stderr": 0.034139638059062345
},
"harness|hendrycksTest-high_school_computer_science|5": {
"acc": 0.64,
"acc_stderr": 0.048241815132442176,
"acc_norm": 0.64,
"acc_norm_stderr": 0.048241815132442176
},
"harness|hendrycksTest-high_school_european_history|5": {
"acc": 0.7696969696969697,
"acc_stderr": 0.032876667586034906,
"acc_norm": 0.7696969696969697,
"acc_norm_stderr": 0.032876667586034906
},
"harness|hendrycksTest-high_school_geography|5": {
"acc": 0.7777777777777778,
"acc_stderr": 0.029620227874790482,
"acc_norm": 0.7777777777777778,
"acc_norm_stderr": 0.029620227874790482
},
"harness|hendrycksTest-high_school_government_and_politics|5": {
"acc": 0.8808290155440415,
"acc_stderr": 0.02338193534812143,
"acc_norm": 0.8808290155440415,
"acc_norm_stderr": 0.02338193534812143
},
"harness|hendrycksTest-high_school_macroeconomics|5": {
"acc": 0.6102564102564103,
"acc_stderr": 0.024726967886647078,
"acc_norm": 0.6102564102564103,
"acc_norm_stderr": 0.024726967886647078
},
"harness|hendrycksTest-high_school_mathematics|5": {
"acc": 0.26296296296296295,
"acc_stderr": 0.02684205787383371,
"acc_norm": 0.26296296296296295,
"acc_norm_stderr": 0.02684205787383371
},
"harness|hendrycksTest-high_school_microeconomics|5": {
"acc": 0.6260504201680672,
"acc_stderr": 0.03142946637883708,
"acc_norm": 0.6260504201680672,
"acc_norm_stderr": 0.03142946637883708
},
"harness|hendrycksTest-high_school_physics|5": {
"acc": 0.3509933774834437,
"acc_stderr": 0.03896981964257375,
"acc_norm": 0.3509933774834437,
"acc_norm_stderr": 0.03896981964257375
},
"harness|hendrycksTest-high_school_psychology|5": {
"acc": 0.8036697247706422,
"acc_stderr": 0.017030719339154333,
"acc_norm": 0.8036697247706422,
"acc_norm_stderr": 0.017030719339154333
},
"harness|hendrycksTest-high_school_statistics|5": {
"acc": 0.49537037037037035,
"acc_stderr": 0.03409825519163572,
"acc_norm": 0.49537037037037035,
"acc_norm_stderr": 0.03409825519163572
},
"harness|hendrycksTest-high_school_us_history|5": {
"acc": 0.8088235294117647,
"acc_stderr": 0.02759917430064077,
"acc_norm": 0.8088235294117647,
"acc_norm_stderr": 0.02759917430064077
},
"harness|hendrycksTest-high_school_world_history|5": {
"acc": 0.8185654008438819,
"acc_stderr": 0.025085961144579654,
"acc_norm": 0.8185654008438819,
"acc_norm_stderr": 0.025085961144579654
},
"harness|hendrycksTest-human_aging|5": {
"acc": 0.6636771300448431,
"acc_stderr": 0.031708824268455,
"acc_norm": 0.6636771300448431,
"acc_norm_stderr": 0.031708824268455
},
"harness|hendrycksTest-human_sexuality|5": {
"acc": 0.6870229007633588,
"acc_stderr": 0.04066962905677698,
"acc_norm": 0.6870229007633588,
"acc_norm_stderr": 0.04066962905677698
},
"harness|hendrycksTest-international_law|5": {
"acc": 0.7851239669421488,
"acc_stderr": 0.037494924487096966,
"acc_norm": 0.7851239669421488,
"acc_norm_stderr": 0.037494924487096966
},
"harness|hendrycksTest-jurisprudence|5": {
"acc": 0.7037037037037037,
"acc_stderr": 0.044143436668549335,
"acc_norm": 0.7037037037037037,
"acc_norm_stderr": 0.044143436668549335
},
"harness|hendrycksTest-logical_fallacies|5": {
"acc": 0.7423312883435583,
"acc_stderr": 0.03436150827846917,
"acc_norm": 0.7423312883435583,
"acc_norm_stderr": 0.03436150827846917
},
"harness|hendrycksTest-machine_learning|5": {
"acc": 0.39285714285714285,
"acc_stderr": 0.04635550135609976,
"acc_norm": 0.39285714285714285,
"acc_norm_stderr": 0.04635550135609976
},
"harness|hendrycksTest-management|5": {
"acc": 0.7281553398058253,
"acc_stderr": 0.044052680241409216,
"acc_norm": 0.7281553398058253,
"acc_norm_stderr": 0.044052680241409216
},
"harness|hendrycksTest-marketing|5": {
"acc": 0.8675213675213675,
"acc_stderr": 0.022209309073165616,
"acc_norm": 0.8675213675213675,
"acc_norm_stderr": 0.022209309073165616
},
"harness|hendrycksTest-medical_genetics|5": {
"acc": 0.66,
"acc_stderr": 0.04760952285695237,
"acc_norm": 0.66,
"acc_norm_stderr": 0.04760952285695237
},
"harness|hendrycksTest-miscellaneous|5": {
"acc": 0.7994891443167306,
"acc_stderr": 0.014317653708594207,
"acc_norm": 0.7994891443167306,
"acc_norm_stderr": 0.014317653708594207
},
"harness|hendrycksTest-moral_disputes|5": {
"acc": 0.6907514450867052,
"acc_stderr": 0.02488314057007176,
"acc_norm": 0.6907514450867052,
"acc_norm_stderr": 0.02488314057007176
},
"harness|hendrycksTest-moral_scenarios|5": {
"acc": 0.34413407821229053,
"acc_stderr": 0.015889221313307094,
"acc_norm": 0.34413407821229053,
"acc_norm_stderr": 0.015889221313307094
},
"harness|hendrycksTest-nutrition|5": {
"acc": 0.6405228758169934,
"acc_stderr": 0.027475969910660952,
"acc_norm": 0.6405228758169934,
"acc_norm_stderr": 0.027475969910660952
},
"harness|hendrycksTest-philosophy|5": {
"acc": 0.7106109324758842,
"acc_stderr": 0.025755865922632945,
"acc_norm": 0.7106109324758842,
"acc_norm_stderr": 0.025755865922632945
},
"harness|hendrycksTest-prehistory|5": {
"acc": 0.7314814814814815,
"acc_stderr": 0.024659685185967294,
"acc_norm": 0.7314814814814815,
"acc_norm_stderr": 0.024659685185967294
},
"harness|hendrycksTest-professional_accounting|5": {
"acc": 0.4716312056737589,
"acc_stderr": 0.029779450957303062,
"acc_norm": 0.4716312056737589,
"acc_norm_stderr": 0.029779450957303062
},
"harness|hendrycksTest-professional_law|5": {
"acc": 0.4654498044328553,
"acc_stderr": 0.012739711554045708,
"acc_norm": 0.4654498044328553,
"acc_norm_stderr": 0.012739711554045708
},
"harness|hendrycksTest-professional_medicine|5": {
"acc": 0.5808823529411765,
"acc_stderr": 0.029972807170464622,
"acc_norm": 0.5808823529411765,
"acc_norm_stderr": 0.029972807170464622
},
"harness|hendrycksTest-professional_psychology|5": {
"acc": 0.6666666666666666,
"acc_stderr": 0.0190709855896875,
"acc_norm": 0.6666666666666666,
"acc_norm_stderr": 0.0190709855896875
},
"harness|hendrycksTest-public_relations|5": {
"acc": 0.7,
"acc_stderr": 0.04389311454644287,
"acc_norm": 0.7,
"acc_norm_stderr": 0.04389311454644287
},
"harness|hendrycksTest-security_studies|5": {
"acc": 0.6979591836734694,
"acc_stderr": 0.0293936093198798,
"acc_norm": 0.6979591836734694,
"acc_norm_stderr": 0.0293936093198798
},
"harness|hendrycksTest-sociology|5": {
"acc": 0.8557213930348259,
"acc_stderr": 0.024845753212306046,
"acc_norm": 0.8557213930348259,
"acc_norm_stderr": 0.024845753212306046
},
"harness|hendrycksTest-us_foreign_policy|5": {
"acc": 0.87,
"acc_stderr": 0.033799766898963086,
"acc_norm": 0.87,
"acc_norm_stderr": 0.033799766898963086
},
"harness|hendrycksTest-virology|5": {
"acc": 0.5301204819277109,
"acc_stderr": 0.03885425420866767,
"acc_norm": 0.5301204819277109,
"acc_norm_stderr": 0.03885425420866767
},
"harness|hendrycksTest-world_religions|5": {
"acc": 0.8128654970760234,
"acc_stderr": 0.029913127232368036,
"acc_norm": 0.8128654970760234,
"acc_norm_stderr": 0.029913127232368036
},
"harness|truthfulqa:mc|0": {
"mc1": 0.3072215422276622,
"mc1_stderr": 0.016150201321323013,
"mc2": 0.4474047797612128,
"mc2_stderr": 0.014194757681816514
}
}
```
### 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] | [
-0.7590479254722595,
-0.8888944387435913,
0.29204750061035156,
0.16858291625976562,
-0.16407136619091034,
-0.08743587136268616,
0.0008682709303684533,
-0.20506075024604797,
0.5856422781944275,
-0.07567957788705826,
-0.5195001363754272,
-0.6683682203292847,
-0.4348374903202057,
0.22246500849723816,
-0.01432773843407631,
0.8213286995887756,
-0.1646786481142044,
-0.14438867568969727,
0.09948112070560455,
-0.039549704641103745,
-0.2161901593208313,
-0.3152431845664978,
-0.5339061617851257,
-0.31108585000038147,
0.1837126761674881,
0.4783858358860016,
0.4512600600719452,
0.8624685406684875,
0.706838071346283,
0.30014052987098694,
-0.2879659831523895,
-0.028941724449396133,
-0.15622632205486298,
-0.27910929918289185,
0.43273401260375977,
-0.3269665241241455,
-0.8572039008140564,
0.29063114523887634,
0.7896988987922668,
0.6295880079269409,
-0.0920926034450531,
0.32908040285110474,
0.021242380142211914,
0.6661078929901123,
-0.3575383424758911,
0.07968707382678986,
-0.29339903593063354,
0.2025328278541565,
-0.18402771651744843,
-0.27723103761672974,
-0.28310155868530273,
-0.25040310621261597,
-0.15618939697742462,
-0.8256892561912537,
0.25969600677490234,
0.32400625944137573,
1.570002794265747,
-0.1266428381204605,
-0.26629674434661865,
0.09534981101751328,
-0.1162281259894371,
1.0354030132293701,
-0.8543914556503296,
0.3581097424030304,
0.769485592842102,
0.1726086139678955,
-0.13778536021709442,
-0.5890238881111145,
-0.6352280378341675,
0.10969500988721848,
-0.34260502457618713,
0.3485950231552124,
-0.13289766013622284,
-0.16140957176685333,
0.3763127028942108,
0.6297580599784851,
-0.6185212135314941,
0.18013422191143036,
-0.631712019443512,
-0.15767960250377655,
1.0783549547195435,
0.31674233078956604,
0.0645364448428154,
-0.3673473298549652,
-0.6720297336578369,
-0.6838085651397705,
-0.3552883565425873,
0.31986021995544434,
0.4236065149307251,
0.4001469314098358,
-0.38608068227767944,
0.6832461953163147,
-0.40073665976524353,
0.6044280529022217,
0.4677090644836426,
0.030147794634103775,
0.8839015960693359,
-0.64068603515625,
-0.5559910535812378,
-0.08539162576198578,
1.1051738262176514,
0.5763882398605347,
0.06025543808937073,
0.26728683710098267,
-0.014509630389511585,
-0.14857251942157745,
0.020137593150138855,
-0.840807318687439,
-0.26867762207984924,
0.21969689428806305,
-0.3892683982849121,
-0.49464014172554016,
0.3897397816181183,
-0.8715713024139404,
0.15572333335876465,
-0.05141672119498253,
0.4153151512145996,
-0.4936453104019165,
-0.11515314877033234,
0.19731253385543823,
-0.419796884059906,
0.8213781714439392,
-0.20305310189723969,
-0.8158760666847229,
0.38984405994415283,
0.48542946577072144,
0.7513352632522583,
-0.09670092165470123,
-0.38892823457717896,
-0.16114123165607452,
-0.11681358516216278,
-0.31465739011764526,
0.5236426591873169,
-0.2520253360271454,
-0.37336698174476624,
-0.2504711449146271,
0.2877660393714905,
-0.24265709519386292,
-0.36151593923568726,
0.7549386024475098,
-0.24689044058322906,
0.17888927459716797,
-0.47995486855506897,
-0.625809907913208,
0.12851688265800476,
0.3446747958660126,
-0.4470756947994232,
1.2618249654769897,
0.31740817427635193,
-0.8169560432434082,
0.4226970970630646,
-0.6207524538040161,
-0.19488848745822906,
-0.02422911860048771,
-0.03561443090438843,
-0.8272632360458374,
-0.2845177948474884,
0.19763030111789703,
0.42768949270248413,
-0.163801372051239,
-0.11926393210887909,
-0.3806750774383545,
-0.3409886956214905,
0.3089205324649811,
-0.1308697760105133,
1.2450109720230103,
-0.005051270592957735,
-0.788043737411499,
-0.053225014358758926,
-1.2258859872817993,
0.38938775658607483,
0.21781979501247406,
-0.37602341175079346,
-0.1630256623029709,
-0.481945276260376,
0.006891005206853151,
0.13381275534629822,
0.2922641932964325,
-0.7957208156585693,
0.21516093611717224,
-0.30121341347694397,
0.18474380671977997,
1.2847881317138672,
0.0358567014336586,
0.17231003940105438,
-0.6066089272499084,
0.5246356129646301,
0.18316498398780823,
0.24513450264930725,
0.4149119555950165,
-0.5545060038566589,
-0.7957397699356079,
-0.5196279287338257,
-0.0685243234038353,
0.6004079580307007,
-0.1973465085029602,
1.1881431341171265,
0.07568257302045822,
-0.8360925316810608,
-0.4240546226501465,
-0.14142946898937225,
0.46413731575012207,
0.7782760858535767,
0.6040719747543335,
-0.009729253128170967,
-0.6500096321105957,
-1.1833019256591797,
-0.296675443649292,
-0.1628798395395279,
0.10505910217761993,
0.22653229534626007,
1.011307954788208,
-0.26610347628593445,
0.6291404366493225,
-1.0245935916900635,
-0.2319549173116684,
0.1288539171218872,
-0.11396829038858414,
0.8090390563011169,
0.723385214805603,
0.6143282651901245,
-0.6671433448791504,
-0.5995673537254333,
0.18872730433940887,
-0.8510134816169739,
-0.10613542050123215,
0.09062665700912476,
-0.3149627447128296,
0.1736440509557724,
0.1451462060213089,
-0.6311267614364624,
0.4689416289329529,
0.225868821144104,
-1.0296934843063354,
1.040637493133545,
-0.3493618369102478,
0.5641462206840515,
-0.9625644087791443,
0.18814034759998322,
-0.00727179367095232,
0.019051309674978256,
-0.4936456084251404,
0.07772499322891235,
0.14414867758750916,
0.48992618918418884,
-0.449390172958374,
0.779822051525116,
-0.713115930557251,
-0.06571204215288162,
0.47230276465415955,
0.11952771246433258,
-0.18288177251815796,
0.3731623888015747,
-0.24125586450099945,
0.8157070279121399,
0.7332630157470703,
-0.45794156193733215,
0.5011001825332642,
0.34414389729499817,
-0.21025022864341736,
0.7352449893951416,
-0.5028178095817566,
-0.28985124826431274,
0.28110596537590027,
-0.07096951454877853,
-0.849811851978302,
-0.49772125482559204,
0.024301886558532715,
-0.5855090618133545,
-0.07407873868942261,
0.3850579857826233,
-0.27154284715652466,
-0.8270810842514038,
-0.9971826076507568,
0.28042250871658325,
0.7639884948730469,
-0.4390048086643219,
-0.17486922442913055,
0.11465393006801605,
0.09954833984375,
-0.8074286580085754,
-0.8280743956565857,
-0.5250605344772339,
-0.21029995381832123,
-0.7335825562477112,
0.2955418527126312,
-0.3029760718345642,
-0.30199989676475525,
-0.10987935215234756,
-0.26362869143486023,
-0.37943726778030396,
-0.045276474207639694,
0.09496986120939255,
0.6641998887062073,
-0.40640345215797424,
-0.32862892746925354,
-0.17299394309520721,
-0.16262246668338776,
0.24603819847106934,
-0.10797736048698425,
0.3628384470939636,
-0.5514421463012695,
-0.3724156618118286,
-0.4420894384384155,
0.007153437472879887,
0.7415961027145386,
-0.053992170840501785,
0.7382848262786865,
0.4352021813392639,
-0.29267868399620056,
-0.026494264602661133,
-0.33144184947013855,
-0.2799510955810547,
-0.5908275842666626,
0.3046634793281555,
-0.485782265663147,
-1.0193806886672974,
0.7733076214790344,
0.5272421836853027,
0.05798649415373802,
1.1643565893173218,
0.5661982297897339,
-0.34894901514053345,
0.9961398243904114,
0.08014707267284393,
0.34956881403923035,
0.41219109296798706,
-0.7140873074531555,
0.09740523248910904,
-0.9516871571540833,
-0.2793926000595093,
-0.5603280067443848,
-0.5045256018638611,
-0.7159397006034851,
-0.05867711827158928,
0.34641021490097046,
0.14852000772953033,
-0.7522480487823486,
0.5642222166061401,
-0.8299403786659241,
0.5922258496284485,
0.6152082085609436,
0.30391010642051697,
0.13270661234855652,
-0.11559823155403137,
-0.40676671266555786,
-0.13847094774246216,
-0.5126850605010986,
-0.2342700958251953,
1.2248090505599976,
0.2566465139389038,
0.6685358285903931,
0.09657523036003113,
0.8991618156433105,
0.1167493686079979,
-0.09252385050058365,
-0.5881631970405579,
0.6364395022392273,
0.10548710078001022,
-0.8066907525062561,
-0.48715871572494507,
-0.5216777920722961,
-1.0958304405212402,
0.3771462142467499,
-0.1497717648744583,
-0.8176525235176086,
0.1036543995141983,
0.03305000066757202,
-0.19045007228851318,
0.5199648141860962,
-0.5513783693313599,
0.8080386519432068,
-0.13489900529384613,
-0.48505905270576477,
0.11010929942131042,
-0.8556876182556152,
0.45622706413269043,
0.15639086067676544,
0.31069499254226685,
0.10964635759592056,
0.23263639211654663,
1.1589298248291016,
-0.8604695796966553,
0.421440988779068,
0.06590277701616287,
0.08116317540407181,
0.3460755944252014,
-0.1698146015405655,
0.5388495326042175,
0.03196657449007034,
-0.001529246335849166,
-0.14120112359523773,
0.29720762372016907,
-0.8871271014213562,
-0.050560470670461655,
0.9087178111076355,
-0.9713190793991089,
-0.5959249138832092,
-0.9079368114471436,
-0.5217146277427673,
0.06561608612537384,
0.5875250697135925,
0.3667437732219696,
0.48513177037239075,
0.034948233515024185,
0.49128013849258423,
0.8525091409683228,
-0.13958284258842468,
0.6357169151306152,
0.25774404406547546,
0.1303805559873581,
-0.657753050327301,
0.802375078201294,
0.08418148010969162,
0.40369248390197754,
0.2812125086784363,
0.4454350471496582,
-0.5485069751739502,
-0.22168636322021484,
-0.19032372534275055,
0.5109722018241882,
-0.6534757614135742,
-0.2773800790309906,
-0.3570328950881958,
-0.3984082043170929,
-0.7367481589317322,
-0.6635338068008423,
-0.3239448070526123,
-0.5115362405776978,
-0.4180847108364105,
-0.4704739451408386,
0.5812180042266846,
0.47516629099845886,
-0.45186081528663635,
0.0372440330684185,
-0.47693774104118347,
0.24349533021450043,
0.3615676164627075,
0.5533394813537598,
-0.3496813476085663,
-0.5603208541870117,
0.06994464248418808,
-0.10761124640703201,
-0.5421047210693359,
-0.926975667476654,
0.3374912738800049,
-0.054533205926418304,
0.528618335723877,
0.5988267660140991,
0.14303115010261536,
0.831477701663971,
-0.20855766534805298,
1.0166893005371094,
0.36537429690361023,
-0.8092252612113953,
0.7391647100448608,
-0.3635169267654419,
0.17631711065769196,
0.6424633264541626,
0.18423430621623993,
-0.200522318482399,
-0.6703947186470032,
-1.3365930318832397,
-0.8431767225265503,
0.6532509326934814,
0.3914186954498291,
-0.29921796917915344,
0.03420231118798256,
0.15463484823703766,
-0.3178771138191223,
-0.19156040251255035,
-0.6712688207626343,
-0.9084271192550659,
-0.11125994473695755,
-0.4895297884941101,
0.10448919236660004,
-0.0009022007579915226,
-0.3957904875278473,
-0.8375919461250305,
0.9273393154144287,
0.020992400124669075,
0.6127740144729614,
0.4762920141220093,
0.0972309485077858,
0.012368742376565933,
0.45021510124206543,
0.9491987228393555,
0.7416724562644958,
-0.48524484038352966,
0.40425652265548706,
0.4015498161315918,
-1.0405588150024414,
0.4450724422931671,
0.2633097767829895,
-0.08947273343801498,
-0.04058145731687546,
0.5215091705322266,
0.37452182173728943,
0.000920468766707927,
-0.16843856871128082,
0.6417074799537659,
-0.000673206988722086,
-0.568780779838562,
-0.42419344186782837,
0.08125918358564377,
-0.1427181363105774,
0.00975336879491806,
0.41076627373695374,
-0.11644935607910156,
-0.060208648443222046,
-0.519137442111969,
0.4981032609939575,
0.4123133420944214,
-0.4890303611755371,
-0.09126393496990204,
0.7526700496673584,
-0.18630756437778473,
-0.1716374009847641,
0.35891059041023254,
-0.16169407963752747,
-0.6316453218460083,
1.1748582124710083,
0.5723163485527039,
0.6917321681976318,
-0.2394026815891266,
-0.06637465953826904,
0.9594908952713013,
0.4152921438217163,
-0.04255588352680206,
0.5327953100204468,
0.3188815414905548,
-0.2653076946735382,
0.2215433567762375,
-0.8322877287864685,
-0.02542426809668541,
0.1271674931049347,
-0.869030237197876,
0.3068844676017761,
-0.5656630992889404,
-0.2308385968208313,
0.0017417635535821319,
0.4275912046432495,
-0.4752849340438843,
0.5244143605232239,
-0.4708280861377716,
1.2043606042861938,
-0.9639532566070557,
0.7221639156341553,
0.7363963723182678,
-0.5519521236419678,
-1.0693105459213257,
-0.5241413712501526,
0.03145371749997139,
-0.8256498575210571,
0.581693708896637,
-0.11387844383716583,
0.15663883090019226,
-0.06978625804185867,
-0.7001034617424011,
-0.9181738495826721,
1.4214386940002441,
-0.04556873068213463,
-0.4753551781177521,
0.28227439522743225,
-0.0742185041308403,
0.4299659729003906,
0.12886610627174377,
0.6055744886398315,
0.7546460032463074,
0.872790515422821,
-0.050399016588926315,
-0.7400496602058411,
0.3555358946323395,
-0.4927980303764343,
-0.30111029744148254,
0.4599747061729431,
-0.9339061975479126,
1.2177656888961792,
-0.06143642216920853,
0.22496239840984344,
-0.18562880158424377,
0.6373083591461182,
0.7681496739387512,
0.2537062466144562,
0.39398708939552307,
0.8381819725036621,
0.8797533512115479,
-0.48811769485473633,
1.0888087749481201,
-0.23673465847969055,
0.8786898851394653,
0.6940646171569824,
0.28766313195228577,
0.8129580616950989,
0.6797927021980286,
-0.590761661529541,
0.5278862118721008,
0.8184264898300171,
-0.294979065656662,
0.39778903126716614,
0.29380694031715393,
-0.10588056594133377,
-0.1383066326379776,
0.4915596842765808,
-0.8741959929466248,
0.08767160773277283,
0.01249548140913248,
-0.3429962396621704,
0.12197300046682358,
-0.4939233064651489,
0.3286283314228058,
-0.056748975068330765,
-0.04292327165603638,
0.3351544141769409,
0.011350355111062527,
-0.42659544944763184,
0.9673985838890076,
-0.11082598567008972,
0.7761693596839905,
-0.5700955390930176,
-0.025640292093157768,
-0.41525784134864807,
0.6279027462005615,
-0.43663373589515686,
-1.0331369638442993,
0.16766099631786346,
0.03866330161690712,
-0.14750072360038757,
-0.1920396089553833,
0.6370419859886169,
-0.19609321653842926,
-0.7917963266372681,
0.12559014558792114,
0.051194269210100174,
0.07606324553489685,
0.4876841902732849,
-0.6728478074073792,
-0.32226404547691345,
-0.03300565108656883,
-0.5345579981803894,
0.11660542339086533,
0.30646657943725586,
0.3014758825302124,
0.5519744157791138,
0.6428856253623962,
0.1700284630060196,
0.38365310430526733,
-0.5515691637992859,
0.7580973505973816,
-1.0315417051315308,
-0.7337703704833984,
-0.9165264368057251,
0.4435044527053833,
-0.35660895705223083,
-0.8387194871902466,
0.9834059476852417,
1.0349136590957642,
0.8596936464309692,
-0.03334452584385872,
0.6675913333892822,
-0.383806049823761,
0.2616557776927948,
-0.38116592168807983,
0.9627324342727661,
-0.8522325754165649,
-0.19876933097839355,
-0.29810988903045654,
-0.7283303737640381,
-0.4028739035129547,
0.9048022031784058,
-0.14015839993953705,
0.0838269516825676,
1.1318328380584717,
0.6172224879264832,
-0.09340541809797287,
0.030701138079166412,
-0.06933058798313141,
0.5919217467308044,
0.38792499899864197,
1.0037504434585571,
0.5689545273780823,
-0.7728117108345032,
0.3091665804386139,
-0.5011547803878784,
-0.48565876483917236,
-0.37363696098327637,
-0.4798335134983063,
-0.8637095093727112,
-0.5340942144393921,
-0.22807644307613373,
-0.6052740812301636,
-0.12677524983882904,
1.0258064270019531,
0.47717270255088806,
-0.9141958355903625,
-0.46629205346107483,
-0.11896047741174698,
0.15112613141536713,
-0.6170020699501038,
-0.4145132601261139,
0.7518670558929443,
-0.13410311937332153,
-0.5490092635154724,
0.13425669074058533,
-0.15411023795604706,
0.22228491306304932,
0.11038454622030258,
-0.4024556577205658,
-0.7029075026512146,
0.01804313249886036,
0.4631172716617584,
0.33192163705825806,
-0.6995849013328552,
-0.7589247822761536,
0.3016940653324127,
-0.498454213142395,
0.4197690784931183,
-0.021038446575403214,
-0.48910024762153625,
0.04002463072538376,
0.6808783411979675,
0.4794660806655884,
0.685792863368988,
-0.04665348678827286,
0.10215497016906738,
-0.6521973013877869,
0.1423121988773346,
-0.01840156503021717,
0.26978427171707153,
-0.06831247359514236,
-0.3243987560272217,
0.784827709197998,
0.6447974443435669,
-0.5042673349380493,
-1.0556120872497559,
-0.4204612672328949,
-1.475335717201233,
-0.06274887919425964,
1.1359601020812988,
0.04837116599082947,
-0.4951719641685486,
0.28067144751548767,
-0.11741412431001663,
0.15742312371730804,
-0.34690576791763306,
0.746624231338501,
0.7822981476783752,
-0.39247366786003113,
0.10135423392057419,
-0.6418858170509338,
0.37693390250205994,
0.49913349747657776,
-1.156081199645996,
-0.10298822075128555,
0.23386241495609283,
0.3447016477584839,
0.2904609441757202,
0.6522178053855896,
-0.09504709392786026,
0.2586659789085388,
0.23350724577903748,
0.0015031754737719893,
-0.04567036032676697,
0.06184190511703491,
-0.22465632855892181,
0.09072118997573853,
-0.24192839860916138,
-0.4514447748661041
]
|
open-llm-leaderboard/details_psmathur__orca_mini_v2_7b | open-llm-leaderboard | 2023-09-22T15:49:44Z | 260 | 0 | [
"region:us"
]
| null | 2023-08-18T00:16:23Z | ---
pretty_name: Evaluation run of psmathur/orca_mini_v2_7b
dataset_summary: "Dataset automatically created during the evaluation run of model\
\ [psmathur/orca_mini_v2_7b](https://huggingface.co/psmathur/orca_mini_v2_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_psmathur__orca_mini_v2_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-22T15:49:31.845900](https://huggingface.co/datasets/open-llm-leaderboard/details_psmathur__orca_mini_v2_7b/blob/main/results_2023-09-22T15-49-31.845900.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.19305788590604026,\n\
\ \"em_stderr\": 0.004042077305732669,\n \"f1\": 0.2522955117449661,\n\
\ \"f1_stderr\": 0.00407273200010099,\n \"acc\": 0.371547709303585,\n\
\ \"acc_stderr\": 0.008652008076903053\n },\n \"harness|drop|3\": {\n\
\ \"em\": 0.19305788590604026,\n \"em_stderr\": 0.004042077305732669,\n\
\ \"f1\": 0.2522955117449661,\n \"f1_stderr\": 0.00407273200010099\n\
\ },\n \"harness|gsm8k|5\": {\n \"acc\": 0.02880970432145565,\n \
\ \"acc_stderr\": 0.004607484283767487\n },\n \"harness|winogrande|5\"\
: {\n \"acc\": 0.7142857142857143,\n \"acc_stderr\": 0.012696531870038616\n\
\ }\n}\n```"
repo_url: https://huggingface.co/psmathur/orca_mini_v2_7b
leaderboard_url: https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard
point_of_contact: [email protected]
configs:
- config_name: harness_arc_challenge_25
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|arc:challenge|25_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|arc:challenge|25_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_drop_3
data_files:
- split: 2023_09_22T15_49_31.845900
path:
- '**/details_harness|drop|3_2023-09-22T15-49-31.845900.parquet'
- split: latest
path:
- '**/details_harness|drop|3_2023-09-22T15-49-31.845900.parquet'
- config_name: harness_gsm8k_5
data_files:
- split: 2023_09_22T15_49_31.845900
path:
- '**/details_harness|gsm8k|5_2023-09-22T15-49-31.845900.parquet'
- split: latest
path:
- '**/details_harness|gsm8k|5_2023-09-22T15-49-31.845900.parquet'
- config_name: harness_hellaswag_10
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hellaswag|10_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hellaswag|10_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-anatomy|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-astronomy|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-business_ethics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-college_biology|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-college_medicine|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-college_physics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-computer_security|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-econometrics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-formal_logic|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-global_facts|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-human_aging|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-international_law|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-machine_learning|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-management|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-marketing|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-nutrition|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-philosophy|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-prehistory|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-professional_law|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-public_relations|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-security_studies|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-sociology|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-virology|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-world_religions|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-anatomy|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-astronomy|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-business_ethics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-college_biology|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-college_medicine|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-college_physics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-computer_security|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-econometrics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-formal_logic|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-global_facts|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-human_aging|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-international_law|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-machine_learning|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-management|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-marketing|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-nutrition|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-philosophy|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-prehistory|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-professional_law|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-public_relations|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-security_studies|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-sociology|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-virology|5_2023-07-19T16:55:35.342185.parquet'
- '**/details_harness|hendrycksTest-world_religions|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_abstract_algebra_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-abstract_algebra|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_anatomy_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-anatomy|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-anatomy|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_astronomy_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-astronomy|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-astronomy|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_business_ethics_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-business_ethics|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-business_ethics|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_clinical_knowledge_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-clinical_knowledge|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_college_biology_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-college_biology|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_biology|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_college_chemistry_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_chemistry|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_college_computer_science_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_computer_science|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_college_mathematics_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_mathematics|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_college_medicine_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-college_medicine|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_medicine|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_college_physics_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-college_physics|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-college_physics|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_computer_security_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-computer_security|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-computer_security|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_conceptual_physics_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-conceptual_physics|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_econometrics_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-econometrics|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-econometrics|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_electrical_engineering_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-electrical_engineering|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_elementary_mathematics_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-elementary_mathematics|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_formal_logic_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-formal_logic|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-formal_logic|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_global_facts_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-global_facts|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-global_facts|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_high_school_biology_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_biology|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_high_school_chemistry_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_chemistry|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_high_school_computer_science_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_computer_science|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_high_school_european_history_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_european_history|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_high_school_geography_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_geography|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_high_school_government_and_politics_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_government_and_politics|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_high_school_macroeconomics_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_macroeconomics|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_high_school_mathematics_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_mathematics|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_high_school_microeconomics_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_microeconomics|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_high_school_physics_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_physics|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_high_school_psychology_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_psychology|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_high_school_statistics_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_statistics|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_high_school_us_history_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_us_history|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_high_school_world_history_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-high_school_world_history|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_human_aging_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-human_aging|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-human_aging|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_human_sexuality_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-human_sexuality|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_international_law_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-international_law|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-international_law|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_jurisprudence_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-jurisprudence|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_logical_fallacies_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-logical_fallacies|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_machine_learning_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-machine_learning|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-machine_learning|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_management_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-management|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-management|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_marketing_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-marketing|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-marketing|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_medical_genetics_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-medical_genetics|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_miscellaneous_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-miscellaneous|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_moral_disputes_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-moral_disputes|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_moral_scenarios_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-moral_scenarios|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_nutrition_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-nutrition|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-nutrition|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_philosophy_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-philosophy|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-philosophy|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_prehistory_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-prehistory|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-prehistory|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_professional_accounting_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_accounting|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_professional_law_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-professional_law|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_law|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_professional_medicine_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_medicine|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_professional_psychology_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-professional_psychology|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_public_relations_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-public_relations|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-public_relations|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_security_studies_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-security_studies|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-security_studies|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_sociology_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-sociology|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-sociology|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_us_foreign_policy_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-us_foreign_policy|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_virology_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-virology|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-virology|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_hendrycksTest_world_religions_5
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|hendrycksTest-world_religions|5_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|hendrycksTest-world_religions|5_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_truthfulqa_mc_0
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- '**/details_harness|truthfulqa:mc|0_2023-07-19T16:55:35.342185.parquet'
- split: latest
path:
- '**/details_harness|truthfulqa:mc|0_2023-07-19T16:55:35.342185.parquet'
- config_name: harness_winogrande_5
data_files:
- split: 2023_09_22T15_49_31.845900
path:
- '**/details_harness|winogrande|5_2023-09-22T15-49-31.845900.parquet'
- split: latest
path:
- '**/details_harness|winogrande|5_2023-09-22T15-49-31.845900.parquet'
- config_name: results
data_files:
- split: 2023_07_19T16_55_35.342185
path:
- results_2023-07-19T16:55:35.342185.parquet
- split: 2023_09_22T15_49_31.845900
path:
- results_2023-09-22T15-49-31.845900.parquet
- split: latest
path:
- results_2023-09-22T15-49-31.845900.parquet
---
# Dataset Card for Evaluation run of psmathur/orca_mini_v2_7b
## Dataset Description
- **Homepage:**
- **Repository:** https://huggingface.co/psmathur/orca_mini_v2_7b
- **Paper:**
- **Leaderboard:** https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard
- **Point of Contact:** [email protected]
### Dataset Summary
Dataset automatically created during the evaluation run of model [psmathur/orca_mini_v2_7b](https://huggingface.co/psmathur/orca_mini_v2_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_psmathur__orca_mini_v2_7b",
"harness_winogrande_5",
split="train")
```
## Latest results
These are the [latest results from run 2023-09-22T15:49:31.845900](https://huggingface.co/datasets/open-llm-leaderboard/details_psmathur__orca_mini_v2_7b/blob/main/results_2023-09-22T15-49-31.845900.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.19305788590604026,
"em_stderr": 0.004042077305732669,
"f1": 0.2522955117449661,
"f1_stderr": 0.00407273200010099,
"acc": 0.371547709303585,
"acc_stderr": 0.008652008076903053
},
"harness|drop|3": {
"em": 0.19305788590604026,
"em_stderr": 0.004042077305732669,
"f1": 0.2522955117449661,
"f1_stderr": 0.00407273200010099
},
"harness|gsm8k|5": {
"acc": 0.02880970432145565,
"acc_stderr": 0.004607484283767487
},
"harness|winogrande|5": {
"acc": 0.7142857142857143,
"acc_stderr": 0.012696531870038616
}
}
```
### 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] | [
-0.3702617585659027,
-0.6445311307907104,
0.1887759566307068,
0.11040502041578293,
-0.2685594856739044,
0.1113542690873146,
-0.3294329047203064,
-0.19505392014980316,
0.4527485966682434,
0.4895697832107544,
-0.7329856753349304,
-0.8792065382003784,
-0.6935673356056213,
0.1315087527036667,
-0.11969596147537231,
1.1754289865493774,
-0.21225318312644958,
-0.17012855410575867,
0.09198018908500671,
-0.38902726769447327,
-0.2589477002620697,
-0.4432908892631531,
-0.672088086605072,
-0.4276031255722046,
0.35157081484794617,
0.6744229197502136,
0.38573339581489563,
0.7413515448570251,
0.6496837139129639,
0.3383387327194214,
-0.14033038914203644,
0.29737240076065063,
-0.4081162214279175,
-0.13411203026771545,
0.159001886844635,
-0.6643326282501221,
-0.8065395355224609,
0.09259917587041855,
0.5992560386657715,
0.5014567375183105,
-0.247529536485672,
0.7678338885307312,
0.14444388449192047,
0.5126367807388306,
-0.4278770685195923,
0.5718232989311218,
-0.2523135840892792,
0.007668722420930862,
-0.5154311060905457,
-0.249394491314888,
-0.018926067277789116,
-0.43593284487724304,
-0.16032220423221588,
-0.5733692646026611,
0.14563672244548798,
0.09847600013017654,
0.9866591095924377,
0.18139366805553436,
-0.13461817800998688,
-0.31413862109184265,
-0.20279870927333832,
0.8752120137214661,
-0.8329261541366577,
-0.16830703616142273,
0.6172756552696228,
0.2052018940448761,
-0.3932507038116455,
-0.5775983333587646,
-0.3600524067878723,
-0.006734820082783699,
-0.2799331843852997,
0.1559719741344452,
0.022354530170559883,
-0.18097607791423798,
0.5037451386451721,
0.6236236095428467,
-0.6900171637535095,
-0.025269271805882454,
-0.6411876678466797,
-0.14760656654834747,
0.9434071183204651,
0.46093428134918213,
0.11070079356431961,
-0.5418210029602051,
-0.2803996503353119,
-0.37696194648742676,
-0.42130693793296814,
0.35368967056274414,
0.49763864278793335,
0.5177271366119385,
-0.632317304611206,
0.9414986968040466,
-0.36264628171920776,
0.5566108822822571,
-0.052682794630527496,
-0.4910220801830292,
0.7988511323928833,
-0.596779465675354,
-0.23334723711013794,
0.016513308510184288,
1.0522719621658325,
0.3390493392944336,
-0.03367219120264053,
0.4446871280670166,
-0.24053648114204407,
0.12148059159517288,
-0.018692176789045334,
-0.7225766181945801,
-0.2532210350036621,
0.2552627623081207,
-0.6850464344024658,
-0.42774057388305664,
0.22672593593597412,
-0.947270929813385,
-0.3099711835384369,
-0.26615631580352783,
0.13079407811164856,
-0.3154245615005493,
-0.3649860620498657,
0.013779322616755962,
-0.06966130435466766,
0.3732863962650299,
0.1511966735124588,
-0.6193339824676514,
0.47499287128448486,
0.5929713845252991,
0.9749582409858704,
-0.05298776924610138,
-0.3651953339576721,
-0.3194989562034607,
-0.2941809296607971,
-0.1399017870426178,
0.5741019248962402,
-0.21752670407295227,
-0.46133720874786377,
-0.24483712017536163,
0.30770865082740784,
-0.28566408157348633,
-0.5269783735275269,
0.7263806462287903,
-0.16845794022083282,
0.13307742774486542,
-0.41061118245124817,
-0.26935914158821106,
-0.1840524524450302,
0.2155138999223709,
-0.586965024471283,
1.4624805450439453,
0.2761579155921936,
-0.982591986656189,
0.1745867282152176,
-0.8725391030311584,
-0.3070255219936371,
-0.028422921895980835,
-0.0995907261967659,
-0.6566011309623718,
-0.08740004152059555,
0.16512396931648254,
0.4308926463127136,
-0.3945356011390686,
-0.0183261688798666,
-0.29590046405792236,
-0.3581027388572693,
0.0324101597070694,
0.049574218690395355,
1.1594889163970947,
0.22551526129245758,
-0.4179452657699585,
0.07804916054010391,
-0.9908129572868347,
-0.017661018297076225,
0.4471287131309509,
-0.4920661151409149,
-0.18673990666866302,
-0.14197488129138947,
0.048186372965574265,
0.21481412649154663,
0.5513328909873962,
-0.6427996158599854,
0.38942649960517883,
-0.16048666834831238,
0.4101487100124359,
0.890887439250946,
-0.036146052181720734,
0.2873675227165222,
-0.48931965231895447,
0.7058270573616028,
-0.05106477439403534,
0.3146820664405823,
0.12016523629426956,
-0.642164945602417,
-0.8348792791366577,
-0.27732232213020325,
0.06453336775302887,
0.593515157699585,
-0.5556497573852539,
0.6936306953430176,
-0.33595818281173706,
-0.7817346453666687,
-0.7094444036483765,
0.02266104891896248,
0.4196315109729767,
0.6314106583595276,
0.33078667521476746,
-0.4502735435962677,
-0.8618658781051636,
-0.9774287343025208,
0.14223329722881317,
-0.24183160066604614,
0.10331785678863525,
0.5371667742729187,
0.9700784683227539,
-0.19855937361717224,
0.8287404775619507,
-0.7840955853462219,
-0.3701566755771637,
-0.39040473103523254,
0.11058536916971207,
0.7363861799240112,
0.48925355076789856,
0.5233612656593323,
-0.5488345623016357,
-0.39218083024024963,
-0.1301349550485611,
-0.8077653050422668,
-0.2795599699020386,
-0.053637463599443436,
-0.15978026390075684,
0.33707764744758606,
0.0006334861391223967,
-0.5766949653625488,
0.5670966506004333,
0.5109880566596985,
-0.460079550743103,
0.717052161693573,
-0.11111148446798325,
0.2972443401813507,
-1.0718191862106323,
0.2869569659233093,
0.007177342195063829,
-0.0930725708603859,
-0.33091071248054504,
-0.1754930466413498,
-0.01605152152478695,
0.1621129810810089,
-0.4380209743976593,
0.4917851388454437,
-0.3989190459251404,
-0.3516915738582611,
0.0023189533967524767,
0.1463383436203003,
-0.13943664729595184,
0.5332093834877014,
-0.1975773572921753,
0.7790219187736511,
0.6230610609054565,
-0.28158241510391235,
0.3678102493286133,
0.4944115877151489,
-0.5724373459815979,
0.35542920231819153,
-0.551735520362854,
0.05566355586051941,
0.07572275400161743,
0.40150120854377747,
-0.991409182548523,
-0.35964345932006836,
0.49334388971328735,
-0.5119176506996155,
0.18011634051799774,
-0.223014697432518,
-0.7537937164306641,
-0.49295613169670105,
-0.5869241952896118,
0.29925474524497986,
0.4675254821777344,
-0.4693473279476166,
0.33719244599342346,
0.5231808423995972,
-0.0531606525182724,
-0.5142399668693542,
-0.738669216632843,
-0.22663047909736633,
-0.34557288885116577,
-0.6561834216117859,
0.26820263266563416,
-0.0971316397190094,
-0.15851691365242004,
-0.08219481259584427,
-0.13097253441810608,
0.07424909621477127,
0.05054972320795059,
0.4223739504814148,
0.49194255471229553,
-0.12184039503335953,
-0.39092010259628296,
-0.097580686211586,
-0.25932762026786804,
0.14472325146198273,
0.15236853063106537,
0.7056028246879578,
-0.3353288769721985,
-0.24731425940990448,
-0.22290129959583282,
0.11974145472049713,
0.5316222310066223,
-0.2396654188632965,
0.8270074725151062,
0.6411778330802917,
-0.2234501987695694,
0.017883434891700745,
-0.33614128828048706,
-0.004919449333101511,
-0.469641774892807,
0.2947409749031067,
-0.39485588669776917,
-0.7476403713226318,
0.8730578422546387,
0.2274802029132843,
0.1787969172000885,
0.7983428835868835,
0.5466225743293762,
0.10411804169416428,
0.8964418172836304,
0.4095210134983063,
-0.12740521132946014,
0.47887101769447327,
-0.7746355533599854,
-0.037582624703645706,
-1.1189508438110352,
-0.5068941116333008,
-0.4971596896648407,
-0.419021338224411,
-0.7762005925178528,
-0.28099730610847473,
0.29103684425354004,
0.11661028116941452,
-0.3956559896469116,
0.6706802845001221,
-0.6682161092758179,
0.15346664190292358,
0.5536349415779114,
0.23738856613636017,
0.07818976789712906,
-0.10998556017875671,
-0.12680935859680176,
0.17637091875076294,
-0.599847674369812,
-0.47168540954589844,
1.320989966392517,
0.2866978645324707,
0.6561992764472961,
-0.02208734303712845,
0.8307408690452576,
0.27219587564468384,
0.2800397276878357,
-0.5389471054077148,
0.6969510912895203,
-0.03175973519682884,
-0.4654579758644104,
-0.13284911215305328,
-0.5579952001571655,
-0.987958550453186,
0.24410372972488403,
0.04098208621144295,
-0.9141788482666016,
0.14737781882286072,
-0.06752187758684158,
-0.26717838644981384,
0.31525006890296936,
-0.49490106105804443,
0.8288249373435974,
-0.17657551169395447,
-0.09767676144838333,
-0.008238790556788445,
-0.9605819582939148,
0.4815429151058197,
-0.06154141575098038,
0.301681250333786,
-0.25124529004096985,
-0.1564810574054718,
1.1595830917358398,
-0.7365845441818237,
0.770023763179779,
-0.1193922832608223,
0.1514476090669632,
0.3657863140106201,
-0.3561629056930542,
0.5883896946907043,
-0.036767832934856415,
-0.2841055989265442,
0.4080491065979004,
-0.11704283207654953,
-0.3525448739528656,
-0.22340594232082367,
0.8435322642326355,
-0.9068448543548584,
-0.24371308088302612,
-0.622868001461029,
-0.5352457761764526,
0.28372448682785034,
0.2365264743566513,
0.42049553990364075,
0.29141485691070557,
0.2038898468017578,
0.12085099518299103,
0.305635929107666,
-0.28726926445961,
0.44766703248023987,
0.5286147594451904,
-0.228523388504982,
-0.6603646874427795,
0.6456618309020996,
0.3050714135169983,
0.009319200180470943,
0.03152696415781975,
0.08197377622127533,
-0.47295233607292175,
-0.35375991463661194,
-0.36945897340774536,
0.4287170171737671,
-0.5470105409622192,
-0.3880271315574646,
-0.4781956970691681,
-0.24713420867919922,
-0.35672882199287415,
0.02539546974003315,
-0.47505977749824524,
-0.45299872756004333,
-0.513679027557373,
-0.21060888469219208,
0.6353623270988464,
0.592899739742279,
-0.4181545078754425,
0.24073687195777893,
-0.6073543429374695,
0.19898390769958496,
-0.20336024463176727,
0.27143049240112305,
-0.13500449061393738,
-0.6599182486534119,
-0.33572909235954285,
0.0977071151137352,
-0.4033854901790619,
-0.9027827978134155,
0.604783296585083,
0.01760370470583439,
0.5664439797401428,
0.13644805550575256,
0.15790438652038574,
0.8438196182250977,
-0.2180750072002411,
1.0130269527435303,
0.0006424011080525815,
-0.7533329129219055,
0.8567149043083191,
-0.2783866822719574,
0.1692495495080948,
0.5639708638191223,
0.1976073682308197,
-0.3731192350387573,
-0.2766557037830353,
-0.9961457848548889,
-1.1120800971984863,
1.231406569480896,
0.5200461149215698,
-0.3806632459163666,
0.08058205991983414,
0.3255183696746826,
-0.018803851678967476,
0.2277808040380478,
-0.5784925222396851,
-0.8267926573753357,
-0.10090506821870804,
-0.11792467534542084,
-0.13817372918128967,
-0.0774315670132637,
-0.2647947072982788,
-0.47536206245422363,
0.8556192517280579,
0.056310024112463,
0.4240213632583618,
0.18506285548210144,
-0.044839899986982346,
-0.17534126341342926,
0.09858258813619614,
0.623737633228302,
0.7488316297531128,
-0.42932602763175964,
0.00715813459828496,
0.35875144600868225,
-0.6031061410903931,
0.03309964761137962,
0.33167001605033875,
0.012277982197701931,
-0.05951351299881935,
0.4269089698791504,
0.7635529041290283,
0.009931094944477081,
-0.400958389043808,
0.4833216667175293,
0.006225867196917534,
-0.16941754519939423,
-0.5085610747337341,
0.034484896808862686,
-0.13097086548805237,
0.3226449191570282,
0.36495721340179443,
0.0933719128370285,
-0.0016802886966615915,
-0.39068603515625,
0.20033061504364014,
0.17458370327949524,
-0.05288109928369522,
-0.3471985459327698,
0.552605390548706,
-0.19979774951934814,
-0.35156431794166565,
0.6798199415206909,
-0.16361497342586517,
-0.5954791307449341,
1.081534743309021,
0.2795144021511078,
0.7474304437637329,
-0.19231009483337402,
0.07191361486911774,
0.5427088737487793,
0.3969322443008423,
-0.20928768813610077,
0.6813592314720154,
0.09814034402370453,
-0.4579866826534271,
-0.29350125789642334,
-0.76744145154953,
-0.1981012374162674,
0.4157623052597046,
-1.0679585933685303,
0.4422837793827057,
-0.24482354521751404,
-0.29990917444229126,
-0.10254792124032974,
0.47614720463752747,
-0.7308104038238525,
0.13100694119930267,
0.0018904779572039843,
0.9615697264671326,
-1.152134895324707,
0.7701420783996582,
0.891531229019165,
-0.5826407074928284,
-0.9625288248062134,
-0.3948774039745331,
0.16903063654899597,
-0.7836880683898926,
0.45340415835380554,
0.23909802734851837,
0.29052162170410156,
-0.2678705155849457,
-0.5763024687767029,
-1.114273190498352,
1.4962096214294434,
0.2812367379665375,
-0.40033891797065735,
0.2935999929904938,
0.1759168654680252,
0.46637269854545593,
-0.33208486437797546,
0.5480483174324036,
0.8420412540435791,
0.6405043005943298,
-0.09877534955739975,
-0.9485272765159607,
0.3223351538181305,
-0.5153209567070007,
-0.0123054850846529,
0.33182308077812195,
-0.9647542238235474,
1.0808017253875732,
-0.04309598356485367,
-0.03190043196082115,
0.1124652698636055,
0.46899667382240295,
0.6655558943748474,
0.25251057744026184,
0.49273476004600525,
0.701712429523468,
0.6609477996826172,
-0.3132123351097107,
1.1058486700057983,
-0.24991731345653534,
0.9105653166770935,
1.0815378427505493,
0.026659997180104256,
0.7105545997619629,
0.31117314100265503,
-0.455013632774353,
0.49476358294487,
0.9654207825660706,
-0.34414300322532654,
0.523823618888855,
0.2106776088476181,
0.026636743918061256,
-0.008364344947040081,
-0.10219305753707886,
-0.557414174079895,
0.4415661692619324,
0.2514815330505371,
-0.6056498289108276,
-0.29132747650146484,
-0.2654481530189514,
0.13789021968841553,
-0.377717524766922,
-0.24599649012088776,
0.5064396858215332,
0.0880960077047348,
-0.4788108766078949,
0.639992356300354,
0.022911477833986282,
0.6412720680236816,
-0.6848057508468628,
-0.07713489234447479,
-0.29364898800849915,
0.23416341841220856,
-0.5973531603813171,
-0.9184399843215942,
0.34817686676979065,
0.12129291146993637,
-0.21811914443969727,
-0.22408989071846008,
0.6595298051834106,
-0.2532564103603363,
-0.5220743417739868,
0.33105650544166565,
0.27075040340423584,
0.43827196955680847,
0.19757868349552155,
-0.9775702953338623,
0.2551210820674896,
0.20824071764945984,
-0.7010096311569214,
0.4602873921394348,
0.24135799705982208,
0.10720866918563843,
0.5133938789367676,
0.7034478783607483,
0.1768602877855301,
0.05448853597044945,
-0.11791229993104935,
1.1219626665115356,
-0.5732013583183289,
-0.3658754825592041,
-0.8230172395706177,
0.7828004956245422,
-0.2120528668165207,
-0.6187577247619629,
0.9708652496337891,
1.0526447296142578,
0.7863314747810364,
0.10102660208940506,
0.7462342381477356,
-0.5285730957984924,
0.5247384905815125,
-0.22529833018779755,
0.886694073677063,
-0.7279325723648071,
0.340364009141922,
-0.2100253403186798,
-0.9189595580101013,
-0.05083920806646347,
0.8015232086181641,
-0.3259615898132324,
-0.04898469150066376,
0.6142715215682983,
0.9805657267570496,
-0.08845707029104233,
0.12971419095993042,
-0.12550649046897888,
0.38281580805778503,
0.25606703758239746,
0.6753431558609009,
0.6120033860206604,
-0.6814502477645874,
0.4972396790981293,
-0.6722983121871948,
-0.5385540723800659,
-0.1382741779088974,
-0.7456377148628235,
-0.7762749195098877,
-0.42407500743865967,
-0.3370288014411926,
-0.5610008239746094,
-0.02551858313381672,
1.0621144771575928,
0.47159048914909363,
-0.8695974349975586,
-0.5034927129745483,
-0.010138317942619324,
0.06524496525526047,
-0.22304701805114746,
-0.306740939617157,
0.710834801197052,
-0.07001923024654388,
-0.6949222087860107,
0.3301299512386322,
-0.01611017808318138,
-0.2429114580154419,
-0.047307875007390976,
-0.13956362009048462,
-0.3209124505519867,
-0.1697925478219986,
0.41868117451667786,
0.3468438386917114,
-0.6383870840072632,
-0.25709086656570435,
-0.19789260625839233,
-0.15973040461540222,
0.2968810498714447,
0.37315958738327026,
-0.5688804984092712,
0.10133029520511627,
0.5989628434181213,
0.1289972960948944,
0.7172932624816895,
0.015515639446675777,
0.20584267377853394,
-0.7004737257957458,
0.051808927208185196,
-0.0015080571174621582,
0.6585100889205933,
0.17049026489257812,
-0.3537786900997162,
0.9966655373573303,
0.3175949454307556,
-0.6711294054985046,
-0.8982421159744263,
-0.13278928399085999,
-1.2598894834518433,
0.10461601614952087,
1.3922295570373535,
-0.3636057674884796,
-0.3460119664669037,
0.04812023788690567,
-0.27432501316070557,
0.40080806612968445,
-0.7076635360717773,
0.5977917313575745,
0.5616747736930847,
-0.3380792438983917,
0.04216752201318741,
-0.5190421938896179,
0.3952902853488922,
0.1525338590145111,
-0.988251268863678,
-0.15123343467712402,
0.2194308042526245,
0.3910418748855591,
0.2630990147590637,
0.6464091539382935,
-0.1184978187084198,
-0.02127218246459961,
-0.024152467027306557,
0.13194496929645538,
-0.2326386272907257,
-0.047957491129636765,
-0.3073912560939789,
0.0927136242389679,
-0.42325559258461,
-0.5148307085037231
]
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.