id stringlengths 2 115 | author stringlengths 2 42 ⌀ | last_modified timestamp[us, tz=UTC] | downloads int64 0 8.87M | likes int64 0 3.84k | paperswithcode_id stringlengths 2 45 ⌀ | tags list | lastModified timestamp[us, tz=UTC] | createdAt stringlengths 24 24 | key stringclasses 1 value | created timestamp[us] | card stringlengths 1 1.01M | embedding list | library_name stringclasses 21 values | pipeline_tag stringclasses 27 values | mask_token null | card_data null | widget_data null | model_index null | config null | transformers_info null | spaces null | safetensors null | transformersInfo null | modelId stringlengths 5 111 ⌀ | embeddings list |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
huggingartists/gspd | huggingartists | 2022-10-25T09:31:22Z | 294 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:31:22Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/gspd"
## 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.450078 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/9409ae2b38424a74b42cb1e4bb66b83a.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/gspd">
<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">GSPD</div>
<a href="https://genius.com/artists/gspd">
<div style="text-align: center; font-size: 14px;">@gspd</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/gspd).
### 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/gspd")
```
## 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|
|------:|---------:|---:|
|156| -| -|
'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/gspd")
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.6378353834152222,
-0.4949069023132324,
0.12020858377218246,
0.26597681641578674,
-0.27570492029190063,
0.00633497117087245,
-0.28245940804481506,
-0.4303511679172516,
0.8546680808067322,
0.3364773988723755,
-0.873302698135376,
-0.8101953864097595,
-0.5942833423614502,
0.11721913516521454,
-0.07489357143640518,
1.3270295858383179,
-0.18618978559970856,
-0.37152695655822754,
-0.30531349778175354,
-0.23443008959293365,
-0.225713312625885,
-0.3241330087184906,
-0.3024703562259674,
-0.3603024184703827,
0.3169859051704407,
0.46266838908195496,
0.7027072310447693,
0.8594991564750671,
0.4800809919834137,
0.3352653980255127,
-0.1356360763311386,
-0.004764485638588667,
-0.3261801600456238,
-0.14936453104019165,
0.17189733684062958,
-0.2607736885547638,
-0.7060027718544006,
0.24710336327552795,
0.5487864017486572,
0.4165057837963104,
-0.11913768202066422,
0.48207172751426697,
0.08416023850440979,
0.8507481217384338,
-0.3080579936504364,
0.5057302713394165,
-0.2213747352361679,
-0.13785016536712646,
-0.30595433712005615,
0.01626328006386757,
0.20286870002746582,
-0.6235611438751221,
-0.009820636361837387,
-0.7508631348609924,
0.09725988656282425,
-0.05414329469203949,
1.0078561305999756,
0.04741258919239044,
0.11245916783809662,
-0.2183450609445572,
-0.13991138339042664,
0.48644018173217773,
-0.5897448062896729,
-0.032067883759737015,
0.6083919405937195,
0.15251421928405762,
0.021433956921100616,
-0.6427345275878906,
-0.6327451467514038,
0.09006437659263611,
-0.16402792930603027,
0.26317524909973145,
-0.14618167281150818,
-0.29641616344451904,
0.5438129901885986,
0.5633138418197632,
-0.5385845303535461,
-0.2796705365180969,
-0.5186392068862915,
-0.10353182256221771,
1.174813151359558,
0.1583072394132614,
0.43937382102012634,
-0.4884967803955078,
-0.19715815782546997,
-0.3794079124927521,
-0.27095404267311096,
0.3652576506137848,
0.5894440412521362,
0.444465309381485,
-1.0407472848892212,
0.6256119012832642,
-0.19688387215137482,
0.5426833033561707,
0.1682506948709488,
-0.05592157691717148,
0.8025410175323486,
-0.4124402105808258,
-0.147390216588974,
-0.13729381561279297,
1.0560212135314941,
0.6853428483009338,
0.179984912276268,
0.08397409319877625,
-0.044490158557891846,
0.05072079598903656,
-0.13606011867523193,
-0.8506307005882263,
-0.4486056864261627,
0.6403161287307739,
-0.5852383375167847,
-0.5868191123008728,
0.12204643338918686,
-1.031843900680542,
-0.25906631350517273,
-0.3075869381427765,
0.23311777412891388,
-0.38371342420578003,
-0.545674741268158,
0.17992493510246277,
-0.2988954186439514,
0.1175871342420578,
0.05331423506140709,
-0.6918134689331055,
0.21250422298908234,
0.5777344703674316,
0.7853443622589111,
0.2486591339111328,
-0.3222675025463104,
-0.2787836492061615,
-0.16841447353363037,
-0.12038717418909073,
0.6826936602592468,
-0.3035444915294647,
-0.3875269889831543,
-0.16133219003677368,
0.3422456383705139,
-0.08793666213750839,
-0.2724579870700836,
0.9114564657211304,
0.05995551869273186,
0.1974021941423416,
-0.6115924119949341,
-0.411888986825943,
0.0237827617675066,
0.2667038142681122,
-0.7131785750389099,
1.0545504093170166,
0.3132757842540741,
-1.0255742073059082,
0.22697146236896515,
-0.792847752571106,
-0.2921680212020874,
0.04694906249642372,
0.04210313782095909,
-0.8045333027839661,
-0.1827705055475235,
0.22800500690937042,
0.7412113547325134,
-0.30101439356803894,
0.042964424937963486,
-0.6035515666007996,
-0.13057100772857666,
0.308570921421051,
0.2590557932853699,
1.184873104095459,
0.10038350522518158,
-0.12478357553482056,
0.10150586068630219,
-0.9533538222312927,
0.1494537591934204,
0.46194401383399963,
-0.1730295568704605,
-0.10731390118598938,
-0.23163580894470215,
0.3847624957561493,
0.2787657082080841,
0.03550329431891441,
-0.5743787884712219,
0.46125927567481995,
-0.14823739230632782,
0.4728785455226898,
0.7571779489517212,
0.004925290588289499,
0.3436337113380432,
-0.6291024684906006,
0.44534116983413696,
0.031058933585882187,
0.36569857597351074,
-0.0025332372169941664,
-0.5815638899803162,
-0.4012352526187897,
-0.3016277551651001,
0.2928040027618408,
0.4466601312160492,
-0.6643571853637695,
1.0054242610931396,
-0.349791020154953,
-0.8470660448074341,
-0.6085352301597595,
0.0926247239112854,
0.18116122484207153,
0.5526186227798462,
0.3699261546134949,
-0.49215981364250183,
-0.560307502746582,
-0.6226788759231567,
0.09009923040866852,
-0.26846662163734436,
0.14670255780220032,
0.3943740725517273,
0.8195139765739441,
-0.2579011619091034,
0.8330780267715454,
-0.7052617073059082,
-0.25071924924850464,
-0.26879027485847473,
-0.2840406000614166,
0.37220263481140137,
0.7634552121162415,
0.7039695978164673,
-0.8267542123794556,
-0.5048832893371582,
-0.2725706994533539,
-0.7083291411399841,
-0.11761656403541565,
-0.02834971994161606,
-0.2101891189813614,
0.030417073518037796,
0.10887493938207626,
-0.73283451795578,
0.5351805686950684,
0.5155896544456482,
-0.6884979605674744,
0.6204941272735596,
0.041980814188718796,
0.021025341004133224,
-1.2457140684127808,
0.3931170701980591,
0.26757919788360596,
0.06075775995850563,
-0.6022031307220459,
-0.20972779393196106,
-0.020239772275090218,
-0.07912015914916992,
-0.07302062213420868,
0.6101819276809692,
-0.3417147994041443,
0.2623176574707031,
0.15363138914108276,
0.04203483462333679,
0.0808030217885971,
0.4445589780807495,
-0.06867441534996033,
0.3323369026184082,
1.0404930114746094,
-0.3891821503639221,
0.6543034315109253,
0.6132546067237854,
-0.2523445785045624,
0.8591005206108093,
-0.8010863065719604,
0.02646767348051071,
-0.28286319971084595,
0.4345169961452484,
-0.8294810652732849,
-0.5601090788841248,
0.8479829430580139,
-0.6649376749992371,
0.41022780537605286,
-0.2966851592063904,
-0.5504133105278015,
-0.7920257449150085,
-0.6960061192512512,
0.12055283784866333,
0.5272089242935181,
-0.3902220129966736,
0.3926294147968292,
0.6001168489456177,
0.02313184179365635,
-0.3825291395187378,
-0.7713866233825684,
-0.11473437398672104,
-0.40264078974723816,
-0.8081687092781067,
0.4236952066421509,
-0.3321056663990021,
-0.07197746634483337,
0.16561898589134216,
0.09381647408008575,
0.11066489666700363,
-0.004103464540094137,
0.39514681696891785,
0.30001384019851685,
0.1239747479557991,
-0.0026097020599991083,
-0.10713587701320648,
-0.257843017578125,
0.10924102365970612,
-0.1644858866930008,
0.29529550671577454,
-0.2918238341808319,
-0.14810775220394135,
-0.6379678249359131,
0.21763013303279877,
0.4630260467529297,
-0.274822860956192,
0.6675419211387634,
0.8105784058570862,
-0.23452916741371155,
-0.001413083402439952,
-0.4600568413734436,
-0.12137974798679352,
-0.41393035650253296,
0.05891123414039612,
-0.2467038333415985,
-0.5839319825172424,
0.9614171385765076,
0.22662164270877838,
0.01852286607027054,
0.6423675417900085,
0.46555009484291077,
-0.03383086994290352,
0.6885945796966553,
0.37898626923561096,
-0.30089566111564636,
0.5083918571472168,
-0.6638010144233704,
-0.19586709141731262,
-0.9096898436546326,
-0.44637587666511536,
-0.49770352244377136,
-0.4328290820121765,
-0.8432403206825256,
-0.42628946900367737,
0.20855067670345306,
0.1837383210659027,
-0.2403755933046341,
0.42305517196655273,
-0.9702951312065125,
0.2695702612400055,
0.3348843455314636,
0.25317123532295227,
-0.13339859247207642,
0.0890759751200676,
0.08761831372976303,
0.13822290301322937,
-0.571616530418396,
-0.2666703164577484,
1.1914068460464478,
0.499519020318985,
0.5673957467079163,
-0.09054875373840332,
0.8401957750320435,
0.025259435176849365,
0.21094614267349243,
-0.5071190595626831,
0.513380229473114,
0.022812476381659508,
-0.4539334177970886,
-0.1459110677242279,
-0.4896678924560547,
-0.8883822560310364,
-0.10340876132249832,
-0.39703208208084106,
-0.7392226457595825,
0.48853829503059387,
0.08762063831090927,
-0.23364761471748352,
0.4056907296180725,
-0.6452668309211731,
0.8467402458190918,
-0.05665269494056702,
-0.4282051920890808,
0.28982678055763245,
-1.01556396484375,
0.20731423795223236,
0.19877798855304718,
0.22783339023590088,
-0.3906933665275574,
0.044574394822120667,
0.9794249534606934,
-0.7974079251289368,
0.9095599055290222,
-0.4076334834098816,
0.11993582546710968,
0.5492832064628601,
-0.3600257933139801,
0.5052552223205566,
0.12673647701740265,
-0.2754451632499695,
0.3111877143383026,
0.019535908475518227,
-0.45894521474838257,
-0.43552684783935547,
0.6487916111946106,
-0.7131471633911133,
0.027946092188358307,
-0.38441580533981323,
-0.44691231846809387,
0.03486865013837814,
0.16657359898090363,
0.26947277784347534,
0.38992762565612793,
0.03422171249985695,
0.07432063668966293,
0.4298008680343628,
-0.15021134912967682,
0.2929127812385559,
0.04117333143949509,
-0.07970526069402695,
-0.7835597395896912,
0.9066882133483887,
0.20137731730937958,
0.054239798337221146,
-0.09731364995241165,
0.4010360836982727,
-0.4019199311733246,
-0.161380335688591,
-0.6488997340202332,
0.4747578501701355,
-0.41561681032180786,
-0.35007116198539734,
-0.5217952728271484,
-0.15980441868305206,
-0.6833702921867371,
-0.1701478511095047,
-0.21054351329803467,
-0.4887332618236542,
-0.3012950122356415,
-0.2199477255344391,
1.0090256929397583,
0.44219809770584106,
-0.6965369582176208,
0.10612460225820541,
-0.531760573387146,
0.30281728506088257,
-0.02161961793899536,
0.6789666414260864,
-0.09656277298927307,
-0.29842233657836914,
-0.19711051881313324,
0.05074964463710785,
-0.20875252783298492,
-0.6793032884597778,
0.2800776958465576,
-0.041617702692747116,
0.38722631335258484,
0.11028709262609482,
0.11385666579008102,
0.697908341884613,
-0.08842536062002182,
0.7001966834068298,
0.302944153547287,
-0.820921003818512,
0.6912822127342224,
-0.5396971106529236,
0.1514843851327896,
0.7021527290344238,
0.38358891010284424,
-0.6294189691543579,
-0.0881427526473999,
-0.9770463705062866,
-0.8568955063819885,
0.8077799677848816,
0.3594498932361603,
0.04618605971336365,
0.22924141585826874,
0.5437949895858765,
-0.19556182622909546,
0.2927783727645874,
-0.6313036680221558,
-0.8426713347434998,
-0.41525670886039734,
-0.3209128975868225,
-0.07717886567115784,
-0.11836410313844681,
-0.3108051121234894,
-0.6750484108924866,
0.7515003085136414,
-0.17570534348487854,
0.36657848954200745,
0.41644972562789917,
0.45628660917282104,
-0.23498046398162842,
0.02750057727098465,
0.3195464015007019,
0.4080543518066406,
-0.2729761600494385,
-0.2771891951560974,
-0.16621015965938568,
-0.6410139203071594,
-0.08458719402551651,
0.5584415793418884,
-0.34702882170677185,
-0.11056440323591232,
0.30540645122528076,
0.8931777477264404,
-0.08209893852472305,
-0.22661828994750977,
0.6002547144889832,
-0.07324937731027603,
-0.4180697202682495,
-0.34732070565223694,
0.008670584298670292,
0.15279577672481537,
0.23274871706962585,
0.08117400854825974,
0.10948144644498825,
-0.11981696635484695,
-0.4176497161388397,
0.38768884539604187,
0.26039841771125793,
-0.34866011142730713,
-0.5224688053131104,
0.5917744636535645,
0.05434202775359154,
-0.10839513689279556,
0.44980505108833313,
-0.22097033262252808,
-0.6229014992713928,
0.7738655805587769,
0.13568033277988434,
0.8326303362846375,
-0.156307652592659,
0.3755897581577301,
0.7159412503242493,
0.1998516470193863,
-0.09128691256046295,
0.5426571369171143,
-0.22241902351379395,
-0.6250090599060059,
-0.07140891253948212,
-0.5528070330619812,
-0.1380794197320938,
0.10720377415418625,
-0.8393307328224182,
0.40920835733413696,
-0.5031481385231018,
-0.21013103425502777,
0.005444769747555256,
0.4138006865978241,
-0.692603349685669,
0.2070087492465973,
-0.04465396702289581,
1.013206958770752,
-1.0895015001296997,
0.4988600015640259,
0.7009673118591309,
-0.6728395819664001,
-1.1671332120895386,
-0.09186425060033798,
0.20567989349365234,
-0.588175356388092,
0.19833922386169434,
0.17847691476345062,
0.5050210356712341,
-0.09346351772546768,
-0.8814558386802673,
-0.6417379975318909,
1.1974377632141113,
0.06739286333322525,
-0.18971794843673706,
0.3409944176673889,
0.10942305624485016,
0.6475281119346619,
-0.3196306526660919,
0.31782209873199463,
0.6227871775627136,
0.6708624362945557,
0.2600131928920746,
-0.7395355105400085,
0.3179094195365906,
-0.6407461166381836,
-0.22720573842525482,
0.08700291812419891,
-1.0084819793701172,
0.6550294160842896,
-0.18316079676151276,
-0.05804507061839104,
-0.008785031735897064,
0.5589259266853333,
0.4723913073539734,
0.4121546447277069,
0.42921021580696106,
0.8125001192092896,
0.8460143208503723,
-0.3156314194202423,
1.2562001943588257,
-0.2535744905471802,
0.6385457515716553,
0.7802658081054688,
-0.009655807167291641,
0.46891143918037415,
0.24869152903556824,
-0.38099968433380127,
0.5055863857269287,
0.6527767181396484,
-0.4435165524482727,
0.30286863446235657,
0.3912011981010437,
-0.10182726383209229,
-0.03824658319354057,
-0.2518710196018219,
-0.6458297967910767,
0.2562216520309448,
0.22819972038269043,
-0.3090433180332184,
0.003841947764158249,
-0.04500599205493927,
0.3569793999195099,
-0.053593236953020096,
-0.28469064831733704,
0.615672767162323,
0.015129187144339085,
-0.3402896821498871,
0.5292569398880005,
-0.19756227731704712,
0.6951295137405396,
-0.6183725595474243,
0.1682118922472,
-0.09125899523496628,
0.09487676620483398,
-0.6360234618186951,
-1.1249322891235352,
0.40775004029273987,
-0.06473693996667862,
-0.25783929228782654,
-0.3558499217033386,
0.7594892382621765,
-0.44486722350120544,
-0.735700786113739,
0.22054779529571533,
0.19041834771633148,
0.30196258425712585,
0.14487086236476898,
-1.2656656503677368,
0.5589753985404968,
0.14398755133152008,
-0.46859461069107056,
0.18406502902507782,
0.5171871781349182,
0.16827017068862915,
0.5486692786216736,
0.7047691941261292,
0.306135892868042,
-0.2580358386039734,
0.06429837644100189,
1.1209365129470825,
-0.5349802374839783,
-0.502524197101593,
-0.7237622141838074,
0.9089807868003845,
-0.3877893388271332,
-0.4222707450389862,
0.6794147491455078,
0.7376769185066223,
0.8717795610427856,
-0.01983458735048771,
0.8553904294967651,
-0.6527382135391235,
0.6629073023796082,
-0.21807807683944702,
0.9480537176132202,
-0.6854315400123596,
-0.07545490562915802,
-0.7470926642417908,
-0.5059190392494202,
-0.4302663803100586,
0.648679256439209,
-0.2351405769586563,
0.17388148605823517,
0.25865599513053894,
0.9197284579277039,
0.012355041690170765,
0.13336016237735748,
-0.25381961464881897,
0.2279321402311325,
0.33115458488464355,
0.5286477208137512,
0.4072117805480957,
-0.8970412611961365,
0.344063401222229,
-0.7437856793403625,
-0.30887410044670105,
0.06118307635188103,
-0.8553715944290161,
-0.8653119206428528,
-0.9541580080986023,
-0.6761023998260498,
-0.765216052532196,
-0.27182498574256897,
1.0524976253509521,
0.7190585136413574,
-0.6847177147865295,
-0.22727754712104797,
0.04600933939218521,
0.23984956741333008,
-0.0783492773771286,
-0.3187876343727112,
0.699518620967865,
0.3448876142501831,
-0.6024705767631531,
-0.13880467414855957,
0.044065289199352264,
0.25204917788505554,
0.08558426797389984,
-0.10640940815210342,
-0.09758148342370987,
-0.3163948953151703,
0.3495962917804718,
0.5175988674163818,
-0.31735923886299133,
-0.1355358362197876,
-0.29644227027893066,
0.0055737621150910854,
0.15848876535892487,
0.4800419211387634,
-0.5235115885734558,
0.22665388882160187,
0.6472439169883728,
0.31055566668510437,
0.45160675048828125,
0.2026796191930771,
0.013729346916079521,
-0.49074405431747437,
0.10370811820030212,
-0.03249646723270416,
0.3186771869659424,
0.40360456705093384,
-0.44931212067604065,
0.8189006447792053,
0.5918253660202026,
-0.5468990802764893,
-0.8363397717475891,
-0.13088315725326538,
-1.3242278099060059,
0.11519782245159149,
1.048237919807434,
-0.021605728194117546,
-0.5019957423210144,
0.05663053318858147,
-0.2385091483592987,
0.12781073153018951,
-0.570727527141571,
0.49957892298698425,
0.529819130897522,
-0.13385188579559326,
0.10514601320028305,
-0.3340624272823334,
0.68002849817276,
-0.012589454650878906,
-0.9977628588676453,
0.2018476277589798,
0.39861899614334106,
0.46226510405540466,
0.3224327266216278,
0.8662469387054443,
-0.2650553286075592,
0.05132187157869339,
-0.04633454233407974,
0.2925846576690674,
-0.27352848649024963,
0.05058124288916588,
-0.4122926592826843,
-0.0954025536775589,
-0.5123838186264038,
-0.22879652678966522
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/gunna | huggingartists | 2022-10-25T09:31:28Z | 294 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:31:28Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/gunna"
## 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.343267 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/18e3833ac527a4bf14ddf2acef834795.640x640x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/gunna">
<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">Gunna</div>
<a href="https://genius.com/artists/gunna">
<div style="text-align: center; font-size: 14px;">@gunna</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/gunna).
### 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/gunna")
```
## 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|
|------:|---------:|---:|
|567| -| -|
'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/gunna")
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.6242228746414185,
-0.5129950046539307,
0.11801861226558685,
0.2938615679740906,
-0.2472262680530548,
0.010173975490033627,
-0.2568381130695343,
-0.43123626708984375,
0.8658594489097595,
0.30766624212265015,
-0.9181203246116638,
-0.8191101551055908,
-0.5870908498764038,
0.11261799931526184,
-0.10160854458808899,
1.279093623161316,
-0.19391699135303497,
-0.38926568627357483,
-0.289534330368042,
-0.23891492187976837,
-0.3125297427177429,
-0.3216739594936371,
-0.3268592655658722,
-0.3473952114582062,
0.39988812804222107,
0.47682589292526245,
0.7174904942512512,
0.9037793278694153,
0.5075639486312866,
0.3451431095600128,
-0.1265420913696289,
-0.03440473601222038,
-0.3856949508190155,
-0.1257232129573822,
0.17079564929008484,
-0.26207950711250305,
-0.6862196326255798,
0.24540472030639648,
0.5766847133636475,
0.3655327558517456,
-0.08186227083206177,
0.48570170998573303,
0.045323316007852554,
0.8370575308799744,
-0.31012198328971863,
0.5180919766426086,
-0.2661570608615875,
-0.16620273888111115,
-0.3190997540950775,
0.07806644588708878,
0.17717283964157104,
-0.5792310833930969,
0.006672212854027748,
-0.7531562447547913,
0.030074425041675568,
-0.0074626971036195755,
1.022113561630249,
0.08130615949630737,
0.12382043898105621,
-0.1633738875389099,
-0.17207071185112,
0.5403963327407837,
-0.6154478788375854,
-0.03460367023944855,
0.5547745823860168,
0.14888425171375275,
-0.016507532447576523,
-0.6318702101707458,
-0.6678663492202759,
0.11817369610071182,
-0.13130688667297363,
0.3011324107646942,
-0.1565820872783661,
-0.30279505252838135,
0.5152689814567566,
0.5551305413246155,
-0.5097227692604065,
-0.23783046007156372,
-0.5399717092514038,
-0.11803720146417618,
1.1892338991165161,
0.12533001601696014,
0.44338473677635193,
-0.4923262894153595,
-0.22263477742671967,
-0.42414095997810364,
-0.27145564556121826,
0.3742215633392334,
0.5415805578231812,
0.46090590953826904,
-1.0252996683120728,
0.6667732000350952,
-0.18199566006660461,
0.5541889667510986,
0.12725648283958435,
-0.06135674566030502,
0.783034086227417,
-0.37406834959983826,
-0.13173280656337738,
-0.12147694081068039,
1.0838905572891235,
0.6757871508598328,
0.17854918539524078,
0.08457941561937332,
-0.047206491231918335,
0.05484813451766968,
-0.1237780898809433,
-0.8449952602386475,
-0.3769870400428772,
0.6617828011512756,
-0.5791856050491333,
-0.5652414560317993,
0.1504000574350357,
-0.9903263449668884,
-0.20794279873371124,
-0.2907275855541229,
0.3032268285751343,
-0.35909488797187805,
-0.4793494641780853,
0.1632586270570755,
-0.2931399941444397,
0.18718810379505157,
0.021705681458115578,
-0.6047322750091553,
0.1567571461200714,
0.6003870964050293,
0.7984554171562195,
0.1949264407157898,
-0.33339938521385193,
-0.2760283946990967,
-0.16777126491069794,
-0.10699941962957382,
0.7033469080924988,
-0.2740486264228821,
-0.365926057100296,
-0.16861853003501892,
0.3546817898750305,
-0.10058537125587463,
-0.26264411211013794,
0.9043797254562378,
0.06325557082891464,
0.1977912336587906,
-0.6023370623588562,
-0.42793717980384827,
-0.017135003581643105,
0.26022592186927795,
-0.7415515184402466,
1.051120400428772,
0.3298790454864502,
-0.9942784309387207,
0.2100439816713333,
-0.762734055519104,
-0.28392723202705383,
0.04101293906569481,
0.085699163377285,
-0.8109332323074341,
-0.18540430068969727,
0.20819281041622162,
0.7256156802177429,
-0.31067660450935364,
0.03549089655280113,
-0.6159342527389526,
-0.13495032489299774,
0.3351731300354004,
0.2694058418273926,
1.173781156539917,
0.08689750730991364,
-0.14628750085830688,
0.13406576216220856,
-0.8901662826538086,
0.1376786231994629,
0.4526253044605255,
-0.13945701718330383,
-0.06996043026447296,
-0.1980902999639511,
0.38465648889541626,
0.30143195390701294,
0.06698060780763626,
-0.629801332950592,
0.43157830834388733,
-0.2246856391429901,
0.4657449424266815,
0.7360553741455078,
0.007656226400285959,
0.31163305044174194,
-0.7070309519767761,
0.417267382144928,
0.013135713525116444,
0.3963046967983246,
0.015806080773472786,
-0.6215385794639587,
-0.43305307626724243,
-0.2829568386077881,
0.28141167759895325,
0.48060527443885803,
-0.6741613149642944,
0.9857423305511475,
-0.3031843304634094,
-0.8563448786735535,
-0.6062799096107483,
0.11937403678894043,
0.20242980122566223,
0.5470758080482483,
0.39202743768692017,
-0.4388705790042877,
-0.563784658908844,
-0.650742769241333,
0.0800299420952797,
-0.29825031757354736,
0.1392488032579422,
0.39100006222724915,
0.7785946130752563,
-0.27194878458976746,
0.8639149069786072,
-0.6702592968940735,
-0.28542107343673706,
-0.2641492784023285,
-0.30926015973091125,
0.3763697147369385,
0.7739219069480896,
0.6998577117919922,
-0.8472458124160767,
-0.4819495677947998,
-0.2760140001773834,
-0.7061750292778015,
-0.11340182274580002,
-0.04484720900654793,
-0.27120712399482727,
0.009253894910216331,
0.10836954414844513,
-0.7406063079833984,
0.5753719806671143,
0.516916811466217,
-0.6880707144737244,
0.5749914646148682,
0.09632304310798645,
-0.005259175319224596,
-1.2745428085327148,
0.3487718403339386,
0.2455819994211197,
0.05295214429497719,
-0.58742356300354,
-0.19813154637813568,
-0.07017679512500763,
-0.03953611105680466,
-0.1329701989889145,
0.657899796962738,
-0.29708096385002136,
0.274671733379364,
0.11796607822179794,
0.06349848210811615,
0.10568807274103165,
0.43990761041641235,
-0.09290183335542679,
0.3301044702529907,
1.0103191137313843,
-0.360351026058197,
0.6488861441612244,
0.6436542272567749,
-0.17415109276771545,
0.7903357148170471,
-0.8507890701293945,
0.01769709400832653,
-0.2862705588340759,
0.4120212197303772,
-0.8207094669342041,
-0.5568057894706726,
0.8177239298820496,
-0.6936140656471252,
0.38092929124832153,
-0.2550651729106903,
-0.538057267665863,
-0.821045458316803,
-0.6972208023071289,
0.15476369857788086,
0.5534554123878479,
-0.3744647204875946,
0.4268833100795746,
0.635221004486084,
0.03514145687222481,
-0.38270169496536255,
-0.7406113743782043,
-0.14918595552444458,
-0.3987877666950226,
-0.8013556003570557,
0.46276623010635376,
-0.34148627519607544,
-0.11098860204219818,
0.10939163714647293,
0.1057514175772667,
0.0855318009853363,
-0.03297145292162895,
0.42532774806022644,
0.33824366331100464,
0.11698008328676224,
0.011147917248308659,
-0.07677772641181946,
-0.23020252585411072,
0.13302263617515564,
-0.19776161015033722,
0.25096240639686584,
-0.3038053512573242,
-0.1095227599143982,
-0.6617738604545593,
0.20759767293930054,
0.45479148626327515,
-0.24249596893787384,
0.7075327634811401,
0.7901954054832458,
-0.24241989850997925,
-0.004074850585311651,
-0.5048944354057312,
-0.14571993052959442,
-0.416823148727417,
-0.006971185095608234,
-0.20422373712062836,
-0.6089363694190979,
0.9661912322044373,
0.22916050255298615,
0.0946417897939682,
0.7013508677482605,
0.485838383436203,
-0.058992899954319,
0.6649863123893738,
0.4006180167198181,
-0.2859920561313629,
0.49729499220848083,
-0.664919912815094,
-0.20947647094726562,
-0.8672073483467102,
-0.46381351351737976,
-0.48897770047187805,
-0.485810786485672,
-0.8612304329872131,
-0.47661951184272766,
0.1922035664319992,
0.1539277881383896,
-0.21538348495960236,
0.460027813911438,
-0.9491651654243469,
0.26641836762428284,
0.33171674609184265,
0.283320814371109,
-0.14927341043949127,
0.04323962330818176,
0.09443388134241104,
0.15163327753543854,
-0.6069660186767578,
-0.2527996301651001,
1.163574457168579,
0.4964786767959595,
0.5223502516746521,
-0.10715378820896149,
0.8497593402862549,
0.011441376060247421,
0.23425588011741638,
-0.5792844295501709,
0.4937867522239685,
-0.002844805596396327,
-0.4625301659107208,
-0.16937889158725739,
-0.48691871762275696,
-0.9015899300575256,
-0.1538064181804657,
-0.43256205320358276,
-0.7138575315475464,
0.49822527170181274,
0.08981382846832275,
-0.25521865487098694,
0.40508779883384705,
-0.6367177367210388,
0.8763386607170105,
-0.034753963351249695,
-0.44099724292755127,
0.31190750002861023,
-1.022185206413269,
0.19408774375915527,
0.1581800878047943,
0.25828054547309875,
-0.44016918540000916,
0.04159674793481827,
1.0222407579421997,
-0.8251813650131226,
0.8933259844779968,
-0.3798181116580963,
0.14932523667812347,
0.6150745749473572,
-0.35279417037963867,
0.4675447344779968,
0.1377406269311905,
-0.26712802052497864,
0.3477011024951935,
0.05176165699958801,
-0.4727945327758789,
-0.42317551374435425,
0.6638553738594055,
-0.7169851660728455,
0.03466913104057312,
-0.3762534260749817,
-0.49288031458854675,
0.03551901876926422,
0.15901432931423187,
0.27247530221939087,
0.36379095911979675,
0.040679510682821274,
0.1093015968799591,
0.4343799352645874,
-0.16573020815849304,
0.3107249140739441,
0.00949957873672247,
-0.09779898822307587,
-0.7316357493400574,
0.9071807861328125,
0.1639496237039566,
0.02427675761282444,
-0.06348121911287308,
0.44881367683410645,
-0.3747180700302124,
-0.15676940977573395,
-0.6129775643348694,
0.48353052139282227,
-0.35806137323379517,
-0.3951766788959503,
-0.5066269636154175,
-0.1913139373064041,
-0.6515777707099915,
-0.17015746235847473,
-0.2556692063808441,
-0.5085496306419373,
-0.3144579231739044,
-0.18883727490901947,
1.07539963722229,
0.47944167256355286,
-0.6531899571418762,
0.17465609312057495,
-0.5481557846069336,
0.32829001545906067,
-0.029060548171401024,
0.638893723487854,
-0.12296581268310547,
-0.32417353987693787,
-0.16668178141117096,
0.08104637265205383,
-0.18916404247283936,
-0.6993894577026367,
0.3059247136116028,
-0.03254363685846329,
0.3742316663265228,
0.08026028424501419,
0.13708950579166412,
0.6812966465950012,
-0.08466129004955292,
0.6394200921058655,
0.25789663195610046,
-0.8012897968292236,
0.68626868724823,
-0.5366230607032776,
0.20078809559345245,
0.7344531416893005,
0.3909745216369629,
-0.5538466572761536,
-0.14198298752307892,
-0.9504329562187195,
-0.8769922256469727,
0.7668104767799377,
0.4129098057746887,
0.06862525641918182,
0.2147519588470459,
0.6025612354278564,
-0.20804435014724731,
0.2497999370098114,
-0.6488370299339294,
-0.8229633569717407,
-0.4086199700832367,
-0.33904919028282166,
-0.03303983435034752,
-0.10703256726264954,
-0.24111893773078918,
-0.6831604838371277,
0.7644670009613037,
-0.15692701935768127,
0.33817026019096375,
0.4150640368461609,
0.46553587913513184,
-0.19631105661392212,
-0.011210378259420395,
0.2608606517314911,
0.40918394923210144,
-0.27224692702293396,
-0.36659887433052063,
-0.1601969599723816,
-0.6310576796531677,
-0.10995244979858398,
0.5353965759277344,
-0.3721890151500702,
-0.09635067731142044,
0.2969624698162079,
0.8785161375999451,
-0.03490694239735603,
-0.2691774070262909,
0.6020781397819519,
-0.09781713783740997,
-0.4076673090457916,
-0.3730647563934326,
0.0004943808889947832,
0.12522141635417938,
0.24220877885818481,
0.09083110839128494,
0.060775719583034515,
-0.11890464276075363,
-0.4115495979785919,
0.43277138471603394,
0.27759477496147156,
-0.37100014090538025,
-0.47572723031044006,
0.594588577747345,
0.04608037695288658,
-0.14268721640110016,
0.4587295651435852,
-0.18074490129947662,
-0.6063326597213745,
0.784854531288147,
0.10551732778549194,
0.8376437425613403,
-0.14543065428733826,
0.35709527134895325,
0.7426496148109436,
0.2050216794013977,
-0.08227134495973587,
0.5650578737258911,
-0.17856861650943756,
-0.6150691509246826,
-0.13797803223133087,
-0.6194824576377869,
-0.14653357863426208,
0.06228354945778847,
-0.8398604393005371,
0.42198342084884644,
-0.5103329420089722,
-0.2564151883125305,
0.028009112924337387,
0.3659599721431732,
-0.692446231842041,
0.18693286180496216,
-0.06360239535570145,
1.0232136249542236,
-1.0423506498336792,
0.4923214614391327,
0.6578457355499268,
-0.6379936337471008,
-1.2203948497772217,
-0.09381226450204849,
0.204260915517807,
-0.5838575959205627,
0.2004595547914505,
0.2111443430185318,
0.48877158761024475,
-0.07183588296175003,
-0.878059446811676,
-0.6678208112716675,
1.1794997453689575,
0.03834511712193489,
-0.2345568835735321,
0.31666430830955505,
0.08018544316291809,
0.6245489120483398,
-0.3436964452266693,
0.2962891161441803,
0.6301336288452148,
0.6816204190254211,
0.31984081864356995,
-0.7420092821121216,
0.27535951137542725,
-0.6042294502258301,
-0.23048707842826843,
0.07100362330675125,
-1.0137460231781006,
0.6482342481613159,
-0.19225415587425232,
-0.06167929247021675,
0.019439995288848877,
0.6111951470375061,
0.4796503782272339,
0.4130600392818451,
0.4181654155254364,
0.765019953250885,
0.7755935192108154,
-0.34916576743125916,
1.2483564615249634,
-0.252323180437088,
0.6063802242279053,
0.7869744300842285,
0.0012472063535824418,
0.5472341179847717,
0.24576127529144287,
-0.3395368456840515,
0.5450769662857056,
0.6262508034706116,
-0.43100830912590027,
0.2021736055612564,
0.38617807626724243,
-0.0758601725101471,
-0.04367571324110031,
-0.279195636510849,
-0.5825999975204468,
0.33962348103523254,
0.23130802810192108,
-0.28581735491752625,
0.011779922060668468,
-0.0071183969266712666,
0.34947437047958374,
-0.024937348440289497,
-0.29308220744132996,
0.6695601940155029,
0.0377642884850502,
-0.3579867482185364,
0.5282308459281921,
-0.20502398908138275,
0.704044759273529,
-0.6083072423934937,
0.1476912945508957,
-0.08612215518951416,
0.09766452014446259,
-0.5997399091720581,
-1.1129536628723145,
0.4418204128742218,
-0.06191456317901611,
-0.2663652002811432,
-0.3468334972858429,
0.7442296743392944,
-0.42593783140182495,
-0.7989917993545532,
0.2578484117984772,
0.21157404780387878,
0.31246909499168396,
0.11669059097766876,
-1.2796339988708496,
0.5875035524368286,
0.12241357564926147,
-0.4520823061466217,
0.14542599022388458,
0.46520769596099854,
0.15515273809432983,
0.5597470998764038,
0.7225329875946045,
0.27780425548553467,
-0.2342534214258194,
0.06215102598071098,
1.126545786857605,
-0.5568906664848328,
-0.44441893696784973,
-0.7367132306098938,
0.87647545337677,
-0.3544076979160309,
-0.4099961519241333,
0.7141430974006653,
0.7342303395271301,
0.8746787905693054,
0.028000809252262115,
0.766922116279602,
-0.650826096534729,
0.6808443665504456,
-0.21812669932842255,
0.9673236608505249,
-0.6730281710624695,
-0.08485452830791473,
-0.7143236994743347,
-0.5611732602119446,
-0.4193434715270996,
0.6419563889503479,
-0.19340701401233673,
0.18061211705207825,
0.2568105161190033,
0.910252571105957,
0.05968098342418671,
0.10745300352573395,
-0.2555690407752991,
0.2779996693134308,
0.2860318124294281,
0.5466158986091614,
0.39208346605300903,
-0.9147693514823914,
0.33783936500549316,
-0.793914258480072,
-0.3276144564151764,
0.09661860018968582,
-0.8536494970321655,
-0.8883945345878601,
-0.9281821846961975,
-0.674553632736206,
-0.7685365676879883,
-0.269389808177948,
1.0325634479522705,
0.7329805493354797,
-0.7288012504577637,
-0.25206470489501953,
0.06508012115955353,
0.27454429864883423,
-0.05744818598031998,
-0.32391154766082764,
0.6506454944610596,
0.3512842655181885,
-0.6034515500068665,
-0.10376006364822388,
0.05253807455301285,
0.27002957463264465,
0.0582234226167202,
-0.07686435431241989,
-0.1334516555070877,
-0.2657184302806854,
0.3764668405056,
0.5474345088005066,
-0.34865832328796387,
-0.11105719953775406,
-0.2588033974170685,
0.05248718708753586,
0.15032467246055603,
0.47745129466056824,
-0.591921329498291,
0.22215498983860016,
0.6555283665657043,
0.31465572118759155,
0.44561144709587097,
0.20863290131092072,
0.036639247089624405,
-0.4826071858406067,
0.13555841147899628,
-0.0016486671520397067,
0.2987500727176666,
0.38697344064712524,
-0.4644032418727875,
0.760163426399231,
0.5487791895866394,
-0.5483700037002563,
-0.8178034424781799,
-0.15285040438175201,
-1.3646246194839478,
0.10274273157119751,
1.017569661140442,
-0.02286374196410179,
-0.5762359499931335,
0.08000466972589493,
-0.22042779624462128,
0.15039892494678497,
-0.5612966418266296,
0.5028970837593079,
0.5116807818412781,
-0.1122063621878624,
0.11458788067102432,
-0.3668615221977234,
0.653753936290741,
-0.0062218764796853065,
-1.017338752746582,
0.1666334867477417,
0.4151614308357239,
0.41725602746009827,
0.3071120083332062,
0.7885079383850098,
-0.267136812210083,
0.07115673273801804,
-0.08114515244960785,
0.25709712505340576,
-0.24478267133235931,
0.018269583582878113,
-0.3712708055973053,
-0.1425701230764389,
-0.4968668520450592,
-0.19531318545341492
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/miyagi | huggingartists | 2022-10-25T09:39:13Z | 294 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:39:13Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
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.6500982046127319,
-0.5079812407493591,
0.03395335003733635,
0.2840372920036316,
-0.2636364698410034,
-0.04223751649260521,
-0.3141731917858124,
-0.46999096870422363,
0.8729170560836792,
0.33234578371047974,
-0.9472788572311401,
-0.8081158399581909,
-0.5792685747146606,
0.12824058532714844,
-0.0585261806845665,
1.3093129396438599,
-0.19100594520568848,
-0.35633960366249084,
-0.2850840091705322,
-0.25368374586105347,
-0.278759628534317,
-0.26221776008605957,
-0.3067402243614197,
-0.37474411725997925,
0.3678799867630005,
0.553961455821991,
0.7148326635360718,
0.8833370208740234,
0.5066956281661987,
0.3294485807418823,
-0.041479334235191345,
0.03812437504529953,
-0.3488180339336395,
-0.09857996553182602,
0.233628511428833,
-0.380186527967453,
-0.6711207628250122,
0.24596424400806427,
0.5654037594795227,
0.3753041625022888,
-0.0894470065832138,
0.4625053107738495,
0.10411976277828217,
0.8182271718978882,
-0.3130809962749481,
0.5263616442680359,
-0.21440240740776062,
-0.15698421001434326,
-0.3274928629398346,
0.027764786034822464,
0.1958504468202591,
-0.6048122644424438,
-0.04232751205563545,
-0.8008614182472229,
0.07421271502971649,
-0.026388993486762047,
1.0562912225723267,
0.0805303305387497,
0.14138495922088623,
-0.21164055168628693,
-0.13213203847408295,
0.48514237999916077,
-0.5961058735847473,
-0.07191362977027893,
0.5960298776626587,
0.1742679625749588,
0.026259057223796844,
-0.5877355933189392,
-0.6101706624031067,
0.052402596920728683,
-0.1617349535226822,
0.2959476411342621,
-0.15367205440998077,
-0.30580031871795654,
0.5534802079200745,
0.5451163649559021,
-0.5077358484268188,
-0.23572471737861633,
-0.49147534370422363,
-0.09405232220888138,
1.170729637145996,
0.1620749682188034,
0.47430893778800964,
-0.4832500219345093,
-0.2165052592754364,
-0.40223297476768494,
-0.29651114344596863,
0.3336097300052643,
0.5962069630622864,
0.3973897099494934,
-0.9969432353973389,
0.607374370098114,
-0.21790160238742828,
0.5154377818107605,
0.13012196123600006,
-0.07286513596773148,
0.7706858515739441,
-0.3843103349208832,
-0.10057178884744644,
-0.1096419245004654,
1.0880022048950195,
0.6999735832214355,
0.20062218606472015,
0.1485329419374466,
-0.01236054114997387,
0.051353637129068375,
-0.18521173298358917,
-0.8834949135780334,
-0.3865021765232086,
0.5908297896385193,
-0.6237427592277527,
-0.5730969309806824,
0.18313266336917877,
-1.0362956523895264,
-0.2462049126625061,
-0.24748849868774414,
0.24404376745224,
-0.3761328458786011,
-0.5396650433540344,
0.1490994095802307,
-0.2550685405731201,
0.156820148229599,
0.061262648552656174,
-0.6964979767799377,
0.15335354208946228,
0.5947391390800476,
0.771558940410614,
0.26450085639953613,
-0.35948988795280457,
-0.26401758193969727,
-0.18893471360206604,
-0.12031890451908112,
0.6279107928276062,
-0.2915634214878082,
-0.3586329221725464,
-0.17314812541007996,
0.33736276626586914,
-0.09073275327682495,
-0.27543890476226807,
0.9090970754623413,
0.09269111603498459,
0.16978369653224945,
-0.5508361458778381,
-0.39599838852882385,
0.007725888397544622,
0.2562587857246399,
-0.7543463110923767,
1.0268325805664062,
0.2917068600654602,
-1.0473695993423462,
0.1977265477180481,
-0.8279349207878113,
-0.2903396487236023,
0.0356227271258831,
0.06594610214233398,
-0.771435022354126,
-0.16700640320777893,
0.21427065134048462,
0.7359264492988586,
-0.3289282023906708,
0.018101414665579796,
-0.6186830997467041,
-0.17511337995529175,
0.3679596483707428,
0.19454315304756165,
1.1804594993591309,
0.13654226064682007,
-0.15362709760665894,
0.08492331206798553,
-0.9288243055343628,
0.11129934340715408,
0.46966254711151123,
-0.17386524379253387,
-0.1180252879858017,
-0.2267114669084549,
0.39420971274375916,
0.27268078923225403,
0.08147934824228287,
-0.581230103969574,
0.4568617045879364,
-0.21376889944076538,
0.4788833558559418,
0.7263931632041931,
-0.01478777825832367,
0.3053215742111206,
-0.6672624349594116,
0.44573327898979187,
0.05702515318989754,
0.4000851511955261,
-0.08963273465633392,
-0.6131302118301392,
-0.5462749004364014,
-0.23552635312080383,
0.30072495341300964,
0.45360100269317627,
-0.7077517509460449,
0.974343478679657,
-0.3412734568119049,
-0.8639439940452576,
-0.7354506254196167,
0.0823025181889534,
0.16935548186302185,
0.49962738156318665,
0.3560381531715393,
-0.4234396815299988,
-0.5761657953262329,
-0.6847441792488098,
0.0943809300661087,
-0.2566554546356201,
0.16491425037384033,
0.3994220495223999,
0.822449266910553,
-0.2584855854511261,
0.7913655042648315,
-0.6887338161468506,
-0.24671153724193573,
-0.22280073165893555,
-0.2657918930053711,
0.387675940990448,
0.7797989845275879,
0.6808657050132751,
-0.8171994090080261,
-0.4924692213535309,
-0.23893384635448456,
-0.723436713218689,
-0.12663790583610535,
-0.05152935907244682,
-0.28823626041412354,
0.033505816012620926,
0.10650947690010071,
-0.7367966771125793,
0.5463681817054749,
0.5037946701049805,
-0.6515912413597107,
0.5881072878837585,
0.07083942741155624,
0.05557811260223389,
-1.291788935661316,
0.37232428789138794,
0.25625163316726685,
0.07642215490341187,
-0.6012572050094604,
-0.13615332543849945,
-0.05064627528190613,
-0.03516020253300667,
-0.07310855388641357,
0.5984662175178528,
-0.3489353060722351,
0.30135828256607056,
0.08531996607780457,
0.016604498028755188,
0.08399016410112381,
0.46333974599838257,
-0.07591085135936737,
0.3022262454032898,
1.005048155784607,
-0.3676052391529083,
0.6348957419395447,
0.5876458287239075,
-0.2996777594089508,
0.8381568193435669,
-0.8039485812187195,
-0.00271976669318974,
-0.28157952427864075,
0.3882772624492645,
-0.8197058439254761,
-0.5665432214736938,
0.8985567092895508,
-0.7380269169807434,
0.41726526618003845,
-0.2546703815460205,
-0.5788662433624268,
-0.7574008703231812,
-0.6882294416427612,
0.11168307811021805,
0.5026010870933533,
-0.4061853885650635,
0.38045597076416016,
0.5511035919189453,
0.05635625123977661,
-0.4116080105304718,
-0.8066591024398804,
-0.15715576708316803,
-0.4090747833251953,
-0.80434250831604,
0.4243389070034027,
-0.35877811908721924,
-0.04972142353653908,
0.12201529741287231,
0.11825769394636154,
0.11371781677007675,
0.04022238031029701,
0.41508838534355164,
0.3442450165748596,
0.05796530842781067,
-0.02042376436293125,
-0.08629996329545975,
-0.2786714732646942,
0.12222181260585785,
-0.14438003301620483,
0.28790023922920227,
-0.2982487976551056,
-0.16049513220787048,
-0.667624294757843,
0.2450941652059555,
0.4749322831630707,
-0.26213058829307556,
0.6835930943489075,
0.8667023777961731,
-0.2720733880996704,
0.030412063002586365,
-0.4631759822368622,
-0.12148506939411163,
-0.40754082798957825,
0.048769090324640274,
-0.246054008603096,
-0.6475903391838074,
0.9143305420875549,
0.26202207803726196,
0.10401885956525803,
0.6867147088050842,
0.46426618099212646,
-0.07662485539913177,
0.7333399057388306,
0.3654491901397705,
-0.33333948254585266,
0.5206639170646667,
-0.6721396446228027,
-0.21868769824504852,
-0.8862502574920654,
-0.4580458998680115,
-0.5263867974281311,
-0.5160269141197205,
-0.9212000370025635,
-0.43261611461639404,
0.21205849945545197,
0.20494796335697174,
-0.20297308266162872,
0.4398024082183838,
-0.9217837452888489,
0.26370692253112793,
0.3566664755344391,
0.2840465307235718,
-0.11770544201135635,
0.1091192439198494,
0.1301901936531067,
0.1263432502746582,
-0.5861108899116516,
-0.22461380064487457,
1.1288621425628662,
0.5070082545280457,
0.5667511820793152,
-0.09217866510152817,
0.8450261354446411,
-0.023523908108472824,
0.2699722945690155,
-0.5396995544433594,
0.47308671474456787,
0.04754668101668358,
-0.4891020655632019,
-0.14654652774333954,
-0.5127875208854675,
-0.9362062811851501,
-0.06247514858841896,
-0.4473802447319031,
-0.7183206677436829,
0.4678081274032593,
0.0438731387257576,
-0.24317869544029236,
0.3593235909938812,
-0.6161513328552246,
0.8168179392814636,
-0.0631498470902443,
-0.4386492371559143,
0.23993751406669617,
-1.0395089387893677,
0.23747393488883972,
0.24052564799785614,
0.26670554280281067,
-0.423418790102005,
0.01654365286231041,
1.0053969621658325,
-0.7859868407249451,
0.9304834604263306,
-0.3875555992126465,
0.1621483564376831,
0.5800908803939819,
-0.3529440760612488,
0.39854738116264343,
0.12703363597393036,
-0.2643893361091614,
0.3370344340801239,
0.03019724227488041,
-0.43206629157066345,
-0.4578339159488678,
0.692900538444519,
-0.7468729019165039,
0.019435875117778778,
-0.3570694029331207,
-0.44899722933769226,
0.07927241176366806,
0.16900749504566193,
0.3203027844429016,
0.34218814969062805,
0.03270157054066658,
0.14767152070999146,
0.417221337556839,
-0.14057672023773193,
0.31105875968933105,
0.03230807185173035,
-0.09604834020137787,
-0.8006691932678223,
0.9286336302757263,
0.18759235739707947,
0.012027156539261341,
-0.05024643987417221,
0.41633519530296326,
-0.33466416597366333,
-0.08659956604242325,
-0.6597734093666077,
0.47590598464012146,
-0.3898976147174835,
-0.38421347737312317,
-0.468751460313797,
-0.2031356692314148,
-0.6132110953330994,
-0.10906939953565598,
-0.2116791307926178,
-0.48673683404922485,
-0.3684706687927246,
-0.1828669309616089,
0.9896843433380127,
0.42297065258026123,
-0.6573350429534912,
0.14365382492542267,
-0.5655021071434021,
0.25684383511543274,
-0.09643742442131042,
0.6396663784980774,
-0.053471338003873825,
-0.2955508828163147,
-0.2356693595647812,
0.11462362855672836,
-0.208365797996521,
-0.7325429916381836,
0.2672247886657715,
-0.022190798074007034,
0.40315961837768555,
0.1778845191001892,
0.05474228784441948,
0.6785999536514282,
-0.0006491753738373518,
0.6332973837852478,
0.32662588357925415,
-0.7654504179954529,
0.702920138835907,
-0.5338427424430847,
0.17655499279499054,
0.737250566482544,
0.4114416241645813,
-0.6437564492225647,
-0.069936603307724,
-0.9632788896560669,
-0.8198387026786804,
0.8267973065376282,
0.3947504162788391,
0.06141439452767372,
0.23447547852993011,
0.5783025026321411,
-0.17308396100997925,
0.2880353331565857,
-0.6494078040122986,
-0.8754460215568542,
-0.3805510401725769,
-0.3333493173122406,
-0.06428206712007523,
-0.10363045334815979,
-0.19257426261901855,
-0.6949599981307983,
0.7776067852973938,
-0.1698683500289917,
0.33967164158821106,
0.3773781359195709,
0.42405715584754944,
-0.2112685739994049,
-0.008413584902882576,
0.2759421169757843,
0.31323522329330444,
-0.2075951099395752,
-0.3378225564956665,
-0.1941283792257309,
-0.6085744500160217,
-0.09439872205257416,
0.5219510197639465,
-0.4184226095676422,
-0.0888977199792862,
0.3190596401691437,
0.9373570680618286,
-0.019910328090190887,
-0.23369508981704712,
0.5689156651496887,
-0.062044188380241394,
-0.393322229385376,
-0.3268792927265167,
0.06321658194065094,
0.16684982180595398,
0.2118052840232849,
0.02659476548433304,
0.08896905183792114,
-0.0892239511013031,
-0.43101397156715393,
0.3741223216056824,
0.2174272984266281,
-0.35083046555519104,
-0.4625643193721771,
0.5941680669784546,
0.046363770961761475,
-0.11311516165733337,
0.5251021981239319,
-0.1431162804365158,
-0.5866202712059021,
0.8060513138771057,
0.1451592892408371,
0.8175535798072815,
-0.22116771340370178,
0.3502901494503021,
0.7813634276390076,
0.2307106852531433,
-0.07593932747840881,
0.5197659730911255,
-0.22928248345851898,
-0.6618310809135437,
-0.03431486710906029,
-0.5740516781806946,
-0.11874894052743912,
0.08617547154426575,
-0.8571611046791077,
0.4453887641429901,
-0.5023630261421204,
-0.21415632963180542,
0.012286239303648472,
0.40760526061058044,
-0.6928462982177734,
0.15973062813282013,
-0.01933399960398674,
1.003981590270996,
-1.0399938821792603,
0.5060645341873169,
0.6683648824691772,
-0.6914200782775879,
-1.1465257406234741,
-0.125923290848732,
0.1655581295490265,
-0.6121786832809448,
0.11666413396596909,
0.2849295437335968,
0.4968819320201874,
-0.07992913573980331,
-0.9174304604530334,
-0.6440677642822266,
1.2103712558746338,
0.06266796588897705,
-0.21483144164085388,
0.33755946159362793,
0.10915356129407883,
0.62286776304245,
-0.36448970437049866,
0.37168222665786743,
0.6734959483146667,
0.703143835067749,
0.26440832018852234,
-0.6835468411445618,
0.2626643776893616,
-0.6981717944145203,
-0.22022494673728943,
0.07910099625587463,
-1.0642508268356323,
0.6456288695335388,
-0.17985494434833527,
-0.06596959382295609,
0.0393916517496109,
0.6375364065170288,
0.4838320016860962,
0.4084675908088684,
0.434607595205307,
0.7606911063194275,
0.8200397491455078,
-0.3349401354789734,
1.195847988128662,
-0.2628205418586731,
0.5967620611190796,
0.794001579284668,
0.054150525480508804,
0.5140653252601624,
0.22630201280117035,
-0.32314348220825195,
0.5577493906021118,
0.680799663066864,
-0.4709036648273468,
0.24205194413661957,
0.38756150007247925,
-0.0807722806930542,
-0.06412872672080994,
-0.3038023114204407,
-0.6109169125556946,
0.33066919445991516,
0.2636469602584839,
-0.31974199414253235,
-0.005511187482625246,
-0.025714268907904625,
0.39088499546051025,
-0.08097309619188309,
-0.25343719124794006,
0.6002947092056274,
0.05364735797047615,
-0.4080152213573456,
0.5284003615379333,
-0.11975555121898651,
0.7548695206642151,
-0.6253955364227295,
0.12059543281793594,
-0.11028753966093063,
0.08717717230319977,
-0.6360518932342529,
-1.0852645635604858,
0.3978455662727356,
-0.06707026064395905,
-0.229971244931221,
-0.3220033049583435,
0.7714585065841675,
-0.4662655293941498,
-0.7434055805206299,
0.22270984947681427,
0.1892048418521881,
0.3359597325325012,
0.12679199874401093,
-1.2739821672439575,
0.5693081617355347,
0.17216365039348602,
-0.46322101354599,
0.17625917494297028,
0.44246336817741394,
0.1643410623073578,
0.5403664112091064,
0.7155353426933289,
0.21878673136234283,
-0.2371700555086136,
0.09468699991703033,
1.0630427598953247,
-0.5108685493469238,
-0.48275524377822876,
-0.7752428650856018,
0.8788167834281921,
-0.34162044525146484,
-0.4338230490684509,
0.6979053020477295,
0.745158314704895,
0.8867542147636414,
0.009856965392827988,
0.8359827995300293,
-0.6282793879508972,
0.5882699489593506,
-0.23866158723831177,
0.9774744510650635,
-0.7146482467651367,
-0.1011335700750351,
-0.6888484358787537,
-0.5292022824287415,
-0.4010118544101715,
0.6941227316856384,
-0.12855154275894165,
0.19228136539459229,
0.24368467926979065,
0.9502244591712952,
0.04865064471960068,
0.1794470101594925,
-0.24366626143455505,
0.2510121166706085,
0.2645112872123718,
0.6317822933197021,
0.4873175621032715,
-0.9254299998283386,
0.31832849979400635,
-0.7822163105010986,
-0.33271968364715576,
0.0007573099574074149,
-0.8195725679397583,
-0.8680251836776733,
-0.9567301273345947,
-0.6467927098274231,
-0.7448469996452332,
-0.34437641501426697,
1.07290780544281,
0.7179265022277832,
-0.6709246635437012,
-0.27345603704452515,
0.09191957861185074,
0.24126160144805908,
-0.07260917127132416,
-0.3210906982421875,
0.6228970289230347,
0.4070867598056793,
-0.6291155219078064,
-0.11441727727651596,
0.00975380651652813,
0.23177579045295715,
0.03650101274251938,
-0.12300033122301102,
-0.1032164916396141,
-0.31265130639076233,
0.31503912806510925,
0.4568443298339844,
-0.33886125683784485,
-0.09814880043268204,
-0.27425727248191833,
0.017338890582323074,
0.19072876870632172,
0.4766172766685486,
-0.459095299243927,
0.23211491107940674,
0.6800932288169861,
0.2901269793510437,
0.46289435029029846,
0.17875325679779053,
-0.025111105293035507,
-0.45047566294670105,
0.06946790963411331,
-0.06704861670732498,
0.3491427004337311,
0.3840823471546173,
-0.46654343605041504,
0.8007195591926575,
0.5719910264015198,
-0.4774138033390045,
-0.7805703282356262,
-0.15147694945335388,
-1.2794482707977295,
0.10502904653549194,
1.0165585279464722,
-0.02886461839079857,
-0.5500914454460144,
0.1465526819229126,
-0.23341214656829834,
0.19022490084171295,
-0.5325316786766052,
0.4632073938846588,
0.5841015577316284,
-0.09350064396858215,
0.08584637194871902,
-0.3739496171474457,
0.5854330062866211,
-0.0067249624989926815,
-1.0369750261306763,
0.1694679856300354,
0.4365047514438629,
0.4730492830276489,
0.3211766183376312,
0.8383353352546692,
-0.2729312777519226,
0.07815294712781906,
-0.02746644988656044,
0.30720964074134827,
-0.26907384395599365,
-0.03629866614937782,
-0.4132364094257355,
-0.13001973927021027,
-0.4881344139575958,
-0.2663418650627136
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/queen | huggingartists | 2022-10-25T09:42:11Z | 294 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:42:11Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/queen"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 0.622527 MB
<div class="inline-flex flex-col" style="line-height: 1.5;">
<div class="flex">
<div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('https://images.genius.com/30a049d2de687550227ba815650eb196.585x585x1.png')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/queen">
<div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div>
</a>
<div style="text-align: center; font-size: 16px; font-weight: 800">Queen</div>
<a href="https://genius.com/artists/queen">
<div style="text-align: center; font-size: 14px;">@queen</div>
</a>
</div>
### Dataset Summary
The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists.
Model is available [here](https://huggingface.co/huggingartists/queen).
### Supported Tasks and Leaderboards
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Languages
en
## How to use
How to load this dataset directly with the datasets library:
```python
from datasets import load_dataset
dataset = load_dataset("huggingartists/queen")
```
## Dataset Structure
An example of 'train' looks as follows.
```
This example was too long and was cropped:
{
"text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..."
}
```
### Data Fields
The data fields are the same among all splits.
- `text`: a `string` feature.
### Data Splits
| train |validation|test|
|------:|---------:|---:|
|580| -| -|
'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code:
```python
from datasets import load_dataset, Dataset, DatasetDict
import numpy as np
datasets = load_dataset("huggingartists/queen")
train_percentage = 0.9
validation_percentage = 0.07
test_percentage = 0.03
train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))])
datasets = DatasetDict(
{
'train': Dataset.from_dict({'text': list(train)}),
'validation': Dataset.from_dict({'text': list(validation)}),
'test': Dataset.from_dict({'text': list(test)})
}
)
```
## Dataset Creation
### Curation Rationale
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the source language producers?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Annotations
#### Annotation process
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the annotators?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Personal and Sensitive Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Discussion of Biases
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Other Known Limitations
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Additional Information
### Dataset Curators
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Licensing Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Citation Information
```
@InProceedings{huggingartists,
author={Aleksey Korshuk}
year=2021
}
```
## About
*Built by Aleksey Korshuk*
[](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.6120972037315369,
-0.5115523934364319,
0.05768771842122078,
0.2895406186580658,
-0.271651029586792,
0.03531419485807419,
-0.2553788721561432,
-0.45775148272514343,
0.8795747756958008,
0.3812809884548187,
-0.9191007018089294,
-0.8354353308677673,
-0.5425407290458679,
0.15037527680397034,
-0.10508978366851807,
1.234281063079834,
-0.18841463327407837,
-0.3456328213214874,
-0.32857009768486023,
-0.20827516913414001,
-0.35441306233406067,
-0.33125776052474976,
-0.26681238412857056,
-0.30180108547210693,
0.3609464466571808,
0.5777824521064758,
0.7506287693977356,
0.9112268686294556,
0.5249621868133545,
0.3259061574935913,
-0.11036819964647293,
0.0243705902248621,
-0.38233911991119385,
-0.13233016431331635,
0.2052386999130249,
-0.3134046196937561,
-0.6664802432060242,
0.217376708984375,
0.559285044670105,
0.4069840610027313,
-0.08659866452217102,
0.48598164319992065,
0.052028194069862366,
0.8981499671936035,
-0.2865181267261505,
0.49176546931266785,
-0.2613407373428345,
-0.12571972608566284,
-0.29110851883888245,
0.05152911692857742,
0.19814859330654144,
-0.6229667663574219,
-0.0031666047871112823,
-0.711233377456665,
0.04218357056379318,
0.05482592433691025,
0.9914856553077698,
0.05920027941465378,
0.07261853665113449,
-0.2064535915851593,
-0.18403476476669312,
0.5193342566490173,
-0.5826202630996704,
-0.006664160639047623,
0.5753347277641296,
0.18840628862380981,
0.011328525841236115,
-0.6030172109603882,
-0.6482783555984497,
0.0782991424202919,
-0.15907923877239227,
0.290449857711792,
-0.2057540863752365,
-0.3238128423690796,
0.506437361240387,
0.5458175539970398,
-0.48988857865333557,
-0.24348627030849457,
-0.5482152104377747,
-0.11382691562175751,
1.1345086097717285,
0.16190704703330994,
0.425057590007782,
-0.5633108019828796,
-0.19975952804088593,
-0.37312886118888855,
-0.2748604714870453,
0.4158748686313629,
0.5698525309562683,
0.46717244386672974,
-1.0341426134109497,
0.6228469014167786,
-0.14203156530857086,
0.5288166999816895,
0.15610238909721375,
-0.0017539418768137693,
0.7405139207839966,
-0.35089293122291565,
-0.09190252423286438,
-0.11981339007616043,
1.038572907447815,
0.6880108714103699,
0.1306239664554596,
0.05496443063020706,
-0.054589759558439255,
0.07693972438573837,
-0.13936357200145721,
-0.8227794766426086,
-0.4344443082809448,
0.6740756034851074,
-0.5761268138885498,
-0.6101149916648865,
0.1199568435549736,
-0.9854499697685242,
-0.22182545065879822,
-0.32165348529815674,
0.3024396002292633,
-0.3442603051662445,
-0.5326518416404724,
0.163448765873909,
-0.26795101165771484,
0.14497418701648712,
0.02029826119542122,
-0.6249428391456604,
0.20605050027370453,
0.5838903784751892,
0.7442265152931213,
0.1290573626756668,
-0.261710524559021,
-0.27091068029403687,
-0.18500608205795288,
-0.1661136895418167,
0.680869996547699,
-0.2966715693473816,
-0.35627397894859314,
-0.13232576847076416,
0.3451530337333679,
-0.05046194791793823,
-0.314327210187912,
0.9017406105995178,
0.030174020677804947,
0.14220111072063446,
-0.6350054740905762,
-0.38745880126953125,
-0.0090809790417552,
0.25131380558013916,
-0.8166999220848083,
1.0469918251037598,
0.3079061508178711,
-1.0157251358032227,
0.18462197482585907,
-0.8062936663627625,
-0.3153243362903595,
0.00995318591594696,
0.0631628930568695,
-0.8220438957214355,
-0.21132929623126984,
0.2182108461856842,
0.7580668926239014,
-0.34313830733299255,
0.0008851601742208004,
-0.5939667820930481,
-0.11476010829210281,
0.3932625651359558,
0.28184759616851807,
1.1507959365844727,
0.0658365786075592,
-0.11544379591941833,
0.12137334793806076,
-0.9682148694992065,
0.09204274415969849,
0.4089333713054657,
-0.1467786729335785,
-0.062053076922893524,
-0.22234979271888733,
0.41399189829826355,
0.285773366689682,
0.06568083167076111,
-0.577387273311615,
0.41949906945228577,
-0.14467376470565796,
0.5122299790382385,
0.7571708559989929,
0.009194348938763142,
0.2859485447406769,
-0.7243198156356812,
0.431644469499588,
0.09367305040359497,
0.38686585426330566,
0.057206347584724426,
-0.5370377898216248,
-0.4902684986591339,
-0.3090968728065491,
0.3462141752243042,
0.4477963149547577,
-0.7039467096328735,
0.9848325252532959,
-0.32324352860450745,
-0.8553851246833801,
-0.6711694002151489,
0.0854254886507988,
0.1778816431760788,
0.49923133850097656,
0.3855908215045929,
-0.4077503979206085,
-0.6423404216766357,
-0.7178971171379089,
0.1276608258485794,
-0.24117352068424225,
0.2102068066596985,
0.4153445363044739,
0.8464129567146301,
-0.27679622173309326,
0.8836442232131958,
-0.6685761213302612,
-0.2349018156528473,
-0.2860696315765381,
-0.29677024483680725,
0.3929206132888794,
0.8205050230026245,
0.6728935837745667,
-0.8623658418655396,
-0.4642566740512848,
-0.30807170271873474,
-0.6461567878723145,
-0.0990217849612236,
-0.01718185842037201,
-0.3594154417514801,
0.03522457182407379,
0.08208051323890686,
-0.6615732908248901,
0.5384722948074341,
0.5226481556892395,
-0.6558817028999329,
0.6370120644569397,
0.12817057967185974,
0.042991336435079575,
-1.3010084629058838,
0.3653341233730316,
0.1867925077676773,
-0.009559014812111855,
-0.5975300669670105,
-0.2509150505065918,
-0.024371210485696793,
-0.023033978417515755,
-0.06508354097604752,
0.5536954402923584,
-0.33974412083625793,
0.2622295618057251,
0.12736457586288452,
0.05197323486208916,
0.08737515658140182,
0.4956503212451935,
-0.04549579322338104,
0.27039557695388794,
1.0163357257843018,
-0.427795946598053,
0.6574920415878296,
0.6599829196929932,
-0.21998435258865356,
0.8068506717681885,
-0.7872129082679749,
0.05031915381550789,
-0.2603174149990082,
0.35333383083343506,
-0.8785127401351929,
-0.5094728469848633,
0.7916055917739868,
-0.7149351835250854,
0.37437203526496887,
-0.24415460228919983,
-0.5474480986595154,
-0.8131470084190369,
-0.697404682636261,
0.11610311269760132,
0.5533017516136169,
-0.3945172131061554,
0.4401251971721649,
0.617169201374054,
0.11846115440130234,
-0.37541380524635315,
-0.8066390752792358,
-0.17755059897899628,
-0.3616906404495239,
-0.8266569375991821,
0.4231537878513336,
-0.3911955654621124,
-0.07312587648630142,
0.15444038808345795,
0.04158519208431244,
0.10574370622634888,
0.010151044465601444,
0.4202602803707123,
0.35030582547187805,
0.11281562596559525,
-0.004410606808960438,
-0.09310957789421082,
-0.2375616729259491,
0.12739145755767822,
-0.1621663123369217,
0.2668285071849823,
-0.26091814041137695,
-0.11119373887777328,
-0.6621314883232117,
0.22755315899848938,
0.4921811819076538,
-0.2470749467611313,
0.6929779648780823,
0.7534833550453186,
-0.2692357003688812,
-0.032826412469148636,
-0.5066766738891602,
-0.14461244642734528,
-0.408649206161499,
0.023560168221592903,
-0.26138269901275635,
-0.6169953346252441,
0.9888079166412354,
0.2741187512874603,
0.09895174205303192,
0.6890251040458679,
0.45732977986335754,
-0.0578339658677578,
0.6816383600234985,
0.44203415513038635,
-0.27932408452033997,
0.4874661862850189,
-0.6883029937744141,
-0.22261005640029907,
-0.9062288999557495,
-0.4324330985546112,
-0.5125166177749634,
-0.5120318531990051,
-0.8892621397972107,
-0.4238697290420532,
0.2223643809556961,
0.18042758107185364,
-0.22456450760364532,
0.47394973039627075,
-0.9570178389549255,
0.2166931927204132,
0.3692246079444885,
0.32246676087379456,
-0.10678409039974213,
0.037151120603084564,
0.05497608706355095,
0.14459465444087982,
-0.6024710536003113,
-0.25777164101600647,
1.1448546648025513,
0.49145665764808655,
0.5162594318389893,
-0.022704588249325752,
0.7912083864212036,
0.08465903997421265,
0.20818032324314117,
-0.5174986720085144,
0.4847981035709381,
0.03852105140686035,
-0.49589797854423523,
-0.1464158147573471,
-0.5025092363357544,
-0.9032390713691711,
-0.14227451384067535,
-0.48608487844467163,
-0.6867300271987915,
0.5083920359611511,
0.11133956164121628,
-0.2836686074733734,
0.39368000626564026,
-0.5956457853317261,
0.8783667683601379,
-0.03596244379878044,
-0.4491162896156311,
0.2845747768878937,
-1.0022114515304565,
0.220506489276886,
0.1693253219127655,
0.27899789810180664,
-0.39445748925209045,
0.02951033227145672,
1.042731523513794,
-0.8063498735427856,
0.9094869494438171,
-0.3069090247154236,
0.18140555918216705,
0.557245135307312,
-0.2886905372142792,
0.4673234224319458,
0.08971826732158661,
-0.25877639651298523,
0.28855597972869873,
0.07234916090965271,
-0.4637582302093506,
-0.41270264983177185,
0.6338351368904114,
-0.781775951385498,
0.04869472235441208,
-0.3648029565811157,
-0.4525870084762573,
0.02864840440452099,
0.1141677126288414,
0.25620296597480774,
0.4272400736808777,
0.055323679000139236,
0.13428691029548645,
0.44069674611091614,
-0.14245355129241943,
0.27944812178611755,
0.09457403421401978,
-0.1331920474767685,
-0.8126543760299683,
0.8626055121421814,
0.1964503526687622,
0.07219543308019638,
0.01181409228593111,
0.4475841224193573,
-0.377015620470047,
-0.14818286895751953,
-0.5973002910614014,
0.4467078149318695,
-0.4149387776851654,
-0.3979666829109192,
-0.5406486392021179,
-0.1479695737361908,
-0.6658331155776978,
-0.15935763716697693,
-0.2132268100976944,
-0.5217255353927612,
-0.31864604353904724,
-0.2347242534160614,
1.1015632152557373,
0.4707930386066437,
-0.7314912676811218,
0.14843575656414032,
-0.5402966141700745,
0.32086265087127686,
-0.021198783069849014,
0.6266865134239197,
-0.0692693367600441,
-0.340401828289032,
-0.19876958429813385,
0.06382191926240921,
-0.17358265817165375,
-0.7509390115737915,
0.26729682087898254,
-0.12157359719276428,
0.3714304566383362,
0.10064370185136795,
0.16896389424800873,
0.694898247718811,
-0.05055113509297371,
0.6537746787071228,
0.28519439697265625,
-0.8358774781227112,
0.6454095244407654,
-0.5040839314460754,
0.13902676105499268,
0.7158352136611938,
0.3959987163543701,
-0.6593521237373352,
-0.09380199760198593,
-0.9556660056114197,
-0.8787354826927185,
0.8002659678459167,
0.4322313070297241,
-0.0030466513708233833,
0.23414769768714905,
0.5729689598083496,
-0.17358629405498505,
0.32252395153045654,
-0.669129490852356,
-0.8654221296310425,
-0.37013137340545654,
-0.32044684886932373,
-0.003609226318076253,
-0.12295158952474594,
-0.18359623849391937,
-0.6918206810951233,
0.8226621747016907,
-0.09092161059379578,
0.3440462648868561,
0.4086010456085205,
0.39026105403900146,
-0.24446935951709747,
-0.021707573905587196,
0.25558146834373474,
0.3907007873058319,
-0.26977506279945374,
-0.28757989406585693,
-0.16438667476177216,
-0.6172206401824951,
-0.1630496382713318,
0.49935829639434814,
-0.3607235550880432,
-0.11357800662517548,
0.31013110280036926,
0.8914090991020203,
-0.006702236831188202,
-0.2431056648492813,
0.5632193088531494,
-0.06543475389480591,
-0.3606730103492737,
-0.42669805884361267,
-0.017339222133159637,
0.15120746195316315,
0.23544014990329742,
0.07003258168697357,
0.08087141066789627,
-0.1000266969203949,
-0.4555688798427582,
0.41536903381347656,
0.24749131500720978,
-0.4063246548175812,
-0.46317461133003235,
0.5839987397193909,
0.07992518693208694,
-0.1301812380552292,
0.43127623200416565,
-0.18696726858615875,
-0.6698145866394043,
0.7885897159576416,
0.10912590473890305,
0.821189284324646,
-0.15244993567466736,
0.3086344599723816,
0.7472321391105652,
0.24143999814987183,
-0.0644456073641777,
0.5933380126953125,
-0.19111013412475586,
-0.642019510269165,
-0.05410248786211014,
-0.5867094397544861,
-0.17796725034713745,
0.08010926097631454,
-0.8343905210494995,
0.45934268832206726,
-0.47986555099487305,
-0.2050783783197403,
0.03582821041345596,
0.42775359749794006,
-0.7038789391517639,
0.14004601538181305,
-0.05340680480003357,
1.0314887762069702,
-1.0599673986434937,
0.4192672371864319,
0.6568952798843384,
-0.707232654094696,
-1.2209538221359253,
-0.16259634494781494,
0.1704191118478775,
-0.5795943737030029,
0.17007428407669067,
0.21840529143810272,
0.470298707485199,
-0.05408307537436485,
-0.936369001865387,
-0.6713231205940247,
1.179758071899414,
-0.005852315574884415,
-0.25492238998413086,
0.35639438033103943,
0.14368313550949097,
0.5672898888587952,
-0.36359360814094543,
0.35496288537979126,
0.6685905456542969,
0.6837479472160339,
0.30830276012420654,
-0.7339252829551697,
0.3002631366252899,
-0.6157404780387878,
-0.21655505895614624,
0.05682018771767616,
-0.990914523601532,
0.6570715308189392,
-0.148755744099617,
-0.0402754545211792,
0.019204655662178993,
0.6493061780929565,
0.4363008439540863,
0.32668888568878174,
0.4674186110496521,
0.7294565439224243,
0.8429681062698364,
-0.31899675726890564,
1.1622711420059204,
-0.278372198343277,
0.5692889094352722,
0.7352953553199768,
0.026136251166462898,
0.552479088306427,
0.18610809743404388,
-0.31113648414611816,
0.5718142986297607,
0.6670861840248108,
-0.4346764087677002,
0.23516951501369476,
0.4468388855457306,
-0.02292732335627079,
-0.10507047176361084,
-0.23569972813129425,
-0.562360942363739,
0.27010926604270935,
0.19690102338790894,
-0.26984477043151855,
0.04781737178564072,
0.012596344575285912,
0.3678569495677948,
-0.027352025732398033,
-0.3263208270072937,
0.6266530752182007,
0.015606557950377464,
-0.35798200964927673,
0.5445683598518372,
-0.18859180808067322,
0.7331005334854126,
-0.5867956280708313,
0.12185222655534744,
-0.07670348137617111,
0.11466062813997269,
-0.6402122378349304,
-1.0721603631973267,
0.3778247833251953,
-0.06343305110931396,
-0.3074254095554352,
-0.3123392164707184,
0.6954402327537537,
-0.4626215398311615,
-0.7853221893310547,
0.19488346576690674,
0.19697688519954681,
0.3448185622692108,
0.1347724050283432,
-1.2403993606567383,
0.599971354007721,
0.16090016067028046,
-0.4014900326728821,
0.06253062933683395,
0.516525149345398,
0.15955860912799835,
0.5323790907859802,
0.7169744372367859,
0.21707206964492798,
-0.2414143830537796,
0.05618562176823616,
1.0988012552261353,
-0.6029361486434937,
-0.48921531438827515,
-0.7336702346801758,
0.9098886251449585,
-0.34228751063346863,
-0.3921959698200226,
0.6716201305389404,
0.8077374696731567,
0.8105103969573975,
0.010242348536849022,
0.8264786601066589,
-0.6282069683074951,
0.7457075119018555,
-0.23651374876499176,
0.9484328627586365,
-0.6703182458877563,
-0.06481660157442093,
-0.7354807257652283,
-0.48404064774513245,
-0.397274911403656,
0.6532488465309143,
-0.20934925973415375,
0.15698981285095215,
0.2892168164253235,
0.9433767199516296,
0.0505332387983799,
0.1590898633003235,
-0.23275044560432434,
0.318801611661911,
0.27193483710289,
0.5595609545707703,
0.45066943764686584,
-0.862257182598114,
0.3601227402687073,
-0.7594479322433472,
-0.32802197337150574,
0.019320134073495865,
-0.872870683670044,
-0.9300413727760315,
-0.9650998115539551,
-0.6851909160614014,
-0.8009421825408936,
-0.29625409841537476,
1.140882968902588,
0.7067030072212219,
-0.7078105807304382,
-0.27467846870422363,
0.09383029490709305,
0.2888696789741516,
-0.09387760609388351,
-0.31096771359443665,
0.7075210213661194,
0.38798075914382935,
-0.5639036297798157,
-0.16185882687568665,
-0.027219589799642563,
0.25112587213516235,
0.004465866833925247,
-0.04702349007129669,
-0.1088058277964592,
-0.2527369558811188,
0.34107157588005066,
0.45101165771484375,
-0.29898136854171753,
-0.12409290671348572,
-0.22812940180301666,
0.018966153264045715,
0.20493514835834503,
0.4411083161830902,
-0.5420984029769897,
0.17327781021595,
0.6616260409355164,
0.27186843752861023,
0.45433416962623596,
0.18524783849716187,
0.005262788850814104,
-0.4341830611228943,
0.019947964698076248,
0.002620417159050703,
0.30620208382606506,
0.4209034740924835,
-0.46354368329048157,
0.7496286630630493,
0.5486136674880981,
-0.5117116570472717,
-0.8403716683387756,
-0.11809735745191574,
-1.368773102760315,
0.09403741359710693,
1.0549365282058716,
0.08011667430400848,
-0.6184479594230652,
0.04394906014204025,
-0.22835372388362885,
0.16202412545681,
-0.5834634900093079,
0.47974637150764465,
0.5314486622810364,
-0.09837667644023895,
0.12882564961910248,
-0.38869988918304443,
0.6723793745040894,
-0.05330241471529007,
-0.994970440864563,
0.20755571126937866,
0.4309699833393097,
0.45707374811172485,
0.3238834738731384,
0.7875507473945618,
-0.25247517228126526,
0.08011262118816376,
-0.09845355153083801,
0.35778188705444336,
-0.27643197774887085,
0.020618349313735962,
-0.35052382946014404,
-0.14544333517551422,
-0.5013236403465271,
-0.25460508465766907
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/scriptonite | huggingartists | 2022-10-25T09:43:16Z | 294 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:43:16Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/scriptonite"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 1.251394 MB
<div class="inline-flex flex-col" style="line-height: 1.5;">
<div class="flex">
<div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('https://images.genius.com/411d50392aef867fe0e9dd55a074ecfb.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/scriptonite">
<div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div>
</a>
<div style="text-align: center; font-size: 16px; font-weight: 800">Скриптонит (Scriptonite)</div>
<a href="https://genius.com/artists/scriptonite">
<div style="text-align: center; font-size: 14px;">@scriptonite</div>
</a>
</div>
### Dataset Summary
The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists.
Model is available [here](https://huggingface.co/huggingartists/scriptonite).
### Supported Tasks and Leaderboards
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Languages
en
## How to use
How to load this dataset directly with the datasets library:
```python
from datasets import load_dataset
dataset = load_dataset("huggingartists/scriptonite")
```
## Dataset Structure
An example of 'train' looks as follows.
```
This example was too long and was cropped:
{
"text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..."
}
```
### Data Fields
The data fields are the same among all splits.
- `text`: a `string` feature.
### Data Splits
| train |validation|test|
|------:|---------:|---:|
|367| -| -|
'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code:
```python
from datasets import load_dataset, Dataset, DatasetDict
import numpy as np
datasets = load_dataset("huggingartists/scriptonite")
train_percentage = 0.9
validation_percentage = 0.07
test_percentage = 0.03
train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))])
datasets = DatasetDict(
{
'train': Dataset.from_dict({'text': list(train)}),
'validation': Dataset.from_dict({'text': list(validation)}),
'test': Dataset.from_dict({'text': list(test)})
}
)
```
## Dataset Creation
### Curation Rationale
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the source language producers?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Annotations
#### Annotation process
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the annotators?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Personal and Sensitive Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Discussion of Biases
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Other Known Limitations
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Additional Information
### Dataset Curators
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Licensing Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Citation Information
```
@InProceedings{huggingartists,
author={Aleksey Korshuk}
year=2021
}
```
## About
*Built by Aleksey Korshuk*
[](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.6061709523200989,
-0.509486734867096,
0.08126994967460632,
0.27990537881851196,
-0.21859189867973328,
0.02557293139398098,
-0.3469845652580261,
-0.438165545463562,
0.8561091423034668,
0.35368186235427856,
-0.9418215751647949,
-0.8647675514221191,
-0.5748522281646729,
0.12262700498104095,
-0.1261719912290573,
1.303031086921692,
-0.22044238448143005,
-0.3740711510181427,
-0.32768458127975464,
-0.22349636256694794,
-0.2697935700416565,
-0.2976771295070648,
-0.30425602197647095,
-0.3288481533527374,
0.3538086712360382,
0.5179838538169861,
0.7224887609481812,
0.9055801033973694,
0.532548725605011,
0.35790687799453735,
-0.08000937849283218,
-0.02565009705722332,
-0.3676038384437561,
-0.11820393055677414,
0.18481284379959106,
-0.3201046884059906,
-0.6816120147705078,
0.24057133495807648,
0.5315471887588501,
0.41968947649002075,
-0.08166629821062088,
0.4837585687637329,
0.031135179102420807,
0.8228961825370789,
-0.29136356711387634,
0.5069035887718201,
-0.2511824369430542,
-0.15639947354793549,
-0.2957433760166168,
0.08214402198791504,
0.16310974955558777,
-0.6030184626579285,
0.039590805768966675,
-0.7550936341285706,
0.06607166677713394,
-0.0018512319074943662,
1.0058557987213135,
0.06210403889417648,
0.14561131596565247,
-0.20763608813285828,
-0.15774300694465637,
0.5477036833763123,
-0.5976564288139343,
-0.03910388797521591,
0.5833669900894165,
0.14704683423042297,
0.026359084993600845,
-0.650214672088623,
-0.6396456360816956,
0.07553104311227798,
-0.1634325385093689,
0.28514862060546875,
-0.17120929062366486,
-0.30112072825431824,
0.5194719433784485,
0.5319859385490417,
-0.5244312882423401,
-0.2336282730102539,
-0.516922652721405,
-0.16673746705055237,
1.1635003089904785,
0.14815771579742432,
0.44256991147994995,
-0.47971025109291077,
-0.2095007598400116,
-0.4229765236377716,
-0.24394433200359344,
0.34099718928337097,
0.5806067585945129,
0.4284398853778839,
-1.0361573696136475,
0.6216662526130676,
-0.18271705508232117,
0.5300176739692688,
0.13672630488872528,
-0.042793113738298416,
0.7774325609207153,
-0.39323940873146057,
-0.10684564709663391,
-0.11565537005662918,
1.0679105520248413,
0.6746744513511658,
0.21752607822418213,
0.09926099330186844,
-0.051630135625600815,
0.07882795482873917,
-0.14223216474056244,
-0.841288685798645,
-0.41932860016822815,
0.6878537535667419,
-0.5751793384552002,
-0.6242401599884033,
0.14711403846740723,
-0.9912793636322021,
-0.22446377575397491,
-0.3010474145412445,
0.25718674063682556,
-0.38986122608184814,
-0.5513371825218201,
0.15528804063796997,
-0.3031652271747589,
0.13655029237270355,
0.05842386931180954,
-0.6299676299095154,
0.20723895728588104,
0.5768972635269165,
0.7650322318077087,
0.1760920137166977,
-0.33077099919319153,
-0.24336425960063934,
-0.2059541642665863,
-0.10616384446620941,
0.6973869800567627,
-0.2894289195537567,
-0.33076590299606323,
-0.114797443151474,
0.3426353633403778,
-0.10513844341039658,
-0.2800508141517639,
0.8622399568557739,
0.06439878046512604,
0.20073214173316956,
-0.5264118313789368,
-0.41473379731178284,
0.025442203506827354,
0.2552095651626587,
-0.7619376182556152,
1.0366992950439453,
0.34188738465309143,
-0.9748676419258118,
0.19360721111297607,
-0.7993211150169373,
-0.30903351306915283,
-0.010187583975493908,
0.11285781860351562,
-0.8035058975219727,
-0.20033368468284607,
0.19168174266815186,
0.7206602096557617,
-0.3013702630996704,
-0.006443896796554327,
-0.6072810888290405,
-0.10565411299467087,
0.41048258543014526,
0.25454652309417725,
1.155320644378662,
0.11221269518136978,
-0.12849348783493042,
0.11477719992399216,
-0.9478856325149536,
0.1499459445476532,
0.4571624994277954,
-0.1248377338051796,
-0.06865302473306656,
-0.2466355562210083,
0.4213835597038269,
0.29504910111427307,
0.08771912008523941,
-0.5964614748954773,
0.40047165751457214,
-0.22637997567653656,
0.45888376235961914,
0.7411127686500549,
-0.020616790279746056,
0.3364830017089844,
-0.6656516790390015,
0.4051867723464966,
0.07389090210199356,
0.37241917848587036,
-0.01947631500661373,
-0.5279919505119324,
-0.4968208968639374,
-0.2678377628326416,
0.30547448992729187,
0.45222505927085876,
-0.657422661781311,
0.9766299724578857,
-0.3159908354282379,
-0.861059308052063,
-0.6391376256942749,
0.14194412529468536,
0.20176807045936584,
0.4962981939315796,
0.3717392385005951,
-0.43656599521636963,
-0.6050225496292114,
-0.652561366558075,
0.11155623942613602,
-0.23883026838302612,
0.16261692345142365,
0.38089296221733093,
0.8266480565071106,
-0.23859217762947083,
0.8555133938789368,
-0.6868050694465637,
-0.27041757106781006,
-0.3099668025970459,
-0.32948237657546997,
0.37312042713165283,
0.7832724452018738,
0.6770792007446289,
-0.8102611303329468,
-0.503645658493042,
-0.2459983229637146,
-0.6961318850517273,
-0.12448801100254059,
-0.028232403099536896,
-0.27559274435043335,
0.05830807983875275,
0.12446360290050507,
-0.7387581467628479,
0.5555514693260193,
0.5100346207618713,
-0.6472727656364441,
0.5859115719795227,
0.09374918043613434,
0.001167530776001513,
-1.29331636428833,
0.3718494176864624,
0.24570898711681366,
0.035157427191734314,
-0.6069006323814392,
-0.22377653419971466,
-0.04027177765965462,
-0.05027726665139198,
-0.12028980255126953,
0.611238420009613,
-0.31781789660453796,
0.30460673570632935,
0.13074523210525513,
0.12415725737810135,
0.10459654033184052,
0.4775751233100891,
-0.06324348598718643,
0.2776297330856323,
1.0132834911346436,
-0.3652561604976654,
0.691324770450592,
0.6093292832374573,
-0.2076723575592041,
0.8496394157409668,
-0.8149030804634094,
0.02086392417550087,
-0.2530849277973175,
0.4102482795715332,
-0.8461713194847107,
-0.587628185749054,
0.7963838577270508,
-0.70576012134552,
0.4036213159561157,
-0.25480642914772034,
-0.5540220737457275,
-0.8045112490653992,
-0.6986891031265259,
0.10685354471206665,
0.5448600053787231,
-0.37702733278274536,
0.38830921053886414,
0.6040942668914795,
0.08393403887748718,
-0.3694891333580017,
-0.7569339871406555,
-0.16377970576286316,
-0.3902604579925537,
-0.8475762009620667,
0.4363323450088501,
-0.33633580803871155,
-0.11960111558437347,
0.12873241305351257,
0.07624644041061401,
0.0923476442694664,
-0.0037094983272254467,
0.39547011256217957,
0.3372609615325928,
0.10056694597005844,
0.005988379940390587,
-0.0930771604180336,
-0.26862838864326477,
0.12783490121364594,
-0.2143627554178238,
0.3002511262893677,
-0.2745981514453888,
-0.12052839249372482,
-0.6766926050186157,
0.18138094246387482,
0.45299410820007324,
-0.27351340651512146,
0.6761026978492737,
0.832251787185669,
-0.23307980597019196,
-0.05232742056250572,
-0.5006521344184875,
-0.15827517211437225,
-0.41770413517951965,
0.03568548709154129,
-0.20285533368587494,
-0.5827289819717407,
0.9744152426719666,
0.2061939239501953,
0.06853023916482925,
0.6786465644836426,
0.4798555076122284,
-0.07585437595844269,
0.6686469912528992,
0.36264047026634216,
-0.2714880704879761,
0.5251337885856628,
-0.7079311013221741,
-0.2444497048854828,
-0.8573559522628784,
-0.4333711564540863,
-0.4918973445892334,
-0.48937445878982544,
-0.8583393692970276,
-0.44031035900115967,
0.19051222503185272,
0.10904842615127563,
-0.19482746720314026,
0.5059393048286438,
-0.9413368105888367,
0.2826211750507355,
0.33274540305137634,
0.27295610308647156,
-0.12257641553878784,
0.06980154663324356,
0.0823843702673912,
0.1527579128742218,
-0.5705599784851074,
-0.24611207842826843,
1.172916054725647,
0.4917125701904297,
0.5702028870582581,
-0.08545826375484467,
0.8318252563476562,
0.030887829139828682,
0.2016429454088211,
-0.5263523459434509,
0.49011191725730896,
0.03473353013396263,
-0.4755335748195648,
-0.1438141167163849,
-0.46843472123146057,
-0.9104973077774048,
-0.15298375487327576,
-0.4202869236469269,
-0.743257999420166,
0.4490019977092743,
0.07437150180339813,
-0.21815237402915955,
0.35586443543434143,
-0.674299955368042,
0.8760775923728943,
-0.026838360354304314,
-0.46282774209976196,
0.2700980305671692,
-1.0517778396606445,
0.17219513654708862,
0.19963183999061584,
0.24405278265476227,
-0.42213407158851624,
0.042067378759384155,
1.0077364444732666,
-0.8392055034637451,
0.9445679783821106,
-0.34432733058929443,
0.14630438387393951,
0.5846030116081238,
-0.3030792474746704,
0.46989700198173523,
0.10854650288820267,
-0.27105745673179626,
0.3406311273574829,
0.06260690838098526,
-0.4458591938018799,
-0.45794111490249634,
0.6968972682952881,
-0.7469703555107117,
0.039400096982717514,
-0.3620475232601166,
-0.45255905389785767,
0.05965912342071533,
0.18404239416122437,
0.2671430706977844,
0.4144846796989441,
0.013423246331512928,
0.12555056810379028,
0.4407777190208435,
-0.13790272176265717,
0.3164707124233246,
0.034106865525245667,
-0.08351079374551773,
-0.7840202450752258,
0.9134594798088074,
0.1534881740808487,
0.10271746665239334,
-0.0399867482483387,
0.41871461272239685,
-0.3692907989025116,
-0.11651211231946945,
-0.6160932779312134,
0.46536168456077576,
-0.40738382935523987,
-0.39361995458602905,
-0.5158116221427917,
-0.1858922392129898,
-0.6579947471618652,
-0.18451610207557678,
-0.26515212655067444,
-0.5280013680458069,
-0.3067322373390198,
-0.20009903609752655,
1.0624806880950928,
0.4413309693336487,
-0.6592307686805725,
0.14078602194786072,
-0.49794575572013855,
0.26104825735092163,
-0.10830837488174438,
0.6578669548034668,
-0.10440614074468613,
-0.2974642515182495,
-0.22530348598957062,
0.09086650609970093,
-0.20445673167705536,
-0.6580953598022461,
0.2815359830856323,
-0.06272132694721222,
0.37565121054649353,
0.07857781648635864,
0.1392764300107956,
0.6728336215019226,
-0.05160718783736229,
0.6448314189910889,
0.2820274531841278,
-0.8149368166923523,
0.7120241522789001,
-0.5144252777099609,
0.18346244096755981,
0.7311069965362549,
0.36915919184684753,
-0.6237799525260925,
-0.15976978838443756,
-0.9742544889450073,
-0.841137170791626,
0.8447557091712952,
0.43999630212783813,
0.06642193347215652,
0.21661776304244995,
0.5245678424835205,
-0.1984477937221527,
0.27807968854904175,
-0.627519965171814,
-0.8388306498527527,
-0.41843754053115845,
-0.38648244738578796,
-0.009702215902507305,
-0.045682378113269806,
-0.24921995401382446,
-0.6547497510910034,
0.7452580332756042,
-0.14482948184013367,
0.3477388918399811,
0.42217114567756653,
0.37800469994544983,
-0.22033379971981049,
-0.02940385974943638,
0.28749358654022217,
0.3631286919116974,
-0.252358078956604,
-0.3179447650909424,
-0.15173481404781342,
-0.6333576440811157,
-0.12925268709659576,
0.5104088187217712,
-0.3126288652420044,
-0.10255181044340134,
0.3330755829811096,
0.8798699378967285,
-0.004131658468395472,
-0.2702111601829529,
0.6111747622489929,
-0.06431169807910919,
-0.39376622438430786,
-0.42704153060913086,
0.040631312876939774,
0.13234852254390717,
0.21242345869541168,
0.02306082844734192,
0.11609023064374924,
-0.13311266899108887,
-0.40671589970588684,
0.41848039627075195,
0.2443164438009262,
-0.39385512471199036,
-0.4969072937965393,
0.5773178339004517,
0.08144579082727432,
-0.12737834453582764,
0.46605080366134644,
-0.13750916719436646,
-0.6003018021583557,
0.8067994713783264,
0.1413361132144928,
0.8310149908065796,
-0.14171315729618073,
0.3459889888763428,
0.7399135231971741,
0.18683242797851562,
-0.05747698247432709,
0.4890817403793335,
-0.20274490118026733,
-0.6414726376533508,
-0.06505101174116135,
-0.5861218571662903,
-0.13775262236595154,
0.04121125862002373,
-0.802839457988739,
0.4802720844745636,
-0.5159884691238403,
-0.21537712216377258,
0.038288749754428864,
0.3948066234588623,
-0.7219275236129761,
0.16998447477817535,
-0.060350459069013596,
1.031964898109436,
-0.9938703775405884,
0.4717140197753906,
0.6450758576393127,
-0.6988266706466675,
-1.1744030714035034,
-0.12302051484584808,
0.22677823901176453,
-0.622712254524231,
0.19611616432666779,
0.2131677269935608,
0.4840291738510132,
-0.03972320258617401,
-0.9011310338973999,
-0.6745312213897705,
1.2029938697814941,
0.01145662646740675,
-0.17710816860198975,
0.34453684091567993,
0.12484578043222427,
0.6492689847946167,
-0.37106025218963623,
0.3561219871044159,
0.6594920754432678,
0.6754518747329712,
0.30958327651023865,
-0.7538544535636902,
0.28895628452301025,
-0.6287091970443726,
-0.23271052539348602,
0.07350357621908188,
-1.0169671773910522,
0.6097516417503357,
-0.20666219294071198,
-0.051055919378995895,
0.041681982576847076,
0.5819882154464722,
0.4148854911327362,
0.4014502465724945,
0.4202462434768677,
0.7405332326889038,
0.7885764837265015,
-0.3373408317565918,
1.2381991147994995,
-0.28775814175605774,
0.6186005473136902,
0.7594828009605408,
0.0012781688710674644,
0.5149238705635071,
0.2104349285364151,
-0.33324742317199707,
0.5803714990615845,
0.6220881342887878,
-0.4404970705509186,
0.22195637226104736,
0.4059445858001709,
-0.06985107064247131,
-0.05526083707809448,
-0.2758794128894806,
-0.5621510744094849,
0.335929811000824,
0.23680533468723297,
-0.3177381753921509,
0.01637757383286953,
-0.025833450257778168,
0.41512417793273926,
-0.020457405596971512,
-0.23530495166778564,
0.6731547117233276,
0.02508370392024517,
-0.3774251341819763,
0.5184926390647888,
-0.18966181576251984,
0.6771749258041382,
-0.6409654021263123,
0.1628301441669464,
-0.09451734274625778,
0.13842923939228058,
-0.634049117565155,
-1.1130197048187256,
0.39172348380088806,
-0.06932774186134338,
-0.23956610262393951,
-0.345161497592926,
0.7595253586769104,
-0.4662497639656067,
-0.782411515712738,
0.22127647697925568,
0.1967422068119049,
0.2880045771598816,
0.15776237845420837,
-1.2522832155227661,
0.6087175607681274,
0.13325348496437073,
-0.44201546907424927,
0.12841133773326874,
0.5000956654548645,
0.16699430346488953,
0.5542578101158142,
0.7367630004882812,
0.2370995432138443,
-0.28036847710609436,
0.08640337735414505,
1.1072735786437988,
-0.5419910550117493,
-0.44023698568344116,
-0.7506921291351318,
0.9159878492355347,
-0.4111163318157196,
-0.4177890121936798,
0.6908771991729736,
0.7350784540176392,
0.8841025233268738,
-0.01086408831179142,
0.8089162111282349,
-0.6530617475509644,
0.6546032428741455,
-0.22708290815353394,
0.9574282765388489,
-0.6689119338989258,
-0.06667468696832657,
-0.7573239207267761,
-0.5267088413238525,
-0.436103880405426,
0.6554255485534668,
-0.20737963914871216,
0.18598607182502747,
0.3133380711078644,
0.9559066891670227,
0.045451000332832336,
0.11465120315551758,
-0.24263909459114075,
0.2812374234199524,
0.2804141938686371,
0.5424922704696655,
0.41449272632598877,
-0.9035829901695251,
0.36875119805336,
-0.7993762493133545,
-0.3131667673587799,
0.04439976438879967,
-0.8264793753623962,
-0.9120067954063416,
-0.9544392228126526,
-0.684604287147522,
-0.8102486729621887,
-0.3221035599708557,
1.1213215589523315,
0.7152621150016785,
-0.7119594216346741,
-0.278043270111084,
0.07576142251491547,
0.292818546295166,
-0.06290791928768158,
-0.32522544264793396,
0.6570128202438354,
0.3256753087043762,
-0.6315097808837891,
-0.16409452259540558,
0.03248912841081619,
0.23588886857032776,
0.034741438925266266,
-0.06890713423490524,
-0.09086813777685165,
-0.2820858359336853,
0.3566570281982422,
0.46501797437667847,
-0.3367345333099365,
-0.11277511715888977,
-0.21756598353385925,
0.022494057193398476,
0.15173225104808807,
0.48737913370132446,
-0.5304258465766907,
0.22149673104286194,
0.6426476240158081,
0.2565615773200989,
0.4415357708930969,
0.15688197314739227,
0.04211106896400452,
-0.5038617253303528,
0.11379347741603851,
-0.038519732654094696,
0.30850204825401306,
0.3915771245956421,
-0.4447039067745209,
0.7751268744468689,
0.582933783531189,
-0.5084388256072998,
-0.7969651222229004,
-0.1335689276456833,
-1.3661555051803589,
0.13103216886520386,
1.0645660161972046,
0.010142982937395573,
-0.5873076915740967,
0.06864937394857407,
-0.2489584982395172,
0.13532088696956635,
-0.579880952835083,
0.4610987603664398,
0.5354952812194824,
-0.09075823426246643,
0.1220717504620552,
-0.33560436964035034,
0.6606277823448181,
-0.05176064744591713,
-0.9892794489860535,
0.19905857741832733,
0.42493972182273865,
0.4615662693977356,
0.33072173595428467,
0.7854225635528564,
-0.2949307858943939,
0.07451305538415909,
-0.039834164083004,
0.2970658242702484,
-0.2495034784078598,
0.03181182220578194,
-0.32597142457962036,
-0.14743487536907196,
-0.5044430494308472,
-0.19328449666500092
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/slava-kpss | huggingartists | 2022-10-25T09:44:55Z | 294 | 1 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:44:55Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
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.592045247554779,
-0.4824536144733429,
0.09581227600574493,
0.3008955121040344,
-0.2741154432296753,
0.01802295632660389,
-0.2920118272304535,
-0.46274682879447937,
0.8981151580810547,
0.32523849606513977,
-0.8663461208343506,
-0.7751954197883606,
-0.5961472988128662,
0.09339332580566406,
-0.060013264417648315,
1.3163765668869019,
-0.19442345201969147,
-0.34122157096862793,
-0.3224940001964569,
-0.246841162443161,
-0.29436758160591125,
-0.3042025566101074,
-0.2589668333530426,
-0.35419777035713196,
0.3221835494041443,
0.5053276419639587,
0.6839590072631836,
0.7995405793190002,
0.46794718503952026,
0.35118767619132996,
-0.1445448249578476,
0.009358726441860199,
-0.34794190526008606,
-0.02990884706377983,
0.19305865466594696,
-0.29684627056121826,
-0.6888776421546936,
0.1973908394575119,
0.6049152612686157,
0.40974146127700806,
-0.08256770670413971,
0.5301317572593689,
0.08529963344335556,
0.8654377460479736,
-0.34418174624443054,
0.5116575956344604,
-0.24160288274288177,
-0.13879498839378357,
-0.3011244535446167,
0.07712148129940033,
0.13914045691490173,
-0.6210120320320129,
0.012747778557240963,
-0.729766309261322,
0.004028494004160166,
-0.022041819989681244,
1.0472592115402222,
0.042257294058799744,
0.12312998622655869,
-0.2389380782842636,
-0.15272967517375946,
0.5572893023490906,
-0.608625054359436,
-0.014602931216359138,
0.5879501700401306,
0.15413013100624084,
0.020380990579724312,
-0.5988684892654419,
-0.5692788362503052,
0.08295020461082458,
-0.19644741714000702,
0.23213516175746918,
-0.1279982328414917,
-0.32124748826026917,
0.5197356939315796,
0.517838716506958,
-0.49196895956993103,
-0.26177501678466797,
-0.5487455725669861,
-0.15190339088439941,
1.1807681322097778,
0.15210749208927155,
0.40067699551582336,
-0.4768369197845459,
-0.20871640741825104,
-0.3597925007343292,
-0.23755303025245667,
0.3819691240787506,
0.5430975556373596,
0.4611365497112274,
-0.9983022212982178,
0.6419002413749695,
-0.17266887426376343,
0.547206461429596,
0.17708197236061096,
-0.12055667489767075,
0.8347923159599304,
-0.39877212047576904,
-0.1336350291967392,
-0.11502087116241455,
1.0256041288375854,
0.6554109454154968,
0.15534144639968872,
0.12955030798912048,
-0.08096423000097275,
0.07983806729316711,
-0.16531629860401154,
-0.827877402305603,
-0.3890668749809265,
0.6198362708091736,
-0.5988414883613586,
-0.5994393229484558,
0.06279797106981277,
-1.0275676250457764,
-0.23674257099628448,
-0.31367385387420654,
0.24979135394096375,
-0.3826504945755005,
-0.5584596991539001,
0.17409387230873108,
-0.2597352862358093,
0.15793485939502716,
0.04121558740735054,
-0.611207902431488,
0.2064836472272873,
0.56330406665802,
0.7726521492004395,
0.21354888379573822,
-0.3181535601615906,
-0.27184340357780457,
-0.20108765363693237,
-0.11868004500865936,
0.6696547269821167,
-0.28809231519699097,
-0.31873831152915955,
-0.15474511682987213,
0.326368510723114,
-0.09450256079435349,
-0.2322108894586563,
0.9103646874427795,
0.06427924335002899,
0.16313084959983826,
-0.5849645137786865,
-0.4487334191799164,
0.051731519401073456,
0.24127762019634247,
-0.6878621578216553,
1.0989025831222534,
0.2768601179122925,
-1.005321741104126,
0.20158790051937103,
-0.7878053188323975,
-0.30587315559387207,
0.06674698740243912,
0.07108486443758011,
-0.8245812654495239,
-0.14049045741558075,
0.1722853034734726,
0.7372164130210876,
-0.2506636679172516,
0.0303802490234375,
-0.6161922812461853,
-0.11425327509641647,
0.3346771001815796,
0.34372785687446594,
1.178467869758606,
0.13467690348625183,
-0.13910748064517975,
0.08053480088710785,
-0.9321547746658325,
0.18482574820518494,
0.46928539872169495,
-0.11831573396921158,
-0.16071198880672455,
-0.24526001513004303,
0.3751433193683624,
0.32371845841407776,
0.09888115525245667,
-0.6220864653587341,
0.4154997169971466,
-0.21295636892318726,
0.4799463152885437,
0.7595944404602051,
-0.012262682430446148,
0.3638438582420349,
-0.6231675148010254,
0.44231414794921875,
0.05623537302017212,
0.37915584444999695,
-0.030416158959269524,
-0.5922267436981201,
-0.47319895029067993,
-0.2628871500492096,
0.31286612153053284,
0.4347084164619446,
-0.6740281581878662,
0.9617307782173157,
-0.2921522557735443,
-0.8877885937690735,
-0.6680641770362854,
0.09641227126121521,
0.22311283648014069,
0.5167837738990784,
0.32458171248435974,
-0.41384732723236084,
-0.6445430517196655,
-0.6739547252655029,
0.06433133035898209,
-0.24435217678546906,
0.2198009192943573,
0.38841721415519714,
0.8695545196533203,
-0.17213381826877594,
0.8158837556838989,
-0.6986204981803894,
-0.24795368313789368,
-0.25294461846351624,
-0.34287789463996887,
0.3674238324165344,
0.7730951309204102,
0.6799682378768921,
-0.8349363803863525,
-0.5622802972793579,
-0.28033366799354553,
-0.7215747833251953,
-0.12364462018013,
-0.004491730593144894,
-0.23218345642089844,
0.0818726047873497,
0.09996908158063889,
-0.7699841260910034,
0.5542802214622498,
0.49793633818626404,
-0.7178063988685608,
0.6456930637359619,
0.0927995815873146,
-0.015607855282723904,
-1.239173173904419,
0.3811199963092804,
0.2329103946685791,
0.01972866617143154,
-0.6537278294563293,
-0.1401454359292984,
-0.06120632216334343,
-0.08477329462766647,
-0.12694129347801208,
0.6145155429840088,
-0.348777711391449,
0.19769571721553802,
0.1424272358417511,
0.06798975169658661,
0.0998959094285965,
0.46008917689323425,
-0.07157155126333237,
0.29470768570899963,
1.0338103771209717,
-0.34852659702301025,
0.6119446754455566,
0.6166045665740967,
-0.2451215535402298,
0.8735968470573425,
-0.8265048861503601,
0.01735137775540352,
-0.2975388169288635,
0.42446231842041016,
-0.8219716548919678,
-0.5140284299850464,
0.8291710019111633,
-0.6993653774261475,
0.3824881613254547,
-0.2403605431318283,
-0.5533236861228943,
-0.7682735323905945,
-0.682433009147644,
0.11140576750040054,
0.5524771213531494,
-0.33212047815322876,
0.3990470767021179,
0.6475070714950562,
0.0314924456179142,
-0.398887574672699,
-0.7683154940605164,
-0.14377833902835846,
-0.3951159417629242,
-0.8127097487449646,
0.375804603099823,
-0.3598555028438568,
-0.09207680821418762,
0.1302909255027771,
0.08925936371088028,
0.10675022006034851,
-0.019840344786643982,
0.42327654361724854,
0.32430681586265564,
0.10540471971035004,
0.009076835587620735,
-0.09785997122526169,
-0.2435367852449417,
0.08616803586483002,
-0.18224024772644043,
0.2926134169101715,
-0.3460499346256256,
-0.1062130257487297,
-0.664169430732727,
0.2337261438369751,
0.4813474714756012,
-0.271661639213562,
0.6770737171173096,
0.7848575711250305,
-0.24485455453395844,
0.013417280279099941,
-0.5070064067840576,
-0.12289026379585266,
-0.4108445346355438,
0.01890341006219387,
-0.2549842298030853,
-0.6202372908592224,
0.9272446632385254,
0.2476912885904312,
0.06975001841783524,
0.6292545199394226,
0.48375585675239563,
-0.08912345767021179,
0.713150680065155,
0.3751579523086548,
-0.2716324031352997,
0.47522881627082825,
-0.6675431728363037,
-0.20005230605602264,
-0.8572551012039185,
-0.48859211802482605,
-0.5084905624389648,
-0.4933253526687622,
-0.846014678478241,
-0.40950098633766174,
0.19025342166423798,
0.149293914437294,
-0.22525005042552948,
0.44511017203330994,
-0.9719750285148621,
0.2795708179473877,
0.3199436366558075,
0.25975799560546875,
-0.14791251718997955,
0.09575536847114563,
0.06544364988803864,
0.07072722166776657,
-0.5875421166419983,
-0.22504304349422455,
1.1171902418136597,
0.5395294427871704,
0.5406081080436707,
-0.13348627090454102,
0.86368328332901,
0.035556722432374954,
0.16664858162403107,
-0.510749340057373,
0.5421773791313171,
0.053050730377435684,
-0.4634617269039154,
-0.14771819114685059,
-0.4424694776535034,
-0.8885322213172913,
-0.10317029803991318,
-0.4334145188331604,
-0.7245685458183289,
0.5059409141540527,
0.08571293950080872,
-0.2061045616865158,
0.38353925943374634,
-0.6334985494613647,
0.8108665347099304,
-0.0365290530025959,
-0.4237208664417267,
0.28479158878326416,
-1.0410711765289307,
0.20085005462169647,
0.20953276753425598,
0.27494439482688904,
-0.41652244329452515,
-0.007155168801546097,
0.9711613655090332,
-0.8071680665016174,
0.955359935760498,
-0.4320123493671417,
0.1482117623090744,
0.5686990022659302,
-0.31856569647789,
0.48090705275535583,
0.0739324539899826,
-0.2641823887825012,
0.32382258772850037,
0.05787011608481407,
-0.5078818202018738,
-0.4278062880039215,
0.688522219657898,
-0.7297232151031494,
0.08154840767383575,
-0.40647754073143005,
-0.48965510725975037,
0.0613725520670414,
0.19735853374004364,
0.23938977718353271,
0.33084532618522644,
0.09505943953990936,
0.11722932755947113,
0.45718538761138916,
-0.13409508764743805,
0.27735501527786255,
0.05442608520388603,
-0.1288999617099762,
-0.7812215685844421,
0.9210382699966431,
0.1856071799993515,
0.05453069880604744,
-0.11080599576234818,
0.42829325795173645,
-0.3615308403968811,
-0.13580860197544098,
-0.5961027145385742,
0.4909393787384033,
-0.4110794961452484,
-0.4038008153438568,
-0.49090778827667236,
-0.18928706645965576,
-0.6548857092857361,
-0.14905208349227905,
-0.25314924120903015,
-0.5375304222106934,
-0.2602280378341675,
-0.1845412701368332,
0.9979970455169678,
0.4632261395454407,
-0.6554548144340515,
0.11755548417568207,
-0.5137062072753906,
0.26311156153678894,
-0.08073636889457703,
0.6664495468139648,
-0.08252567797899246,
-0.30961260199546814,
-0.2134024053812027,
0.08693595230579376,
-0.19403371214866638,
-0.7181894779205322,
0.28845831751823425,
-0.008981975726783276,
0.3680526912212372,
0.05682120844721794,
0.10630272328853607,
0.6884705424308777,
-0.06484916806221008,
0.6795715689659119,
0.2960439622402191,
-0.811909556388855,
0.7119616866111755,
-0.4936109185218811,
0.2018839567899704,
0.7214779257774353,
0.3938475251197815,
-0.6042494177818298,
-0.1384328305721283,
-0.9671856164932251,
-0.8433352112770081,
0.8116855025291443,
0.42939063906669617,
0.026031458750367165,
0.2468191683292389,
0.5759603977203369,
-0.17581921815872192,
0.29329803586006165,
-0.6737040877342224,
-0.8509508967399597,
-0.4069342315196991,
-0.29587849974632263,
-0.03869229182600975,
-0.14035354554653168,
-0.22727693617343903,
-0.6883469820022583,
0.811029851436615,
-0.12198790162801743,
0.3109004497528076,
0.40078204870224,
0.3973284959793091,
-0.2317150980234146,
-0.009924178011715412,
0.35280942916870117,
0.37718284130096436,
-0.2294066697359085,
-0.32277944684028625,
-0.13671128451824188,
-0.634238064289093,
-0.07162849605083466,
0.4755198657512665,
-0.4182949662208557,
-0.04212551563978195,
0.2788989841938019,
0.9202693700790405,
0.001754444558173418,
-0.26931995153427124,
0.5953264832496643,
-0.05544547736644745,
-0.41206875443458557,
-0.401699036359787,
-0.05933254584670067,
0.16193819046020508,
0.23797491192817688,
0.0709724873304367,
0.11507073044776917,
-0.14061903953552246,
-0.3528974950313568,
0.39153754711151123,
0.2477276474237442,
-0.3500891923904419,
-0.50654137134552,
0.5303069353103638,
0.042482130229473114,
-0.16286152601242065,
0.41986769437789917,
-0.18943136930465698,
-0.6059736609458923,
0.7455400824546814,
0.14011582732200623,
0.7845039367675781,
-0.2203427255153656,
0.3707207143306732,
0.7427710890769958,
0.20443648099899292,
-0.0718400627374649,
0.5582008957862854,
-0.20400144159793854,
-0.6036165356636047,
-0.11743432283401489,
-0.6214919686317444,
-0.07457198202610016,
0.11254433542490005,
-0.8501295447349548,
0.45947882533073425,
-0.47358471155166626,
-0.22444404661655426,
0.04645013064146042,
0.41093528270721436,
-0.6723393201828003,
0.14580099284648895,
-0.03560357913374901,
1.0396952629089355,
-1.112451434135437,
0.47103360295295715,
0.7418482303619385,
-0.6475793123245239,
-1.1323199272155762,
-0.18827001750469208,
0.15970046818256378,
-0.6167107820510864,
0.24215810000896454,
0.17708565294742584,
0.5231068730354309,
-0.13229556381702423,
-0.8944862484931946,
-0.7054352760314941,
1.178544282913208,
0.050386689603328705,
-0.20755994319915771,
0.2886075973510742,
0.14382337033748627,
0.651037871837616,
-0.36079156398773193,
0.294983834028244,
0.6426957249641418,
0.6767024993896484,
0.2797238528728485,
-0.7685118317604065,
0.2788523733615875,
-0.6376509070396423,
-0.2046673446893692,
0.1221410259604454,
-1.0008612871170044,
0.6360434293746948,
-0.16171711683273315,
-0.005285451654344797,
0.022211147472262383,
0.6043030619621277,
0.5102328658103943,
0.4280000627040863,
0.4847201704978943,
0.7963554263114929,
0.7757430076599121,
-0.2635401487350464,
1.1544314622879028,
-0.28096631169319153,
0.634986400604248,
0.7987070083618164,
0.0011305620428174734,
0.5198879241943359,
0.28383833169937134,
-0.35198715329170227,
0.5432344079017639,
0.6366245746612549,
-0.41251951456069946,
0.2676766812801361,
0.37321799993515015,
-0.05685873329639435,
-0.08452267944812775,
-0.28397101163864136,
-0.5940961241722107,
0.3352470397949219,
0.27501749992370605,
-0.3156241774559021,
-0.023621059954166412,
-0.005334189627319574,
0.3671139180660248,
-0.02022850699722767,
-0.2896997630596161,
0.6315516233444214,
0.05827353149652481,
-0.37586095929145813,
0.5578411221504211,
-0.24464942514896393,
0.7056002020835876,
-0.6376570463180542,
0.13631956279277802,
-0.0768962949514389,
0.09958174079656601,
-0.6210879683494568,
-1.110905408859253,
0.4257378876209259,
-0.10404321551322937,
-0.2487419694662094,
-0.37237969040870667,
0.8627054691314697,
-0.4716038703918457,
-0.7833186984062195,
0.20867064595222473,
0.18779689073562622,
0.3594452440738678,
0.19107766449451447,
-1.3025273084640503,
0.6093735694885254,
0.14523161947727203,
-0.4359232187271118,
0.2000821828842163,
0.4467698931694031,
0.15926338732242584,
0.564724862575531,
0.6764523386955261,
0.30056536197662354,
-0.24969816207885742,
0.004821375478059053,
1.094482660293579,
-0.47427961230278015,
-0.5014289021492004,
-0.7179602980613708,
0.9147142767906189,
-0.394917756319046,
-0.38497427105903625,
0.7223996520042419,
0.7488698959350586,
0.8260453343391418,
-0.014767101965844631,
0.8013098239898682,
-0.649965226650238,
0.6881323456764221,
-0.1669594943523407,
0.9381591081619263,
-0.681052565574646,
-0.0932622104883194,
-0.72847980260849,
-0.510253369808197,
-0.3680611550807953,
0.6378383636474609,
-0.19399197399616241,
0.1357177495956421,
0.23442131280899048,
0.8975895643234253,
0.03536225110292435,
0.1323070377111435,
-0.24216224253177643,
0.30626988410949707,
0.2386140674352646,
0.5582038164138794,
0.4099002778530121,
-0.9137250781059265,
0.34157654643058777,
-0.807364284992218,
-0.3169788718223572,
0.03467079624533653,
-0.8697836995124817,
-0.8684317469596863,
-0.9984461069107056,
-0.6602075099945068,
-0.7969939112663269,
-0.2558841407299042,
1.0586572885513306,
0.7286825180053711,
-0.6967469453811646,
-0.2664068639278412,
0.11102285236120224,
0.26575493812561035,
-0.06930811703205109,
-0.31731414794921875,
0.6623165011405945,
0.3011943995952606,
-0.5728079080581665,
-0.14606940746307373,
0.026919826865196228,
0.21876214444637299,
0.017090436071157455,
-0.1125815287232399,
-0.1443515121936798,
-0.30462077260017395,
0.39162716269493103,
0.5039968490600586,
-0.3475572466850281,
-0.09314089268445969,
-0.2443315088748932,
0.039641961455345154,
0.13876670598983765,
0.47249165177345276,
-0.5255373120307922,
0.21260780096054077,
0.6731967926025391,
0.2589176297187805,
0.4630966782569885,
0.13016466796398163,
-0.019277067855000496,
-0.5214751958847046,
0.14645205438137054,
0.02007407508790493,
0.3148140013217926,
0.37459108233451843,
-0.45282572507858276,
0.7588558793067932,
0.5667926669120789,
-0.5726827383041382,
-0.9174377918243408,
-0.12355703115463257,
-1.2845252752304077,
0.11705900728702545,
1.0433396100997925,
-0.0318300686776638,
-0.5646944642066956,
0.06308095902204514,
-0.22442245483398438,
0.09755465388298035,
-0.5843859314918518,
0.4736432433128357,
0.5273486971855164,
-0.12483707815408707,
0.12370481342077255,
-0.3723113238811493,
0.6493039727210999,
0.044948410242795944,
-0.9487203359603882,
0.1897575706243515,
0.40666434168815613,
0.46455469727516174,
0.3442903459072113,
0.8479443192481995,
-0.2659556567668915,
0.07512563467025757,
-0.07381725311279297,
0.2917591333389282,
-0.24836337566375732,
0.04548332840204239,
-0.40239760279655457,
-0.12172017991542816,
-0.487183153629303,
-0.2172270119190216
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/the-the-pigs | huggingartists | 2022-10-25T09:47:52Z | 294 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:47:52Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/the-the-pigs"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 0.077582 MB
<div class="inline-flex flex-col" style="line-height: 1.5;">
<div class="flex">
<div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('https://images.genius.com/2f1fd1b951237ad3387096f392d41fa5.720x720x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/the-the-pigs">
<div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div>
</a>
<div style="text-align: center; font-size: 16px; font-weight: 800">The ‘’Вепри’’ (The Pigs)</div>
<a href="https://genius.com/artists/the-the-pigs">
<div style="text-align: center; font-size: 14px;">@the-the-pigs</div>
</a>
</div>
### Dataset Summary
The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists.
Model is available [here](https://huggingface.co/huggingartists/the-the-pigs).
### Supported Tasks and Leaderboards
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Languages
en
## How to use
How to load this dataset directly with the datasets library:
```python
from datasets import load_dataset
dataset = load_dataset("huggingartists/the-the-pigs")
```
## Dataset Structure
An example of 'train' looks as follows.
```
This example was too long and was cropped:
{
"text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..."
}
```
### Data Fields
The data fields are the same among all splits.
- `text`: a `string` feature.
### Data Splits
| train |validation|test|
|------:|---------:|---:|
|28| -| -|
'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code:
```python
from datasets import load_dataset, Dataset, DatasetDict
import numpy as np
datasets = load_dataset("huggingartists/the-the-pigs")
train_percentage = 0.9
validation_percentage = 0.07
test_percentage = 0.03
train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))])
datasets = DatasetDict(
{
'train': Dataset.from_dict({'text': list(train)}),
'validation': Dataset.from_dict({'text': list(validation)}),
'test': Dataset.from_dict({'text': list(test)})
}
)
```
## Dataset Creation
### Curation Rationale
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the source language producers?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Annotations
#### Annotation process
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the annotators?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Personal and Sensitive Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Discussion of Biases
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Other Known Limitations
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Additional Information
### Dataset Curators
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Licensing Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Citation Information
```
@InProceedings{huggingartists,
author={Aleksey Korshuk}
year=2021
}
```
## About
*Built by Aleksey Korshuk*
[](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.6230651140213013,
-0.4983702600002289,
0.06464792788028717,
0.22392645478248596,
-0.2166515588760376,
-0.017687823623418808,
-0.3179799020290375,
-0.47385749220848083,
0.8823745846748352,
0.347857803106308,
-0.898422122001648,
-0.8286287784576416,
-0.5184094309806824,
0.1088738664984703,
-0.11571604758501053,
1.3320558071136475,
-0.1532304584980011,
-0.4174996614456177,
-0.31940555572509766,
-0.2165353000164032,
-0.2197198122739792,
-0.2698523700237274,
-0.2930254638195038,
-0.38043323159217834,
0.4428521394729614,
0.4467984735965729,
0.7357150912284851,
0.9160715341567993,
0.479789674282074,
0.3694346249103546,
-0.09609279036521912,
0.031233511865139008,
-0.3998714089393616,
-0.15931789577007294,
0.12695689499378204,
-0.1868525594472885,
-0.6429147124290466,
0.2624679207801819,
0.5003881454467773,
0.3368423581123352,
-0.06631982326507568,
0.4490974545478821,
0.02839735336601734,
0.7790606021881104,
-0.2481604367494583,
0.474332720041275,
-0.28591400384902954,
-0.18634231388568878,
-0.2618870437145233,
0.03376191854476929,
0.153217151761055,
-0.5970259308815002,
0.014505967497825623,
-0.8038173913955688,
0.08438907563686371,
-0.06439413130283356,
1.0604078769683838,
0.03222263976931572,
0.09876099973917007,
-0.18912135064601898,
-0.1622294783592224,
0.5340694785118103,
-0.6308388113975525,
-0.08309672772884369,
0.543620765209198,
0.09674563258886337,
-0.0018644505180418491,
-0.6705044507980347,
-0.6200759410858154,
0.034648653119802475,
-0.211660236120224,
0.2719746232032776,
-0.143917977809906,
-0.26120442152023315,
0.5296133160591125,
0.5242227911949158,
-0.5413884520530701,
-0.23249419033527374,
-0.5461228489875793,
-0.14084888994693756,
1.22142493724823,
0.13296495378017426,
0.410225510597229,
-0.4913627505302429,
-0.2644524574279785,
-0.4364985525608063,
-0.2214539498090744,
0.37497222423553467,
0.5745853781700134,
0.4258170425891876,
-0.9787223935127258,
0.5864338874816895,
-0.22324049472808838,
0.5947197079658508,
0.08555342257022858,
-0.047914959490299225,
0.7711288928985596,
-0.4025816321372986,
-0.11239021271467209,
-0.17090564966201782,
1.0483243465423584,
0.6176376938819885,
0.2172861248254776,
0.1035822406411171,
-0.07627437263727188,
0.10885295271873474,
-0.10431517660617828,
-0.7747053503990173,
-0.4640331566333771,
0.6296377778053284,
-0.5646371245384216,
-0.6153557896614075,
0.17459477484226227,
-0.9174857139587402,
-0.2116226851940155,
-0.2643064558506012,
0.32071951031684875,
-0.38010942935943604,
-0.5702497959136963,
0.2087925672531128,
-0.33151504397392273,
0.20316195487976074,
0.0849154144525528,
-0.5964648723602295,
0.19876311719417572,
0.6238669753074646,
0.7151808142662048,
0.2480802983045578,
-0.3264079988002777,
-0.2660473585128784,
-0.15895704925060272,
-0.0834198147058487,
0.7173049449920654,
-0.28795871138572693,
-0.3394588530063629,
-0.14593692123889923,
0.3540363311767578,
-0.08750182390213013,
-0.2393134981393814,
0.9062159061431885,
0.0905679240822792,
0.15491633117198944,
-0.6123074293136597,
-0.46109163761138916,
0.004765935242176056,
0.31694120168685913,
-0.7833421230316162,
1.097782015800476,
0.29255905747413635,
-1.01024329662323,
0.13697393238544464,
-0.7880255579948425,
-0.29120129346847534,
0.007220504339784384,
0.04906666651368141,
-0.7890926003456116,
-0.17132976651191711,
0.17921459674835205,
0.6926574110984802,
-0.23037011921405792,
0.00442408537492156,
-0.6260289549827576,
-0.12970729172229767,
0.4007686972618103,
0.23206496238708496,
1.2056589126586914,
0.06977437436580658,
-0.09784963726997375,
0.10230444371700287,
-0.8891227841377258,
0.15528319776058197,
0.4772122800350189,
-0.13379068672657013,
-0.09968442469835281,
-0.15051716566085815,
0.39172059297561646,
0.3212524950504303,
0.059289973229169846,
-0.5963588356971741,
0.438964307308197,
-0.1821896731853485,
0.467549204826355,
0.7355048060417175,
-0.027922945097088814,
0.2673664093017578,
-0.7395339608192444,
0.3174755275249481,
0.02937253937125206,
0.3880363404750824,
-0.0009786204900592566,
-0.5702431201934814,
-0.5002074241638184,
-0.24500374495983124,
0.26871782541275024,
0.4317378103733063,
-0.7094337344169617,
0.9815154671669006,
-0.3103995621204376,
-0.8794789910316467,
-0.6144401431083679,
0.12276086956262589,
0.1966264694929123,
0.4848583936691284,
0.3827751874923706,
-0.4053006172180176,
-0.5650255084037781,
-0.635478675365448,
0.08092927187681198,
-0.33967843651771545,
0.16419313848018646,
0.37633800506591797,
0.8144004344940186,
-0.20351994037628174,
0.8271790742874146,
-0.6534966826438904,
-0.23359663784503937,
-0.23632964491844177,
-0.2851458787918091,
0.3879404664039612,
0.8065909147262573,
0.6834367513656616,
-0.8386044502258301,
-0.44847965240478516,
-0.20839710533618927,
-0.6502154469490051,
-0.13869154453277588,
-0.06295554339885712,
-0.2914502024650574,
0.016329720616340637,
0.10838468372821808,
-0.7671380639076233,
0.5801299810409546,
0.5064409375190735,
-0.6986896395683289,
0.5821779370307922,
0.07785969227552414,
-0.02973480522632599,
-1.20087730884552,
0.3367217481136322,
0.23089325428009033,
0.01740410178899765,
-0.6209508776664734,
-0.2569020986557007,
-0.07330182194709778,
0.006815798114985228,
-0.1386854350566864,
0.6050459146499634,
-0.3420140743255615,
0.2855531871318817,
0.16023196280002594,
0.10678879171609879,
0.17613670229911804,
0.435751348733902,
-0.029585527256131172,
0.21603281795978546,
0.9440014362335205,
-0.3463134169578552,
0.6941679120063782,
0.5867718458175659,
-0.20446865260601044,
0.7646392583847046,
-0.8043689727783203,
0.02244504541158676,
-0.20621129870414734,
0.4353199899196625,
-0.8496229648590088,
-0.4887956380844116,
0.7924662232398987,
-0.7110990285873413,
0.38250377774238586,
-0.16754035651683807,
-0.5027213096618652,
-0.8523033261299133,
-0.737951397895813,
0.13569574058055878,
0.505803108215332,
-0.40420567989349365,
0.37792885303497314,
0.5390862226486206,
0.1117590069770813,
-0.4146483838558197,
-0.7272861003875732,
-0.16093890368938446,
-0.34979307651519775,
-0.8412343859672546,
0.4342525899410248,
-0.3360021710395813,
-0.1054966002702713,
0.19702701270580292,
0.0846402496099472,
0.15568481385707855,
-0.011224297806620598,
0.31847426295280457,
0.28484898805618286,
0.08288963884115219,
0.05216222628951073,
-0.14986228942871094,
-0.24784448742866516,
0.12310057133436203,
-0.2604006230831146,
0.20475532114505768,
-0.2782050669193268,
-0.13867485523223877,
-0.6369351744651794,
0.1901845633983612,
0.4066682755947113,
-0.2907028794288635,
0.6301440000534058,
0.8611533641815186,
-0.24560236930847168,
-0.09661085158586502,
-0.5366328954696655,
-0.13431282341480255,
-0.42200735211372375,
0.059635791927576065,
-0.17339107394218445,
-0.5698716640472412,
0.925064742565155,
0.26316556334495544,
0.10722348839044571,
0.6792802810668945,
0.4766855537891388,
-0.10788176953792572,
0.629449188709259,
0.37727728486061096,
-0.25182780623435974,
0.575861930847168,
-0.7042047381401062,
-0.2483920454978943,
-0.7903456687927246,
-0.4593460261821747,
-0.5419924855232239,
-0.5204153060913086,
-0.898639976978302,
-0.5018640160560608,
0.17659711837768555,
0.04253264144062996,
-0.20380772650241852,
0.4455399215221405,
-0.9569229483604431,
0.2970443367958069,
0.33268940448760986,
0.32820558547973633,
-0.10505761206150055,
0.07985373586416245,
0.11626355350017548,
0.17736467719078064,
-0.5901148915290833,
-0.2467622309923172,
1.0779368877410889,
0.49917757511138916,
0.6080266237258911,
-0.11990000307559967,
0.817838728427887,
0.06473094969987869,
0.26294705271720886,
-0.5598453879356384,
0.500178337097168,
-0.0253735464066267,
-0.506580650806427,
-0.19083741307258606,
-0.47265514731407166,
-0.8884594440460205,
-0.06563116610050201,
-0.438831627368927,
-0.735101044178009,
0.461423397064209,
0.05091758444905281,
-0.21050235629081726,
0.42260539531707764,
-0.6019075512886047,
0.8896326422691345,
-0.08077625185251236,
-0.46487289667129517,
0.2916812002658844,
-1.0206542015075684,
0.1483086496591568,
0.25085434317588806,
0.22166980803012848,
-0.4540415108203888,
-0.013238787651062012,
1.011910319328308,
-0.8523987531661987,
0.957843005657196,
-0.34320786595344543,
0.11821170151233673,
0.6252083778381348,
-0.3728782534599304,
0.49955612421035767,
0.14424873888492584,
-0.3294348418712616,
0.324359655380249,
0.04880603775382042,
-0.48766207695007324,
-0.4060431122779846,
0.6674721837043762,
-0.7516260147094727,
0.0005581481382250786,
-0.36886951327323914,
-0.4736005365848541,
0.09667860716581345,
0.1390802264213562,
0.274565190076828,
0.39177417755126953,
-0.04875723272562027,
0.10497888177633286,
0.46121907234191895,
-0.17653271555900574,
0.3434787690639496,
0.06171058863401413,
-0.07280132919549942,
-0.7531812191009521,
0.9244062304496765,
0.17728319764137268,
0.0748661682009697,
-0.04096001014113426,
0.4468650221824646,
-0.3584599494934082,
-0.11154751479625702,
-0.58721923828125,
0.5013489723205566,
-0.3829793632030487,
-0.4229399263858795,
-0.5252518653869629,
-0.21378205716609955,
-0.611404299736023,
-0.21374928951263428,
-0.23694917559623718,
-0.4886939525604248,
-0.32378679513931274,
-0.21404513716697693,
1.0614025592803955,
0.48319604992866516,
-0.6799107193946838,
0.13839012384414673,
-0.5252257585525513,
0.263419508934021,
-0.054984115064144135,
0.6199292540550232,
-0.14038163423538208,
-0.2910585403442383,
-0.23859427869319916,
0.0621735118329525,
-0.22699613869190216,
-0.7315462827682495,
0.3002253770828247,
-0.031672291457653046,
0.3876208961009979,
0.12337969988584518,
0.16723081469535828,
0.6549232006072998,
-0.008046027272939682,
0.6480326056480408,
0.2839931845664978,
-0.8136471509933472,
0.6283544898033142,
-0.5640573501586914,
0.1723131686449051,
0.6736031770706177,
0.30161383748054504,
-0.592536449432373,
-0.19326165318489075,
-0.9773257374763489,
-0.8356913924217224,
0.8178317546844482,
0.43196848034858704,
0.08162645250558853,
0.22838343679904938,
0.49576425552368164,
-0.17152312397956848,
0.22724361717700958,
-0.6920585036277771,
-0.7882479429244995,
-0.37921151518821716,
-0.3322506248950958,
-0.05140090733766556,
-0.05501500517129898,
-0.24853968620300293,
-0.7415772676467896,
0.7651656866073608,
-0.13950811326503754,
0.3405700623989105,
0.41756513714790344,
0.4326118528842926,
-0.22385843098163605,
-0.0377918966114521,
0.2501283288002014,
0.3906106650829315,
-0.23483167588710785,
-0.30368757247924805,
-0.149408757686615,
-0.6075291037559509,
-0.10249510407447815,
0.5020604729652405,
-0.32970595359802246,
0.0010850244434550405,
0.3388122320175171,
0.8687804341316223,
-0.018776746466755867,
-0.24268738925457,
0.6133927702903748,
-0.08964087069034576,
-0.3963492214679718,
-0.42764854431152344,
0.01893821358680725,
0.1475200206041336,
0.24643900990486145,
0.04408774897456169,
0.029069313779473305,
-0.10458589345216751,
-0.3417358696460724,
0.4284117817878723,
0.2676759362220764,
-0.33354946970939636,
-0.4894039034843445,
0.5196095108985901,
0.09932762384414673,
-0.11466681957244873,
0.4848251938819885,
-0.15201471745967865,
-0.607997715473175,
0.8845812678337097,
0.1345602422952652,
0.8270813822746277,
-0.16758829355239868,
0.4209102988243103,
0.7177698612213135,
0.27511489391326904,
-0.06835193932056427,
0.5166687369346619,
-0.19396762549877167,
-0.6307206153869629,
-0.08093857765197754,
-0.5534127354621887,
-0.12061663717031479,
0.09783080220222473,
-0.8555852174758911,
0.48745667934417725,
-0.45742371678352356,
-0.2394917607307434,
0.02445436269044876,
0.41931718587875366,
-0.7244534492492676,
0.1936638206243515,
0.016791556030511856,
1.0628544092178345,
-1.077501654624939,
0.5402176976203918,
0.7280022501945496,
-0.6195504665374756,
-1.167205572128296,
-0.13206152617931366,
0.1736755669116974,
-0.5532028675079346,
0.10993895679712296,
0.21634922921657562,
0.5286021828651428,
-0.09456104785203934,
-0.9488286972045898,
-0.6645976901054382,
1.1624267101287842,
0.025348469614982605,
-0.18275660276412964,
0.3495970070362091,
0.07701420038938522,
0.6409487724304199,
-0.36302271485328674,
0.3703034222126007,
0.6703111529350281,
0.7026481628417969,
0.2970609664916992,
-0.7210609316825867,
0.2716495990753174,
-0.6362757086753845,
-0.2305012047290802,
0.07399579882621765,
-1.0423651933670044,
0.671174943447113,
-0.205896258354187,
-0.022651996463537216,
0.023312129080295563,
0.6192423701286316,
0.38623544573783875,
0.4410744309425354,
0.45062118768692017,
0.7415260672569275,
0.8129276633262634,
-0.36509156227111816,
1.1909140348434448,
-0.18623672425746918,
0.6844294667243958,
0.7674833536148071,
0.06424161791801453,
0.5317742228507996,
0.23973456025123596,
-0.32148128747940063,
0.5441617965698242,
0.6826913952827454,
-0.43348005414009094,
0.20891083776950836,
0.44411998987197876,
-0.059031929820775986,
-0.10095427185297012,
-0.2832126319408417,
-0.6267535090446472,
0.34332796931266785,
0.2964778244495392,
-0.3096582591533661,
-0.01265430636703968,
-0.0824567899107933,
0.3588806986808777,
-0.0745580792427063,
-0.2690277099609375,
0.6868032217025757,
0.029232878237962723,
-0.30614444613456726,
0.5761547088623047,
-0.22756275534629822,
0.6913543343544006,
-0.617091953754425,
0.1349252611398697,
-0.1049933210015297,
0.10924948751926422,
-0.6203392744064331,
-1.0798476934432983,
0.38979247212409973,
-0.08679216355085373,
-0.2218051552772522,
-0.3443793058395386,
0.7872889637947083,
-0.4920980930328369,
-0.7687745690345764,
0.29872268438339233,
0.23056386411190033,
0.2939019203186035,
0.22217419743537903,
-1.2779407501220703,
0.6481569409370422,
0.12876158952713013,
-0.5358497500419617,
0.08527257293462753,
0.5368289947509766,
0.15657782554626465,
0.4832165837287903,
0.6449410319328308,
0.23705539107322693,
-0.27301138639450073,
0.0013287323527038097,
1.182058334350586,
-0.5814438462257385,
-0.45428603887557983,
-0.7592081427574158,
0.9166736602783203,
-0.38807231187820435,
-0.37562116980552673,
0.6640138030052185,
0.690600574016571,
0.956334114074707,
-0.0006376422825269401,
0.8233699798583984,
-0.6696444153785706,
0.6037825345993042,
-0.19506368041038513,
0.9426817893981934,
-0.7245822548866272,
-0.07192907482385635,
-0.7415523529052734,
-0.5128613710403442,
-0.3725487291812897,
0.6390766501426697,
-0.21499371528625488,
0.2021222859621048,
0.2983492314815521,
0.9439530372619629,
0.04241131246089935,
0.12025819718837738,
-0.18044032156467438,
0.3234032094478607,
0.2842477858066559,
0.6002493500709534,
0.4829365909099579,
-0.8781222701072693,
0.38998186588287354,
-0.765008270740509,
-0.29408177733421326,
0.034180570393800735,
-0.8630242347717285,
-0.8676329851150513,
-0.9091718196868896,
-0.6621646285057068,
-0.8213299512863159,
-0.2703215181827545,
1.0575166940689087,
0.6901033520698547,
-0.7050160765647888,
-0.3037262558937073,
0.16081519424915314,
0.31159016489982605,
-0.11038332432508469,
-0.3068874776363373,
0.6392852067947388,
0.3427407741546631,
-0.5909687876701355,
-0.18864908814430237,
0.023796092718839645,
0.19455593824386597,
0.03598211333155632,
-0.10630705207586288,
-0.15784236788749695,
-0.21598133444786072,
0.34717050194740295,
0.5243345499038696,
-0.3660238981246948,
-0.1315295249223709,
-0.2841423749923706,
-0.03014880046248436,
0.13395345211029053,
0.5020411014556885,
-0.5670377016067505,
0.24009816348552704,
0.6938197016716003,
0.29095202684402466,
0.4430321156978607,
0.22061336040496826,
-0.031498681753873825,
-0.47898611426353455,
0.12047553807497025,
-0.01763792522251606,
0.2713651955127716,
0.3935045599937439,
-0.4482142925262451,
0.7862011194229126,
0.5888862609863281,
-0.5008450746536255,
-0.8108348250389099,
-0.17176835238933563,
-1.335062026977539,
0.1081724762916565,
1.074109435081482,
-0.03620780631899834,
-0.6177788376808167,
0.042125821113586426,
-0.2202247679233551,
0.17992332577705383,
-0.5718353390693665,
0.46168938279151917,
0.480833500623703,
-0.10515950620174408,
0.18847958743572235,
-0.3630017042160034,
0.6544070839881897,
-0.021247612312436104,
-1.0021214485168457,
0.1713208109140396,
0.4485432803630829,
0.44209128618240356,
0.2884904146194458,
0.8202247023582458,
-0.24640031158924103,
0.04474727064371109,
-0.024825286120176315,
0.309093713760376,
-0.2520062029361725,
0.036835748702287674,
-0.34011855721473694,
-0.15893325209617615,
-0.5060456395149231,
-0.22453831136226654
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/yung-lean | huggingartists | 2022-10-25T09:50:26Z | 294 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:50:26Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/yung-lean"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 0.441891 MB
<div class="inline-flex flex-col" style="line-height: 1.5;">
<div class="flex">
<div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('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.5896048545837402,
-0.48624634742736816,
0.05618761479854584,
0.27289146184921265,
-0.24747085571289062,
-0.027573680505156517,
-0.2788819372653961,
-0.4582901895046234,
0.8543636202812195,
0.305134117603302,
-0.917238175868988,
-0.8562701344490051,
-0.5590161681175232,
0.10679418593645096,
-0.08925018459558487,
1.2777281999588013,
-0.16716134548187256,
-0.3624272644519806,
-0.25956225395202637,
-0.24440070986747742,
-0.3227282464504242,
-0.26547375321388245,
-0.32283735275268555,
-0.3122512698173523,
0.334288090467453,
0.5193701982498169,
0.7142722606658936,
0.9144253730773926,
0.4705767035484314,
0.3478410840034485,
-0.10583183914422989,
-0.03556687757372856,
-0.4181699752807617,
-0.12794172763824463,
0.23198741674423218,
-0.3215428292751312,
-0.6981664896011353,
0.21608057618141174,
0.5515183210372925,
0.3929924964904785,
-0.05858645960688591,
0.48081710934638977,
0.06050834059715271,
0.8454015254974365,
-0.31055963039398193,
0.5000710487365723,
-0.28275465965270996,
-0.15836745500564575,
-0.27997520565986633,
0.09725669771432877,
0.21776585280895233,
-0.6152457594871521,
-0.04274429380893707,
-0.7376923561096191,
0.03093450888991356,
-0.02758386731147766,
1.0629037618637085,
0.08638753741979599,
0.09757212549448013,
-0.17769071459770203,
-0.09877493232488632,
0.5235435366630554,
-0.6609051823616028,
0.012769628316164017,
0.5691890120506287,
0.13263271749019623,
0.07492002099752426,
-0.6233589053153992,
-0.5849681496620178,
0.08350785076618195,
-0.18187130987644196,
0.3176681697368622,
-0.08650942146778107,
-0.28804442286491394,
0.5445356369018555,
0.5643011927604675,
-0.4993492066860199,
-0.22525639832019806,
-0.5439164638519287,
-0.11111243814229965,
1.1828240156173706,
0.14554069936275482,
0.4235314726829529,
-0.5210460424423218,
-0.2606310248374939,
-0.37795892357826233,
-0.2657538950443268,
0.35403552651405334,
0.5524126887321472,
0.44249314069747925,
-1.007925033569336,
0.6237013936042786,
-0.20982789993286133,
0.5527598857879639,
0.17164969444274902,
-0.09531375020742416,
0.786228597164154,
-0.45063725113868713,
-0.16866223514080048,
-0.11519026011228561,
1.0812325477600098,
0.657394528388977,
0.15868884325027466,
0.12294411659240723,
-0.10630657523870468,
-0.009685885161161423,
-0.1756049543619156,
-0.8582721948623657,
-0.40509963035583496,
0.6231902837753296,
-0.6315395832061768,
-0.5823525190353394,
0.20854100584983826,
-1.017193078994751,
-0.20507480204105377,
-0.3129504323005676,
0.2721835672855377,
-0.3710615634918213,
-0.5440961122512817,
0.15002258121967316,
-0.2539480924606323,
0.21065983176231384,
0.028107771649956703,
-0.6046848297119141,
0.17490312457084656,
0.5781622529029846,
0.7925530672073364,
0.22876761853694916,
-0.26432445645332336,
-0.26336154341697693,
-0.18959110975265503,
-0.13405609130859375,
0.6157321333885193,
-0.26113370060920715,
-0.3668244779109955,
-0.11965883523225784,
0.3237942159175873,
-0.09374550729990005,
-0.31804201006889343,
0.9699233174324036,
0.10071408003568649,
0.10675963014364243,
-0.6095743179321289,
-0.4235897958278656,
-0.006789045408368111,
0.29316189885139465,
-0.7561917901039124,
1.086010217666626,
0.31301745772361755,
-1.0079755783081055,
0.22742098569869995,
-0.7621067762374878,
-0.3178824484348297,
0.04159487411379814,
0.09013862907886505,
-0.7864256501197815,
-0.17840701341629028,
0.22283636033535004,
0.7762819528579712,
-0.3011946976184845,
0.01371939480304718,
-0.5893263816833496,
-0.14444731175899506,
0.3599943220615387,
0.2826964259147644,
1.2254804372787476,
0.14392070472240448,
-0.14534345269203186,
0.10232722014188766,
-0.9621322751045227,
0.20598001778125763,
0.4074573814868927,
-0.17084820568561554,
-0.10296008735895157,
-0.23529623448848724,
0.4203432500362396,
0.2826889157295227,
0.07776173204183578,
-0.56501305103302,
0.4270302355289459,
-0.20207934081554413,
0.4505387544631958,
0.7138344645500183,
-0.022209051996469498,
0.2796823978424072,
-0.655130922794342,
0.4006551206111908,
0.08312799036502838,
0.3751009404659271,
-0.03602612763643265,
-0.555426836013794,
-0.5002634525299072,
-0.28735801577568054,
0.29301899671554565,
0.44100844860076904,
-0.6888098120689392,
1.0015532970428467,
-0.3336324393749237,
-0.8486271500587463,
-0.6667163372039795,
0.16419625282287598,
0.17464323341846466,
0.5113851428031921,
0.37424972653388977,
-0.37686413526535034,
-0.5986093282699585,
-0.6504426598548889,
0.08657527714967728,
-0.28568321466445923,
0.12916626036167145,
0.39231881499290466,
0.8044989705085754,
-0.2849882245063782,
0.8061704635620117,
-0.6936132311820984,
-0.28902125358581543,
-0.2810639441013336,
-0.29723817110061646,
0.36634695529937744,
0.7784796953201294,
0.7412217855453491,
-0.8669524192810059,
-0.5039082765579224,
-0.2246405929327011,
-0.6731441020965576,
-0.16175809502601624,
-0.06185312569141388,
-0.2593952715396881,
0.015700839459896088,
0.17133449018001556,
-0.6482171416282654,
0.5453730225563049,
0.49821746349334717,
-0.6594966650009155,
0.6113855838775635,
0.13534776866436005,
0.01948479749262333,
-1.2653796672821045,
0.3651962876319885,
0.24160884320735931,
0.050476230680942535,
-0.5964280366897583,
-0.20853093266487122,
-0.04508653283119202,
-0.03991759568452835,
-0.09045758843421936,
0.6188574433326721,
-0.3490664064884186,
0.29947084188461304,
0.13710705935955048,
0.050828952342271805,
0.08390294015407562,
0.4645841419696808,
-0.08279749006032944,
0.24897444248199463,
1.0221832990646362,
-0.4059797525405884,
0.6756253838539124,
0.5734010934829712,
-0.24081146717071533,
0.8431942462921143,
-0.8407994508743286,
0.0003739193780347705,
-0.2338387817144394,
0.3575931191444397,
-0.8611804246902466,
-0.5504022836685181,
0.8193607330322266,
-0.6761198043823242,
0.43026483058929443,
-0.25514230132102966,
-0.5279023051261902,
-0.7962467074394226,
-0.7034845948219299,
0.16613700985908508,
0.5148113965988159,
-0.40563541650772095,
0.371213436126709,
0.569612443447113,
0.10015855729579926,
-0.3850446343421936,
-0.7967330813407898,
-0.154776930809021,
-0.3841457664966583,
-0.819126307964325,
0.39934346079826355,
-0.3376529812812805,
-0.0833468958735466,
0.13857930898666382,
0.07552021741867065,
0.05406814441084862,
0.008878295309841633,
0.37630701065063477,
0.3281971216201782,
0.05663777142763138,
0.001949958736076951,
-0.09898549318313599,
-0.19252586364746094,
0.13029876351356506,
-0.24638131260871887,
0.20092573761940002,
-0.3039717674255371,
-0.11344069242477417,
-0.6635735630989075,
0.17668616771697998,
0.47008487582206726,
-0.2325940877199173,
0.6747586727142334,
0.8500050902366638,
-0.2493561953306198,
-0.021399684250354767,
-0.5109385251998901,
-0.11106396466493607,
-0.4143093228340149,
0.07750702649354935,
-0.23343193531036377,
-0.5781491994857788,
0.9391213059425354,
0.23830829560756683,
0.0795380175113678,
0.6448701024055481,
0.48758599162101746,
-0.0329333133995533,
0.6633312702178955,
0.3698662221431732,
-0.2915165424346924,
0.5188273191452026,
-0.6879684329032898,
-0.1918822079896927,
-0.8571674823760986,
-0.4788183271884918,
-0.5165157318115234,
-0.5466874241828918,
-0.8905069828033447,
-0.44958892464637756,
0.19361038506031036,
0.13720934092998505,
-0.19039320945739746,
0.4545046389102936,
-0.9156168699264526,
0.23756802082061768,
0.33026787638664246,
0.29123133420944214,
-0.15091657638549805,
0.0007043344085104764,
0.06803945451974869,
0.12283553183078766,
-0.6162956357002258,
-0.20221681892871857,
1.1259922981262207,
0.48202434182167053,
0.6070281863212585,
-0.1403481513261795,
0.8337048292160034,
-0.034800685942173004,
0.24375392496585846,
-0.606700599193573,
0.4953004717826843,
0.03900780901312828,
-0.48720577359199524,
-0.1366407722234726,
-0.5248608589172363,
-0.8580033779144287,
-0.13632483780384064,
-0.42125561833381653,
-0.6693534851074219,
0.4987369179725647,
0.07139197736978531,
-0.2046838253736496,
0.3947153687477112,
-0.6524999141693115,
0.8688466548919678,
-0.11778555065393448,
-0.4643517732620239,
0.3429601788520813,
-1.037292718887329,
0.25290319323539734,
0.2117702215909958,
0.2291034460067749,
-0.3955007791519165,
0.010077396407723427,
1.0185623168945312,
-0.8254619836807251,
0.9200127720832825,
-0.36079341173171997,
0.12378179281949997,
0.6277068853378296,
-0.35908040404319763,
0.41883090138435364,
0.13665606081485748,
-0.27637365460395813,
0.3170461654663086,
0.05285711586475372,
-0.4649184048175812,
-0.45025521516799927,
0.6790102124214172,
-0.7126210331916809,
0.06757953763008118,
-0.3220483660697937,
-0.45952874422073364,
0.04586406797170639,
0.18182802200317383,
0.28830868005752563,
0.35224899649620056,
0.0029210366774350405,
0.16686075925827026,
0.43098583817481995,
-0.1490013748407364,
0.262103796005249,
-0.022810889407992363,
-0.07851220667362213,
-0.7676722407341003,
0.8991700410842896,
0.18045634031295776,
0.08250629901885986,
-0.01980934664607048,
0.4412800371646881,
-0.3912814259529114,
-0.12050334364175797,
-0.5610401034355164,
0.46763089299201965,
-0.4043963551521301,
-0.43592751026153564,
-0.47368520498275757,
-0.20566326379776,
-0.6825278401374817,
-0.18068119883537292,
-0.26596835255622864,
-0.4753989577293396,
-0.3006795048713684,
-0.22785606980323792,
0.9733840823173523,
0.4498065710067749,
-0.6717272996902466,
0.11943928897380829,
-0.5320316553115845,
0.29626142978668213,
-0.04314402863383293,
0.6566351056098938,
-0.06634935736656189,
-0.3049415349960327,
-0.2558134198188782,
0.13456539809703827,
-0.17666099965572357,
-0.6984204649925232,
0.28902918100357056,
-0.02210211753845215,
0.36310866475105286,
0.2104835957288742,
0.1410374492406845,
0.7027602791786194,
0.017130352556705475,
0.6279945969581604,
0.3132644295692444,
-0.8035463094711304,
0.6710227727890015,
-0.5130747556686401,
0.2059752196073532,
0.7522786259651184,
0.38221514225006104,
-0.6064659953117371,
-0.10032001882791519,
-0.9134626388549805,
-0.8611834645271301,
0.7705796360969543,
0.38249433040618896,
0.023695634678006172,
0.24382571876049042,
0.5852546095848083,
-0.18267665803432465,
0.27549490332603455,
-0.6978786587715149,
-0.8488115072250366,
-0.472898930311203,
-0.3454798758029938,
0.0073106493800878525,
-0.12771427631378174,
-0.21395668387413025,
-0.6989860534667969,
0.7568003535270691,
-0.16262218356132507,
0.3117583990097046,
0.4081936776638031,
0.46777236461639404,
-0.19087369740009308,
-0.006444476079195738,
0.23216915130615234,
0.3451046347618103,
-0.23640932142734528,
-0.33786141872406006,
-0.17784936726093292,
-0.6352458000183105,
-0.11678840965032578,
0.4645179808139801,
-0.4182150363922119,
-0.09287520498037338,
0.2961643636226654,
0.8998742699623108,
0.0415426641702652,
-0.25017523765563965,
0.5654517412185669,
-0.05727389082312584,
-0.43869876861572266,
-0.32208988070487976,
0.01771135814487934,
0.14609380066394806,
0.19751735031604767,
0.05546974018216133,
0.07238074392080307,
-0.11336585134267807,
-0.44195911288261414,
0.39202260971069336,
0.24733789265155792,
-0.40647533535957336,
-0.502396821975708,
0.6334201097488403,
0.08919528871774673,
-0.07096344977617264,
0.48781129717826843,
-0.16450189054012299,
-0.6523731350898743,
0.7975430488586426,
0.10585217922925949,
0.863105297088623,
-0.16252097487449646,
0.35499849915504456,
0.8271987438201904,
0.21596233546733856,
-0.10161937028169632,
0.5083766579627991,
-0.2085176557302475,
-0.6091843843460083,
-0.07298846542835236,
-0.593934178352356,
-0.04484245181083679,
0.11501960456371307,
-0.848649799823761,
0.48531654477119446,
-0.47777846455574036,
-0.2120574414730072,
-0.045400220900774,
0.4272489845752716,
-0.7149746417999268,
0.2106979936361313,
-0.05028602480888367,
1.0203009843826294,
-1.0335693359375,
0.45937296748161316,
0.6918835043907166,
-0.6366865634918213,
-1.2315170764923096,
-0.09571576863527298,
0.2074337899684906,
-0.5696926116943359,
0.2378227710723877,
0.21713887155056,
0.50120609998703,
-0.09368997812271118,
-0.9420577883720398,
-0.6570731997489929,
1.1939131021499634,
0.036875512450933456,
-0.19510850310325623,
0.34255021810531616,
0.09414389729499817,
0.6238170266151428,
-0.33391469717025757,
0.30540522933006287,
0.6294936537742615,
0.7210853695869446,
0.3765280544757843,
-0.7052364349365234,
0.2989286780357361,
-0.6048328876495361,
-0.24991881847381592,
0.044716816395521164,
-1.046156883239746,
0.6179491877555847,
-0.23489439487457275,
-0.07335802912712097,
0.02857702597975731,
0.6339205503463745,
0.4084237813949585,
0.4158804416656494,
0.4307796359062195,
0.7587271928787231,
0.7935755848884583,
-0.3401249051094055,
1.1753015518188477,
-0.22832591831684113,
0.5960795283317566,
0.7513670325279236,
0.013309469446539879,
0.4624592661857605,
0.20449014008045197,
-0.30327141284942627,
0.49791374802589417,
0.632422685623169,
-0.4481445550918579,
0.21476459503173828,
0.3917437195777893,
-0.02022564597427845,
-0.05294850841164589,
-0.2699810862541199,
-0.5755712985992432,
0.3579399287700653,
0.22058258950710297,
-0.26733237504959106,
0.030946094542741776,
-0.08184032142162323,
0.3925730288028717,
-0.048336539417505264,
-0.33047565817832947,
0.6173182129859924,
0.04941153898835182,
-0.3627505302429199,
0.564207911491394,
-0.1838580071926117,
0.7197269797325134,
-0.6317464709281921,
0.15887346863746643,
-0.10584741830825806,
0.12098212540149689,
-0.65635746717453,
-1.0413031578063965,
0.3748262822628021,
-0.09130203723907471,
-0.19905661046504974,
-0.35421624779701233,
0.7630578875541687,
-0.5014716982841492,
-0.8160513043403625,
0.22986659407615662,
0.2170567661523819,
0.26741379499435425,
0.16980481147766113,
-1.2725409269332886,
0.5794951319694519,
0.1697646975517273,
-0.45789238810539246,
0.1267199069261551,
0.5516698360443115,
0.20441009104251862,
0.549866259098053,
0.67264723777771,
0.2713041603565216,
-0.18957899510860443,
0.06697452813386917,
1.1065248250961304,
-0.5399891138076782,
-0.4734709858894348,
-0.7152307033538818,
0.8801432251930237,
-0.35388875007629395,
-0.40465328097343445,
0.7074307203292847,
0.7771133780479431,
0.9176715612411499,
0.01714736968278885,
0.8145070672035217,
-0.6856551766395569,
0.6431325674057007,
-0.24691253900527954,
0.9570043087005615,
-0.7343212366104126,
-0.07067248225212097,
-0.7378504276275635,
-0.5047003626823425,
-0.39282071590423584,
0.6537284851074219,
-0.14493516087532043,
0.24710394442081451,
0.2738461494445801,
0.9096664190292358,
0.051561418920755386,
0.09755933284759521,
-0.19654712080955505,
0.33741408586502075,
0.2845469117164612,
0.5591468811035156,
0.377596378326416,
-0.9349827766418457,
0.38456273078918457,
-0.7621264457702637,
-0.29629045724868774,
0.026605771854519844,
-0.8280914425849915,
-0.907751739025116,
-0.9615707397460938,
-0.6791173219680786,
-0.7289965748786926,
-0.3156640827655792,
1.0242619514465332,
0.7307907938957214,
-0.6919244527816772,
-0.2919549345970154,
0.10998532921075821,
0.29704779386520386,
-0.13595570623874664,
-0.3318714201450348,
0.6527981162071228,
0.33230575919151306,
-0.6424658298492432,
-0.1669171005487442,
0.0030357984360307455,
0.24312123656272888,
0.07882077246904373,
-0.10581875592470169,
-0.16276447474956512,
-0.3220818042755127,
0.32899972796440125,
0.4925595223903656,
-0.2970195412635803,
-0.08510729670524597,
-0.20078758895397186,
0.02240711823105812,
0.17490434646606445,
0.5210829973220825,
-0.5322291254997253,
0.21032924950122833,
0.6846200823783875,
0.3185559809207916,
0.4131627082824707,
0.23458585143089294,
0.012932793237268925,
-0.4905879497528076,
0.09983137249946594,
-0.00545444106683135,
0.314069539308548,
0.40543296933174133,
-0.44382911920547485,
0.8101325035095215,
0.5679670572280884,
-0.5073415637016296,
-0.8036141991615295,
-0.14854557812213898,
-1.3357521295547485,
0.10405009239912033,
1.0602290630340576,
-0.01208525337278843,
-0.5659769773483276,
0.07381385564804077,
-0.24940957129001617,
0.15841369330883026,
-0.5339375734329224,
0.494258314371109,
0.5171532034873962,
-0.07737711817026138,
0.12368214875459671,
-0.3551279604434967,
0.6510288119316101,
-0.029759002849459648,
-0.9910287261009216,
0.19579748809337616,
0.44375303387641907,
0.43384501338005066,
0.2686042785644531,
0.7897622585296631,
-0.2685425579547882,
0.03955971822142601,
-0.046403031796216965,
0.23635709285736084,
-0.28443899750709534,
0.048674557358026505,
-0.32005563378334045,
-0.15849633514881134,
-0.5297898650169373,
-0.22481562197208405
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/yung-plague | huggingartists | 2022-10-25T09:50:33Z | 294 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:50:33Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/yung-plague"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 0.109415 MB
<div class="inline-flex flex-col" style="line-height: 1.5;">
<div class="flex">
<div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('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.6053683161735535,
-0.5088282823562622,
0.05381970480084419,
0.2697330713272095,
-0.2751101851463318,
-0.001061122165992856,
-0.26200228929519653,
-0.46567898988723755,
0.8735472559928894,
0.3763760030269623,
-0.8326597809791565,
-0.9038437008857727,
-0.5557675957679749,
0.13946568965911865,
-0.08321147412061691,
1.298215627670288,
-0.08959738910198212,
-0.4113446772098541,
-0.234739750623703,
-0.20220427215099335,
-0.27810558676719666,
-0.31588271260261536,
-0.39884793758392334,
-0.29628485441207886,
0.41036757826805115,
0.5064893364906311,
0.7088887095451355,
0.9222901463508606,
0.5086240172386169,
0.3315891623497009,
-0.11331849545240402,
-0.015981657430529594,
-0.4038293659687042,
-0.1303662210702896,
0.2012227326631546,
-0.30377331376075745,
-0.6561803221702576,
0.19926856458187103,
0.5046371817588806,
0.39256954193115234,
-0.06385491788387299,
0.44166871905326843,
0.02815648540854454,
0.8314121961593628,
-0.2977586090564728,
0.4672454595565796,
-0.25604039430618286,
-0.1731586456298828,
-0.3645573556423187,
0.060222089290618896,
0.15393558144569397,
-0.6297095417976379,
-0.039983004331588745,
-0.7626082301139832,
0.042891815304756165,
-0.02307487279176712,
1.004582166671753,
0.09539717435836792,
0.08945631235837936,
-0.16171100735664368,
-0.13108539581298828,
0.47328248620033264,
-0.6901341676712036,
-0.08371812850236893,
0.5846242904663086,
0.16635267436504364,
0.02472933754324913,
-0.6485392451286316,
-0.5828034281730652,
0.06505796313285828,
-0.17318755388259888,
0.36334121227264404,
-0.14514246582984924,
-0.24823342263698578,
0.5362836718559265,
0.5531489849090576,
-0.5271661281585693,
-0.19826368987560272,
-0.5562638640403748,
-0.1698283553123474,
1.189674973487854,
0.16078035533428192,
0.44303402304649353,
-0.5568903088569641,
-0.23433759808540344,
-0.3653274178504944,
-0.2957898676395416,
0.36812838912010193,
0.5860830545425415,
0.44655928015708923,
-1.0248584747314453,
0.5689610242843628,
-0.14306440949440002,
0.6103087663650513,
0.13820108771324158,
-0.09911943972110748,
0.7684074640274048,
-0.4288918673992157,
-0.13546691834926605,
-0.11400550603866577,
1.07485032081604,
0.6806278824806213,
0.13297685980796814,
0.1273965686559677,
-0.04895014688372612,
0.019116047769784927,
-0.10947146266698837,
-0.8624590635299683,
-0.4514025151729584,
0.6169955134391785,
-0.6382453441619873,
-0.6067999005317688,
0.13776148855686188,
-1.0808072090148926,
-0.2715001404285431,
-0.24475114047527313,
0.2815105617046356,
-0.39674684405326843,
-0.5367099046707153,
0.1640067845582962,
-0.2783394753932953,
0.12486426532268524,
0.035700228065252304,
-0.5890505909919739,
0.16354334354400635,
0.5869182348251343,
0.7981492280960083,
0.1793353110551834,
-0.23173768818378448,
-0.32660359144210815,
-0.18099424242973328,
-0.13376641273498535,
0.6781785488128662,
-0.3216864764690399,
-0.3990633487701416,
-0.1512266993522644,
0.3292798697948456,
-0.0721689909696579,
-0.3280939757823944,
0.950597882270813,
0.05764168128371239,
0.08391715586185455,
-0.5900595784187317,
-0.41469094157218933,
-0.06558597832918167,
0.22109626233577728,
-0.761714518070221,
1.0455347299575806,
0.3101728558540344,
-1.0575945377349854,
0.1684991866350174,
-0.7345481514930725,
-0.33246541023254395,
0.05590088665485382,
0.07344082742929459,
-0.8071761131286621,
-0.19667766988277435,
0.20426592230796814,
0.7415212988853455,
-0.30444180965423584,
0.0076085287146270275,
-0.6164771914482117,
-0.12877994775772095,
0.31641489267349243,
0.2659006714820862,
1.2451202869415283,
0.12343090772628784,
-0.1430969089269638,
0.08793729543685913,
-0.9944169521331787,
0.11318747699260712,
0.40038856863975525,
-0.14446212351322174,
-0.13928478956222534,
-0.19597874581813812,
0.4382895231246948,
0.22971974313259125,
0.05134207010269165,
-0.5736104249954224,
0.4669705033302307,
-0.27753686904907227,
0.4461502134799957,
0.717612087726593,
0.05633343756198883,
0.23055990040302277,
-0.6968703269958496,
0.4224086403846741,
0.08211345970630646,
0.377135306596756,
-0.03708333894610405,
-0.5989131331443787,
-0.46966978907585144,
-0.26423242688179016,
0.29372167587280273,
0.4821990430355072,
-0.7350625395774841,
0.9962810277938843,
-0.2855956256389618,
-0.894432544708252,
-0.6311681270599365,
0.07505538314580917,
0.18274375796318054,
0.5416683554649353,
0.39616960287094116,
-0.43136945366859436,
-0.6204323768615723,
-0.6614910960197449,
0.1434701681137085,
-0.29111331701278687,
0.18880082666873932,
0.394586443901062,
0.7812740206718445,
-0.2751540243625641,
0.7997980117797852,
-0.6952378749847412,
-0.2540956437587738,
-0.28146159648895264,
-0.25836458802223206,
0.38931894302368164,
0.7696239352226257,
0.7602654695510864,
-0.8544374704360962,
-0.48099440336227417,
-0.1933361291885376,
-0.6394999027252197,
-0.20108523964881897,
-0.05826643854379654,
-0.25025591254234314,
0.00978093408048153,
0.1322551816701889,
-0.5631954669952393,
0.6064611077308655,
0.49523302912712097,
-0.6095479130744934,
0.6410835385322571,
0.09861770272254944,
0.014964839443564415,
-1.3256464004516602,
0.3802587389945984,
0.19684363901615143,
0.05180932581424713,
-0.6441764831542969,
-0.1899757981300354,
-0.05138033628463745,
-0.01426620315760374,
-0.07462452352046967,
0.6436058878898621,
-0.29022017121315,
0.3044952154159546,
0.0860743373632431,
0.06342313438653946,
0.045460838824510574,
0.4230547249317169,
-0.10810048133134842,
0.3077588677406311,
1.0609872341156006,
-0.42321181297302246,
0.729271650314331,
0.5557366609573364,
-0.21574360132217407,
0.804168701171875,
-0.8057827949523926,
-0.022709693759679794,
-0.21005377173423767,
0.3693695366382599,
-0.8514267206192017,
-0.5422815680503845,
0.8384774923324585,
-0.6881175637245178,
0.3935539722442627,
-0.2747608423233032,
-0.5421860218048096,
-0.8300248980522156,
-0.6619647145271301,
0.19964216649532318,
0.5265353322029114,
-0.357522577047348,
0.3875887989997864,
0.5686728954315186,
0.07325797528028488,
-0.38323110342025757,
-0.7786253094673157,
-0.12623567879199982,
-0.40130823850631714,
-0.811636209487915,
0.4341243505477905,
-0.34469592571258545,
-0.09341315925121307,
0.11531518399715424,
0.09799627214670181,
0.08561986684799194,
0.010549936443567276,
0.3923289179801941,
0.3000980615615845,
0.06061038374900818,
0.025996092706918716,
-0.09924709796905518,
-0.2518518269062042,
0.09326884150505066,
-0.22494585812091827,
0.2514530420303345,
-0.21336854994297028,
-0.17460867762565613,
-0.6527705788612366,
0.17707443237304688,
0.43248239159584045,
-0.2630757987499237,
0.6141554713249207,
0.8361606597900391,
-0.24993880093097687,
0.009671124629676342,
-0.513563334941864,
-0.1009872779250145,
-0.41083258390426636,
0.04293825849890709,
-0.19386090338230133,
-0.5722365379333496,
1.0021944046020508,
0.23880189657211304,
0.08128026127815247,
0.6862033605575562,
0.4822056293487549,
0.0035047337878495455,
0.6076772809028625,
0.3815156817436218,
-0.3379453420639038,
0.4644031524658203,
-0.6520727276802063,
-0.222178652882576,
-0.8634482622146606,
-0.4131857752799988,
-0.5153414607048035,
-0.5148801207542419,
-0.8949416875839233,
-0.44971784949302673,
0.2722824811935425,
0.12630772590637207,
-0.1832745224237442,
0.41739416122436523,
-0.9507030248641968,
0.20486344397068024,
0.34713515639305115,
0.3159078061580658,
-0.1267576366662979,
0.019357001408934593,
0.06735765933990479,
0.17145337164402008,
-0.5747591853141785,
-0.20972806215286255,
1.1679491996765137,
0.3999526798725128,
0.5711104869842529,
-0.12198115885257721,
0.868444561958313,
0.02519783191382885,
0.22212104499340057,
-0.5285049676895142,
0.4614860713481903,
-0.04092519357800484,
-0.4760030210018158,
-0.14153841137886047,
-0.4957597851753235,
-0.9500792622566223,
-0.15856397151947021,
-0.3669843375682831,
-0.7358019948005676,
0.5197840332984924,
0.05539439246058464,
-0.32616591453552246,
0.4364376664161682,
-0.5899782776832581,
0.8573923110961914,
-0.0785224512219429,
-0.39805740118026733,
0.28366532921791077,
-1.061956524848938,
0.22804032266139984,
0.16313385963439941,
0.2786804735660553,
-0.3683939576148987,
0.0028397219721227884,
1.019673466682434,
-0.8248947858810425,
0.9671659469604492,
-0.3425048589706421,
0.1288427710533142,
0.6058571338653564,
-0.33850815892219543,
0.41802453994750977,
0.1658126711845398,
-0.31745314598083496,
0.2967192828655243,
0.058658014982938766,
-0.4523445963859558,
-0.4130244851112366,
0.6237636208534241,
-0.7297911643981934,
-0.0062666963785886765,
-0.33634161949157715,
-0.42872750759124756,
0.10439971834421158,
0.16223865747451782,
0.3400263488292694,
0.45825886726379395,
0.020951183512806892,
0.11848969757556915,
0.4490356147289276,
-0.22637498378753662,
0.27346178889274597,
0.01344975270330906,
-0.14495785534381866,
-0.8163586854934692,
0.911518394947052,
0.17621709406375885,
0.10542146861553192,
0.002954925410449505,
0.44906938076019287,
-0.29562342166900635,
-0.1652299165725708,
-0.6121466755867004,
0.459695041179657,
-0.3762334883213043,
-0.44339096546173096,
-0.5251153707504272,
-0.24119776487350464,
-0.6831241846084595,
-0.17442664504051208,
-0.18215343356132507,
-0.4468667805194855,
-0.338961660861969,
-0.19266603887081146,
1.0697153806686401,
0.48266908526420593,
-0.7378414273262024,
0.16783811151981354,
-0.5472517013549805,
0.33588624000549316,
-0.06062112748622894,
0.595736563205719,
-0.059014953672885895,
-0.34101155400276184,
-0.22040699422359467,
0.11026019603013992,
-0.2093997448682785,
-0.7812351584434509,
0.29362186789512634,
-0.056259866803884506,
0.3592773973941803,
0.23202581703662872,
0.16610051691532135,
0.7115726470947266,
-0.017844192683696747,
0.6670065522193909,
0.2505088448524475,
-0.7736916542053223,
0.6846402883529663,
-0.5407480001449585,
0.15514971315860748,
0.7015055418014526,
0.3502325415611267,
-0.6717664003372192,
-0.1706574559211731,
-0.933550238609314,
-0.834863007068634,
0.8071940541267395,
0.38937702775001526,
-0.013852731324732304,
0.21752485632896423,
0.5986443758010864,
-0.13043983280658722,
0.2192707061767578,
-0.6679741740226746,
-0.91756671667099,
-0.42159485816955566,
-0.3132672905921936,
-0.03434430807828903,
-0.14630953967571259,
-0.2024572789669037,
-0.6836445927619934,
0.7410261631011963,
-0.09801197797060013,
0.2896512746810913,
0.39913779497146606,
0.49287155270576477,
-0.1761130839586258,
-0.01719631440937519,
0.26118382811546326,
0.33977848291397095,
-0.2139824479818344,
-0.2795853316783905,
-0.2096620500087738,
-0.6646201610565186,
-0.11208134889602661,
0.5396831631660461,
-0.4102386236190796,
-0.09201571345329285,
0.34130609035491943,
0.8615627884864807,
0.017384717240929604,
-0.2216598093509674,
0.5727561712265015,
-0.01639489457011223,
-0.3744887113571167,
-0.339160293340683,
0.05301313474774361,
0.1515292227268219,
0.1925545483827591,
0.08834708482027054,
0.07105845957994461,
-0.07299891114234924,
-0.38664668798446655,
0.41214966773986816,
0.20854659378528595,
-0.3183465301990509,
-0.49442213773727417,
0.5865951180458069,
0.07393086701631546,
-0.10364658385515213,
0.4411945939064026,
-0.23775546252727509,
-0.6484445333480835,
0.853256344795227,
0.12457909435033798,
0.8340299129486084,
-0.2132512480020523,
0.383710652589798,
0.7976295351982117,
0.2520735263824463,
-0.04368627443909645,
0.5207021236419678,
-0.16150255501270294,
-0.5809542536735535,
-0.07947041839361191,
-0.605448842048645,
-0.06141946092247963,
0.12978573143482208,
-0.8343408107757568,
0.4551220238208771,
-0.46517688035964966,
-0.1993076354265213,
0.01396437082439661,
0.40254732966423035,
-0.6556161642074585,
0.18036401271820068,
-0.06630481779575348,
1.011019229888916,
-1.0197521448135376,
0.4543265402317047,
0.6638544201850891,
-0.6818439960479736,
-1.172054648399353,
-0.09586233645677567,
0.20570120215415955,
-0.6060527563095093,
0.2172628492116928,
0.2102329283952713,
0.5522994995117188,
-0.05449628829956055,
-0.9140112996101379,
-0.7150181531906128,
1.1327332258224487,
-0.006404324900358915,
-0.21085681021213531,
0.35058966279029846,
0.08150411397218704,
0.6314510703086853,
-0.3168781101703644,
0.3152856230735779,
0.6248782873153687,
0.7544711828231812,
0.31223469972610474,
-0.7443425059318542,
0.27652689814567566,
-0.5991795063018799,
-0.25010213255882263,
0.07417561113834381,
-1.0132721662521362,
0.6180433034896851,
-0.19876207411289215,
-0.09089920669794083,
0.05192631855607033,
0.5972021818161011,
0.40633466839790344,
0.4483177661895752,
0.4228789210319519,
0.7890958786010742,
0.8046833276748657,
-0.3314363956451416,
1.1871533393859863,
-0.23868979513645172,
0.5534100532531738,
0.7703146934509277,
0.020331766456365585,
0.4544879198074341,
0.11849601566791534,
-0.3395485579967499,
0.5425527691841125,
0.7107645869255066,
-0.45975372195243835,
0.24182017147541046,
0.4238060712814331,
-0.04100049287080765,
-0.08213259279727936,
-0.23121489584445953,
-0.6317262053489685,
0.31706473231315613,
0.2738995850086212,
-0.2465318888425827,
-0.035960130393505096,
0.0337199904024601,
0.36152714490890503,
-0.03603464365005493,
-0.3404551148414612,
0.6591386795043945,
0.031797781586647034,
-0.32394593954086304,
0.5693932175636292,
-0.18643245100975037,
0.7105463743209839,
-0.5919408202171326,
0.1488737165927887,
-0.09934555739164352,
0.059442564845085144,
-0.6301476955413818,
-1.034751296043396,
0.40792784094810486,
-0.09611710906028748,
-0.23510906100273132,
-0.2456413209438324,
0.7307260632514954,
-0.44962602853775024,
-0.8238599896430969,
0.23787885904312134,
0.20306943356990814,
0.33475804328918457,
0.16839101910591125,
-1.238073706626892,
0.5713995099067688,
0.18301963806152344,
-0.39352068305015564,
0.113739512860775,
0.5746884346008301,
0.1869574636220932,
0.5354076027870178,
0.6784235239028931,
0.3413570821285248,
-0.20603956282138824,
0.07239210605621338,
1.087023138999939,
-0.5619876384735107,
-0.45024389028549194,
-0.745861828327179,
0.8342079520225525,
-0.3501772880554199,
-0.3814292550086975,
0.6881311535835266,
0.8039581775665283,
0.8871663808822632,
0.03219826519489288,
0.8551205396652222,
-0.6542049646377563,
0.6796911954879761,
-0.23469500243663788,
0.9824814796447754,
-0.7304154634475708,
-0.1017032042145729,
-0.728626549243927,
-0.4452654719352722,
-0.42686960101127625,
0.6202811598777771,
-0.1996217519044876,
0.18372686207294464,
0.28570041060447693,
0.9331756830215454,
0.07135162502527237,
0.10933946073055267,
-0.1820334941148758,
0.3597300946712494,
0.3046618103981018,
0.5703601837158203,
0.3739754855632782,
-0.862587571144104,
0.3569847643375397,
-0.7768707871437073,
-0.334179162979126,
-0.04446304962038994,
-0.8271010518074036,
-0.9041898846626282,
-0.9709312915802002,
-0.6392856240272522,
-0.7323161363601685,
-0.2740577459335327,
1.0115408897399902,
0.667306661605835,
-0.7113410234451294,
-0.26335248351097107,
0.11868967860937119,
0.2999093234539032,
-0.12889422476291656,
-0.3205164670944214,
0.7100493311882019,
0.319914847612381,
-0.5813542008399963,
-0.15433171391487122,
0.08873530477285385,
0.2366572469472885,
0.07404917478561401,
-0.008444142527878284,
-0.12233401089906693,
-0.3133915066719055,
0.3178907632827759,
0.5001876950263977,
-0.3841145634651184,
-0.10198644548654556,
-0.2691625654697418,
0.0001431987911928445,
0.17790032923221588,
0.5057427883148193,
-0.5652836561203003,
0.2741836607456207,
0.6492266058921814,
0.34129980206489563,
0.37820616364479065,
0.20841920375823975,
-0.0006968998932279646,
-0.45132383704185486,
0.08815154433250427,
-0.0027794139459729195,
0.30837565660476685,
0.36636781692504883,
-0.48522594571113586,
0.7832903861999512,
0.5837859511375427,
-0.5329139828681946,
-0.803995668888092,
-0.1059240773320198,
-1.3565216064453125,
0.09319888800382614,
1.069190502166748,
0.012676957063376904,
-0.5425080060958862,
0.010850443504750729,
-0.26573529839515686,
0.19243355095386505,
-0.5428065657615662,
0.5097196102142334,
0.5002011060714722,
-0.081224724650383,
0.15238934755325317,
-0.3533545434474945,
0.6753578186035156,
-0.07678433507680893,
-1.0292167663574219,
0.22828716039657593,
0.4335825741291046,
0.39048078656196594,
0.3283441662788391,
0.8077333569526672,
-0.239907369017601,
0.087758369743824,
-0.07191216945648193,
0.2841762602329254,
-0.26002487540245056,
0.06414913386106491,
-0.33248957991600037,
-0.15614144504070282,
-0.5617916584014893,
-0.18903353810310364
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
izzy-lazerson/sv_corpora_parliament_processed | izzy-lazerson | 2022-03-01T08:58:58Z | 294 | 0 | null | [
"region:us"
] | 2022-03-01T08:58:58Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227645754814148,
-0.22568479180335999,
0.8622263669967651,
0.43461522459983826,
-0.52829909324646,
0.7012971639633179,
0.7915719747543335,
0.07618614286184311,
0.774603009223938,
0.2563217282295227,
-0.7852813005447388,
-0.22573819756507874,
-0.9104475975036621,
0.5715674161911011,
-0.3992327153682709,
0.5791246294975281,
-0.14494499564170837,
-0.10751135647296906,
0.28233814239501953,
-0.2768957316875458,
-0.5409227013587952,
-0.3685525059700012,
-1.1902779340744019,
0.061491698026657104,
0.5316582918167114,
0.743514358997345,
0.7584061622619629,
0.3652168810367584,
0.643257737159729,
0.39322906732559204,
-0.231389120221138,
0.48270541429519653,
-0.04171793907880783,
0.0026038705836981535,
-0.3524438440799713,
-0.5516899824142456,
-0.28596577048301697,
0.07584768533706665,
1.096130132675171,
0.9666873812675476,
-0.28466421365737915,
0.05330856889486313,
-0.30636167526245117,
0.3308892846107483,
-0.4973427355289459,
0.3054097294807434,
-0.022506216540932655,
0.16318757832050323,
-0.704151451587677,
-0.5535351634025574,
0.012795033864676952,
-0.7361212968826294,
0.17926514148712158,
-0.6900812387466431,
0.8269097208976746,
0.18583209812641144,
1.1533749103546143,
0.14819422364234924,
-0.4624859392642975,
-0.8161761164665222,
-0.6538985371589661,
0.5711163282394409,
-0.32703715562820435,
0.3968023657798767,
0.7028226256370544,
-0.048573337495326996,
-0.9820331335067749,
-0.6745738983154297,
-0.46466246247291565,
0.2923974096775055,
0.3540281355381012,
-0.3411684036254883,
-0.17522093653678894,
-0.30589917302131653,
0.15791958570480347,
0.1281142681837082,
-0.48419976234436035,
-0.5543919205665588,
-0.547515869140625,
-0.39602571725845337,
0.6206656694412231,
0.34829503297805786,
0.24291737377643585,
-0.18884189426898956,
-0.3228582441806793,
0.0880165845155716,
-0.41608554124832153,
0.3402574062347412,
0.6335517168045044,
0.711402416229248,
-0.5811446309089661,
0.5602157711982727,
-0.049275897443294525,
0.7439709901809692,
0.11445585638284683,
-0.2747812569141388,
0.4146060049533844,
-0.14724673330783844,
0.055171847343444824,
0.42263513803482056,
0.3152443468570709,
0.28413069248199463,
-0.3273696303367615,
0.20322275161743164,
-0.32151490449905396,
-0.3049626648426056,
-0.2233218252658844,
-0.29490745067596436,
-0.35921788215637207,
0.5492295026779175,
-0.3314018249511719,
-0.4285552501678467,
1.1431758403778076,
-0.42007699608802795,
-0.7302228808403015,
0.33156365156173706,
0.40652117133140564,
-0.0994473472237587,
-0.37146514654159546,
-0.052260853350162506,
-0.8458787202835083,
-0.00790744461119175,
0.7491178512573242,
-0.7198969125747681,
0.33717358112335205,
0.47280627489089966,
0.741721510887146,
0.1965060532093048,
-0.14034466445446014,
-0.4294945299625397,
0.2971963882446289,
-0.8659994006156921,
0.6320174336433411,
-0.20135276019573212,
-1.0051976442337036,
0.11150483042001724,
0.8971704244613647,
-0.3789643347263336,
-1.2094870805740356,
1.0605157613754272,
-0.6887932419776917,
0.16017864644527435,
-0.6767609119415283,
-0.14661164581775665,
-0.07118469476699829,
-0.005095955915749073,
-0.6088155508041382,
0.7567099332809448,
0.5872676968574524,
-0.49952778220176697,
0.21429462730884552,
-0.2602984309196472,
-0.3915135860443115,
0.38824939727783203,
-0.0793546810746193,
-0.21858906745910645,
0.7138336896896362,
-0.6647078394889832,
-0.2693284749984741,
0.2942773103713989,
0.23689350485801697,
-0.357060968875885,
-0.793192446231842,
0.08478079736232758,
-0.05786222219467163,
1.5507503747940063,
-0.03868860378861427,
-0.35861143469810486,
-0.6793836951255798,
-1.1506236791610718,
-0.07070811837911606,
0.6886887550354004,
-0.9194992184638977,
-0.27839499711990356,
-0.046410247683525085,
-0.26169371604919434,
0.0899493545293808,
0.7390591502189636,
-1.119404911994934,
0.28327250480651855,
-0.050927065312862396,
-0.22794730961322784,
0.8271061182022095,
0.1538720428943634,
0.24758882820606232,
0.14913466572761536,
0.4295872151851654,
0.5277255773544312,
0.11115183681249619,
0.6835882663726807,
-0.3472035229206085,
-0.9694353938102722,
0.6154633164405823,
0.25266438722610474,
0.8121451139450073,
-0.49945372343063354,
0.2685092091560364,
0.2702546715736389,
-0.3409683108329773,
-0.5682377815246582,
-0.310282826423645,
0.09025713056325912,
0.14930608868598938,
0.11142496764659882,
-0.5721707344055176,
-0.6576128005981445,
-0.9689135551452637,
-0.13590654730796814,
-0.43143755197525024,
-0.35715678334236145,
0.2100687474012375,
0.5792907476425171,
-1.1975533962249756,
0.4128877520561218,
-0.7705622911453247,
-0.703874409198761,
-0.010655621066689491,
-0.1933809369802475,
0.7540653944015503,
0.43240174651145935,
0.5033961534500122,
-0.6397145390510559,
-0.5661987066268921,
-0.22470159828662872,
-1.0333740711212158,
-0.13280484080314636,
0.24819664657115936,
0.3065737783908844,
-0.1342328041791916,
-0.2744964361190796,
-0.48740261793136597,
0.8100383877754211,
0.14789214730262756,
-0.5391897559165955,
0.5220769643783569,
-0.3020317554473877,
0.17224839329719543,
-0.6369158029556274,
-0.0691685602068901,
-0.6616761684417725,
-0.0009067110950127244,
-0.36083078384399414,
-0.5737436413764954,
0.14772333204746246,
0.07017548382282257,
-0.16065415740013123,
0.2880837619304657,
-0.909276008605957,
-0.0010854422580450773,
-0.744221568107605,
0.37907224893569946,
0.0639476627111435,
-0.3145084083080292,
-0.017516743391752243,
1.000038743019104,
0.7784457206726074,
-0.3848040699958801,
0.7217439413070679,
0.4440040588378906,
0.19036099314689636,
0.7630518674850464,
-0.18725158274173737,
0.16478213667869568,
-0.5245421528816223,
-0.12161099910736084,
-0.8887605667114258,
-1.0982943773269653,
0.7320572137832642,
-0.6114250421524048,
0.36542850732803345,
-0.42778605222702026,
0.2589159309864044,
-0.6919258832931519,
-0.038853395730257034,
0.4808599054813385,
-0.05936374515295029,
-0.6863952875137329,
0.5232571363449097,
0.4531749188899994,
-0.2019244134426117,
-0.6609036922454834,
-0.5301570296287537,
0.39365914463996887,
0.6154113411903381,
-0.16390396654605865,
0.06878498196601868,
0.14941087365150452,
-0.5441920757293701,
-0.040802545845508575,
-0.3869187533855438,
-0.4576674997806549,
0.05422405153512955,
0.13053379952907562,
-0.005750161595642567,
-0.40482011437416077,
-0.08680257946252823,
-0.35842010378837585,
-0.4656125009059906,
0.21876463294029236,
0.30119529366493225,
-0.04096344858407974,
-0.42599743604660034,
-0.36198148131370544,
-0.8881808519363403,
0.6719611883163452,
0.5370280146598816,
0.05281474441289902,
0.7555550336837769,
0.16819244623184204,
-0.801498293876648,
-0.13532206416130066,
-0.17607054114341736,
0.2696835994720459,
-0.5588056445121765,
0.13849826157093048,
-0.013484805822372437,
-0.06374907493591309,
0.2629791498184204,
0.25386205315589905,
-0.4300558567047119,
0.927625298500061,
-0.26152747869491577,
-0.3592526614665985,
0.7960182428359985,
0.5974737405776978,
0.4958309531211853,
0.16503198444843292,
-0.044541094452142715,
0.9007097482681274,
-1.196651816368103,
-0.6563171744346619,
-0.7409546375274658,
-0.15945661067962646,
-0.43510857224464417,
-0.0321057066321373,
0.6254417300224304,
0.29009905457496643,
-0.13333925604820251,
0.47563934326171875,
-0.5243490934371948,
0.3556032180786133,
1.0119839906692505,
0.3574867248535156,
0.34357017278671265,
-0.7570232152938843,
-0.25157779455184937,
-0.14024296402931213,
-0.9998159408569336,
-0.2631372809410095,
0.8871029615402222,
0.2275265008211136,
0.8444608449935913,
0.5992542505264282,
0.6784538626670837,
0.136723130941391,
0.2523833215236664,
-0.305902898311615,
0.39202871918678284,
0.43760839104652405,
-1.040114164352417,
-0.42758411169052124,
0.02141888067126274,
-0.9703332185745239,
-0.14227578043937683,
-0.03495054319500923,
-0.42617106437683105,
0.7681738138198853,
0.00016635804786346853,
-0.4076710641384125,
0.7732735872268677,
-0.4555833339691162,
0.7562878727912903,
-0.4473649859428406,
-0.026638653129339218,
0.4699098467826843,
-0.707064151763916,
0.4677433967590332,
0.12878736853599548,
0.6205845475196838,
-0.015571946278214455,
-0.04078621417284012,
0.7104931473731995,
-0.9129164814949036,
0.25438612699508667,
-0.6348398923873901,
0.22421303391456604,
0.24246959388256073,
0.5160625576972961,
0.5969962477684021,
0.4371241629123688,
0.10119915008544922,
-0.23920848965644836,
0.04115789383649826,
-0.8241121172904968,
-0.21050670742988586,
0.6975144147872925,
-0.7186897397041321,
-0.6864195466041565,
-1.2355334758758545,
0.14438661932945251,
0.2734704911708832,
0.3893047273159027,
0.7959297895431519,
0.5714079141616821,
0.12895449995994568,
0.6805254220962524,
0.9888579249382019,
-0.06885591894388199,
0.916691780090332,
0.3224475085735321,
0.09175165742635727,
-0.2194489687681198,
0.703682541847229,
0.2662784457206726,
-0.2470790147781372,
-0.11939744651317596,
0.20913469791412354,
-0.11069414764642715,
-0.5917618870735168,
-0.4999074339866638,
0.3701755702495575,
-0.6731783747673035,
-0.1830393373966217,
-0.6243732571601868,
-0.6043766736984253,
-0.5117589235305786,
0.0692739263176918,
-0.7147684097290039,
0.23979082703590393,
-0.7753568887710571,
-0.10574901103973389,
0.04323358088731766,
0.9792002439498901,
-0.5893120765686035,
0.5805228352546692,
-1.12185800075531,
0.19345775246620178,
-0.07949890196323395,
0.792106032371521,
0.2139579802751541,
-0.7344390153884888,
-0.39754199981689453,
-0.11592598259449005,
-0.37299054861068726,
-1.3576757907867432,
0.21404962241649628,
-0.24541422724723816,
0.2309398353099823,
0.6145407557487488,
0.13977040350437164,
0.5258244276046753,
-0.3432632088661194,
0.7029102444648743,
-0.057016827166080475,
-0.7069293856620789,
0.7934491038322449,
-0.5026893615722656,
0.4963533282279968,
0.9766002893447876,
0.5333840250968933,
-0.7984007596969604,
0.0357406847178936,
-1.041122555732727,
-0.600869357585907,
0.38426393270492554,
0.1192895919084549,
-0.03601125627756119,
-0.665955662727356,
-0.054019927978515625,
-0.16143806278705597,
0.6043741703033447,
-1.0390695333480835,
-0.785835862159729,
0.25766894221305847,
0.5277299284934998,
0.08168502151966095,
-0.5653401613235474,
0.2088075876235962,
-0.5444163084030151,
1.0657776594161987,
0.45109352469444275,
0.32744958996772766,
0.8406059145927429,
0.4649237096309662,
-0.38231605291366577,
0.09252502024173737,
0.7662692070007324,
0.6666228771209717,
-0.5239795446395874,
-0.2908027172088623,
-0.0882752314209938,
-0.9143400192260742,
0.05927503854036331,
0.1116887554526329,
-0.013456095941364765,
0.9082115292549133,
0.579308032989502,
0.253970205783844,
0.4514276385307312,
-0.7264610528945923,
0.8859445452690125,
-0.1495419293642044,
-0.1247284859418869,
-1.0677239894866943,
0.19486205279827118,
-0.23984935879707336,
0.5006400346755981,
1.0061331987380981,
0.525004506111145,
-0.047630541026592255,
-0.814338207244873,
-0.014736384153366089,
0.6939173936843872,
-0.7091119289398193,
-0.17449775338172913,
0.9448539614677429,
0.38471025228500366,
-1.295304536819458,
1.106776475906372,
-0.5381773710250854,
-0.5603317618370056,
0.9121302366256714,
0.5229570269584656,
1.1221849918365479,
-0.44204193353652954,
0.0008675057324580848,
0.2662239074707031,
0.4137844443321228,
0.5423170328140259,
1.0869632959365845,
0.43141356110572815,
-0.7931072115898132,
0.8826581835746765,
-0.24776068329811096,
-0.40361127257347107,
-0.053475700318813324,
-0.42859864234924316,
0.16892209649085999,
-0.4406189024448395,
-0.10712965577840805,
-0.3444185256958008,
0.2854307293891907,
-0.70720374584198,
0.42807644605636597,
-0.08385642617940903,
0.8653066754341125,
-0.8553729057312012,
0.47207602858543396,
0.6354700326919556,
-0.33373481035232544,
-0.8508192300796509,
-0.26198476552963257,
-0.1144845262169838,
-0.6389466524124146,
0.30214792490005493,
-0.45541054010391235,
0.044398874044418335,
0.09623479843139648,
-0.6491509675979614,
-1.1778273582458496,
0.9093631505966187,
-0.6396117210388184,
-0.2784458100795746,
0.20463958382606506,
-0.1151471883058548,
0.28811654448509216,
-0.2524648904800415,
0.010661328211426735,
0.4187661111354828,
0.7489396333694458,
0.28446561098098755,
-0.7727053761482239,
-0.36948859691619873,
0.0015033691888675094,
-0.44474759697914124,
0.7582973837852478,
-0.6002098917961121,
1.1840776205062866,
-0.556353747844696,
-0.05965423583984375,
0.4438447952270508,
0.24690861999988556,
0.21076245605945587,
0.6629217267036438,
0.144208163022995,
0.7282259464263916,
1.0701210498809814,
-0.4083522856235504,
0.881180465221405,
0.26432785391807556,
0.4743083417415619,
0.7238510251045227,
-0.6487718820571899,
0.7513747811317444,
0.3181043267250061,
-0.5682927966117859,
0.9228019714355469,
1.290606141090393,
-0.15699152648448944,
0.80793696641922,
0.051364265382289886,
-1.0815999507904053,
0.32583361864089966,
-0.20724761486053467,
-0.7530062198638916,
0.31502565741539,
0.19055864214897156,
-0.6920987367630005,
-0.5770313739776611,
-0.2404651641845703,
-0.35662829875946045,
-0.11552873998880386,
-0.763173520565033,
0.6720565557479858,
-0.01696927472949028,
-0.5103673934936523,
0.18857470154762268,
0.28775009512901306,
0.17368444800376892,
-0.5235736966133118,
-0.029393965378403664,
-0.22823575139045715,
0.2660652697086334,
-0.5670853853225708,
-0.5234523415565491,
0.5724437236785889,
-0.32430148124694824,
-0.5343252420425415,
0.181474968791008,
0.7635870575904846,
-0.16923785209655762,
-0.4515411853790283,
0.3247268795967102,
0.6959530115127563,
0.16658467054367065,
0.42502790689468384,
-0.23511283099651337,
0.2448059767484665,
-0.08044827729463577,
-0.06651593744754791,
0.27714747190475464,
0.3449171781539917,
0.22435645759105682,
0.44501352310180664,
0.432856947183609,
-0.018087303265929222,
-0.10736559331417084,
-0.38282057642936707,
0.41249361634254456,
-0.9542784690856934,
-0.5713290572166443,
-0.630710780620575,
0.2740667760372162,
-0.023154327645897865,
-1.0836422443389893,
0.41451746225357056,
1.4406688213348389,
1.0359984636306763,
-0.4756380617618561,
1.0672271251678467,
-0.21818462014198303,
0.9594789743423462,
0.4148314893245697,
0.5420438051223755,
-0.6030403971672058,
0.038353081792593,
-0.43644052743911743,
-1.0769634246826172,
-0.3571633994579315,
0.4539390206336975,
-0.02289981208741665,
-0.3429867625236511,
0.8725717663764954,
0.5887162685394287,
-0.3347362279891968,
-0.11728022992610931,
0.04848663881421089,
-0.029941599816083908,
-0.12433874607086182,
0.5145372152328491,
0.764839768409729,
-0.9344298243522644,
-0.10680411010980606,
-0.21577700972557068,
-0.6382728815078735,
-0.5047284364700317,
-0.9632002711296082,
-0.12959381937980652,
-0.16037842631340027,
0.03534334897994995,
-0.5662809014320374,
0.002556905150413513,
1.2083250284194946,
0.5684951543807983,
-1.1113994121551514,
-0.5303782224655151,
0.33718499541282654,
0.39204245805740356,
-0.1874789297580719,
-0.24202406406402588,
0.2984571158885956,
0.1538221836090088,
-0.5908879041671753,
0.6875662803649902,
0.8089626431465149,
0.20888905227184296,
0.19554781913757324,
0.15893003344535828,
-0.8229468464851379,
-0.1491343379020691,
0.1744047999382019,
0.9450566172599792,
-0.9398531913757324,
-0.7114846110343933,
-0.03168468177318573,
-0.2709487974643707,
-0.05765697360038757,
0.17102089524269104,
-0.4046342968940735,
0.5180684924125671,
0.34591469168663025,
0.49933499097824097,
0.056160878390073776,
-0.05474642664194107,
0.5409556031227112,
-0.9069051742553711,
0.09425970166921616,
0.41343608498573303,
0.4154110848903656,
-0.4000871181488037,
-0.5910195112228394,
0.6713417172431946,
1.0073974132537842,
-0.6594864130020142,
-0.8743263483047485,
-0.19846680760383606,
-1.0016000270843506,
0.04189697653055191,
0.6762756109237671,
0.5009528994560242,
-0.48065176606178284,
-0.4174492359161377,
-0.5617400407791138,
-0.1254679411649704,
-0.13699708878993988,
0.76216059923172,
1.1796802282333374,
-0.7432100772857666,
0.07975788414478302,
-1.0386393070220947,
0.6594987511634827,
-0.2419460564851761,
-0.3457580506801605,
-0.4864429533481598,
0.3832802176475525,
0.3523699641227722,
0.44048118591308594,
0.6148120164871216,
0.14084689319133759,
0.8338428735733032,
0.31260576844215393,
-0.17026856541633606,
0.2698982357978821,
-0.4559198319911957,
-0.02893332578241825,
-0.05796259641647339,
0.3101596236228943,
-1.026215672492981
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
IlyaGusev/ru_turbo_saiga | IlyaGusev | 2023-09-04T13:26:47Z | 294 | 11 | null | [
"task_categories:text-generation",
"task_categories:text2text-generation",
"size_categories:10K<n<100K",
"language:ru",
"license:cc-by-4.0",
"chat",
"region:us"
] | 2023-09-04T13:26:47Z | 2023-04-08T20:53:59.000Z | 2023-04-08T20:53:59 | ---
dataset_info:
features:
- name: messages
sequence:
- name: role
dtype: string
- name: content
dtype: string
- name: seed
dtype: string
- name: source
dtype: string
- name: model_name
dtype: string
splits:
- name: train
num_bytes: 87316730
num_examples: 37731
download_size: 21742388
dataset_size: 87316730
license: cc-by-4.0
task_categories:
- text-generation
- text2text-generation
language:
- ru
tags:
- chat
size_categories:
- 10K<n<100K
---
# Saiga
Dataset of ChatGPT-generated chats in Russian.
<img src="https://cdn.midjourney.com/0db33d04-9d39-45f3-acb2-e5c789852e23/0_3.png" >
Based on the [Baize](https://github.com/project-baize/baize-chatbot) paper.
Code: [link](https://github.com/IlyaGusev/rulm/blob/master/self_instruct/src/data_processing/generate_chat.py).
Prompt:
```
Идёт диалог между пользователем и ИИ ассистентом.
Пользователь и ассистент общаются на тему: {{seed}}
Реплики человека начинаются с [Пользователь], реплики ассистента начинаются с [Ассистент].
Пользователь задаёт вопросы на основе темы и предыдущих сообщений.
Пользователь обрывает беседу, когда у него не остается вопросов.
Ассистент даёт максимально полные, информативные, точные и творческие ответы.
Ассистент старается не задавать вопросов, за исключением уточняющих.
Ассистент может отвечать несколькими абзацами.
Ассистент может использовать Markdown.
Закончи диалог точно в таком же формате.
[Пользователь] Привет!
[Ассистент] Привет! Чем я могу помочь?
```
## Legal disclaimer
Data is based on OpenAI’s gpt-3.5-turbo, whose [terms of use](https://openai.com/policies/terms-of-use) prohibit for us developing models that compete with OpenAI. Not for you. | [
-0.27175372838974,
-0.6077445149421692,
0.3491445481777191,
0.23944981396198273,
-0.4712781608104706,
-0.1881573349237442,
-0.3463531732559204,
-0.1031455472111702,
0.2907577157020569,
0.18242472410202026,
-0.7691482305526733,
-0.8331969380378723,
-0.6041158437728882,
-0.24218083918094635,
-0.1168641448020935,
1.3694599866867065,
0.24259516596794128,
-0.026189593598246574,
0.062170617282390594,
0.048416849225759506,
-0.5884628891944885,
-0.23118743300437927,
-0.8999277949333191,
-0.28146034479141235,
0.08133333921432495,
0.39403554797172546,
0.7351722717285156,
0.20787546038627625,
0.6666009426116943,
0.3054913580417633,
0.2831394374370575,
0.12873227894306183,
-0.44116613268852234,
0.10470142215490341,
0.37231698632240295,
-0.3091505765914917,
-0.5021076798439026,
0.10106022655963898,
0.7620706558227539,
0.0728590339422226,
-0.25560030341148376,
0.28066837787628174,
0.15244771540164948,
0.724556565284729,
-0.34466302394866943,
0.4297735393047333,
-0.4873597025871277,
-0.12589456140995026,
-0.38365066051483154,
-0.18096023797988892,
-0.06449845433235168,
-0.5805404782295227,
-0.25188520550727844,
-0.702021062374115,
0.18313421308994293,
0.21926195919513702,
1.7842048406600952,
0.0446227565407753,
0.1589564085006714,
-0.1710812747478485,
-0.8457961082458496,
0.8315410017967224,
-1.0546960830688477,
0.028800267726182938,
0.62485271692276,
0.4876965284347534,
-0.2219952791929245,
-0.8036692142486572,
-0.5826745629310608,
0.11487297713756561,
-0.3468305468559265,
0.3738997280597687,
-0.6356331706047058,
-0.4861648678779602,
0.27066463232040405,
0.3085615038871765,
-0.7923310399055481,
-0.21216361224651337,
-0.7126819491386414,
-0.1415182501077652,
0.6268457770347595,
0.36978352069854736,
0.388791561126709,
-0.32711261510849,
-0.1954466849565506,
0.1068187803030014,
-0.6775746941566467,
0.0726834237575531,
0.712683916091919,
0.28768065571784973,
-0.48120108246803284,
0.4227747321128845,
-0.500766396522522,
0.6587828397750854,
0.13756684958934784,
-0.11835815012454987,
0.5943106412887573,
-0.42485010623931885,
-0.6047104001045227,
-0.4368617832660675,
1.503242015838623,
0.5840857625007629,
0.38880613446235657,
0.08695976436138153,
0.1020553708076477,
-0.33154284954071045,
0.13715291023254395,
-0.8722383379936218,
-0.39875370264053345,
0.2753632068634033,
-0.369035542011261,
-0.5481709837913513,
0.26306483149528503,
-1.1874377727508545,
-0.15344256162643433,
-0.006741782184690237,
0.3534488379955292,
-0.7556474208831787,
-0.3690691888332367,
-0.036353036761283875,
0.23023265600204468,
0.41364315152168274,
0.3028544783592224,
-0.9952800273895264,
0.2960256338119507,
0.4487418532371521,
0.9973371028900146,
0.2841671109199524,
-0.11889270693063736,
-0.020080961287021637,
-0.0010187202133238316,
-0.29816997051239014,
0.8767510056495667,
-0.3073000907897949,
-0.31377509236335754,
-0.29353317618370056,
0.06304968148469925,
-0.21170584857463837,
-0.17197804152965546,
0.5037082433700562,
-0.3944794237613678,
0.4963967502117157,
-0.3412790894508362,
-0.28323855996131897,
-0.27340349555015564,
-0.0065198843367397785,
-0.28167062997817993,
1.1018884181976318,
-0.06494653224945068,
-1.0239670276641846,
0.5968869924545288,
-0.8896565437316895,
-0.2466801106929779,
0.29657596349716187,
-0.3279995620250702,
-0.7773098349571228,
-0.2946300208568573,
0.373535692691803,
0.7914491295814514,
-0.3795069754123688,
0.13946861028671265,
-0.1434134691953659,
-0.3991613984107971,
0.19827699661254883,
-0.26279664039611816,
0.6983851790428162,
0.483171284198761,
-0.4800732731819153,
0.38668906688690186,
-0.6558169722557068,
0.4574527144432068,
0.576520562171936,
-0.21159444749355316,
-0.10299479216337204,
-0.13746967911720276,
-0.03464602679014206,
0.11795514822006226,
0.18901464343070984,
-0.63213050365448,
0.14046871662139893,
-0.40848398208618164,
0.5223333835601807,
0.9647580981254578,
0.17506861686706543,
0.36850234866142273,
-0.40364646911621094,
0.5298773646354675,
0.07721245288848877,
0.2679254710674286,
-0.0805850476026535,
-0.6272348761558533,
-0.9463662505149841,
-0.4943195581436157,
0.034492362290620804,
0.6439602375030518,
-0.5394611358642578,
0.5862472653388977,
-0.3136054277420044,
-0.7997387051582336,
-0.607671856880188,
-0.24735650420188904,
0.24660669267177582,
0.47789520025253296,
0.2009449303150177,
0.2011386603116989,
-0.5400757789611816,
-0.9655302166938782,
-0.04255019873380661,
-0.21566544473171234,
-0.18521031737327576,
0.368147075176239,
0.7914480566978455,
0.08033446967601776,
0.7511808276176453,
-0.9481837153434753,
-0.2006767988204956,
-0.20623064041137695,
0.005014732014387846,
0.7876620292663574,
0.9456832408905029,
0.7392842769622803,
-1.0167104005813599,
-1.0456782579421997,
0.11841373145580292,
-0.8185821771621704,
-0.03287387266755104,
-0.021754417568445206,
-0.22029446065425873,
0.24593304097652435,
0.26743701100349426,
-0.6751492023468018,
0.9515454173088074,
0.27561450004577637,
-0.5473383069038391,
1.0797048807144165,
-0.254562646150589,
0.6388539671897888,
-1.4938348531723022,
0.5584498047828674,
0.08566104620695114,
-0.24918118119239807,
-0.8053575754165649,
-0.03151610121130943,
-0.04196127876639366,
-0.35181066393852234,
-0.4625489115715027,
0.5732660293579102,
-0.5015167593955994,
0.22443874180316925,
-0.18099385499954224,
-0.3181973993778229,
-0.2973710298538208,
0.7582322359085083,
-0.10351910442113876,
1.1471083164215088,
0.9075096249580383,
-0.4485173225402832,
0.5332234501838684,
0.28842607140541077,
-0.4983762800693512,
0.5869610905647278,
-0.9334961175918579,
0.10632984340190887,
-0.05652565509080887,
0.05900057777762413,
-1.2460460662841797,
-0.5802205801010132,
1.1932950019836426,
-0.9700232148170471,
0.27572524547576904,
-0.4693812131881714,
-0.6286929249763489,
-0.31406697630882263,
-0.3384774625301361,
0.08505836874246597,
0.6715836524963379,
-0.12434183806180954,
0.06109556928277016,
0.18618027865886688,
-0.30510473251342773,
-0.5995478630065918,
-0.8424275517463684,
-0.03451424837112427,
-0.3202320337295532,
-0.8455690145492554,
-0.024976858869194984,
-0.19047044217586517,
-0.011643708683550358,
0.0467417947947979,
0.07795286178588867,
-0.15106259286403656,
-0.34376493096351624,
0.4661550223827362,
0.4795413315296173,
-0.2979072034358978,
-0.1353987604379654,
-0.2906961441040039,
-0.396330326795578,
-0.1056726947426796,
-0.2136133909225464,
0.8840512037277222,
-0.5792738199234009,
-0.49463507533073425,
-0.7023857235908508,
0.512495219707489,
0.5322647094726562,
-0.07166390120983124,
1.108362078666687,
0.9188308715820312,
-0.45306116342544556,
0.12820319831371307,
-0.4197815954685211,
0.2876026928424835,
-0.5281206369400024,
0.18847821652889252,
-0.2926638722419739,
-0.6373693346977234,
1.0113883018493652,
0.4528566300868988,
-0.12761344015598297,
0.8038053512573242,
0.6961333751678467,
-0.1770901083946228,
0.9271332621574402,
0.42507585883140564,
-0.15390926599502563,
0.447936475276947,
-0.5587732791900635,
0.11380677670240402,
-0.763300895690918,
-0.6259015798568726,
-0.49612465500831604,
-0.26593393087387085,
-0.7503592371940613,
-0.40153223276138306,
0.3491286635398865,
-0.11679360270500183,
-0.3447076976299286,
0.27904725074768066,
-0.6992422938346863,
0.6442428827285767,
0.4834931492805481,
0.29069778323173523,
-0.10258432477712631,
0.07269463688135147,
-0.096448615193367,
-0.24983857572078705,
-0.6858769655227661,
-0.4285791516304016,
1.2346117496490479,
-0.04902578145265579,
1.0689276456832886,
0.14555872976779938,
0.5260480046272278,
0.20500080287456512,
-0.001404165173880756,
-0.5955027341842651,
0.7484455108642578,
0.07749682664871216,
-0.7232722043991089,
-0.3565249443054199,
-0.44046396017074585,
-1.0721482038497925,
0.2057771533727646,
-0.17491427063941956,
-1.237611174583435,
0.01784687116742134,
-0.02748371660709381,
-0.30657267570495605,
0.8207873106002808,
-0.5551077723503113,
0.9215320944786072,
0.13136135041713715,
-0.48593488335609436,
0.07296305894851685,
-0.6791691184043884,
0.3756900131702423,
0.12638559937477112,
0.13289666175842285,
-0.3308347463607788,
0.1874420940876007,
0.950072169303894,
-0.7238412499427795,
0.7203560471534729,
-0.20564427971839905,
0.15982411801815033,
0.36043038964271545,
-0.10382136702537537,
0.43740004301071167,
0.201364666223526,
0.05275330692529678,
0.08609563857316971,
-0.2331336885690689,
-0.7181095480918884,
-0.4230424165725708,
1.0793707370758057,
-0.94161456823349,
-0.6012880206108093,
-0.8936423063278198,
-0.39526477456092834,
0.10788274556398392,
0.5037305951118469,
0.6875926852226257,
0.41005566716194153,
-0.05553784221410751,
0.19368553161621094,
0.42133376002311707,
-0.19476576149463654,
0.46014365553855896,
0.42009130120277405,
-0.1954617202281952,
-0.4742429256439209,
0.9926303625106812,
0.07085807621479034,
0.1478380560874939,
-0.056824371218681335,
0.26194578409194946,
-0.1372147649526596,
-0.7153723835945129,
-0.23462246358394623,
0.31916454434394836,
-0.8697504997253418,
-0.4671235680580139,
-0.3492262065410614,
-0.4769394099712372,
-0.7367898225784302,
-0.08902014791965485,
-0.15429916977882385,
-0.19495996832847595,
-0.5216951370239258,
-0.05966990441083908,
0.6898343563079834,
0.6403335928916931,
-0.2656062841415405,
0.4188128411769867,
-0.746932327747345,
0.13712061941623688,
0.05046376585960388,
0.6228364706039429,
-0.0828152522444725,
-0.5864729285240173,
-0.32903754711151123,
0.08024323731660843,
-0.3621613681316376,
-0.9410699605941772,
0.731956422328949,
-0.06294073909521103,
0.6549959778785706,
0.3842816948890686,
-0.13507677614688873,
0.693925678730011,
-0.23047971725463867,
0.8042182326316833,
0.2488618642091751,
-0.7399802207946777,
0.9079372882843018,
-1.0501551628112793,
0.57412189245224,
0.5657396912574768,
0.5904320478439331,
-0.8503822088241577,
-0.3091837167739868,
-0.9521531462669373,
-0.8996849060058594,
1.2743947505950928,
0.6527276039123535,
0.031871356070041656,
0.1736316978931427,
0.12076979875564575,
0.06174406036734581,
0.2782708406448364,
-0.5888280868530273,
-0.5704666972160339,
-0.18328693509101868,
-0.037655092775821686,
0.06519310176372528,
-0.06854505836963654,
-0.061731643974781036,
-0.3502468168735504,
0.9772364497184753,
0.16868147253990173,
0.7486279010772705,
0.12714290618896484,
0.24978011846542358,
-0.11913303285837173,
0.2214874029159546,
0.9303895235061646,
0.9248007535934448,
-0.411602258682251,
-0.3328098654747009,
-0.014857395552098751,
-0.7796357870101929,
-0.04021189361810684,
0.02190038189291954,
-0.488221138715744,
-0.017462830990552902,
0.1640760600566864,
1.1931877136230469,
-0.10385395586490631,
-0.030764559283852577,
0.5291478633880615,
-0.25790518522262573,
-0.15982595086097717,
-0.5265395045280457,
-0.04653053358197212,
-0.023848090320825577,
0.12828755378723145,
0.6896755695343018,
0.4310990571975708,
-0.1337328553199768,
-0.15147075057029724,
0.14285963773727417,
0.38168343901634216,
-0.23844607174396515,
-0.4012346565723419,
0.7537837028503418,
0.05595502629876137,
-0.23635567724704742,
0.7762805819511414,
-0.01414953637868166,
-0.5999966859817505,
0.7376075983047485,
0.4594000577926636,
1.0537736415863037,
-0.189835324883461,
0.2543039619922638,
0.8195300698280334,
0.3562347888946533,
0.17758668959140778,
0.5236406326293945,
0.1959116905927658,
-0.5604480504989624,
-0.2719966769218445,
-0.6566857695579529,
-0.14689920842647552,
0.8208881616592407,
-0.6011777520179749,
0.39333900809288025,
-0.797904372215271,
-0.21117591857910156,
0.056707028299570084,
0.05403430759906769,
-0.7603992819786072,
0.2888118624687195,
0.17383696138858795,
0.6774591207504272,
-1.0531260967254639,
0.687304675579071,
0.7721700668334961,
-0.5311130285263062,
-0.9927928447723389,
0.210958793759346,
0.11655458062887192,
-0.9574004411697388,
0.7288962006568909,
-0.06438186019659042,
0.12034440785646439,
-0.01730646938085556,
-0.8092542886734009,
-1.1437638998031616,
1.2651982307434082,
-0.007852879352867603,
-0.15145796537399292,
0.1674976795911789,
0.19725996255874634,
0.4069606065750122,
-0.15925925970077515,
0.3863535225391388,
0.22186827659606934,
0.8020559549331665,
0.3193357288837433,
-0.9788607954978943,
0.5028679370880127,
-0.5863593816757202,
-0.28172972798347473,
0.4587774872779846,
-1.0622665882110596,
0.7910052537918091,
-0.03025619313120842,
-0.34460222721099854,
0.2370370626449585,
0.7588618397712708,
-0.004815931431949139,
0.045632585883140564,
0.10161612182855606,
0.6624575257301331,
0.4960632026195526,
-0.6220502257347107,
1.01444411277771,
0.09028246253728867,
0.7164154052734375,
0.739962100982666,
0.34216710925102234,
0.49433591961860657,
0.25510936975479126,
-0.6933668851852417,
0.4080671966075897,
0.6520065069198608,
-0.44562098383903503,
0.6628694534301758,
0.024519139900803566,
-0.275709867477417,
-0.13160628080368042,
0.23908530175685883,
-0.43219298124313354,
0.3954635262489319,
0.2912595570087433,
0.029329126700758934,
-0.34091752767562866,
-0.04775476083159447,
0.5567854642868042,
-0.1528140753507614,
-0.1803484857082367,
0.7896195650100708,
-0.19594499468803406,
-0.6012440919876099,
0.749414324760437,
-0.03156547248363495,
0.8245616555213928,
-1.3225219249725342,
0.1569918394088745,
-0.3355717062950134,
-0.03221920505166054,
-0.5530278086662292,
-0.9783831834793091,
0.4586218297481537,
0.2697780430316925,
-0.23187832534313202,
-0.017836835235357285,
1.28916335105896,
-0.24433459341526031,
-0.8005519509315491,
-0.15341860055923462,
0.26613742113113403,
0.43511438369750977,
0.11601713299751282,
-0.8834084868431091,
0.05841726437211037,
0.19818876683712006,
-0.4962732493877411,
0.38906130194664,
0.3443942964076996,
0.06680788099765778,
0.7458478808403015,
0.9619089961051941,
0.3734188973903656,
0.11654344946146011,
-0.2864648401737213,
1.0213016271591187,
-0.6479548215866089,
-0.7984970808029175,
-1.1532877683639526,
0.790343165397644,
-0.24583227932453156,
-0.3883035480976105,
0.926684558391571,
0.6995264887809753,
0.5626513957977295,
-0.31267449259757996,
1.140018343925476,
-0.5955626368522644,
0.39930614829063416,
-0.5805526375770569,
1.3158273696899414,
-0.6674501299858093,
-0.17508217692375183,
-0.4642740488052368,
-0.5859354138374329,
-0.29730361700057983,
0.5657886266708374,
-0.4944336414337158,
0.3442123234272003,
0.6643421053886414,
0.8732210993766785,
-0.2453605830669403,
-0.04913802817463875,
0.23448237776756287,
0.027789073064923286,
0.32293957471847534,
0.6807001829147339,
0.6607288718223572,
-0.6977242231369019,
0.8717246055603027,
-0.376107394695282,
-0.23170024156570435,
-0.10165977478027344,
-0.839323103427887,
-0.9403334259986877,
-0.7682022452354431,
-0.3518761992454529,
-0.25494489073753357,
-0.007160316687077284,
0.6489657759666443,
0.9574005007743835,
-1.0203776359558105,
-0.17821486294269562,
0.17467132210731506,
-0.02880406752228737,
-0.17323680222034454,
-0.36001646518707275,
0.6329343318939209,
-0.17094723880290985,
-1.0082026720046997,
0.08032889664173126,
-0.03624414652585983,
0.320065975189209,
0.1284162551164627,
-0.03269697353243828,
-0.7789429426193237,
-0.04480542987585068,
-0.10045814514160156,
0.4262154996395111,
-0.5855903625488281,
-0.3222132921218872,
-0.3090723156929016,
-0.1275307983160019,
0.37153181433677673,
0.32196927070617676,
-0.2979505658149719,
0.08770494908094406,
0.8390136957168579,
0.12442640215158463,
0.6216393709182739,
0.030326364561915398,
0.4290311932563782,
-0.7751837372779846,
0.38935422897338867,
0.029638532549142838,
0.34860119223594666,
0.2816248834133148,
-0.6213565468788147,
0.624717652797699,
0.4459046721458435,
-0.851518988609314,
-0.5663331747055054,
0.013605267740786076,
-0.9901371002197266,
-0.09869231283664703,
1.2052775621414185,
-0.3708520829677582,
-0.11914090067148209,
0.3102930784225464,
-0.2782105505466461,
0.3038676977157593,
-0.8464951515197754,
0.4320191740989685,
0.9523900747299194,
-0.14540626108646393,
0.03814160078763962,
-0.687104344367981,
0.6414239406585693,
0.3136536777019501,
-1.0359007120132446,
0.011976058594882488,
0.4584995210170746,
0.5540836453437805,
0.3553454279899597,
1.0118733644485474,
-0.04476194456219673,
0.3051033318042755,
-0.006172556430101395,
0.024283280596137047,
-0.5092884302139282,
-0.09417067468166351,
-0.2904664874076843,
-0.1824030727148056,
-0.4221014678478241,
-0.7549306154251099
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
mnoukhov/deprecated_relabel_pythia1b | mnoukhov | 2023-10-24T15:52:47Z | 294 | 0 | null | [
"region:us"
] | 2023-10-24T15:52:47Z | 2023-10-24T15:52:44.000Z | 2023-10-24T15:52:44 | ---
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: test
path: data/test-*
dataset_info:
features:
- name: prompt
dtype: string
- name: chosen
dtype: string
- name: rejected
dtype: string
splits:
- name: train
num_bytes: 157425966
num_examples: 92534
- name: test
num_bytes: 8367345
num_examples: 5000
download_size: 21788928
dataset_size: 165793311
---
# Dataset Card for "openai_summarize_comparisons_relabel_pythia1b"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) | [
-0.40635350346565247,
-0.21016825735569,
-0.043327394872903824,
0.2168315052986145,
-0.2570817172527313,
-0.17318162322044373,
0.19270475208759308,
-0.0516287162899971,
0.9434791803359985,
0.2365110218524933,
-0.5615837574005127,
-0.7902065515518188,
-0.5776419043540955,
-0.15119251608848572,
-0.17110469937324524,
1.2623412609100342,
-0.1689070165157318,
-0.026980934664607048,
-0.2858121395111084,
-0.3627925217151642,
-0.20157712697982788,
-0.3511831760406494,
-0.5126674175262451,
-0.7379501461982727,
1.1424603462219238,
0.8427795171737671,
0.5658707618713379,
0.08917777240276337,
0.9446267485618591,
0.19168917834758759,
-0.03905750438570976,
-0.24947214126586914,
-0.4083312153816223,
-0.019167035818099976,
-0.19837956130504608,
-0.6152829527854919,
-1.1348286867141724,
0.16832926869392395,
0.768088161945343,
0.508937656879425,
-0.016015835106372833,
0.9443166255950928,
-0.3385995626449585,
0.6013801693916321,
-0.8036515712738037,
0.49190807342529297,
0.027598075568675995,
0.13027460873126984,
-0.4750489294528961,
-0.029126252979040146,
0.06508207321166992,
-0.8224983811378479,
0.011277653276920319,
-1.0343068838119507,
0.19786250591278076,
0.06154177337884903,
0.9843512177467346,
0.3258599042892456,
-0.08692465722560883,
-0.014857953414320946,
-0.27356308698654175,
0.25335538387298584,
-0.4504910707473755,
0.10359722375869751,
0.4731827676296234,
0.48172491788864136,
0.10374867916107178,
-0.8614220023155212,
-0.35411152243614197,
0.2106887847185135,
-0.31089600920677185,
0.33246564865112305,
-0.33204808831214905,
-0.1039508581161499,
0.4215624928474426,
1.0341113805770874,
-0.5692768692970276,
-0.25153082609176636,
-0.6087183356285095,
-0.30432912707328796,
0.5383661985397339,
0.10955153405666351,
0.42079052329063416,
0.16667959094047546,
0.06359832733869553,
-0.35823437571525574,
-0.4891730844974518,
-0.331100732088089,
0.3413112461566925,
0.128546342253685,
-0.9682914018630981,
0.7905181646347046,
-0.36386922001838684,
0.5075926780700684,
-0.2480931580066681,
0.4309915602207184,
0.8766567707061768,
-0.2969001829624176,
-0.4471365213394165,
0.15045858919620514,
0.5304052829742432,
0.6146156191825867,
0.28159621357917786,
-0.04422404617071152,
0.10777327418327332,
-0.01963130384683609,
-0.16285128891468048,
-1.324871301651001,
-1.0871654748916626,
0.2711542844772339,
-0.9841002225875854,
-0.3478153347969055,
0.41631677746772766,
-1.0408772230148315,
-0.3891269564628601,
-0.25133153796195984,
0.39883875846862793,
0.30521726608276367,
-0.756810188293457,
-0.2803346812725067,
-0.5764105319976807,
0.3218359351158142,
0.05522295460104942,
-0.6681832671165466,
0.07182149589061737,
0.4346430003643036,
0.9549297094345093,
0.20020966231822968,
-0.41942837834358215,
-0.3767593204975128,
-0.010657275095582008,
-0.12715838849544525,
0.8480252027511597,
-0.4023474454879761,
-0.4343715012073517,
-0.1601838320493698,
0.1811806559562683,
0.08641129732131958,
-0.4067404270172119,
0.6592437624931335,
-0.07663646340370178,
-0.14443178474903107,
-0.7096320390701294,
-0.19123341143131256,
-0.13465616106987,
0.2400798797607422,
-1.0282610654830933,
0.6519107222557068,
0.32485345005989075,
-1.0553207397460938,
0.5185011029243469,
-1.001616358757019,
-0.15110306441783905,
0.2947525084018707,
0.07334592193365097,
-0.6392012238502502,
0.26314276456832886,
0.009225260466337204,
0.20598261058330536,
-0.3179141879081726,
0.20995290577411652,
-0.5229570865631104,
-0.15614379942417145,
0.3218232989311218,
-0.06871466338634491,
0.8487746119499207,
0.4217906892299652,
0.439505398273468,
0.5707277059555054,
-0.7648952007293701,
0.02851218543946743,
0.28612807393074036,
-0.1908346265554428,
-0.15345974266529083,
-0.500532865524292,
0.2710036039352417,
-0.4424745738506317,
0.23745478689670563,
-0.4455873668193817,
0.5328426361083984,
0.026023728772997856,
-0.14817363023757935,
0.606902003288269,
0.1272241175174713,
0.12111726403236389,
-0.538185179233551,
0.4567933678627014,
-0.04288020357489586,
0.18228617310523987,
-0.10840464383363724,
-0.5967090129852295,
-0.6202297210693359,
-0.19233663380146027,
0.831928551197052,
0.603438138961792,
-0.5194473266601562,
0.5236046314239502,
-0.15094344317913055,
-0.884962260723114,
-0.5610311031341553,
-0.19804558157920837,
0.6036338806152344,
0.34478524327278137,
0.33854129910469055,
-0.5683002471923828,
-0.6420884728431702,
-0.9499147534370422,
-0.04009909927845001,
-0.2014060914516449,
-0.16331718862056732,
0.21478930115699768,
0.9916921257972717,
-0.11543547362089157,
0.5593764185905457,
-1.0614943504333496,
-0.22746913135051727,
-0.09405350685119629,
0.027150720357894897,
0.3203882575035095,
0.7121429443359375,
0.7133090496063232,
-0.6714082956314087,
-0.2771974802017212,
-0.518227219581604,
-0.7231406569480896,
-0.27597498893737793,
0.33844614028930664,
-0.6515865325927734,
-0.23307426273822784,
0.12665468454360962,
-0.3414708971977234,
1.1647372245788574,
0.5880205631256104,
-0.903232216835022,
0.1466090828180313,
-0.0868903324007988,
0.661837637424469,
-1.272821068763733,
0.511427640914917,
-0.03388597443699837,
0.09173481911420822,
-0.4071076214313507,
0.18160389363765717,
-0.06490171700716019,
-0.0873255729675293,
-0.22957712411880493,
0.4824157655239105,
-0.25975292921066284,
-0.2769412100315094,
-0.15508796274662018,
0.014451993629336357,
-0.31640100479125977,
0.3645969033241272,
0.10721026360988617,
0.6602134704589844,
0.7878743410110474,
-0.4119085967540741,
0.9456623196601868,
0.7973530292510986,
-0.2628391981124878,
0.559922456741333,
-1.0142520666122437,
-0.005419881548732519,
-0.10001631826162338,
0.4717783033847809,
-1.005255103111267,
-0.7038436532020569,
0.8455070853233337,
-0.7008225321769714,
0.2951718270778656,
-0.37434691190719604,
-0.5819590091705322,
-0.41120052337646484,
-0.3636501431465149,
1.1265820264816284,
0.4441763162612915,
-0.8165359497070312,
0.4744672179222107,
0.5281328558921814,
-0.07330188155174255,
-0.028936220332980156,
-1.1887162923812866,
-0.19347620010375977,
-0.15523844957351685,
-0.23675714433193207,
0.4010261595249176,
-0.0836409255862236,
-0.1780409961938858,
-0.22706665098667145,
0.19273091852664948,
-0.005108933430165052,
-0.20455487072467804,
0.41463541984558105,
0.11196029931306839,
-0.31195908784866333,
0.3199997842311859,
-0.0904599204659462,
-0.6795293092727661,
0.025958029553294182,
0.07987254858016968,
0.3015822470188141,
0.0010716136312112212,
0.0034430630039423704,
-0.4476182162761688,
0.28916096687316895,
0.21178461611270905,
-0.569120466709137,
0.5992853045463562,
0.7046682834625244,
-0.6416733860969543,
0.2614649832248688,
-0.17764845490455627,
-0.037614040076732635,
-0.3154453635215759,
0.168255016207695,
-0.3436816334724426,
-0.272568941116333,
0.6155223846435547,
0.05278613418340683,
0.2771469056606293,
0.6531705856323242,
0.7801002264022827,
0.30482006072998047,
0.49181288480758667,
0.43351542949676514,
-0.47556158900260925,
0.4696420431137085,
-0.2776351869106293,
0.030958004295825958,
-0.8389487862586975,
-0.3589346706867218,
-0.732418954372406,
-0.7037070989608765,
-0.811108410358429,
-0.3031889796257019,
0.008123870007693768,
0.00853780098259449,
-0.29744765162467957,
0.31394609808921814,
-0.7175498604774475,
0.6188335418701172,
0.752385139465332,
0.4795490503311157,
-0.006467308849096298,
0.021453529596328735,
0.5480102300643921,
0.21584029495716095,
-0.7013623118400574,
-0.11600157618522644,
1.421312689781189,
0.5153061151504517,
0.9366003274917603,
0.6547891497612,
0.833268404006958,
0.20596273243427277,
0.6313969492912292,
-0.399050235748291,
0.3999409079551697,
-0.04721223935484886,
-0.3554869294166565,
-0.20607826113700867,
-0.34434622526168823,
-1.0068135261535645,
-0.12248217314481735,
-0.29843011498451233,
-0.5151410102844238,
0.3896327614784241,
0.4278552830219269,
-0.1271810233592987,
0.3774905800819397,
-0.7293412685394287,
1.1877459287643433,
-0.04091280326247215,
-0.0730544775724411,
-0.07112155854701996,
-0.5977347493171692,
0.34782323241233826,
0.6232399344444275,
-0.20869016647338867,
-0.06624018400907516,
-0.07770700752735138,
1.1651867628097534,
-0.4777028262615204,
0.8066176176071167,
-0.43048369884490967,
0.05785297229886055,
0.2586577236652374,
-0.2357618510723114,
-0.08730008453130722,
0.33449772000312805,
0.2971618175506592,
0.17030294239521027,
-0.09593365341424942,
-0.6689061522483826,
-0.2916284501552582,
0.8976328372955322,
-0.7396018505096436,
0.31730514764785767,
-0.620378851890564,
-0.5039896368980408,
0.26644349098205566,
0.1338304877281189,
0.42090073227882385,
0.7291861772537231,
-0.2575787901878357,
-0.04266258701682091,
0.809943437576294,
-0.2029990255832672,
0.20713773369789124,
0.0757397934794426,
-0.6953487992286682,
-0.7308372855186462,
1.2273999452590942,
0.1192859411239624,
-0.1630907505750656,
0.2843036651611328,
0.4603615403175354,
-0.18721817433834076,
-0.3372330367565155,
-0.4471689760684967,
0.1943981945514679,
-0.740477979183197,
-0.5614322423934937,
-0.19557762145996094,
-0.0029848222620785236,
-0.6443710327148438,
-0.06381715089082718,
-0.058696504682302475,
-0.5592857599258423,
-0.4223403334617615,
-0.5890020132064819,
0.7893957495689392,
0.580843448638916,
-0.3679203391075134,
0.5989963412284851,
-0.5879707932472229,
0.8075093030929565,
-0.11198337376117706,
0.9703704714775085,
-0.1218624860048294,
-0.5075398683547974,
-0.08962351828813553,
-0.030092783272266388,
-0.20109432935714722,
-0.9432888031005859,
-0.055711276829242706,
0.1096162423491478,
0.727343738079071,
0.02780281752347946,
-0.2215149998664856,
0.6122686266899109,
0.4213921129703522,
0.648581326007843,
0.2244705706834793,
-0.5799027681350708,
0.8564783930778503,
-0.26581767201423645,
0.6806942820549011,
0.8682608008384705,
0.4493579566478729,
-0.16887134313583374,
0.17580781877040863,
-0.8315291404724121,
-1.1073535680770874,
0.5615121722221375,
0.37103843688964844,
-0.25290146470069885,
0.21022818982601166,
0.35799044370651245,
-0.09300053119659424,
0.3119159936904907,
-0.7593042850494385,
-1.1224743127822876,
-0.2336580455303192,
-0.4095253050327301,
-0.10845621675252914,
-0.41805654764175415,
-0.05143354833126068,
-0.5109983086585999,
0.8771631717681885,
0.046818725764751434,
0.3876746594905853,
0.3218321204185486,
0.014637570828199387,
-0.03556840866804123,
-0.15023240447044373,
0.4721193313598633,
0.7187039256095886,
-0.4640228748321533,
-0.22961583733558655,
-0.08341926336288452,
-0.45654383301734924,
-0.34211495518684387,
0.3584885895252228,
-0.256125271320343,
0.0028603679966181517,
0.6051692962646484,
0.7100993394851685,
-0.047488000243902206,
-0.12841273844242096,
0.10561732947826385,
-0.3458303213119507,
-0.3072413504123688,
-0.29100465774536133,
-0.046512313187122345,
-0.01128108985722065,
0.1359671652317047,
-0.14350003004074097,
-0.335631787776947,
0.3736751675605774,
-0.789017915725708,
0.3555181324481964,
-0.2372128814458847,
-0.23501871526241302,
-0.05571618303656578,
0.3633786141872406,
0.5366314649581909,
-0.5828823447227478,
1.0360827445983887,
-0.1229853704571724,
-0.43023061752319336,
0.7819222807884216,
0.2669822573661804,
0.9520317316055298,
-0.4431286156177521,
0.17964662611484528,
0.8508002758026123,
0.08279483020305634,
0.2478184551000595,
0.7291778326034546,
-0.4160490036010742,
-0.42214861512184143,
0.15080979466438293,
-0.28666555881500244,
-0.45259785652160645,
-0.34686923027038574,
-1.039768099784851,
0.18986879289150238,
-0.6339291334152222,
-0.06542275846004486,
0.12381553649902344,
-0.049917105585336685,
-0.544207751750946,
0.4462360143661499,
0.09728583693504333,
1.3020755052566528,
-0.960985004901886,
0.6335291266441345,
0.6950182318687439,
-0.8512959480285645,
-0.49693262577056885,
0.07084482163190842,
-0.03314203396439552,
-0.309658408164978,
0.08528444170951843,
0.2150105983018875,
0.3707091510295868,
-0.23272402584552765,
-0.7321755886077881,
-0.6272425055503845,
1.374974250793457,
0.05321473255753517,
-0.7101758718490601,
0.44866159558296204,
-0.35518601536750793,
0.32322144508361816,
-0.34528055787086487,
0.6627643704414368,
0.871777355670929,
0.8017679452896118,
0.32181212306022644,
-0.8018221259117126,
-0.06818044930696487,
-0.6153743863105774,
-0.3977988064289093,
0.5705946087837219,
-0.8085894584655762,
0.6161284446716309,
-0.21012628078460693,
-0.030175596475601196,
0.29269737005233765,
1.0655603408813477,
0.15482507646083832,
0.7942768931388855,
0.11335248500108719,
0.7592738270759583,
0.8688206076622009,
-0.5695167779922485,
0.8924391865730286,
0.1647874265909195,
0.5014824867248535,
1.5465986728668213,
0.11710816621780396,
0.45058706402778625,
0.4343760311603546,
-0.2429720014333725,
0.13253359496593475,
0.7204604148864746,
-0.5168867111206055,
0.4650440514087677,
0.6618281006813049,
-0.09530746936798096,
-0.08347487449645996,
-0.10061176121234894,
-0.7912191152572632,
0.057588424533605576,
0.24790774285793304,
-0.6122139692306519,
-0.16358768939971924,
-0.32560300827026367,
0.03511907532811165,
-0.11595963686704636,
-0.6897351145744324,
0.8480228781700134,
-0.06382360309362411,
-0.5125671625137329,
-0.04665200039744377,
0.02871229127049446,
0.4477906823158264,
-0.6510627269744873,
-0.4437168836593628,
-0.22771504521369934,
0.307537704706192,
-0.7008233070373535,
-1.1050673723220825,
0.7115069627761841,
-0.2629433274269104,
-0.24555757641792297,
0.295464426279068,
0.6043610572814941,
-0.5322427153587341,
-0.7799739837646484,
0.14807045459747314,
0.0008682854822836816,
0.46217748522758484,
0.08545388281345367,
-0.8902550339698792,
0.3300783932209015,
0.09484659135341644,
-0.16277596354484558,
0.17558586597442627,
-0.06988046318292618,
0.012117743492126465,
0.6434016823768616,
0.4650132358074188,
-0.08517549932003021,
-0.312309205532074,
0.5163177251815796,
0.8159264326095581,
-0.6488330364227295,
-0.5170172452926636,
-0.6262103915214539,
0.6292272210121155,
-0.3393224775791168,
-1.0622700452804565,
0.5380380153656006,
1.1481417417526245,
0.9374908208847046,
-0.0768062099814415,
0.8324117064476013,
-0.4648381471633911,
0.46310287714004517,
-0.3745400309562683,
0.8746235966682434,
-0.36676642298698425,
-0.2600192129611969,
-0.2006327509880066,
-0.7509336471557617,
-0.6283462047576904,
0.8699535131454468,
0.038222216069698334,
0.09871197491884232,
0.45187023282051086,
0.9366607666015625,
-0.30594655871391296,
0.18611641228199005,
-0.0477902777493,
0.2935042977333069,
0.19034354388713837,
0.6532522439956665,
0.1675402969121933,
-0.7513068914413452,
0.0815155953168869,
-0.2488112896680832,
-0.6871846318244934,
-0.039770983159542084,
-0.9171141386032104,
-1.129775047302246,
-0.6147884726524353,
-0.8468892574310303,
-0.7145965695381165,
-0.04154413193464279,
1.0043025016784668,
0.5549580454826355,
-1.1730352640151978,
-0.23377293348312378,
-0.0023469924926757812,
0.41655081510543823,
0.13032318651676178,
-0.0886356383562088,
0.5369943976402283,
0.4589398205280304,
-0.49245554208755493,
-0.3189517855644226,
-0.18918654322624207,
0.33594802021980286,
-0.0095824571326375,
-0.10829092562198639,
-0.13258793950080872,
-0.26853078603744507,
0.06919430941343307,
0.5361301898956299,
-0.3706585764884949,
-0.006352302152663469,
-0.8716514110565186,
0.30316445231437683,
-0.006310825236141682,
1.2023125886917114,
-0.4778372049331665,
0.21662117540836334,
0.903961181640625,
0.2578895688056946,
0.4051036238670349,
0.2228206843137741,
0.5634148120880127,
-0.3588460087776184,
0.10407153517007828,
-0.20110860466957092,
0.4464147984981537,
0.10134187340736389,
-0.10308689624071121,
0.9262122511863708,
0.2186518907546997,
-0.5997135639190674,
-0.6867749094963074,
0.22009612619876862,
-1.0864441394805908,
0.1748277097940445,
0.7890525460243225,
-0.25331196188926697,
-0.4756353199481964,
0.11754084378480911,
-0.5520440936088562,
0.4386858642101288,
-0.6203528046607971,
0.3070412874221802,
0.40688660740852356,
0.22708821296691895,
-0.18110379576683044,
-0.04894614592194557,
0.3283521234989166,
-0.15616215765476227,
-1.1240071058273315,
0.36544907093048096,
0.5045914649963379,
0.2511667311191559,
0.1333802491426468,
0.8030909299850464,
-0.1726911962032318,
0.4937337338924408,
0.4524375796318054,
0.32032838463783264,
-0.4072434902191162,
-0.7049584984779358,
-0.35381877422332764,
-0.07868854701519012,
-0.03273753449320793,
-0.7896241545677185
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
Sao10K/HarmfulQA_RedTeam_Only | Sao10K | 2023-11-18T11:45:28Z | 294 | 0 | null | [
"language:en",
"region:us"
] | 2023-11-18T11:45:28Z | 2023-11-17T12:09:26.000Z | 2023-11-17T12:09:26 | ---
language:
- en
---
I kept the red team entries only, and split the nested 4 different chats in 1 "conversation" field to their own entry each. (1 Question, 4 Different Conversations)
No other effort has been done to filter or rate or clean the entries. This is all I did.
Total:
<br>Topic: Social Sciences, Count: 841
<br>Topic: Mathematics and Logic, Count: 937
<br>Topic: Business and Economics, Count: 915
<br>Topic: Science and Technology, Count: 455
<br>Topic: Health and Medicine, Count: 415
<br>Topic: Geography and Environmental Studies, Count: 842
<br>Topic: Philosophy and Ethics, Count: 852
<br>Topic: Literature and Language, Count: 835
<br>Topic: Education and Pedagogy, Count: 577
<br>Topic: History and Culture, Count: 757
Original: https://huggingface.co/datasets/declare-lab/HarmfulQA | [
-0.5342377424240112,
-0.4742511212825775,
0.4123033881187439,
0.27669402956962585,
-0.2906745374202728,
0.6290767192840576,
-0.006396884098649025,
-0.6461746692657471,
0.7485151290893555,
0.5567836165428162,
-0.5715698599815369,
-0.5869038105010986,
-0.5193347334861755,
0.5900823473930359,
-0.009161603637039661,
1.814522624015808,
0.3611389100551605,
-0.251913458108902,
-0.021662568673491478,
-0.5548633933067322,
-0.4748498499393463,
-0.25999143719673157,
-0.6041553616523743,
-0.20430618524551392,
0.46712419390678406,
0.780729353427887,
0.5748415589332581,
0.2244340032339096,
0.8210383653640747,
0.3192315101623535,
-0.29403483867645264,
0.15922056138515472,
-0.687458336353302,
0.2462638020515442,
-0.37615713477134705,
-0.45031291246414185,
-0.5258782505989075,
-0.02952033281326294,
0.4101046323776245,
0.554131269454956,
-0.1545749455690384,
0.18102549016475677,
-0.032241202890872955,
0.31573066115379333,
-0.17236700654029846,
0.23035725951194763,
-0.7982167601585388,
0.11223355680704117,
0.08412294834852219,
-0.23160839080810547,
-0.4716457724571228,
-0.09944653511047363,
0.22924776375293732,
-0.39856070280075073,
0.37856143712997437,
-0.14052025973796844,
0.9431412220001221,
-0.09333134442567825,
-0.4071348011493683,
-0.07991845160722733,
-0.5641260147094727,
1.0913132429122925,
-0.6406719088554382,
-0.022064892575144768,
0.30607008934020996,
0.028534915298223495,
0.05311135575175285,
-0.4731617271900177,
-0.5170356631278992,
0.8226821422576904,
-0.5315144062042236,
0.5336096882820129,
-0.7439377903938293,
-0.10325794667005539,
-0.06000933796167374,
-0.08102140575647354,
-0.6786254644393921,
-0.005535064730793238,
-0.8630172610282898,
-0.10449305921792984,
1.0490167140960693,
0.6755576729774475,
0.2622067630290985,
-0.056385334581136703,
-0.0802968218922615,
-0.13476614654064178,
-0.16464686393737793,
-0.14927753806114197,
0.04302601516246796,
0.5666702389717102,
-0.42320916056632996,
0.36748334765434265,
-0.6879388689994812,
0.473920613527298,
0.13799214363098145,
-0.34386971592903137,
0.3503919839859009,
-1.1089950799942017,
-0.36164629459381104,
-0.37243297696113586,
1.0882841348648071,
0.5545175671577454,
-0.17014215886592865,
-0.023763541132211685,
0.24287286400794983,
-0.06661480665206909,
0.16464783251285553,
-0.6772639751434326,
-0.5513210296630859,
0.3578575551509857,
-0.5386927723884583,
-0.4821598529815674,
-0.0356944315135479,
-0.9469167590141296,
-0.44156721234321594,
-0.05469892546534538,
-0.1250740885734558,
-0.1414797455072403,
-0.40084758400917053,
-0.30281785130500793,
-0.481344074010849,
0.03419671580195427,
0.629501461982727,
-0.8278760313987732,
0.6643309593200684,
0.4994810223579407,
0.7081779837608337,
-0.2206491380929947,
0.10487054288387299,
-0.1983426809310913,
-0.032757580280303955,
0.10196910053491592,
1.0132540464401245,
-0.666475236415863,
-0.4497296214103699,
-0.07051365077495575,
0.07500294595956802,
-0.14615774154663086,
-0.3842633366584778,
0.2838333547115326,
-0.7464775443077087,
0.7140914797782898,
-0.5577254295349121,
-0.08689374476671219,
0.025144053623080254,
0.6424393057823181,
-0.5097354650497437,
0.7279740571975708,
-0.21587027609348297,
-1.0726573467254639,
0.5267291069030762,
-0.9425625205039978,
-0.2449372410774231,
0.3484746813774109,
-0.4224894046783447,
-0.39528918266296387,
-0.36400583386421204,
0.14017906785011292,
0.3542478680610657,
0.062348827719688416,
0.1614988148212433,
0.06819646805524826,
-0.22229023277759552,
-0.07589971274137497,
0.09847128391265869,
1.1250184774398804,
0.17490710318088531,
-0.266315758228302,
0.47231608629226685,
-0.7294217944145203,
0.054399214684963226,
-0.09445425868034363,
-0.44504740834236145,
-0.4085172116756439,
-0.03339965268969536,
-0.26105648279190063,
0.33362337946891785,
-0.10113059729337692,
-0.9459524750709534,
0.08801255375146866,
-0.4340498745441437,
0.5364758372306824,
0.4258171021938324,
0.4565277695655823,
0.5476617217063904,
-0.420804888010025,
0.7030342221260071,
0.6024066209793091,
0.2605975866317749,
0.22184620797634125,
-0.9465578198432922,
-0.746248185634613,
-0.4875102937221527,
0.15727382898330688,
0.4818853437900543,
-0.60053950548172,
0.46152612566947937,
-0.17164906859397888,
-0.6972953081130981,
-0.5001302361488342,
-0.08408307284116745,
0.20301595330238342,
0.24491150677204132,
0.6336949467658997,
-0.20396703481674194,
-0.583890438079834,
-1.1032559871673584,
-0.054620109498500824,
-0.27495768666267395,
0.056745875626802444,
0.5351334810256958,
1.1223280429840088,
-0.3319888710975647,
1.1598104238510132,
-0.7875472903251648,
-0.26913970708847046,
-0.07864239066839218,
0.11511410027742386,
0.4502721428871155,
0.2776278257369995,
0.32535287737846375,
-0.7665010690689087,
-0.914927065372467,
-0.02074604481458664,
-0.29774653911590576,
-0.12636861205101013,
0.018583698198199272,
-0.7056059837341309,
0.251869261264801,
0.15823005139827728,
-0.7277222871780396,
0.7882918119430542,
0.5777989029884338,
-0.6273617148399353,
0.3276512622833252,
0.23244540393352509,
0.2826665937900543,
-0.9038591384887695,
-0.13796035945415497,
-0.06326441466808319,
-0.0960623100399971,
-0.6050590872764587,
-0.28816360235214233,
-0.22093935310840607,
0.09396732598543167,
-0.30597949028015137,
0.5222704410552979,
-0.5121229887008667,
0.323158323764801,
0.08844921737909317,
0.36582890152931213,
0.24970117211341858,
0.5417900085449219,
0.09784586727619171,
0.3743494153022766,
0.35116615891456604,
-0.4256933629512787,
0.4301333725452423,
0.6788508296012878,
0.22624365985393524,
0.2587762773036957,
-0.6087560653686523,
0.1141924113035202,
-0.12114334106445312,
0.5605286955833435,
-1.2591873407363892,
-0.13953536748886108,
0.3947153389453888,
-0.6053377985954285,
0.05371994897723198,
-0.06841897964477539,
-0.3307115435600281,
-0.039515625685453415,
-0.514523983001709,
0.5179774165153503,
0.5411058068275452,
-0.10975398868322372,
0.392412394285202,
0.8195973038673401,
-0.26576247811317444,
-0.4871821105480194,
-0.4419682025909424,
0.08161084353923798,
-0.24355393648147583,
-0.5772917866706848,
0.4599806070327759,
0.017910808324813843,
-0.6441511511802673,
0.550524890422821,
-0.039882954210042953,
-0.5661402940750122,
-0.2643231451511383,
0.05189169570803642,
0.21757687628269196,
-0.27527904510498047,
-0.02774512767791748,
-0.28089070320129395,
0.24081821739673615,
-0.10836993902921677,
0.31670793890953064,
0.6176899671554565,
-0.17613330483436584,
0.1302032470703125,
-0.3579533100128174,
0.6401373147964478,
0.5736289620399475,
-0.29866865277290344,
1.2563321590423584,
0.3883097171783447,
-0.22140204906463623,
-0.09070564061403275,
-0.46557438373565674,
-0.24199581146240234,
-0.41381847858428955,
0.013525303453207016,
-0.09795214980840683,
-1.2814899682998657,
0.9065638184547424,
0.5906028151512146,
0.5783432722091675,
0.8947212100028992,
0.6727652549743652,
-0.5412313938140869,
0.8445736765861511,
0.522131085395813,
-0.021273253485560417,
0.5614218711853027,
-0.16840697824954987,
0.5074185132980347,
-0.5347375273704529,
-0.4722135663032532,
-0.6195709109306335,
-0.2934376299381256,
-0.8132820129394531,
-0.4081900715827942,
0.44426730275154114,
-0.5000985264778137,
-0.29397740960121155,
0.3352173864841461,
-0.6728512048721313,
0.5117194652557373,
0.7536547183990479,
0.3855189085006714,
0.3736123740673065,
-0.2182687520980835,
0.3900131583213806,
-0.016181079670786858,
-0.9264582991600037,
-0.357574462890625,
0.8955700397491455,
0.3541997969150543,
0.5661904215812683,
0.5497660040855408,
1.2356725931167603,
0.08417777717113495,
0.6415863633155823,
-0.5841187834739685,
0.6704593300819397,
-0.02325189672410488,
-0.929776132106781,
-0.6154771447181702,
-0.5294628739356995,
-0.9889556169509888,
0.27768245339393616,
-0.47249317169189453,
-0.5781887769699097,
0.18965719640254974,
0.09573601186275482,
-0.6808843016624451,
0.15830285847187042,
-0.5448570251464844,
0.5881728529930115,
0.13208222389221191,
-0.4363987147808075,
-0.23431240022182465,
-0.5934920907020569,
0.7555720806121826,
-0.22448788583278656,
0.23395805060863495,
0.08282914012670517,
0.28235793113708496,
1.257205605506897,
-0.7653096318244934,
1.1838406324386597,
0.05709502473473549,
0.28567278385162354,
0.7797580361366272,
-0.22404220700263977,
0.10226156562566757,
0.218419149518013,
0.21622662246227264,
0.2696268856525421,
0.3134702444076538,
-0.42477354407310486,
-0.28647544980049133,
0.38943326473236084,
-1.0442391633987427,
-0.7416289448738098,
-0.7446524500846863,
-0.3576468825340271,
-0.15715675055980682,
0.32994773983955383,
0.11200471222400665,
0.13786831498146057,
-0.22318732738494873,
0.683235228061676,
0.5572966933250427,
-0.33797329664230347,
0.36002179980278015,
0.429455429315567,
0.0465414859354496,
-0.42380017042160034,
0.1434537172317505,
-0.17147588729858398,
0.31301185488700867,
0.33951041102409363,
0.25594139099121094,
-0.2850619852542877,
-0.5239493250846863,
0.10023105889558792,
0.6960668563842773,
-0.4396480619907379,
-0.6770852208137512,
-1.1420392990112305,
-0.45172253251075745,
-0.9601744413375854,
0.04417150467634201,
-0.14380040764808655,
-0.18159857392311096,
-0.5373333096504211,
-0.12180816382169724,
0.659473717212677,
0.6317764520645142,
-0.12733639776706696,
0.5079760551452637,
-1.3220349550247192,
0.19049884378910065,
0.3704034090042114,
0.17583370208740234,
-0.33335432410240173,
-0.7432999014854431,
-0.21071766316890717,
0.24339251220226288,
-0.34000179171562195,
-0.9197279810905457,
0.576287031173706,
0.12496877461671829,
0.44398555159568787,
0.34465309977531433,
0.4137363135814667,
1.1317754983901978,
-0.5076461434364319,
0.9825063347816467,
0.6909688115119934,
-0.5511255860328674,
0.6750008463859558,
-0.6054229140281677,
0.050854429602622986,
0.9120204448699951,
0.2671371400356293,
-0.31679069995880127,
-0.5941877961158752,
-1.190696120262146,
-0.702724814414978,
1.021633505821228,
0.6541686058044434,
0.2763558328151703,
-0.10954888164997101,
-0.21137398481369019,
-0.2434837818145752,
0.06044917181134224,
-0.9087098836898804,
-0.3563513457775116,
-0.04522893205285072,
-0.07698380947113037,
0.15384463965892792,
-0.3004784882068634,
-0.7728960514068604,
-0.5956429243087769,
0.6623958349227905,
0.30076080560684204,
0.21705646812915802,
0.16095614433288574,
0.5136442184448242,
-0.26708313822746277,
0.2198752462863922,
0.6727436780929565,
0.6088373064994812,
-0.2805519700050354,
-0.17305557429790497,
0.2009335607290268,
-0.44621631503105164,
-0.241822749376297,
-0.45044490694999695,
0.06692075729370117,
0.20471617579460144,
0.644996702671051,
0.6293191313743591,
0.06471782177686691,
-0.6177812218666077,
0.319163054227829,
-0.34580180048942566,
-0.6210147142410278,
-0.17241007089614868,
0.3265739977359772,
0.16131691634655,
0.545509397983551,
-0.05103439837694168,
0.2990155816078186,
-0.13996846973896027,
-0.8705089688301086,
0.420209676027298,
0.3789127469062805,
-0.05255774408578873,
-0.3813876211643219,
0.5423007607460022,
0.6795669794082642,
-0.44617530703544617,
0.6086188554763794,
-0.09109528362751007,
-0.7369221448898315,
0.5491190552711487,
0.265819251537323,
0.6760256886482239,
-0.02440173551440239,
0.3149558901786804,
0.7829683423042297,
0.2922382950782776,
0.18917271494865417,
0.28848862648010254,
0.024289309978485107,
-1.4083518981933594,
-0.09655948728322983,
-0.5560786128044128,
-0.7382634878158569,
0.33288460969924927,
-0.6338370442390442,
0.1800362914800644,
-0.1451190710067749,
-0.57335364818573,
0.20972546935081482,
0.3203151822090149,
-0.9377716183662415,
0.3337278962135315,
-0.3109467327594757,
0.8679624795913696,
-1.3404271602630615,
0.3906562328338623,
0.7983818650245667,
-0.37592917680740356,
-0.859420120716095,
-0.586885392665863,
0.012604649178683758,
-0.4303874969482422,
0.7167859673500061,
-0.5533343553543091,
0.12683148682117462,
-0.26797690987586975,
-0.7374880313873291,
-1.049519419670105,
0.9265591502189636,
-0.6442648768424988,
-0.42948535084724426,
0.05587328225374222,
-0.11004596948623657,
0.7935553193092346,
-0.3369511663913727,
0.3334510624408722,
0.8373915553092957,
0.3585813343524933,
0.27626436948776245,
-1.3099523782730103,
-0.2539648115634918,
-0.5864793062210083,
-0.7769440412521362,
0.0741797536611557,
-0.8760502338409424,
0.6920387148857117,
-0.03908782824873924,
-0.3064480721950531,
-0.4578939378261566,
0.22949300706386566,
0.6846333146095276,
0.34813910722732544,
0.7481138110160828,
0.35563912987709045,
0.689566969871521,
-0.08923008292913437,
0.5190246105194092,
0.049178630113601685,
0.36887189745903015,
1.2534233331680298,
-0.30402687191963196,
0.5862483978271484,
0.3001001179218292,
-0.2881189286708832,
0.33808398246765137,
0.7564568519592285,
-0.06958175450563431,
0.7090989351272583,
-0.1183304712176323,
-0.23127758502960205,
-0.15101251006126404,
-0.046074915677309036,
-0.2513444721698761,
0.9051408767700195,
0.348727285861969,
-0.386578768491745,
-0.2104683220386505,
-0.30924132466316223,
0.4779939651489258,
-0.19640007615089417,
0.10072774440050125,
1.0701268911361694,
-0.1799924224615097,
-0.9493821263313293,
-0.011729049496352673,
-0.0717744305729866,
0.7181738018989563,
-0.41653937101364136,
-0.29245561361312866,
-0.4763994812965393,
-0.1831207126379013,
-0.5282890200614929,
-0.9619371891021729,
0.5548094511032104,
0.42615562677383423,
-0.22933045029640198,
-0.5162304639816284,
0.5624716877937317,
-0.49559909105300903,
-0.2946932315826416,
-0.0789806991815567,
0.8659430742263794,
0.3571831285953522,
0.1860683113336563,
-0.68192058801651,
0.38349097967147827,
0.4441584348678589,
-0.22027550637722015,
0.20652160048484802,
0.6823487281799316,
0.0022997695486992598,
0.3104006350040436,
0.5194723010063171,
0.24709400534629822,
0.06180447340011597,
-0.024381857365369797,
1.1660083532333374,
-1.0413655042648315,
-0.5969967842102051,
-0.9421189427375793,
0.7081562876701355,
-0.4879177212715149,
-0.6401196718215942,
0.7940341830253601,
0.5212068557739258,
0.5754694938659668,
0.09864699095487595,
0.7001067996025085,
-0.15474969148635864,
0.6646857857704163,
-0.018579471856355667,
0.7441890835762024,
-0.4605516195297241,
0.10985050350427628,
-0.5611584782600403,
-0.360734760761261,
-0.5237323641777039,
0.7862547636032104,
-0.1476362645626068,
-0.2564908266067505,
0.6792954802513123,
0.5334494709968567,
0.39936715364456177,
0.2794584333896637,
0.06746983528137207,
0.26198455691337585,
0.7344306707382202,
0.6445086598396301,
0.7416048049926758,
-0.20722344517707825,
0.7605783939361572,
-0.42848068475723267,
-0.34356069564819336,
-0.22856903076171875,
-0.8014779090881348,
-0.922383725643158,
-0.40743499994277954,
-0.8443345427513123,
-0.40434443950653076,
-0.5570717453956604,
0.47003284096717834,
0.8994497060775757,
-1.0647472143173218,
-0.0903073325753212,
0.26732343435287476,
0.06305903196334839,
0.09939900040626526,
-0.36799436807632446,
0.2668145000934601,
0.06771896779537201,
-0.6851247549057007,
0.22405658662319183,
0.07517939805984497,
-0.4147796630859375,
0.36756154894828796,
0.40898701548576355,
-0.4046059548854828,
-0.16563479602336884,
0.996882975101471,
0.291446715593338,
-0.5189567804336548,
-0.7695380449295044,
0.2426174134016037,
-0.06360674649477005,
0.2831161916255951,
0.2242024838924408,
-0.6938639879226685,
0.25267016887664795,
0.7422168850898743,
0.46484121680259705,
0.4818803071975708,
0.4478670060634613,
0.12743397057056427,
-0.7193150520324707,
-0.05276741087436676,
0.821406900882721,
0.11515891551971436,
-0.1695164144039154,
-0.3510918617248535,
0.9600239396095276,
0.39889732003211975,
-0.6210101246833801,
-1.117633581161499,
-0.17377911508083344,
-1.2531837224960327,
-0.15542809665203094,
1.0861972570419312,
0.2076980620622635,
0.19692564010620117,
-0.45113712549209595,
-0.05638976767659187,
0.2073265016078949,
-0.7766001224517822,
0.6939348578453064,
0.9483930468559265,
-1.1176040172576904,
-0.16903093457221985,
-0.3404647409915924,
0.2915167808532715,
-0.022926485165953636,
-1.073645830154419,
-0.2362559288740158,
0.6814583539962769,
0.3466190993785858,
0.6391701102256775,
1.4418612718582153,
0.061037614941596985,
-0.11517656594514847,
0.08553624898195267,
-0.024578485637903214,
0.4814821183681488,
-0.3896781802177429,
0.14926007390022278,
0.2418844848871231,
-0.4689177870750427,
-0.7763494253158569
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
ro_sts_parallel | null | 2022-11-18T21:42:26Z | 293 | 0 | null | [
"task_categories:translation",
"annotations_creators:crowdsourced",
"language_creators:crowdsourced",
"multilinguality:multilingual",
"size_categories:10K<n<100K",
"source_datasets:extended|other-sts-b",
"language:en",
"language:ro",
"license:cc-by-4.0",
"region:us"
] | 2022-11-18T21:42:26Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
annotations_creators:
- crowdsourced
language_creators:
- crowdsourced
language:
- en
- ro
license:
- cc-by-4.0
multilinguality:
- multilingual
size_categories:
- 10K<n<100K
source_datasets:
- extended|other-sts-b
task_categories:
- translation
task_ids: []
paperswithcode_id: null
pretty_name: RO-STS-Parallel
dataset_info:
- config_name: ro_sts_parallel
features:
- name: translation
dtype:
translation:
languages:
- ro
- en
splits:
- name: train
num_bytes: 1563909
num_examples: 11499
- name: validation
num_bytes: 443787
num_examples: 3001
- name: test
num_bytes: 347590
num_examples: 2759
download_size: 2251694
dataset_size: 2355286
- config_name: rosts-parallel-en-ro
features:
- name: translation
dtype:
translation:
languages:
- en
- ro
splits:
- name: train
num_bytes: 1563909
num_examples: 11499
- name: validation
num_bytes: 443787
num_examples: 3001
- name: test
num_bytes: 347590
num_examples: 2759
download_size: 2251694
dataset_size: 2355286
---
# Dataset Card for RO-STS-Parallel
## 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:** [GitHub](https://github.com/dumitrescustefan/RO-STS)
- **Repository:** [GitHub](https://github.com/dumitrescustefan/RO-STS)
- **Paper:** [Needs More Information]
- **Leaderboard:** [Needs More Information]
- **Point of Contact:** [email](dumitrescu.stefan@gmail.com)
### Dataset Summary
We present RO-STS-Parallel - a Parallel Romanian-English dataset obtained by translating the [STS English dataset](https://ixa2.si.ehu.eus/stswiki/index.php/STSbenchmark) dataset into Romanian. It contains 17256 sentences in Romanian and English.
### Supported Tasks and Leaderboards
[Needs More Information]
### Languages
The text dataset is in Romanian and English (`ro`, `en`)
## Dataset Structure
### Data Instances
An example looks like this:
```
{
'translation': {
'ro': 'Problema e si mai simpla.',
'en': 'The problem is simpler than that.'
}
}
```
### Data Fields
- translation:
- ro: text in Romanian
- en: text in English
### Data Splits
The train/validation/test split contain 11,498/3,000/2,758 sentence pairs.
## Dataset Creation
### Curation Rationale
### Source Data
#### Initial Data Collection and Normalization
*To construct the dataset, we first obtained automatic translations using Google's translation engine. These were then manually checked, corrected, and cross-validated by human volunteers. *
#### Who are the source language producers?
[Needs More Information]
### Annotations
#### Annotation process
#### Who are the annotators?
### 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
[Needs More Information]
### Licensing Information
CC BY-SA 4.0 License
### Citation Information
```
@inproceedings{dumitrescu2021liro,
title={Liro: Benchmark and leaderboard for romanian language tasks},
author={Dumitrescu, Stefan Daniel and Rebeja, Petru and Lorincz, Beata and Gaman, Mihaela and Avram, Andrei and Ilie, Mihai and Pruteanu, Andrei and Stan, Adriana and Rosia, Lorena and Iacobescu, Cristina and others},
booktitle={Thirty-fifth Conference on Neural Information Processing Systems Datasets and Benchmarks Track (Round 1)},
year={2021}
}
```
### Contributions
Thanks to [@lorinczb](https://github.com/lorinczb) for adding this dataset. | [
-0.27388396859169006,
-0.5339499115943909,
0.2764655649662018,
0.33354029059410095,
-0.3406137526035309,
0.13616406917572021,
-0.4979553520679474,
-0.2931717336177826,
0.5004719495773315,
0.22925713658332825,
-0.8044630289077759,
-0.9135378003120422,
-0.7307485938072205,
0.2576824128627777,
-0.26145139336586,
1.2437231540679932,
-0.34554222226142883,
0.4409020245075226,
-0.4743405878543854,
-0.38151782751083374,
-0.5002008080482483,
-0.5389165878295898,
-0.35352572798728943,
-0.177629753947258,
0.5039859414100647,
0.8720541000366211,
0.3148164749145508,
0.7439560294151306,
0.8426070809364319,
0.30278530716896057,
0.10360947251319885,
-0.02237820252776146,
-0.5575377345085144,
-0.016496894881129265,
-0.23303157091140747,
-0.5940343737602234,
-0.590430736541748,
-0.07058171182870865,
0.8198644518852234,
0.5173004865646362,
-0.008014671504497528,
0.7553653717041016,
0.2098500281572342,
0.8380743861198425,
-0.25806042551994324,
0.4828876852989197,
-0.36575427651405334,
0.030230166390538216,
-0.5184159278869629,
-0.07158103585243225,
-0.11392354965209961,
-0.22276939451694489,
-0.2531936764717102,
-0.47619783878326416,
0.23733600974082947,
0.3129865527153015,
1.1201518774032593,
0.2141829878091812,
0.0640396997332573,
-0.1084120124578476,
-0.6037042140960693,
0.9044299721717834,
-0.34733375906944275,
0.14091159403324127,
0.33152174949645996,
0.330581933259964,
-0.009533381089568138,
-0.785261869430542,
-0.4719240367412567,
0.06429716944694519,
-0.2065383493900299,
0.331165611743927,
-0.2637264132499695,
-0.4344383180141449,
0.4582744240760803,
0.2774761915206909,
-0.7888928055763245,
0.03746595233678818,
-0.8987842798233032,
-0.016596293076872826,
0.6702126860618591,
0.5454102754592896,
0.010993345640599728,
-0.29496118426322937,
-0.537193238735199,
-0.27894240617752075,
-0.48312515020370483,
0.05115334689617157,
0.5363866686820984,
0.5370098352432251,
-0.5979341864585876,
0.7217249274253845,
-0.2897908091545105,
0.5769756436347961,
-0.3049986958503723,
0.10803481191396713,
0.792949914932251,
-0.8058764338493347,
-0.12920540571212769,
-0.21885651350021362,
1.0495760440826416,
0.4058399200439453,
0.23015196621418,
0.13021761178970337,
-0.12999455630779266,
0.2198437601327896,
0.08988654613494873,
-0.5872542262077332,
-0.083157479763031,
0.44573771953582764,
-0.545450747013092,
-0.20994524657726288,
0.24886447191238403,
-0.9475229978561401,
0.006506897043436766,
-0.40109673142433167,
-0.0012873020023107529,
-0.23145994544029236,
-0.07521217316389084,
0.1118653416633606,
-0.09317537397146225,
0.05827108398079872,
0.04282723739743233,
-0.34728753566741943,
0.5659675598144531,
0.5905683040618896,
0.8110523223876953,
-0.3661715090274811,
-0.46182116866111755,
-0.4991980493068695,
-0.05998770147562027,
0.13349927961826324,
0.7506654858589172,
-0.38147056102752686,
-0.2747150957584381,
-0.1598215103149414,
0.37981894612312317,
-0.30108770728111267,
-0.42841196060180664,
1.0555909872055054,
-0.05383088439702988,
0.42438405752182007,
-0.46668121218681335,
-0.4100395441055298,
0.10736197233200073,
0.22046160697937012,
-0.6285619735717773,
1.283418893814087,
-0.10419236868619919,
-0.9518187046051025,
0.08138170093297958,
-0.7901768684387207,
-0.4952121376991272,
0.11020637303590775,
-0.44231581687927246,
-0.4151798188686371,
-0.2461603283882141,
0.1631036102771759,
0.6242598295211792,
-0.6181875467300415,
0.29661861062049866,
-0.05693657696247101,
-0.19854173064231873,
-0.16045142710208893,
0.005311194807291031,
0.8829421997070312,
0.24742169678211212,
-0.3546386957168579,
0.37067538499832153,
-0.880646288394928,
-0.08838257938623428,
0.33176127076148987,
-0.27394264936447144,
-0.06469223648309708,
-0.05118820443749428,
0.4153504967689514,
0.26549699902534485,
0.431996613740921,
-0.6167199015617371,
-0.13826870918273926,
0.02219987101852894,
0.35769298672676086,
0.6327095031738281,
-0.2454673796892166,
0.3378397524356842,
-0.4443097412586212,
0.7315900921821594,
0.33111441135406494,
0.37588953971862793,
0.06853363662958145,
-0.7449029088020325,
-0.904633641242981,
-0.2575695514678955,
0.5256471633911133,
1.0367718935012817,
-0.4662456512451172,
0.8151684403419495,
-0.6203892230987549,
-0.6885476112365723,
-0.665306568145752,
0.08252161741256714,
0.4967058300971985,
0.6343138813972473,
0.5054441690444946,
-0.3693096935749054,
-0.8721786737442017,
-1.132407546043396,
0.06939534097909927,
0.005035633221268654,
0.14679883420467377,
0.46839627623558044,
0.9180978536605835,
0.02915494702756405,
0.6115037798881531,
-0.6151720881462097,
-0.556515097618103,
-0.4431125521659851,
-0.039979662746191025,
0.347687304019928,
0.8081096410751343,
0.41572412848472595,
-0.7175926566123962,
-0.5777642130851746,
-0.27302101254463196,
-0.898233950138092,
0.21785177290439606,
-0.0954274982213974,
-0.2861900329589844,
0.15796032547950745,
0.4237408936023712,
-0.505863606929779,
0.4391074478626251,
0.5432313084602356,
-0.3913182318210602,
0.6104207038879395,
-0.18465456366539001,
0.10098878294229507,
-1.3571503162384033,
0.2839275598526001,
0.15469029545783997,
-0.051975566893815994,
-0.4356541931629181,
-0.10469868034124374,
0.011123009957373142,
0.010919395834207535,
-0.3059785068035126,
0.4771416485309601,
-0.4498085677623749,
-0.012635910883545876,
0.16038520634174347,
0.3007878065109253,
-0.03229565918445587,
0.4642934799194336,
-0.03386222571134567,
0.7086824178695679,
0.8452420830726624,
-0.29708993434906006,
0.34971684217453003,
0.508695125579834,
-0.6954325437545776,
0.634246289730072,
-0.8889849781990051,
-0.05284680053591728,
-0.2993680238723755,
0.3612000048160553,
-0.8173462748527527,
-0.14843633770942688,
0.561351478099823,
-0.5861890316009521,
0.04032675921916962,
-0.10470839589834213,
-0.8307093381881714,
-0.5486711859703064,
-0.2243502140045166,
0.18452724814414978,
0.44693320989608765,
-0.12460803240537643,
0.38425639271736145,
0.4424613118171692,
-0.09265824407339096,
-0.6399874687194824,
-1.0091980695724487,
0.05967310443520546,
-0.3047301173210144,
-0.7950682640075684,
0.3702375888824463,
-0.22697781026363373,
-0.20615527033805847,
0.14421410858631134,
0.2287067025899887,
0.09798935055732727,
-0.16119977831840515,
0.24764889478683472,
0.46329084038734436,
-0.20825259387493134,
-0.0450962632894516,
-0.20279420912265778,
-0.17056331038475037,
-0.15004417300224304,
-0.15409407019615173,
0.5816089510917664,
-0.4037788212299347,
-0.08384694159030914,
-0.635798454284668,
0.5476786494255066,
0.5453221797943115,
-0.29681986570358276,
0.9276514053344727,
0.8708967566490173,
-0.2988673150539398,
0.10359306633472443,
-0.4620766341686249,
-0.1660488247871399,
-0.3788907825946808,
0.3328567445278168,
-0.46504250168800354,
-0.7271761894226074,
0.9377220869064331,
0.28647705912590027,
0.04868374392390251,
0.5572201013565063,
0.5558025240898132,
-0.09873805940151215,
0.5236771106719971,
0.38445448875427246,
-0.29098930954933167,
0.4378434121608734,
-0.5135853886604309,
-0.0237976536154747,
-0.8597645163536072,
-0.3557722866535187,
-0.8989576697349548,
-0.6260679364204407,
-0.7106252312660217,
-0.7096796631813049,
0.05998772382736206,
0.0812293142080307,
-0.1503969430923462,
0.7486132383346558,
-0.5690885782241821,
0.3369956612586975,
0.8879458904266357,
0.19235888123512268,
0.058168936520814896,
0.170197531580925,
-0.24287785589694977,
-0.13655363023281097,
-0.841556191444397,
-0.5652081966400146,
1.130203366279602,
0.31030893325805664,
0.41168394684791565,
-0.20771174132823944,
0.7774217128753662,
0.102288156747818,
-0.1332031637430191,
-0.38562849164009094,
0.7881379723548889,
-0.2932486832141876,
-0.5613672137260437,
-0.25272876024246216,
-0.41096270084381104,
-0.9173277616500854,
-0.01792912557721138,
-0.3080242872238159,
-0.6435822248458862,
0.4266786277294159,
0.07938345521688461,
-0.3946821689605713,
0.22744370996952057,
-0.8233727216720581,
1.0565505027770996,
-0.1369626522064209,
-0.488491415977478,
-0.3576655983924866,
-0.8966973423957825,
0.06802608072757721,
0.21628347039222717,
0.33072617650032043,
-0.20812973380088806,
-0.011747322045266628,
1.0489529371261597,
-0.26370278000831604,
0.8650175333023071,
-0.15077419579029083,
0.35928088426589966,
0.187280535697937,
-0.425128310918808,
0.8136851191520691,
0.013387957587838173,
-0.1527458131313324,
0.5284456014633179,
-0.17958234250545502,
-0.5703088045120239,
-0.33442556858062744,
0.8686103820800781,
-0.7645697593688965,
-0.41096967458724976,
-0.5137431621551514,
-0.5816923379898071,
0.052336812019348145,
0.231783926486969,
0.18223020434379578,
0.2386917769908905,
-0.10964174568653107,
0.37739577889442444,
0.385022908449173,
-0.26354843378067017,
0.10378753393888474,
0.48660212755203247,
0.22176863253116608,
-0.6123645305633545,
0.9280475974082947,
0.24047091603279114,
0.018880469724535942,
0.32339873909950256,
0.04954516142606735,
-0.09884542226791382,
-0.567456066608429,
-0.4631499648094177,
0.3497987687587738,
-0.5458861589431763,
-0.07267536222934723,
-0.6530552506446838,
-0.08457060158252716,
-0.5831341743469238,
0.1031675860285759,
-0.22573724389076233,
-0.6852319836616516,
-0.47330567240715027,
-0.3818571865558624,
0.5002703666687012,
0.49837177991867065,
-0.3626461327075958,
0.024483241140842438,
-0.627677321434021,
0.28828540444374084,
-0.33282002806663513,
0.3089680075645447,
-0.15851949155330658,
-0.3680310547351837,
-0.5504408478736877,
-0.1181836724281311,
-0.0833921954035759,
-0.5335588455200195,
0.25548315048217773,
-0.114717498421669,
0.7033118605613708,
0.015632010996341705,
0.07196769118309021,
0.7078055739402771,
-0.5938358902931213,
0.9194013476371765,
0.15241146087646484,
-0.4891692101955414,
0.7142919898033142,
-0.42921382188796997,
0.24853096902370453,
0.9414445757865906,
0.5212405920028687,
-0.4566571116447449,
-0.2839183807373047,
-0.9062051177024841,
-1.1160149574279785,
1.0360238552093506,
0.5173136591911316,
-0.03814559802412987,
0.008891787379980087,
0.03857143968343735,
-0.04845847561955452,
0.3265647292137146,
-0.6885505318641663,
-0.8762951493263245,
-0.08558666706085205,
-0.3697228729724884,
-0.12320131808519363,
-0.2753390669822693,
-0.3864927589893341,
-0.5104183554649353,
0.7493349313735962,
0.24590423703193665,
0.44659632444381714,
0.14424718916416168,
0.14886437356472015,
0.022787021473050117,
0.22074265778064728,
0.8511591553688049,
0.5615816712379456,
-0.3009064197540283,
-0.10886160284280777,
0.06266704201698303,
-0.6464066505432129,
-0.24843165278434753,
0.3321058750152588,
-0.35187914967536926,
0.11257259547710419,
0.17377424240112305,
1.177428960800171,
0.07634750008583069,
-0.6416432857513428,
0.3964294195175171,
-0.10425321757793427,
-0.2984439432621002,
-0.676732063293457,
-0.2116699516773224,
0.09801394492387772,
0.33955511450767517,
0.24494385719299316,
0.3036414384841919,
-0.12257693707942963,
-0.3675866425037384,
0.2493284046649933,
0.08241552114486694,
-0.38328060507774353,
-0.3823375701904297,
0.6915475130081177,
0.2924967408180237,
-0.4663677215576172,
0.5932281017303467,
-0.09652136266231537,
-0.3368629217147827,
0.6965028047561646,
0.17851951718330383,
0.9327248930931091,
0.047380756586790085,
0.28852128982543945,
0.9260305166244507,
0.49991869926452637,
-0.19901332259178162,
0.6729459762573242,
-0.08715131133794785,
-0.7260051369667053,
-0.10290233045816422,
-0.5838086009025574,
-0.192976176738739,
0.15618333220481873,
-1.064655065536499,
0.5506364107131958,
-0.3151577413082123,
-0.15218642354011536,
-0.08388491719961166,
0.127964586019516,
-0.9201082587242126,
0.11130552738904953,
0.1032661572098732,
1.0389031171798706,
-0.9760814905166626,
0.9236199259757996,
0.8517777323722839,
-0.6839845180511475,
-0.5537158250808716,
-0.23513928055763245,
-0.042796384543180466,
-0.7265395522117615,
0.7321780920028687,
-0.007368802092969418,
0.30753326416015625,
-0.1605909764766693,
-0.44282007217407227,
-0.9365886449813843,
1.2222371101379395,
0.2318209409713745,
-0.7341957092285156,
-0.002588290721178055,
0.4210960268974304,
0.6417993903160095,
-0.5647252798080444,
0.22713316977024078,
0.4988256096839905,
0.6789844036102295,
-0.04541902616620064,
-0.8626531362533569,
0.12683811783790588,
-0.5799663066864014,
-0.16559675335884094,
-0.12914732098579407,
-0.8016315698623657,
0.7802353501319885,
-0.10979095846414566,
-0.23146462440490723,
-0.04082757979631424,
0.7735119462013245,
0.505095899105072,
0.16261844336986542,
0.47392573952674866,
0.7627209424972534,
0.7430117130279541,
-0.22197003662586212,
0.9470354318618774,
-0.5556936860084534,
0.22958725690841675,
1.535064458847046,
-0.12615618109703064,
1.0101436376571655,
0.5544528365135193,
-0.26589730381965637,
0.7684432864189148,
0.4933403432369232,
-0.4379923343658447,
0.3798205256462097,
0.21989183127880096,
0.03678968548774719,
-0.19647614657878876,
-0.1847763955593109,
-0.4290311336517334,
0.3590245842933655,
0.36601030826568604,
-0.5307791233062744,
-0.18068133294582367,
0.10794095695018768,
0.16926515102386475,
0.20006336271762848,
-0.014932330697774887,
0.3779965043067932,
-0.01199046615511179,
-0.6143122911453247,
0.4700835943222046,
-0.000689563516061753,
0.6600835919380188,
-0.620341420173645,
0.156626358628273,
-0.2256728708744049,
0.2669866383075714,
-0.27673885226249695,
-0.9720975756645203,
0.3615573048591614,
0.15823233127593994,
-0.56069016456604,
-0.49543124437332153,
0.35543107986450195,
-0.444352388381958,
-0.8437771797180176,
0.4256068468093872,
0.49710503220558167,
0.42361006140708923,
0.3107156455516815,
-1.1271231174468994,
0.30139270424842834,
0.12923811376094818,
-0.29078802466392517,
0.33584830164909363,
0.30914679169654846,
-0.11325585097074509,
0.43827736377716064,
0.39090314507484436,
0.23178160190582275,
0.11426012217998505,
0.24858874082565308,
0.8694936037063599,
-0.6619272828102112,
-0.43098828196525574,
-0.45444270968437195,
0.7727333307266235,
-0.31133681535720825,
-0.45487895607948303,
0.9979599118232727,
1.0104544162750244,
1.1464096307754517,
-0.10971535742282867,
0.9130371809005737,
-0.4753466248512268,
0.8650429844856262,
-0.22347544133663177,
0.6031664609909058,
-0.6066417694091797,
0.1615338921546936,
-0.2519753873348236,
-0.5656477212905884,
-0.22721058130264282,
0.4318145215511322,
-0.3319483697414398,
-0.21228688955307007,
0.846435010433197,
0.9590709209442139,
0.021566124632954597,
0.04885821416974068,
0.11320697516202927,
0.4311644434928894,
-0.09668668359518051,
0.5839666128158569,
0.3231716752052307,
-0.8786934614181519,
0.7828235626220703,
-0.44161877036094666,
-0.21314960718154907,
0.18277382850646973,
-0.6468571424484253,
-0.9566348195075989,
-0.9387005567550659,
-0.4755846858024597,
-0.4645216763019562,
0.05521056428551674,
0.8704672455787659,
0.4586402177810669,
-1.1946487426757812,
-0.6138321757316589,
-0.10301335155963898,
0.06114565208554268,
-0.3348569869995117,
-0.22244709730148315,
0.5496179461479187,
-0.17665407061576843,
-0.9895410537719727,
0.3130321204662323,
-0.06398490816354752,
-0.1703573316335678,
-0.19512012600898743,
-0.08406542986631393,
-0.46156179904937744,
-0.3973061740398407,
0.34350594878196716,
0.295794278383255,
-0.5275827646255493,
0.0029079716186970472,
0.10227996110916138,
-0.06540494412183762,
0.24182751774787903,
0.5918172597885132,
-0.6718456149101257,
0.13574491441249847,
0.7955288290977478,
0.21286602318286896,
0.5127489566802979,
-0.035329800099134445,
0.4104576110839844,
-0.7282909750938416,
0.378542959690094,
0.16385601460933685,
0.5713227391242981,
0.3113577663898468,
-0.41321998834609985,
0.7511955499649048,
0.5294498205184937,
-0.47212275862693787,
-0.9820607900619507,
-0.06631317734718323,
-1.2203567028045654,
0.010502169840037823,
1.3430947065353394,
-0.23290425539016724,
-0.34505495429039,
-0.17288130521774292,
0.017016813158988953,
0.13601288199424744,
-0.5960285067558289,
0.4932813346385956,
0.8398383855819702,
0.07199812680482864,
0.0095283892005682,
-0.6666423082351685,
0.34027087688446045,
0.4076496362686157,
-0.8702274560928345,
0.05095234885811806,
0.36452949047088623,
0.2211192101240158,
0.26397669315338135,
0.6618342399597168,
-0.28834080696105957,
-0.01540602371096611,
-0.09398902207612991,
0.25510576367378235,
-0.05313150957226753,
-0.47903355956077576,
-0.15830525755882263,
0.13192631304264069,
-0.5005588531494141,
-0.4628975987434387
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
sesotho_ner_corpus | null | 2023-01-25T14:44:09Z | 293 | 0 | null | [
"task_categories:token-classification",
"task_ids:named-entity-recognition",
"annotations_creators:expert-generated",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:1K<n<10K",
"source_datasets:original",
"language:st",
"license:other",
"region:us"
] | 2023-01-25T14:44:09Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
annotations_creators:
- expert-generated
language_creators:
- found
language:
- st
license:
- other
multilinguality:
- monolingual
size_categories:
- 1K<n<10K
source_datasets:
- original
task_categories:
- token-classification
task_ids:
- named-entity-recognition
pretty_name: Sesotho NER Corpus
license_details: Creative Commons Attribution 2.5 South Africa License
dataset_info:
features:
- name: id
dtype: string
- name: tokens
sequence: string
- name: ner_tags
sequence:
class_label:
names:
'0': OUT
'1': B-PERS
'2': I-PERS
'3': B-ORG
'4': I-ORG
'5': B-LOC
'6': I-LOC
'7': B-MISC
'8': I-MISC
config_name: sesotho_ner_corpus
splits:
- name: train
num_bytes: 4502576
num_examples: 9472
download_size: 30421109
dataset_size: 4502576
---
# Dataset Card for Sesotho NER Corpus
## 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:** [Sesotho Ner Corpus Homepage](https://repo.sadilar.org/handle/20.500.12185/334)
- **Repository:**
- **Paper:**
- **Leaderboard:**
- **Point of Contact:** [Martin Puttkammer](mailto:Martin.Puttkammer@nwu.ac.za)
### Dataset Summary
The Sesotho Ner Corpus is a Sesotho dataset developed by [The Centre for Text Technology (CTexT), North-West University, South Africa](http://humanities.nwu.ac.za/ctext). The data is based on documents from the South African goverment domain and crawled from gov.za websites. It was created to support NER task for Sesotho language. The dataset uses CoNLL shared task annotation standards.
### Supported Tasks and Leaderboards
[More Information Needed]
### Languages
The language supported is Sesotho.
## Dataset Structure
### Data Instances
A data point consists of sentences seperated by empty line and tab-seperated tokens and tags.
```
{'id': '0',
'ner_tags': [0, 0, 0, 0, 0],
'tokens': ['Morero', 'wa', 'weposaete', 'ya', 'Ditshebeletso']
}
```
### Data Fields
- `id`: id of the sample
- `tokens`: the tokens of the example text
- `ner_tags`: the NER tags of each token
The NER tags correspond to this list:
```
"OUT", "B-PERS", "I-PERS", "B-ORG", "I-ORG", "B-LOC", "I-LOC", "B-MISC", "I-MISC",
```
The NER tags have the same format as in the CoNLL shared task: a B denotes the first item of a phrase and an I any non-initial word. There are four types of phrases: person names (PER), organizations (ORG), locations (LOC) and miscellaneous names (MISC). (OUT) is used for tokens not considered part of any named entity.
### Data Splits
The data was not split.
## Dataset Creation
### Curation Rationale
The data was created to help introduce resources to new language - Sesotho.
[More Information Needed]
### Source Data
#### Initial Data Collection and Normalization
The data is based on South African government domain and was crawled from gov.za websites.
#### Who are the source language producers?
The data was produced by writers of South African government websites - gov.za
[More Information Needed]
### Annotations
#### Annotation process
[More Information Needed]
#### Who are the annotators?
The data was annotated during the NCHLT text resource development project.
[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
The annotated data sets were developed by the Centre for Text Technology (CTexT, North-West University, South Africa).
See: [more information](http://www.nwu.ac.za/ctext)
### Licensing Information
The data is under the [Creative Commons Attribution 2.5 South Africa License](http://creativecommons.org/licenses/by/2.5/za/legalcode)
### Citation Information
```
@inproceedings{sesotho_ner_corpus,
author = {M. Setaka and
Roald Eiselen},
title = {NCHLT Sesotho Named Entity Annotated Corpus},
booktitle = {Eiselen, R. 2016. Government domain named entity recognition for South African languages. Proceedings of the 10th Language Resource and Evaluation Conference, Portorož, Slovenia.},
year = {2016},
url = {https://repo.sadilar.org/handle/20.500.12185/334},
}
```
### Contributions
Thanks to [@yvonnegitau](https://github.com/yvonnegitau) for adding this dataset. | [
-0.3725888729095459,
-0.5237088203430176,
0.051897745579481125,
0.348718523979187,
-0.41806891560554504,
-0.1700304001569748,
-0.35633373260498047,
-0.4093160331249237,
0.7759959101676941,
0.6369499564170837,
-0.43918323516845703,
-0.7277634739875793,
-0.8326048254966736,
0.510111927986145,
-0.0999254509806633,
1.0939103364944458,
0.11937916278839111,
-0.19520345330238342,
-0.11738966405391693,
-0.3382609188556671,
-0.24012061953544617,
-0.6984953880310059,
-0.624099612236023,
-0.09523467719554901,
0.34384793043136597,
0.5811713933944702,
0.5183264017105103,
0.4041690230369568,
0.46727755665779114,
0.30194291472435,
-0.29243096709251404,
0.16060951352119446,
-0.35170090198516846,
0.09159798175096512,
-0.2644909918308258,
-0.12173964828252792,
-0.5925197005271912,
-0.1569904088973999,
0.43751946091651917,
0.47546541690826416,
0.10863891243934631,
0.469033807516098,
0.19487012922763824,
0.5237154960632324,
-0.5885317921638489,
0.40611422061920166,
-0.47148334980010986,
-0.2408565878868103,
-0.5493855476379395,
-0.14309322834014893,
-0.20820817351341248,
-0.5316557884216309,
0.047864772379398346,
-0.5868346095085144,
0.1153705045580864,
-0.22783251106739044,
1.0003502368927002,
0.11812641471624374,
-0.3830656409263611,
-0.43437209725379944,
-0.06735671311616898,
0.6241276860237122,
-1.061482548713684,
0.16455824673175812,
0.7329336404800415,
0.0706891342997551,
-0.028939509764313698,
-0.6848108172416687,
-0.6045450568199158,
0.23175741732120514,
-0.20429639518260956,
0.22074928879737854,
-0.06638657301664352,
-0.3150545656681061,
0.3247099816799164,
0.06057875230908394,
-0.3269434869289398,
-0.16344034671783447,
-0.6301845908164978,
-0.38381531834602356,
0.8940824270248413,
0.08448798954486847,
0.3579222857952118,
-0.837818443775177,
-0.2627160847187042,
0.0023630415089428425,
-0.5496564507484436,
-0.2349345088005066,
0.49044427275657654,
0.6902793645858765,
-0.5813518762588501,
0.6529232263565063,
-0.14392061531543732,
0.5404422879219055,
-0.2638210356235504,
-0.005314073991030455,
0.9575320482254028,
-0.642863929271698,
-0.14623276889324188,
0.11722263693809509,
0.8579907417297363,
0.5601473450660706,
0.19087538123130798,
0.058108773082494736,
-0.20713095366954803,
-0.02244693972170353,
-0.03345412015914917,
-0.6295386552810669,
0.1304197460412979,
0.06601586937904358,
-0.420933336019516,
-0.24096447229385376,
-0.07478635013103485,
-1.1187474727630615,
-0.2856774628162384,
-0.41766512393951416,
0.33039742708206177,
-0.4883418381214142,
-0.383189857006073,
-0.3680643141269684,
-0.2807789146900177,
0.2666991949081421,
0.17360544204711914,
-0.6213250160217285,
0.5112949013710022,
0.5130341053009033,
0.9287189245223999,
-0.13239145278930664,
-0.41407451033592224,
-0.22844910621643066,
0.2113661915063858,
-0.0006317259394563735,
0.5645939111709595,
-0.4619343876838684,
-0.3473328948020935,
0.11652969568967819,
0.36900579929351807,
-0.29583582282066345,
-0.303579717874527,
0.7305582761764526,
-0.33776941895484924,
0.2355034500360489,
-0.4831297695636749,
-0.4497656226158142,
-0.20179703831672668,
0.18193186819553375,
-0.6332755088806152,
1.332787275314331,
0.3673050105571747,
-0.8048814535140991,
0.30697402358055115,
-0.8776098489761353,
-0.8379901647567749,
0.2653621733188629,
-0.20516201853752136,
-0.12609899044036865,
-0.06187799945473671,
0.03159312903881073,
0.5465853810310364,
-0.47341811656951904,
0.3617311120033264,
-0.12280744314193726,
-0.14229683578014374,
0.088033027946949,
0.1177368313074112,
1.1614185571670532,
0.25876834988594055,
-0.3901105523109436,
-0.03130608797073364,
-0.8648926019668579,
-0.09369086474180222,
0.18641901016235352,
-0.040627531707286835,
-0.49101343750953674,
-0.3072837293148041,
0.34463003277778625,
0.3683575391769409,
0.49946919083595276,
-0.4497052729129791,
-0.17146842181682587,
-0.3702208399772644,
0.7084129452705383,
0.7634053826332092,
0.1861209124326706,
0.45628586411476135,
-0.12485816329717636,
0.5396339893341064,
-0.12313152104616165,
0.20818258821964264,
0.16107448935508728,
-0.4584272801876068,
-0.7222896218299866,
-0.03664056956768036,
0.5047828555107117,
0.5563802719116211,
-0.5807770490646362,
0.5236319303512573,
-0.433503657579422,
-0.7013440132141113,
-0.36779141426086426,
-0.07616185396909714,
0.25130218267440796,
0.5783258676528931,
0.5187536478042603,
-0.14097213745117188,
-0.9341323971748352,
-0.9729234576225281,
0.11778514832258224,
0.05303789675235748,
0.3749014437198639,
0.6884034872055054,
1.0440493822097778,
-0.30806973576545715,
0.5874711871147156,
-0.5086566209793091,
-0.41234827041625977,
-0.34311503171920776,
0.018790382891893387,
0.3997254967689514,
0.48078030347824097,
0.4094806909561157,
-0.8691652417182922,
-0.5271291136741638,
-0.20837277173995972,
-0.6968859434127808,
-0.3976048231124878,
0.027618782594799995,
-0.10242444276809692,
0.4241715967655182,
0.4515387713909149,
-0.30074575543403625,
0.44472038745880127,
0.4683111310005188,
-0.4915035367012024,
0.34685954451560974,
-0.13064920902252197,
0.08411119133234024,
-1.3466472625732422,
0.2092752456665039,
-0.040907710790634155,
0.10928814858198166,
-0.5402635335922241,
-0.1767013669013977,
-0.10905424505472183,
-0.037774328142404556,
-0.4687287509441376,
0.7189623117446899,
-0.47048333287239075,
-0.12548977136611938,
-0.06307165324687958,
0.31604647636413574,
-0.052683718502521515,
0.3731837272644043,
0.05461999028921127,
0.7415951490402222,
0.5043273568153381,
-0.7836374640464783,
-0.11614630371332169,
0.5563541650772095,
-0.10269241780042648,
0.6246485710144043,
-0.9366887807846069,
0.14180515706539154,
-0.11006816476583481,
-0.045900218188762665,
-0.5944114923477173,
-0.35542434453964233,
0.42180827260017395,
-0.6453672647476196,
0.0585172176361084,
-0.24729548394680023,
-0.7036840915679932,
-0.04654167592525482,
-0.22517777979373932,
0.08444689959287643,
0.18083444237709045,
0.02737727202475071,
0.5555473566055298,
0.9509777426719666,
-0.2529304623603821,
-0.49986544251441956,
-0.8667565584182739,
0.20749811828136444,
-0.18938738107681274,
-0.5498116612434387,
0.4969113767147064,
0.0846605896949768,
-0.13846439123153687,
0.17614737153053284,
0.1503676027059555,
-0.13959145545959473,
0.1687367558479309,
0.5627831816673279,
0.2779289782047272,
0.019532300531864166,
0.20676547288894653,
0.005420032422989607,
-0.10125945508480072,
-0.15230871737003326,
0.23479819297790527,
0.9389541745185852,
-0.11273827403783798,
-0.06658320873975754,
-0.24047031998634338,
0.37951111793518066,
0.2919915020465851,
-0.25286051630973816,
0.7838920950889587,
0.5513558983802795,
-0.5889213681221008,
0.221250519156456,
-0.530022144317627,
0.022758828476071358,
-0.38143011927604675,
0.1411730796098709,
-0.3165280222892761,
-0.7897087335586548,
0.7590819597244263,
0.1702767163515091,
-0.07167878746986389,
1.0132007598876953,
0.36119741201400757,
0.08086608350276947,
0.3173760771751404,
0.36713358759880066,
0.004132520407438278,
0.42272472381591797,
-0.6042389869689941,
-0.05355801060795784,
-1.0988812446594238,
-0.5665652751922607,
-0.8229206204414368,
-0.3491280674934387,
-0.8410616517066956,
-0.4100761115550995,
-0.1116599589586258,
0.1282946765422821,
-0.38158118724823,
0.8525562882423401,
-0.5987191796302795,
0.15740889310836792,
0.7341362237930298,
-0.05396532267332077,
-0.21632924675941467,
-0.13541151583194733,
-0.08169928938150406,
-0.1394312083721161,
-0.5713966488838196,
-0.7574517130851746,
1.0314209461212158,
0.052065409719944,
0.25926271080970764,
0.20241288840770721,
1.2031102180480957,
0.39015981554985046,
0.019168689846992493,
-0.3432367742061615,
0.7282689213752747,
-0.20219290256500244,
-0.5540424585342407,
-0.5253964066505432,
-0.17281021177768707,
-1.0293439626693726,
0.01693071611225605,
-0.23123548924922943,
-0.7767862677574158,
0.6780287623405457,
-0.2375909835100174,
-0.2287060022354126,
-0.1441381275653839,
-0.6345884799957275,
0.8503984808921814,
-0.24241089820861816,
-0.30679193139076233,
-0.04840909689664841,
-0.8946965932846069,
-0.34407246112823486,
0.12178723514080048,
0.34787505865097046,
-0.31926965713500977,
-0.2685261070728302,
1.130622148513794,
-0.551823079586029,
1.0989564657211304,
-0.22878269851207733,
0.42594361305236816,
0.45633062720298767,
-0.2414882481098175,
0.591502845287323,
0.01716577261686325,
-0.4621603190898895,
0.5358133912086487,
-0.09391289204359055,
-0.25018930435180664,
-0.25023603439331055,
0.6713987588882446,
-0.7823874950408936,
-0.12845756113529205,
-0.7271689772605896,
-0.26389265060424805,
0.20928828418254852,
0.5717533230781555,
0.5049103498458862,
0.43668362498283386,
-0.0654294490814209,
0.268172025680542,
0.23255200684070587,
-0.26579946279525757,
0.3300555646419525,
0.3659577965736389,
0.1592259556055069,
-0.9136033654212952,
0.7065431475639343,
0.6089256405830383,
0.01653028093278408,
0.24240460991859436,
0.02245318330824375,
-0.48737087845802307,
-0.49239102005958557,
-0.16134174168109894,
0.3204275965690613,
-0.6240299940109253,
-0.4217136800289154,
-0.8108416199684143,
-0.2835054099559784,
-0.9589914679527283,
-0.18133197724819183,
0.10784970968961716,
-0.6408886909484863,
-0.5820160508155823,
-0.34007158875465393,
0.5234377980232239,
0.5197227001190186,
-0.4260156452655792,
0.369747132062912,
-0.4821924865245819,
0.10315302759408951,
-0.15949371457099915,
0.17099741101264954,
-0.0458393432199955,
-0.5211394429206848,
-0.16848202049732208,
0.03957235440611839,
0.020286064594984055,
-1.1734846830368042,
0.6342225670814514,
0.15967939794063568,
0.7291128635406494,
0.014488154090940952,
0.21564854681491852,
0.7183933854103088,
-0.22713953256607056,
0.9522371888160706,
0.043992578983306885,
-0.9050992727279663,
0.9770146608352661,
-0.22472791373729706,
0.18800616264343262,
1.0789542198181152,
0.3471042513847351,
-0.8366798758506775,
-0.09229056537151337,
-1.109222173690796,
-1.388127088546753,
0.7857037782669067,
0.3773341774940491,
0.2510834336280823,
-0.4705709218978882,
0.22872158885002136,
0.12465351819992065,
0.26803261041641235,
-0.7932524681091309,
-0.516642153263092,
-0.2757914364337921,
-0.17524321377277374,
-0.0597672238945961,
-0.5021690726280212,
-0.13921234011650085,
-0.15426930785179138,
1.0197433233261108,
0.061756033450365067,
0.28989383578300476,
0.36581671237945557,
-0.45517629384994507,
0.2921605408191681,
0.5011924505233765,
0.6217211484909058,
0.5500808954238892,
-0.13569384813308716,
0.24143710732460022,
0.3128262460231781,
-0.45589548349380493,
-0.2146378755569458,
0.2918533980846405,
-0.6133439540863037,
0.12263133376836777,
0.4280388355255127,
0.9350734353065491,
0.2876805067062378,
-0.3988609313964844,
0.6216711401939392,
0.2564794719219208,
-0.2059207558631897,
-0.6784418821334839,
-0.12337695062160492,
0.07079394161701202,
0.18952760100364685,
0.31319084763526917,
0.13755466043949127,
0.27890029549598694,
-0.3171287178993225,
0.17049983143806458,
0.08552753180265427,
-0.44405680894851685,
-0.3436226546764374,
0.454844206571579,
0.2239670604467392,
-0.6163821220397949,
0.480728417634964,
-0.4433002769947052,
-0.6006982326507568,
0.7855389714241028,
0.6949583888053894,
0.8736523985862732,
0.06941704452037811,
0.512938380241394,
0.8376041054725647,
0.4754180312156677,
0.04302794858813286,
0.8503730297088623,
0.012506340630352497,
-0.7554894685745239,
-0.1380210965871811,
-0.6228744387626648,
0.04559268057346344,
0.2544841468334198,
-0.6517255306243896,
0.4189502000808716,
-0.440638929605484,
-0.398218035697937,
0.01018732599914074,
0.16622723639011383,
-0.850715160369873,
0.16982144117355347,
0.00040899115265347064,
0.8542070984840393,
-1.0670065879821777,
0.504220724105835,
0.8300780057907104,
-0.8979254961013794,
-0.7667937278747559,
-0.274149626493454,
-0.07866577059030533,
-0.7354134321212769,
0.780129075050354,
0.1771569699048996,
0.1860002875328064,
-0.1699768304824829,
-0.4252675771713257,
-1.0704041719436646,
1.1724172830581665,
0.22436214983463287,
-0.3437122702598572,
0.18329563736915588,
0.26030707359313965,
0.6602275371551514,
-0.3622240126132965,
0.30539655685424805,
0.2862989604473114,
0.6527323126792908,
0.01628873124718666,
-0.7919943332672119,
0.34164100885391235,
-0.5746126174926758,
-0.0934188961982727,
0.21011583507061005,
-0.7385637164115906,
0.7865506410598755,
-0.06758692860603333,
-0.2685491740703583,
-0.24450606107711792,
0.5304610729217529,
0.22041389346122742,
0.5985620021820068,
0.37980973720550537,
0.690170407295227,
0.918243944644928,
-0.11304581165313721,
0.830416738986969,
-0.41592949628829956,
0.28136172890663147,
1.609459400177002,
-0.24386514723300934,
0.786541759967804,
0.5111135244369507,
-0.1805112659931183,
0.44270095229148865,
0.5608355402946472,
-0.199254110455513,
0.46624383330345154,
-0.045399829745292664,
0.13930697739124298,
0.03916812688112259,
-0.525387704372406,
-0.653622031211853,
0.5275780558586121,
0.3237300217151642,
-0.6556183695793152,
-0.0937579944729805,
-0.2666362524032593,
0.2357022911310196,
0.09894389659166336,
-0.26937559247016907,
0.7105416655540466,
0.06429706513881683,
-0.4194314181804657,
0.13666729629039764,
-0.21911853551864624,
0.6908085942268372,
-0.4795621335506439,
-0.018497614189982414,
-0.11719445884227753,
-0.15536938607692719,
-0.470104455947876,
-0.9187386631965637,
0.502914309501648,
-0.12061787396669388,
-0.11103221774101257,
-0.13010689616203308,
0.9912404417991638,
-0.20647451281547546,
-0.5316808819770813,
0.3206530809402466,
0.461160808801651,
0.3802962899208069,
0.16639964282512665,
-0.6695284247398376,
-0.006842453498393297,
0.03870663046836853,
-0.018446942791342735,
0.16257569193840027,
0.5654736161231995,
-0.13364534080028534,
0.28781092166900635,
0.5771523118019104,
0.3392817974090576,
0.004595647100359201,
0.34613972902297974,
0.6352483034133911,
-0.7668864727020264,
-0.5531330704689026,
-0.8367437124252319,
0.33081093430519104,
-0.7323897480964661,
-0.7213444709777832,
1.1063580513000488,
0.9530209302902222,
0.8848809003829956,
0.0861552432179451,
0.8752359747886658,
-0.6019653677940369,
0.5898582339286804,
-0.1054571345448494,
0.7135235071182251,
-0.4822778105735779,
-0.07313869893550873,
-0.5817510485649109,
-0.7236565351486206,
-0.26983609795570374,
0.7230546474456787,
-0.4973640739917755,
-0.09492549300193787,
0.3679388165473938,
0.7897164821624756,
0.3294047713279724,
0.1361115425825119,
-0.08764199912548065,
0.27676159143447876,
-0.16763798892498016,
0.23854005336761475,
0.4651995897293091,
-0.7542873024940491,
0.28638237714767456,
-0.5169801115989685,
-0.0235566645860672,
-0.30891045928001404,
-0.9345067143440247,
-0.6219814419746399,
-0.9002830386161804,
-0.4691857695579529,
-0.6330744028091431,
0.06517628580331802,
1.050231695175171,
0.39885184168815613,
-1.0569169521331787,
-0.27442097663879395,
0.050303924828767776,
0.17551684379577637,
-0.18155434727668762,
-0.24103520810604095,
0.6153193712234497,
-0.02293255925178528,
-0.5513584017753601,
-0.04753616452217102,
0.18983151018619537,
0.048977985978126526,
0.21870039403438568,
-0.25393056869506836,
-0.6410407423973083,
-0.12141067534685135,
0.7304326891899109,
0.2891428768634796,
-0.5035527348518372,
-0.12532702088356018,
0.22566863894462585,
-0.17662101984024048,
-0.027298936620354652,
0.4251243472099304,
-0.43808525800704956,
0.17545932531356812,
0.7820025086402893,
0.311502605676651,
0.5554528832435608,
-0.2373749166727066,
0.08434250950813293,
-0.589168906211853,
0.1636529564857483,
0.4474766254425049,
0.46106821298599243,
0.3903309106826782,
-0.4931594431400299,
1.0797592401504517,
0.29586175084114075,
-0.5002644062042236,
-0.8602695465087891,
-0.16290362179279327,
-1.160433053970337,
-0.05129651725292206,
1.4755579233169556,
0.14617329835891724,
-0.34109246730804443,
-0.18897776305675507,
-0.1793655902147293,
0.6170216202735901,
-0.8145392537117004,
0.39375680685043335,
0.6127057671546936,
0.0017268211813643575,
0.05724797770380974,
-0.4707983136177063,
0.331830233335495,
0.01729760505259037,
-0.860657274723053,
-0.1201956570148468,
0.4493061304092407,
0.3512597382068634,
0.38125482201576233,
1.0893393754959106,
-0.2867181599140167,
0.07862123847007751,
-0.07892326265573502,
0.2367819994688034,
-0.005725537892431021,
-0.02365409955382347,
-0.20218868553638458,
0.10055045038461685,
-0.3530406653881073,
-0.12493441253900528
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
siswati_ner_corpus | null | 2023-01-25T14:44:23Z | 293 | 0 | null | [
"task_categories:token-classification",
"task_ids:named-entity-recognition",
"annotations_creators:expert-generated",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:10K<n<100K",
"source_datasets:original",
"language:ss",
"license:other",
"region:us"
] | 2023-01-25T14:44:23Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
annotations_creators:
- expert-generated
language_creators:
- found
language:
- ss
license:
- other
multilinguality:
- monolingual
size_categories:
- 10K<n<100K
source_datasets:
- original
task_categories:
- token-classification
task_ids:
- named-entity-recognition
pretty_name: Siswati NER Corpus
license_details: Creative Commons Attribution 2.5 South Africa License
dataset_info:
features:
- name: id
dtype: string
- name: tokens
sequence: string
- name: ner_tags
sequence:
class_label:
names:
'0': OUT
'1': B-PERS
'2': I-PERS
'3': B-ORG
'4': I-ORG
'5': B-LOC
'6': I-LOC
'7': B-MISC
'8': I-MISC
config_name: siswati_ner_corpus
splits:
- name: train
num_bytes: 3517151
num_examples: 10798
download_size: 21882224
dataset_size: 3517151
---
# Dataset Card for Siswati NER Corpus
## 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:** [Siswati Ner Corpus Homepage](https://repo.sadilar.org/handle/20.500.12185/346)
- **Repository:**
- **Paper:**
- **Leaderboard:**
- **Point of Contact:** [Martin Puttkammer](mailto:Martin.Puttkammer@nwu.ac.za)
### Dataset Summary
The Siswati Ner Corpus is a Siswati dataset developed by [The Centre for Text Technology (CTexT), North-West University, South Africa](http://humanities.nwu.ac.za/ctext). The data is based on documents from the South African goverment domain and crawled from gov.za websites. It was created to support NER task for Siswati language. The dataset uses CoNLL shared task annotation standards.
### Supported Tasks and Leaderboards
[More Information Needed]
### Languages
The language supported is Siswati.
## Dataset Structure
### Data Instances
A data point consists of sentences seperated by empty line and tab-seperated tokens and tags.
```
{'id': '0',
'ner_tags': [0, 0, 0, 0, 0],
'tokens': ['Tinsita', 'tebantfu', ':', 'tinsita', 'tetakhamiti']
}
```
### Data Fields
- `id`: id of the sample
- `tokens`: the tokens of the example text
- `ner_tags`: the NER tags of each token
The NER tags correspond to this list:
```
"OUT", "B-PERS", "I-PERS", "B-ORG", "I-ORG", "B-LOC", "I-LOC", "B-MISC", "I-MISC",
```
The NER tags have the same format as in the CoNLL shared task: a B denotes the first item of a phrase and an I any non-initial word. There are four types of phrases: person names (PER), organizations (ORG), locations (LOC) and miscellaneous names (MISC). (OUT) is used for tokens not considered part of any named entity.
### Data Splits
The data was not split.
## Dataset Creation
### Curation Rationale
The data was created to help introduce resources to new language - siswati.
[More Information Needed]
### Source Data
#### Initial Data Collection and Normalization
The data is based on South African government domain and was crawled from gov.za websites.
#### Who are the source language producers?
The data was produced by writers of South African government websites - gov.za
[More Information Needed]
### Annotations
#### Annotation process
[More Information Needed]
#### Who are the annotators?
The data was annotated during the NCHLT text resource development project.
[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
The annotated data sets were developed by the Centre for Text Technology (CTexT, North-West University, South Africa).
See: [more information](http://www.nwu.ac.za/ctext)
### Licensing Information
The data is under the [Creative Commons Attribution 2.5 South Africa License](http://creativecommons.org/licenses/by/2.5/za/legalcode)
### Citation Information
```
@inproceedings{siswati_ner_corpus,
author = {B.B. Malangwane and
M.N. Kekana and
S.S. Sedibe and
B.C. Ndhlovu and
Roald Eiselen},
title = {NCHLT Siswati Named Entity Annotated Corpus},
booktitle = {Eiselen, R. 2016. Government domain named entity recognition for South African languages. Proceedings of the 10th Language Resource and Evaluation Conference, Portorož, Slovenia.},
year = {2016},
url = {https://repo.sadilar.org/handle/20.500.12185/346},
}
```
### Contributions
Thanks to [@yvonnegitau](https://github.com/yvonnegitau) for adding this dataset. | [
-0.43259885907173157,
-0.38739079236984253,
-0.09173429012298584,
0.3581882119178772,
-0.2039450854063034,
-0.11836430430412292,
-0.40498441457748413,
-0.3684728443622589,
0.6373404860496521,
0.44587820768356323,
-0.6725643277168274,
-0.7058191895484924,
-0.8913758397102356,
0.480788916349411,
-0.30453118681907654,
1.224239706993103,
0.0039771683514118195,
-0.13128912448883057,
-0.10841374844312668,
-0.3734525442123413,
-0.3729747235774994,
-0.739894688129425,
-0.4921494424343109,
-0.08664035052061081,
0.5634307861328125,
0.7340888977050781,
0.5605900287628174,
0.2905893921852112,
0.4923860430717468,
0.21745339035987854,
-0.19716452062129974,
0.30830541253089905,
-0.47663381695747375,
-0.11050534248352051,
-0.1257421374320984,
-0.32629600167274475,
-0.38337352871894836,
-0.05344045162200928,
0.5650936365127563,
0.6039323806762695,
0.20138341188430786,
0.5033811330795288,
0.20271623134613037,
0.6331629753112793,
-0.7410096526145935,
0.5080718398094177,
-0.4279327094554901,
-0.16471867263317108,
-0.5120221972465515,
-0.0957583412528038,
-0.2583445906639099,
-0.5958686470985413,
0.04925137013196945,
-0.6080325841903687,
0.12595799565315247,
-0.30992749333381653,
1.1452484130859375,
0.1197304055094719,
-0.3088317811489105,
-0.3936462104320526,
-0.23160836100578308,
0.6518946886062622,
-0.8769775032997131,
-0.053762245923280716,
0.803435206413269,
0.18593645095825195,
-0.16210448741912842,
-0.8447602391242981,
-0.6981418132781982,
0.16232743859291077,
-0.4750276803970337,
0.08789054304361343,
-0.163840189576149,
-0.29155048727989197,
0.43911105394363403,
0.10496000945568085,
-0.2826854884624481,
-0.2750016748905182,
-0.5728532671928406,
-0.31955865025520325,
0.8932781219482422,
0.15810620784759521,
0.3911724388599396,
-0.7857045531272888,
-0.26782864332199097,
0.0351981446146965,
-0.5622413754463196,
-0.1598118394613266,
0.5419856309890747,
0.6606076955795288,
-0.6050719022750854,
0.6966792345046997,
-0.23107793927192688,
0.4737287163734436,
-0.10519155114889145,
-0.12982764840126038,
0.8770437836647034,
-0.6285265684127808,
0.015864569693803787,
0.16509264707565308,
0.8535999655723572,
0.5553964376449585,
0.4065340757369995,
0.04476010054349899,
-0.17971071600914001,
0.041359931230545044,
-0.0018788344459608197,
-0.7597077488899231,
-0.14957977831363678,
0.03398220241069794,
-0.6165753602981567,
-0.3085639476776123,
0.09071137756109238,
-0.8735813498497009,
-0.18084771931171417,
-0.38853979110717773,
0.41424617171287537,
-0.5678455233573914,
-0.5449963808059692,
-0.3554854094982147,
-0.32017865777015686,
0.33194947242736816,
-0.15166324377059937,
-0.7073632478713989,
0.4219876229763031,
0.5997664928436279,
0.9413096308708191,
-0.0664752945303917,
-0.3960598409175873,
-0.10766659677028656,
0.2297634780406952,
-0.045097291469573975,
0.49647071957588196,
-0.5487368106842041,
-0.458646297454834,
0.09581808000802994,
0.3082095980644226,
-0.28418686985969543,
-0.16779455542564392,
0.8450301885604858,
-0.20500478148460388,
0.267301082611084,
-0.6619439721107483,
-0.4655551612377167,
-0.2509877681732178,
0.16426882147789001,
-0.6542987823486328,
1.400889277458191,
0.2899288237094879,
-1.1061309576034546,
0.5126354098320007,
-1.1320006847381592,
-0.6834324598312378,
0.22503145039081573,
-0.34170371294021606,
-0.3488737940788269,
-0.07347232103347778,
0.09608907252550125,
0.601242184638977,
-0.22065232694149017,
0.4588812589645386,
-0.04765063896775246,
-0.38082394003868103,
0.16083812713623047,
-0.1944165676832199,
1.114026665687561,
0.19438263773918152,
-0.3842552602291107,
0.004626066889613867,
-0.9050711393356323,
-0.11046595126390457,
0.18818284571170807,
-0.15392431616783142,
-0.22846382856369019,
-0.05247538164258003,
0.5409810543060303,
0.28952932357788086,
0.3642002046108246,
-0.6944712400436401,
0.09917004406452179,
-0.21960389614105225,
0.5924246907234192,
0.6872543096542358,
0.1344069391489029,
0.16761299967765808,
-0.2540026009082794,
0.3153823912143707,
0.10041049867868423,
0.24626541137695312,
0.26402100920677185,
-0.5677855610847473,
-0.838817298412323,
-0.18286296725273132,
0.6210502982139587,
0.52646404504776,
-0.7569108009338379,
0.4787393808364868,
-0.6258522868156433,
-0.779205322265625,
-0.48884913325309753,
-0.23656144738197327,
0.20474271476268768,
0.4005046486854553,
0.4406387507915497,
-0.03647208586335182,
-0.9027127027511597,
-1.1591830253601074,
0.1064862385392189,
-0.03501259535551071,
0.32171428203582764,
0.5088088512420654,
0.9644662141799927,
-0.31437233090400696,
0.9631968140602112,
-0.6402897834777832,
-0.35016068816185,
-0.4553106129169464,
0.21798628568649292,
0.5029426217079163,
0.5378700494766235,
0.5961549878120422,
-1.1496175527572632,
-0.5369789600372314,
-0.3123930096626282,
-0.5561625957489014,
-0.36376455426216125,
-0.013005340471863747,
-0.22446268796920776,
0.3587164282798767,
0.3407820165157318,
-0.45815712213516235,
0.6345928907394409,
0.33864495158195496,
-0.5023595094680786,
0.5601173639297485,
-0.11193694174289703,
0.07478364557027817,
-1.3863906860351562,
0.29197192192077637,
-0.08101242780685425,
0.1646479368209839,
-0.6669090986251831,
-0.2311822772026062,
0.0025685864966362715,
0.04522385448217392,
-0.36140915751457214,
0.38104385137557983,
-0.48098281025886536,
0.01722719706594944,
-0.21353411674499512,
0.06795123964548111,
-0.18426983058452606,
0.44588127732276917,
-0.010099697858095169,
0.9031140804290771,
0.5457985401153564,
-0.7827786207199097,
-0.056167636066675186,
0.5912010073661804,
-0.2793358862400055,
0.6449031829833984,
-0.7437871694564819,
-0.012858045287430286,
-0.23191209137439728,
0.1159512922167778,
-0.7610434889793396,
-0.30834752321243286,
0.4964190423488617,
-0.7661937475204468,
0.22183679044246674,
-0.17337214946746826,
-0.7792806029319763,
-0.10202211886644363,
-0.22965717315673828,
0.10936706513166428,
0.07581222057342529,
-0.13669750094413757,
0.6420291662216187,
0.6220306158065796,
-0.13857106864452362,
-0.7608693242073059,
-1.116295576095581,
0.29630541801452637,
-0.06849315017461777,
-0.44678762555122375,
0.4843675196170807,
0.040862515568733215,
0.00654618488624692,
0.22430628538131714,
0.3051425814628601,
-0.1425221860408783,
0.1655857414007187,
0.5744752287864685,
0.3428160846233368,
-0.1373031884431839,
0.21653223037719727,
0.014875107444822788,
-0.3066054880619049,
-0.08576016128063202,
0.12970741093158722,
0.806431233882904,
0.0435040108859539,
-0.1027262881398201,
-0.3214813768863678,
0.6314842104911804,
0.3535177409648895,
-0.2333715409040451,
1.0612605810165405,
0.8693258166313171,
-0.629270613193512,
0.40154606103897095,
-0.5185320973396301,
0.18196430802345276,
-0.3703641891479492,
0.25576427578926086,
-0.4468814432621002,
-0.6528356075286865,
0.519093930721283,
0.22778572142124176,
0.14956222474575043,
1.058098316192627,
0.45818018913269043,
0.13522061705589294,
0.4853335916996002,
0.6292238831520081,
-0.40581291913986206,
0.30687665939331055,
-0.6734316349029541,
0.13850274682044983,
-0.9704638123512268,
-0.5464770197868347,
-0.8680608868598938,
-0.5594395399093628,
-1.1452405452728271,
-0.16683967411518097,
-0.03781883046030998,
-0.03119056671857834,
-0.1881517469882965,
0.7698233723640442,
-0.6719793677330017,
0.11431165784597397,
0.6840342283248901,
0.03158872202038765,
-0.2507857084274292,
-0.11489895731210709,
-0.19305279850959778,
-0.0791412964463234,
-0.646079957485199,
-0.7644352912902832,
1.026007890701294,
0.06127762049436569,
0.18989421427249908,
0.2451837807893753,
0.9779060482978821,
0.39089494943618774,
0.24837128818035126,
-0.37438955903053284,
0.6601840257644653,
-0.22412768006324768,
-0.6461618542671204,
-0.28110140562057495,
-0.31602317094802856,
-0.964583158493042,
0.0424833819270134,
-0.3977277874946594,
-0.7723231315612793,
0.7154580354690552,
-0.3969096541404724,
-0.24168016016483307,
0.22704258561134338,
-0.7157436609268188,
0.6250343918800354,
0.055475614964962006,
-0.12393306195735931,
-0.10878578573465347,
-0.9273645281791687,
-0.1996096670627594,
0.14656321704387665,
0.26286017894744873,
-0.3247245252132416,
-0.26626670360565186,
1.0539755821228027,
-0.4629417359828949,
1.0697524547576904,
-0.28528180718421936,
0.37144142389297485,
0.2562723755836487,
-0.40534257888793945,
0.38611292839050293,
-0.14227862656116486,
-0.43655166029930115,
0.5455731749534607,
0.047358229756355286,
-0.442099004983902,
-0.24614690244197845,
0.6775227189064026,
-0.8829216361045837,
-0.05488094314932823,
-0.620940625667572,
-0.49132823944091797,
0.1644788682460785,
0.38185515999794006,
0.5434033274650574,
0.5873152613639832,
0.04316069930791855,
0.2715737819671631,
0.20797157287597656,
-0.22945764660835266,
0.5038337111473083,
0.298194944858551,
0.18868933618068695,
-0.7110726833343506,
0.8206029534339905,
0.6375321745872498,
0.061228878796100616,
0.2663162350654602,
0.029366137459874153,
-0.24918270111083984,
-0.4233699440956116,
-0.22485877573490143,
0.1605544537305832,
-0.6081706881523132,
-0.43152520060539246,
-0.9324330687522888,
-0.4164425730705261,
-0.6915584206581116,
-0.008026550523936749,
0.2503610849380493,
-0.6554707288742065,
-0.5192855596542358,
-0.31990811228752136,
0.6624469757080078,
0.7126224637031555,
-0.426033616065979,
0.32001009583473206,
-0.42463573813438416,
0.23431815207004547,
-0.2971862256526947,
0.29521867632865906,
0.0006944336928427219,
-0.3369111120700836,
-0.19264307618141174,
0.10812235623598099,
-0.05990689620375633,
-0.9877846240997314,
0.3931759297847748,
0.1912626326084137,
0.6639463901519775,
0.11223717778921127,
0.21936261653900146,
0.6471418142318726,
-0.20893213152885437,
1.1007405519485474,
0.02778763696551323,
-0.7263261675834656,
0.7125335931777954,
-0.11489144712686539,
0.1953096240758896,
1.0750724077224731,
0.5594534277915955,
-0.833782434463501,
-0.04398953542113304,
-0.8823633790016174,
-1.1796082258224487,
0.8005554676055908,
0.5172969698905945,
0.37671607732772827,
-0.4265882968902588,
0.37277963757514954,
0.15545716881752014,
0.17758004367351532,
-0.7643134593963623,
-0.788249135017395,
-0.1615816205739975,
-0.30803969502449036,
0.058472003787755966,
-0.634110689163208,
0.14289645850658417,
-0.3600192368030548,
1.105596661567688,
0.034009020775556564,
0.47575607895851135,
0.33195266127586365,
-0.2715652287006378,
0.29329830408096313,
0.30727002024650574,
0.5920485854148865,
0.5416983366012573,
-0.08638658374547958,
0.08142959326505661,
0.34691882133483887,
-0.732463002204895,
-0.12055425345897675,
0.21442219614982605,
-0.5523583889007568,
0.24002651870250702,
0.4388410747051239,
0.8493699431419373,
0.24600675702095032,
-0.12106848508119583,
0.7129635214805603,
0.029383379966020584,
-0.32900139689445496,
-0.5786429047584534,
-0.10817795991897583,
0.07914750277996063,
0.03464933857321739,
0.47172626852989197,
0.1315344274044037,
0.18788069486618042,
-0.30621957778930664,
0.26717695593833923,
0.1302284449338913,
-0.4508286714553833,
-0.07356710731983185,
0.27237528562545776,
0.06701219826936722,
-0.5123268961906433,
0.5247529745101929,
-0.2780120372772217,
-0.6225112080574036,
0.520430326461792,
0.4680548906326294,
0.9059862494468689,
0.1312812715768814,
0.35845035314559937,
0.8122140169143677,
0.5398820638656616,
0.27194854617118835,
0.7873589396476746,
-0.12146883457899094,
-0.6413206458091736,
-0.2292158156633377,
-0.5437242984771729,
0.02748589776456356,
0.12111854553222656,
-0.7628201246261597,
0.433432400226593,
-0.3156364858150482,
-0.36063042283058167,
0.033758748322725296,
0.2914169132709503,
-0.7204200029373169,
0.14077655971050262,
0.06780403852462769,
1.0592321157455444,
-0.9613533020019531,
0.5962758660316467,
0.5307796597480774,
-0.9163520336151123,
-0.78377765417099,
0.03519003838300705,
-0.15214164555072784,
-0.5900269746780396,
0.6558321714401245,
0.368014395236969,
0.11072778701782227,
-0.2580299377441406,
-0.6613308787345886,
-1.042288899421692,
1.1510592699050903,
0.16290663182735443,
-0.30028051137924194,
0.1362711787223816,
0.4268628656864166,
0.4805889427661896,
-0.3045738935470581,
0.513420581817627,
0.5212160348892212,
0.7879551649093628,
-0.04840810224413872,
-0.6692625880241394,
0.20161719620227814,
-0.604091227054596,
-0.02584419772028923,
0.245958149433136,
-0.6494789719581604,
0.6829098463058472,
0.00953636784106493,
-0.3904910087585449,
-0.01312053482979536,
0.7997549772262573,
0.03590988367795944,
0.28321582078933716,
0.3948277533054352,
0.5157988667488098,
0.7795199155807495,
-0.2645716071128845,
0.931954562664032,
-0.4392019808292389,
0.2932598292827606,
1.3291352987289429,
-0.023621484637260437,
0.8397509455680847,
0.4742564260959625,
-0.1612434685230255,
0.6756365895271301,
0.462084025144577,
-0.19280731678009033,
0.45752477645874023,
0.13360978662967682,
-0.03989537060260773,
0.12979203462600708,
-0.5252111554145813,
-0.509859025478363,
0.5229769945144653,
0.3511594831943512,
-0.5320026874542236,
-0.19929812848567963,
-0.2643190920352936,
0.30299606919288635,
0.05984394624829292,
-0.2466678023338318,
0.7173495292663574,
-0.030704747885465622,
-0.2763678729534149,
0.2724659740924835,
-0.012068194337189198,
1.0361909866333008,
-0.6543742418289185,
-0.11006924510002136,
-0.009112022817134857,
-0.11660732328891754,
-0.6203751564025879,
-1.0176513195037842,
0.5774609446525574,
0.04823993146419525,
-0.3322858214378357,
-0.002291275653988123,
0.9935118556022644,
-0.3153555691242218,
-0.7918990254402161,
0.24909426271915436,
0.17052476108074188,
0.3403925597667694,
0.2080383449792862,
-0.7004611492156982,
-0.029238201677799225,
0.0012261990923434496,
-0.029348431155085564,
0.16720528900623322,
0.47880053520202637,
-0.00934594590216875,
0.3631216585636139,
0.6261377334594727,
0.213966503739357,
-0.08008341491222382,
0.3355003595352173,
0.7649552822113037,
-0.6241913437843323,
-0.43101081252098083,
-0.8685998320579529,
0.37643226981163025,
-0.6398044228553772,
-0.684849739074707,
0.9187202453613281,
0.9404681324958801,
0.8330112099647522,
0.1401321291923523,
0.9304815530776978,
-0.5527798533439636,
0.6512519717216492,
-0.08993334323167801,
1.0486602783203125,
-0.34994247555732727,
-0.2552033066749573,
-0.5861165523529053,
-0.6898170113563538,
-0.21194738149642944,
0.5538288950920105,
-0.4107275903224945,
-0.03227914497256279,
0.29024794697761536,
0.9597148299217224,
0.19519217312335968,
0.2504553496837616,
0.022044967859983444,
0.21208521723747253,
-0.06730276346206665,
0.4440121054649353,
0.5400163531303406,
-0.8081405758857727,
0.3726252019405365,
-0.4721057415008545,
-0.059303395450115204,
-0.05772226303815842,
-0.9592695832252502,
-0.6090443134307861,
-0.9361354112625122,
-0.40164822340011597,
-0.46437689661979675,
-0.09228023886680603,
1.121873140335083,
0.4511632025241852,
-1.0773136615753174,
-0.24020057916641235,
0.15326127409934998,
-0.024322979152202606,
-0.19052593410015106,
-0.2518279254436493,
0.6939594149589539,
0.023347394540905952,
-0.4385516345500946,
-0.13990949094295502,
0.08549503982067108,
-0.1211564764380455,
-0.06342487037181854,
-0.07529757171869278,
-0.9016653895378113,
-0.044416122138500214,
0.6856566667556763,
0.01444284152239561,
-0.5195436477661133,
-0.22861118614673615,
-0.0921008363366127,
-0.2549585700035095,
0.01943952403962612,
0.4916900396347046,
-0.434535413980484,
-0.017244061455130577,
0.5583540797233582,
0.4178065359592438,
0.469284325838089,
-0.34697383642196655,
0.08290255069732666,
-0.6809886693954468,
0.060888439416885376,
0.11003926396369934,
0.4700523912906647,
0.4709830582141876,
-0.6163647770881653,
0.8843929171562195,
0.274272084236145,
-0.2773685157299042,
-0.7453263401985168,
-0.14605766534805298,
-0.9413186311721802,
0.028056366369128227,
1.3956283330917358,
0.015845876187086105,
-0.32463377714157104,
-0.26599881052970886,
-0.3638194501399994,
0.6154545545578003,
-0.5373165011405945,
0.34606659412384033,
0.7669050097465515,
0.17694731056690216,
0.1466396600008011,
-0.43070146441459656,
0.2978878319263458,
0.10088109970092773,
-0.7424814701080322,
-0.03505071997642517,
0.2374056726694107,
0.45467522740364075,
0.3301525413990021,
0.8633661270141602,
-0.27947086095809937,
0.16490775346755981,
-0.020493200048804283,
0.28814005851745605,
-0.026428284123539925,
0.023489436134696007,
-0.1505812704563141,
0.09360422194004059,
-0.3793008625507355,
-0.3876124322414398
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
swedish_ner_corpus | null | 2023-01-25T14:45:21Z | 293 | 1 | null | [
"task_categories:token-classification",
"task_ids:named-entity-recognition",
"annotations_creators:expert-generated",
"language_creators:found",
"multilinguality:monolingual",
"size_categories:1K<n<10K",
"source_datasets:original",
"language:sv",
"license:cc-by-4.0",
"region:us"
] | 2023-01-25T14:45:21Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
annotations_creators:
- expert-generated
language_creators:
- found
language:
- sv
license:
- cc-by-4.0
multilinguality:
- monolingual
size_categories:
- 1K<n<10K
source_datasets:
- original
task_categories:
- token-classification
task_ids:
- named-entity-recognition
pretty_name: Swedish NER Corpus
dataset_info:
features:
- name: id
dtype: string
- name: tokens
sequence: string
- name: ner_tags
sequence:
class_label:
names:
'0': '0'
'1': LOC
'2': MISC
'3': ORG
'4': PER
splits:
- name: train
num_bytes: 2032630
num_examples: 6886
- name: test
num_bytes: 755234
num_examples: 2453
download_size: 1384558
dataset_size: 2787864
---
# Dataset Card for Swedish NER Corpus
## 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:** [https://github.com/klintan/swedish-ner-corpus]()
- **Repository:** [https://github.com/klintan/swedish-ner-corpus]()
- **Point of contact:** [Andreas Klintberg](ankl@kth.se)
### Dataset Summary
Webbnyheter 2012 from Spraakbanken, semi-manually annotated and adapted for CoreNLP Swedish NER. Semi-manually defined in this case as: Bootstrapped from Swedish Gazetters then manually correcte/reviewed by two independent native speaking swedish annotators. No annotator agreement calculated.
### Supported Tasks and Leaderboards
[More Information Needed]
### Languages
Swedish
## Dataset Structure
### Data Instances
A sample dataset instance is provided below:
```json
{'id': '3',
'ner_tags': [4, 4, 0, 0, 0, 0, 0, 0, 3, 3, 0],
'tokens': ['Margaretha',
'Fahlgren',
',',
'professor',
'i',
'litteraturvetenskap',
',',
'vice-rektor',
'Uppsala',
'universitet',
'.']}
```
### Data Fields
- `id`: id of the sentence
- `token`: current token
- `ner_tag`: ner tag of the token
Full fields:
```json
{
"id":{
"feature_type":"Value"
"dtype":"string"
}
"tokens":{
"feature_type":"Sequence"
"feature":{
"feature_type":"Value"
"dtype":"string"
}
}
"ner_tags":{
"feature_type":"Sequence"
"dtype":"int32"
"feature":{
"feature_type":"ClassLabel"
"dtype":"int32"
"class_names":[
0:"0"
1:"LOC"
2:"MISC"
3:"ORG"
4:"PER"
]
}
}
}
```
### Data Splits
[More Information Needed]
## Dataset Creation
### Curation Rationale
[More Information Needed]
### Source Data
[More Information Needed]
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
[More Information Needed]
### Annotations
[More Information Needed]
#### 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
The original dataset was provided by Språkbanken which consists of news from Swedish newspapers' websites.
### Licensing Information
https://github.com/klintan/swedish-ner-corpus/blob/master/LICENSE
### Citation Information
[More Information Needed]
### Contributions
Thanks to [@abhishekkrthakur](https://github.com/abhishekkrthakur) for adding this dataset. | [
-0.457348108291626,
-0.5684599280357361,
0.14363500475883484,
0.1674419790506363,
-0.32044824957847595,
0.007312633562833071,
-0.5594898462295532,
-0.3019821047782898,
0.62408047914505,
0.5183464288711548,
-0.5126239657402039,
-1.0838428735733032,
-0.6252602934837341,
0.28724899888038635,
-0.15690021216869354,
1.0888687372207642,
0.096369668841362,
0.1310821920633316,
-0.2554485499858856,
-0.24943965673446655,
-0.3468732535839081,
-0.7332339286804199,
-0.5091711282730103,
-0.07109182327985764,
0.4028279185295105,
0.5288883447647095,
0.5074241161346436,
0.6195273399353027,
0.4692128002643585,
0.2627410292625427,
-0.2870815098285675,
-0.055397938936948776,
-0.3200051784515381,
0.025502925738692284,
-0.20248766243457794,
-0.34199461340904236,
-0.5439845323562622,
-0.28698208928108215,
0.6876069903373718,
0.6810305118560791,
0.08744380623102188,
0.5601184964179993,
0.06119248643517494,
0.631415843963623,
-0.34505993127822876,
0.4121904969215393,
-0.5092018842697144,
-0.11859919875860214,
-0.400794118642807,
0.10825890302658081,
-0.1823706030845642,
-0.4010308086872101,
-0.06607027351856232,
-0.5582065582275391,
0.14878712594509125,
0.17738863825798035,
1.0823372602462769,
0.04795689135789871,
-0.20993781089782715,
-0.4081469178199768,
-0.27351221442222595,
0.7429683208465576,
-0.9285014867782593,
0.20310145616531372,
0.6238888502120972,
0.21042628586292267,
-0.015109079889953136,
-0.7967069149017334,
-0.7769732475280762,
0.17110109329223633,
-0.3124145269393921,
0.12544593214988708,
-0.12246999144554138,
-0.22844307124614716,
0.3392866253852844,
0.22243951261043549,
-0.5718066692352295,
-0.046956125646829605,
-0.5641040205955505,
-0.3619445264339447,
0.786751389503479,
0.25643113255500793,
0.234615296125412,
-0.8241480588912964,
-0.0879315733909607,
-0.2365528792142868,
-0.4496912956237793,
-0.08492939174175262,
0.6456713080406189,
0.6970775127410889,
-0.718087911605835,
0.7592923045158386,
-0.1841178983449936,
0.711566686630249,
-0.12068797647953033,
0.07612194120883942,
0.9979520440101624,
-0.7162538170814514,
0.017480939626693726,
0.0523744560778141,
1.0105254650115967,
0.5952717661857605,
0.04418209195137024,
0.23529168963432312,
-0.368308961391449,
-0.04764772579073906,
0.008331974036991596,
-0.5521048307418823,
-0.16057755053043365,
0.3777150809764862,
-0.5671154856681824,
-0.2988545596599579,
0.11523019522428513,
-1.1475768089294434,
-0.18631382286548615,
-0.3664328157901764,
0.25077131390571594,
-0.1783713400363922,
-0.5005668997764587,
0.022585241124033928,
-0.25254902243614197,
0.3900011479854584,
-0.16800522804260254,
-0.6975332498550415,
0.3326316475868225,
0.589773952960968,
0.8802750110626221,
-0.04824255779385567,
-0.23051726818084717,
-0.10354814678430557,
-0.07934790104627609,
-0.1348617970943451,
0.684817910194397,
-0.29242679476737976,
-0.38776829838752747,
0.31777459383010864,
0.2839374840259552,
-0.0709170326590538,
-0.33529043197631836,
0.8758712410926819,
-0.26316455006599426,
0.4620039761066437,
-0.45825013518333435,
-0.4389648139476776,
-0.07645165920257568,
0.3876653015613556,
-0.7225351929664612,
1.3984800577163696,
0.292517751455307,
-1.028963327407837,
0.505648672580719,
-1.038543939590454,
-0.5934447050094604,
0.20928089320659637,
-0.300436407327652,
-0.3899763524532318,
-0.13178914785385132,
0.18375007808208466,
0.6480289697647095,
-0.30846652388572693,
0.402125746011734,
-0.1514183133840561,
-0.13963682949543,
0.0534161776304245,
0.05076894164085388,
1.225078821182251,
0.11554516851902008,
-0.24357613921165466,
0.2310331016778946,
-1.0370992422103882,
-0.1471133679151535,
0.24101483821868896,
-0.22210785746574402,
-0.37568196654319763,
-0.3474752604961395,
0.506166398525238,
0.43248000741004944,
0.4226760268211365,
-0.6227057576179504,
-0.09568224847316742,
-0.5401850342750549,
0.41285863518714905,
0.6751720905303955,
0.19722291827201843,
0.5003132820129395,
-0.3742741644382477,
0.5220276117324829,
-0.08431711792945862,
0.22406356036663055,
-0.01743318885564804,
-0.4007576107978821,
-0.7084119319915771,
-0.28759661316871643,
0.4942312240600586,
0.6113771796226501,
-0.7957413792610168,
0.8419650197029114,
-0.6684957146644592,
-0.587216854095459,
-0.7375844717025757,
-0.034241076558828354,
0.417950838804245,
0.6107533574104309,
0.3550490438938141,
-0.16682328283786774,
-1.0771801471710205,
-1.0260484218597412,
0.038620226085186005,
-0.07226422429084778,
0.18615828454494476,
0.5741507411003113,
0.9855354428291321,
0.004644398577511311,
0.893822968006134,
-0.5136327743530273,
-0.35128992795944214,
-0.4087267518043518,
0.01695316657423973,
0.7044386267662048,
0.6192312240600586,
0.49286729097366333,
-0.9631449580192566,
-0.673583447933197,
-0.2102220058441162,
-0.7499703168869019,
-0.08971720188856125,
-0.010779283940792084,
-0.07125289738178253,
0.5434471964836121,
0.5125076770782471,
-0.5070551037788391,
0.3537258207798004,
0.530846118927002,
-0.6575291156768799,
0.5891743898391724,
-0.0843551829457283,
0.05554455518722534,
-1.4683603048324585,
0.45125412940979004,
-0.0943809375166893,
0.08915674686431885,
-0.5684446096420288,
-0.322299599647522,
-0.09314832836389542,
0.12942159175872803,
-0.563055157661438,
0.9373778104782104,
-0.42551136016845703,
0.033106233924627304,
0.05864273011684418,
0.05790751427412033,
-0.0159649346023798,
0.4608074426651001,
-0.06407567858695984,
0.6460551619529724,
0.7562958002090454,
-0.5776165127754211,
0.03512699156999588,
0.6309484839439392,
-0.5743685960769653,
0.6980856657028198,
-0.8454015851020813,
0.01984032616019249,
-0.2970534563064575,
0.09349990636110306,
-0.9808139204978943,
-0.3838553726673126,
0.4493626058101654,
-0.853844940662384,
0.13050563633441925,
-0.26235368847846985,
-0.905420184135437,
-0.32644563913345337,
-0.32682231068611145,
-0.020678821951150894,
0.38987496495246887,
-0.1292697787284851,
0.8288901448249817,
0.6599285006523132,
-0.26760831475257874,
-0.6630500555038452,
-0.9808710813522339,
0.22439561784267426,
-0.06750521808862686,
-0.5887409448623657,
0.49811816215515137,
-0.0717594102025032,
-0.2566511631011963,
0.3629244863986969,
0.19578194618225098,
0.04881460219621658,
-0.060360584408044815,
0.40125566720962524,
0.4925921559333801,
-0.09439046680927277,
0.12671104073524475,
0.021918607875704765,
-0.13894489407539368,
-0.06538574397563934,
0.039277445524930954,
0.8651654720306396,
-0.0737588107585907,
-0.16631239652633667,
-0.2647983133792877,
0.3182363212108612,
0.45735862851142883,
-0.16057774424552917,
0.8722212910652161,
0.813696563243866,
-0.4719056189060211,
0.1505328267812729,
-0.6213380694389343,
-0.28721871972084045,
-0.40001046657562256,
0.33550652861595154,
-0.3385702967643738,
-0.8795344829559326,
0.9999172687530518,
0.3942887783050537,
0.1337982565164566,
0.9980087876319885,
0.5549851655960083,
-0.03658108785748482,
0.6909741163253784,
0.4121082127094269,
-0.12730495631694794,
0.47042497992515564,
-0.5097026824951172,
-0.012953773140907288,
-0.8958051204681396,
-0.48348385095596313,
-0.7743686437606812,
-0.3077130913734436,
-0.817468523979187,
-0.28369078040122986,
0.03728821501135826,
-0.1908619999885559,
-0.32744961977005005,
0.48634785413742065,
-0.7122160196304321,
0.3176216781139374,
0.6985762119293213,
-0.30259373784065247,
-0.07072875648736954,
-0.06858428567647934,
-0.3575517237186432,
-0.07122927159070969,
-0.8107885718345642,
-0.5389217734336853,
1.134455680847168,
0.23422057926654816,
0.18223504722118378,
0.0302166398614645,
0.8080329298973083,
0.176004558801651,
0.049802638590335846,
-0.3624042570590973,
0.6913453340530396,
-0.24765363335609436,
-0.9094037413597107,
-0.30713555216789246,
-0.27078473567962646,
-0.9337685704231262,
0.09023696184158325,
-0.540400505065918,
-0.5865897536277771,
0.500594973564148,
-0.1287631392478943,
-0.2130710631608963,
0.15692195296287537,
-0.6547256708145142,
0.9300550222396851,
-0.0450630784034729,
-0.24744072556495667,
0.01590828225016594,
-1.0210129022598267,
-0.10206104069948196,
0.12018273770809174,
0.5940498113632202,
-0.23007138073444366,
-0.12904395163059235,
1.0897177457809448,
-0.18057465553283691,
1.2036550045013428,
-0.3955414891242981,
0.3678061068058014,
0.26981157064437866,
-0.28153613209724426,
0.5381888151168823,
0.04121331125497818,
-0.252897173166275,
0.5929076075553894,
-0.06847959011793137,
-0.2844866216182709,
-0.35079139471054077,
0.718960702419281,
-0.6349767446517944,
-0.13954855501651764,
-0.5857577323913574,
-0.4709157943725586,
0.14875511825084686,
0.5662961006164551,
0.3022931218147278,
0.30892670154571533,
-0.06882507354021072,
0.45423898100852966,
0.406240850687027,
-0.21868164837360382,
0.4525272250175476,
0.5088681578636169,
-0.20203550159931183,
-0.9788122773170471,
0.7576976418495178,
0.41982540488243103,
-0.06855635344982147,
0.3381721079349518,
0.04161684215068817,
-0.5858970880508423,
-0.6882335543632507,
-0.2591457962989807,
0.2547707259654999,
-0.8375944495201111,
-0.16146127879619598,
-0.8876858353614807,
-0.16777974367141724,
-0.7877094745635986,
-0.16640698909759521,
-0.06593813747167587,
-0.5261504650115967,
-0.40738120675086975,
-0.4656149446964264,
0.5110952258110046,
0.40347933769226074,
-0.3189047574996948,
0.16132737696170807,
-0.5392008423805237,
0.10862748324871063,
-0.22761760652065277,
0.4044207036495209,
-0.155065655708313,
-0.49910110235214233,
-0.33092811703681946,
-0.09022027999162674,
0.2367086559534073,
-0.675527036190033,
0.49443677067756653,
-0.0250225979834795,
0.7496052384376526,
-0.16242502629756927,
0.11544331908226013,
0.4152188003063202,
-0.21846336126327515,
1.1200755834579468,
0.08611268550157547,
-0.7524346113204956,
0.5524559020996094,
-0.5473654866218567,
0.5117762684822083,
1.0303175449371338,
0.2373339831829071,
-0.8230381011962891,
-0.16842862963676453,
-1.0026910305023193,
-1.4947761297225952,
0.6614267826080322,
0.16196908056735992,
0.48167499899864197,
-0.3948568105697632,
0.2584642767906189,
0.008311974816024303,
0.23980839550495148,
-0.736365556716919,
-0.6480843424797058,
-0.24015401303768158,
-0.49524766206741333,
-0.021029576659202576,
-0.34301111102104187,
-0.18637995421886444,
-0.39281657338142395,
0.9711103439331055,
-0.01349194161593914,
0.2059231996536255,
0.3000623285770416,
-0.14413245022296906,
0.2796236276626587,
0.27881544828414917,
0.7095297574996948,
0.5423189997673035,
-0.26880428194999695,
0.09992426633834839,
0.2639736533164978,
-0.5564690232276917,
-0.2917887568473816,
0.1460481584072113,
-0.43012383580207825,
0.27264559268951416,
0.4471445083618164,
0.9661632776260376,
0.28157201409339905,
-0.6074657440185547,
0.7209836840629578,
0.06765240430831909,
-0.5857810974121094,
-0.7937242984771729,
-0.2702476680278778,
0.14331574738025665,
0.1433933526277542,
0.48856261372566223,
-0.04046456515789032,
-0.06645163148641586,
-0.1334977000951767,
0.33974096179008484,
0.10256299376487732,
-0.5061367750167847,
-0.31460484862327576,
0.43992483615875244,
0.061920538544654846,
-0.4421696066856384,
0.4783377945423126,
-0.43306609988212585,
-0.41800805926322937,
0.6746647357940674,
0.48020434379577637,
0.9306884407997131,
0.20371189713478088,
0.26520854234695435,
0.8950445652008057,
0.42802250385284424,
-0.07549545168876648,
0.8799541592597961,
0.2177412509918213,
-0.8603070378303528,
-0.5029430985450745,
-0.6745665073394775,
0.015398995019495487,
0.12255385518074036,
-0.7287595272064209,
0.46825850009918213,
-0.48671627044677734,
-0.3084644377231598,
0.06970401108264923,
0.05171304568648338,
-0.8783197402954102,
0.1007876768708229,
-0.10333537310361862,
0.9419751763343811,
-1.0837879180908203,
0.6469196081161499,
0.8550191521644592,
-0.7728511691093445,
-0.7221474647521973,
-0.3038440942764282,
0.1041264608502388,
-0.6568434238433838,
0.6458994746208191,
-0.01720128394663334,
0.39140403270721436,
-0.008292035199701786,
-0.5839990973472595,
-0.9235405325889587,
1.1996545791625977,
0.15529963374137878,
-0.4509248435497284,
0.14928564429283142,
0.08315670490264893,
0.5865646600723267,
-0.5595075488090515,
0.1483355313539505,
0.3359217643737793,
0.7847012877464294,
0.13601888716220856,
-0.7894665002822876,
0.253486692905426,
-0.6117987632751465,
-0.10510653257369995,
0.1756007969379425,
-0.4352502226829529,
0.7460260987281799,
0.0724780261516571,
-0.2134397029876709,
-0.37619584798812866,
0.618305504322052,
0.20103716850280762,
0.2978150546550751,
0.43971753120422363,
0.6914445757865906,
0.7624289989471436,
-0.08421359956264496,
1.0349347591400146,
-0.5498517155647278,
0.3037140667438507,
1.40943443775177,
-0.0681389793753624,
0.9621249437332153,
0.5989579558372498,
-0.09786595404148102,
0.5605911612510681,
0.4862709641456604,
-0.3826294243335724,
0.4688965976238251,
0.1166713610291481,
0.06531666964292526,
0.12763100862503052,
-0.40898072719573975,
-0.307275652885437,
0.4733872413635254,
0.3517859876155853,
-0.557420015335083,
-0.0071679940447211266,
-0.09469887614250183,
0.3917440176010132,
0.23906370997428894,
-0.24845778942108154,
0.8730270266532898,
-0.15049049258232117,
-0.41105416417121887,
0.3422814905643463,
-0.10250429064035416,
0.9706601500511169,
-0.5069316625595093,
0.04269556701183319,
0.0412415973842144,
-0.18429240584373474,
-0.36133676767349243,
-1.023777723312378,
0.6217696666717529,
-0.07272592186927795,
-0.35985755920410156,
-0.16938164830207825,
0.8968048691749573,
-0.4619586169719696,
-0.6968756318092346,
0.0986400693655014,
0.46942272782325745,
0.19434894621372223,
0.2940795421600342,
-0.8517335057258606,
0.17546582221984863,
0.06171397864818573,
-0.19992782175540924,
0.21531300246715546,
0.2640029788017273,
0.013798489235341549,
0.27293941378593445,
0.879888653755188,
0.2730419337749481,
-0.10896778851747513,
0.29391491413116455,
0.8025729060173035,
-0.7682772874832153,
-0.5227442979812622,
-0.9332864880561829,
0.8734538555145264,
-0.6138362288475037,
-0.6764608025550842,
0.838594377040863,
0.9332822561264038,
1.052168607711792,
-0.042339589446783066,
0.9432803988456726,
-0.5876614451408386,
0.7684873342514038,
-0.3053237497806549,
0.9131234288215637,
-0.40077245235443115,
-0.0264700036495924,
-0.22427703440189362,
-0.7942342162132263,
-0.6307744979858398,
0.6422778367996216,
-0.3970029652118683,
-0.02774430438876152,
0.5826754570007324,
0.9960999488830566,
0.20333226025104523,
-0.08523458242416382,
0.05673554912209511,
0.48468145728111267,
0.05946937948465347,
0.060989655554294586,
0.31612083315849304,
-0.44845452904701233,
0.3850579559803009,
-0.40605804324150085,
0.06655558198690414,
-0.10888990014791489,
-1.0906533002853394,
-0.8856058120727539,
-1.0180513858795166,
-0.45590558648109436,
-0.5752439498901367,
0.03171524032950401,
1.20972740650177,
0.5049392580986023,
-0.9627946019172668,
-0.19592830538749695,
0.03417588025331497,
0.1386023908853531,
-0.1969020664691925,
-0.27650079131126404,
0.7436484098434448,
-0.11601149290800095,
-0.5942065715789795,
-0.002323700813576579,
0.07130542397499084,
0.002488057129085064,
-0.14478324353694916,
-0.09160741418600082,
-0.5211491584777832,
-0.09745380282402039,
0.47467711567878723,
0.21763278543949127,
-0.5946125388145447,
-0.1921968013048172,
0.16470591723918915,
-0.10609544068574905,
0.14407090842723846,
0.3257303833961487,
-0.3650757968425751,
0.3616352677345276,
0.879045844078064,
0.39054375886917114,
0.5462875962257385,
-0.3658907413482666,
0.16176345944404602,
-0.8720607757568359,
0.26167601346969604,
0.497567355632782,
0.3591901659965515,
0.5101127028465271,
-0.4166550040245056,
0.6827899813652039,
0.16993899643421173,
-0.4411419630050659,
-1.0526114702224731,
-0.17010077834129333,
-1.1395177841186523,
-0.111973837018013,
1.4380733966827393,
0.1023477092385292,
-0.46949005126953125,
-0.4219610095024109,
-0.19640859961509705,
0.27109822630882263,
-0.6875895261764526,
0.49688035249710083,
0.9702445268630981,
0.27260223031044006,
-0.053291965276002884,
-0.7360228300094604,
0.4544592499732971,
0.13265101611614227,
-0.7622831463813782,
-0.019006570801138878,
0.3509288728237152,
0.34986624121665955,
0.28480347990989685,
0.8784443140029907,
-0.49722400307655334,
0.030757848173379898,
0.0461747832596302,
0.6290972828865051,
-0.16432255506515503,
-0.0309046171605587,
-0.4750908315181732,
0.1299593597650528,
-0.16144785284996033,
-0.17003442347049713
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
tep_en_fa_para | null | 2022-11-03T16:08:03Z | 293 | 1 | null | [
"task_categories:translation",
"annotations_creators:found",
"language_creators:found",
"multilinguality:translation",
"size_categories:100K<n<1M",
"source_datasets:original",
"language:en",
"language:fa",
"license:unknown",
"region:us"
] | 2022-11-03T16:08:03Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
annotations_creators:
- found
language_creators:
- found
language:
- en
- fa
license:
- unknown
multilinguality:
- translation
size_categories:
- 100K<n<1M
source_datasets:
- original
task_categories:
- translation
task_ids: []
paperswithcode_id: null
pretty_name: TepEnFaPara
dataset_info:
features:
- name: translation
dtype:
translation:
languages:
- en
- fa
config_name: en-fa
splits:
- name: train
num_bytes: 58735557
num_examples: 612087
download_size: 16353318
dataset_size: 58735557
---
# Dataset Card for [tep_en_fa_para]
## 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:**[TEP: Tehran English-Persian parallel corpus](http://opus.nlpl.eu/TEP.php)
- **Repository:**
- **Paper:**
- **Leaderboard:**
- **Point of Contact:**
### Dataset Summary
TEP: Tehran English-Persian parallel corpus. The first free Eng-Per corpus, provided by the Natural Language and Text Processing Laboratory, University of Tehran.
### Supported Tasks and Leaderboards
The underlying task is machine translation for language pair English-Persian
### Languages
English, Persian
## 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
M. T. Pilevar, H. Faili, and A. H. Pilevar, “TEP: Tehran English-Persian Parallel Corpus”, in proceedings of 12th International Conference on Intelligent Text Processing and Computational Linguistics (CICLing-2011).
### Contributions
Thanks to [@spatil6](https://github.com/spatil6) for adding this dataset. | [
-0.47659486532211304,
-0.5601620078086853,
0.33081290125846863,
0.25166380405426025,
-0.34130823612213135,
0.2759629189968109,
-0.6361321210861206,
-0.24372859299182892,
0.5117295980453491,
0.4101592004299164,
-0.7205474972724915,
-1.1242467164993286,
-0.6627653241157532,
0.3539826273918152,
-0.28380945324897766,
1.0888478755950928,
-0.15486496686935425,
-0.03625715151429176,
-0.10844666510820389,
-0.2693398594856262,
-0.3718220889568329,
-0.432568222284317,
-0.6160205602645874,
0.012373063713312149,
0.408509761095047,
0.9841700792312622,
0.7818636298179626,
0.7772822380065918,
0.5553932785987854,
0.3039543032646179,
0.09077458828687668,
0.0440756157040596,
-0.5469603538513184,
-0.12619388103485107,
-0.3316999673843384,
-0.11229182034730911,
-0.6939066648483276,
-0.08985728770494461,
0.9878146648406982,
0.5582941174507141,
-0.014422571286559105,
0.6763333678245544,
0.16825124621391296,
0.8996632099151611,
-0.4233136773109436,
0.4168572723865509,
-0.2865998148918152,
-0.08166834712028503,
-0.9459921717643738,
-0.005023397505283356,
-0.14955738186836243,
-0.4327158033847809,
-0.3915931284427643,
-0.6580906510353088,
0.12139023095369339,
0.09379835426807404,
0.9474272727966309,
0.06108224764466286,
-0.27600857615470886,
0.08711796998977661,
-0.7481134533882141,
0.9716912508010864,
-0.6633108258247375,
0.17041771113872528,
0.6254711747169495,
0.429608017206192,
-0.023598430678248405,
-0.7943886518478394,
-0.7251375913619995,
0.30298030376434326,
-0.2205490618944168,
0.24143654108047485,
-0.027914762496948242,
-0.3558539152145386,
0.45421454310417175,
0.5542943477630615,
-0.5904170274734497,
-0.26820310950279236,
-0.6789233088493347,
-0.013186016120016575,
0.8891564011573792,
0.34195464849472046,
0.43269962072372437,
-0.1807013899087906,
-0.27259621024131775,
-0.41118934750556946,
-0.41786321997642517,
0.032301291823387146,
0.34804999828338623,
0.3753405213356018,
-0.7854636907577515,
0.6891505718231201,
-0.487108051776886,
0.356668621301651,
-0.002151703927665949,
0.06921638548374176,
0.8378956317901611,
-0.7456742525100708,
0.015919066965579987,
-0.019916633144021034,
1.0513304471969604,
0.4485461413860321,
0.14541314542293549,
0.14498743414878845,
0.006574761122465134,
-0.03449498116970062,
0.03952532261610031,
-0.6074581742286682,
-0.021797578781843185,
0.544428288936615,
-0.5877683162689209,
-0.3159751892089844,
0.3021898865699768,
-1.0550847053527832,
-0.11395187675952911,
-0.22106218338012695,
-0.06512770056724548,
-0.3904256820678711,
-0.4381696283817291,
0.024390069767832756,
-0.06570590287446976,
0.38445112109184265,
0.041321564465761185,
-0.5930358171463013,
0.6718578934669495,
0.4548689126968384,
0.788270115852356,
-0.31361088156700134,
-0.27290210127830505,
-0.09532875567674637,
0.48310497403144836,
-0.07629454135894775,
0.7485285997390747,
-0.34116095304489136,
-0.5106757879257202,
-0.104152150452137,
0.31001195311546326,
-0.1601962298154831,
-0.1684471219778061,
1.2212387323379517,
-0.16688932478427887,
0.49973586201667786,
-0.5514199137687683,
-0.4132366478443146,
-0.20236462354660034,
0.14967131614685059,
-0.8676086664199829,
1.3304153680801392,
0.15770094096660614,
-1.0689975023269653,
0.050438836216926575,
-1.0247762203216553,
-0.38927027583122253,
0.24953947961330414,
-0.3079267144203186,
-0.5961176156997681,
-0.27080461382865906,
0.2345970869064331,
0.5131197571754456,
-0.7210223078727722,
0.30048131942749023,
-0.09001695364713669,
-0.12966148555278778,
0.04789068177342415,
-0.06421162188053131,
1.083432912826538,
0.40414413809776306,
-0.36856505274772644,
0.2900809943675995,
-0.8593164086341858,
0.03607582300901413,
0.42681074142456055,
-0.08833787590265274,
-0.22352787852287292,
0.12068667262792587,
0.504209578037262,
0.29737237095832825,
0.4706704020500183,
-0.6163856387138367,
-0.06691304594278336,
-0.2515712380409241,
0.1190742701292038,
0.5800273418426514,
0.1612049788236618,
0.2848062515258789,
-0.5986354947090149,
0.514379620552063,
0.0725676640868187,
0.29399847984313965,
0.2892707288265228,
-0.5997251272201538,
-0.6495002508163452,
-0.20120254158973694,
0.2500848174095154,
0.8078192472457886,
-0.8087375164031982,
0.5889800190925598,
-0.6063322424888611,
-0.8421018719673157,
-0.2726272642612457,
0.030221691355109215,
0.5792170763015747,
0.43877869844436646,
0.5350391864776611,
-0.3688003420829773,
-0.6175695061683655,
-1.0925524234771729,
-0.24466535449028015,
0.015328836627304554,
0.21181893348693848,
0.2832247018814087,
0.6798945069313049,
0.009199889376759529,
0.5403618812561035,
-0.5124967694282532,
-0.3745623528957367,
-0.5972462892532349,
-0.1299159824848175,
0.5398065447807312,
0.7682620286941528,
0.5634868144989014,
-0.9339902400970459,
-0.8725091218948364,
-0.05008111894130707,
-0.7386360168457031,
-0.22677119076251984,
-0.09751280397176743,
-0.47538870573043823,
0.10783396661281586,
0.2838021218776703,
-0.3814489543437958,
0.5615498423576355,
0.5656059384346008,
-0.7142659425735474,
0.5497992634773254,
0.11718825995922089,
0.4090266227722168,
-1.560905933380127,
0.26609110832214355,
0.09502079337835312,
-0.11238298565149307,
-0.7295348048210144,
-0.11305650323629379,
0.08843988925218582,
0.20510172843933105,
-0.48710596561431885,
0.6267017126083374,
-0.4360530376434326,
0.24623243510723114,
0.13280417025089264,
-0.06499437242746353,
-0.09366708248853683,
0.5708677768707275,
-0.08492566645145416,
0.9279956817626953,
0.5760665535926819,
-0.449715793132782,
0.27551352977752686,
0.5897250175476074,
-0.3490689694881439,
0.5032734870910645,
-0.8213226199150085,
-0.013084682635962963,
-0.0690683126449585,
0.11041243374347687,
-0.8168153166770935,
-0.5018096566200256,
0.6241847276687622,
-0.6266745328903198,
0.15452805161476135,
0.12691889703273773,
-0.8850119709968567,
-0.3522379398345947,
-0.6514822840690613,
0.518275797367096,
0.4547768831253052,
-0.07356211543083191,
0.3794145882129669,
0.6095331311225891,
-0.1588609367609024,
-0.3484722077846527,
-0.6048660278320312,
0.009055917151272297,
-0.2870228886604309,
-0.5774819850921631,
0.635107696056366,
-0.09505078196525574,
-0.2203439325094223,
0.06356819719076157,
0.23469838500022888,
-0.052697740495204926,
-0.02174135483801365,
0.3271692395210266,
0.20226649940013885,
-0.1246776133775711,
-0.08541811257600784,
0.10946972668170929,
-0.1169106513261795,
-0.076433926820755,
-0.06882275640964508,
0.6039969325065613,
-0.12927664816379547,
-0.24035073816776276,
-0.6091190576553345,
0.6684838533401489,
0.39288124442100525,
-0.28538236021995544,
1.0737957954406738,
0.894244909286499,
-0.45638301968574524,
0.13849321007728577,
-0.5653243660926819,
0.04132203385233879,
-0.44498544931411743,
0.28570377826690674,
-0.2827220559120178,
-0.5051950812339783,
0.7899909019470215,
0.13072699308395386,
0.15585847198963165,
1.028223991394043,
0.8148810863494873,
0.13738228380680084,
0.7079590559005737,
0.5124107003211975,
-0.22193700075149536,
0.4449607729911804,
-0.29026365280151367,
-0.19857019186019897,
-0.817243218421936,
-0.3428637683391571,
-0.7929214835166931,
-0.43207940459251404,
-0.8103814125061035,
-0.6190873384475708,
0.2686016261577606,
-0.028871526941657066,
-0.40014100074768066,
0.5056750178337097,
-0.45489081740379333,
0.5114326477050781,
0.8695515990257263,
0.16452722251415253,
0.14260795712471008,
0.13804762065410614,
-0.18364660441875458,
-0.10395099967718124,
-0.5547160506248474,
-0.709196925163269,
1.2746769189834595,
0.28247570991516113,
0.1849338859319687,
0.31123673915863037,
0.7937968969345093,
0.36616483330726624,
-0.07689869403839111,
-0.13291975855827332,
0.6710875630378723,
-0.3127998113632202,
-0.6388704776763916,
-0.4537130296230316,
-0.21567383408546448,
-0.8942781090736389,
-0.1623438447713852,
-0.38459569215774536,
-0.657798707485199,
0.4193291962146759,
-0.013411905616521835,
-0.25543496012687683,
0.3732340633869171,
-0.6192527413368225,
1.050751805305481,
-0.07834754884243011,
-0.5458787679672241,
-0.3018367290496826,
-0.8568495512008667,
0.18505045771598816,
-0.022825686261057854,
0.5749784708023071,
-0.25837743282318115,
-0.07294422388076782,
1.1060181856155396,
-0.5132846236228943,
0.8483521938323975,
-0.07989954203367233,
0.39510583877563477,
0.2971551716327667,
-0.2881432771682739,
0.5000899434089661,
0.004477521870285273,
-0.16033345460891724,
0.4532085359096527,
0.03442392125725746,
-0.7295637130737305,
-0.17437726259231567,
0.7463311553001404,
-0.9564343094825745,
-0.4946473240852356,
-0.6205779910087585,
-0.5162164568901062,
-0.0959530919790268,
0.3569835126399994,
0.19350279867649078,
0.22571559250354767,
-0.22079555690288544,
0.3460358679294586,
0.44762635231018066,
-0.4031852185726166,
0.2690962255001068,
0.21749456226825714,
-0.0363498218357563,
-0.6948453187942505,
0.8129076361656189,
0.1445576697587967,
0.13337428867816925,
0.2619231343269348,
0.07937350124120712,
-0.16194628179073334,
-0.4190393090248108,
-0.5267501473426819,
0.38321274518966675,
-0.4230614900588989,
-0.13805709779262543,
-0.45801132917404175,
-0.2917656898498535,
-0.6779334545135498,
0.0410824753344059,
-0.2193213254213333,
-0.8903934359550476,
-0.25322654843330383,
-0.243503600358963,
0.6794440746307373,
0.5593156814575195,
-0.2943730056285858,
0.23198530077934265,
-0.9034814834594727,
0.3968043625354767,
-0.2817715108394623,
0.4446455240249634,
-0.15208518505096436,
-0.37332701683044434,
-0.7010432481765747,
-0.011314286850392818,
-0.34384846687316895,
-1.1468900442123413,
0.5141417384147644,
0.217463880777359,
0.6620920896530151,
0.0624551959335804,
0.2776872217655182,
0.42006954550743103,
-0.48090288043022156,
1.039100170135498,
-0.015403205528855324,
-0.6546539068222046,
0.648501992225647,
-0.7423312664031982,
0.4882674217224121,
0.8585828542709351,
0.5206189751625061,
-0.6243419051170349,
-0.36342546343803406,
-0.8431447148323059,
-1.1989563703536987,
0.9835092425346375,
0.5719046592712402,
0.061684515327215195,
-0.15744295716285706,
0.14363670349121094,
-0.07913710176944733,
0.09833814948797226,
-0.7529609203338623,
-0.9294499158859253,
-0.12437910586595535,
-0.5335038304328918,
-0.01475441176444292,
-0.4228745102882385,
-0.18455122411251068,
-0.45954281091690063,
0.9844982028007507,
0.3788302540779114,
0.2641901671886444,
0.17051391303539276,
0.12534721195697784,
-0.15112809836864471,
0.40990933775901794,
0.5275037288665771,
0.36359044909477234,
-0.2498743236064911,
-0.10291877388954163,
0.1699584722518921,
-0.7846817374229431,
-0.16293925046920776,
0.1750379055738449,
-0.30411863327026367,
0.019679691642522812,
0.17145425081253052,
0.6610186696052551,
-0.01692892052233219,
-0.4300200045108795,
0.4927442669868469,
0.026179518550634384,
-0.28588125109672546,
-0.817868709564209,
-0.19538062810897827,
0.028607048094272614,
0.24807974696159363,
0.3445950150489807,
-0.10885351151227951,
0.22318969666957855,
-0.2743668258190155,
0.21433399617671967,
0.023456022143363953,
-0.18321113288402557,
-0.3950349986553192,
0.8100143074989319,
0.1396550089120865,
-0.1800926923751831,
0.35103219747543335,
-0.18557411432266235,
-0.4547698497772217,
0.6969512701034546,
0.28193342685699463,
1.0599473714828491,
-0.1994815170764923,
0.3189242482185364,
0.887582540512085,
0.32305461168289185,
-0.17327503859996796,
0.7851983308792114,
-0.07661379128694534,
-0.6825509071350098,
-0.3415839374065399,
-0.5680553317070007,
-0.23322878777980804,
-0.022703461349010468,
-0.9129401445388794,
0.5128946304321289,
-0.49338144063949585,
-0.2704841196537018,
-0.08442377299070358,
0.17076613008975983,
-0.7980431914329529,
0.0687951073050499,
0.15081457793712616,
0.8881076574325562,
-0.949999988079071,
1.0874360799789429,
0.905391275882721,
-0.7737431526184082,
-0.8285351991653442,
-0.1797991544008255,
0.22460360825061798,
-0.5182636380195618,
0.4777472913265228,
-0.16386999189853668,
0.2249787300825119,
-0.0053255571983754635,
-0.5701819062232971,
-1.1007739305496216,
1.2594465017318726,
-0.014093457721173763,
-0.46968263387680054,
0.2158307433128357,
0.5384947657585144,
0.5319979786872864,
-0.3073831796646118,
0.17397895455360413,
0.5189712643623352,
0.7121938467025757,
-0.08139048516750336,
-0.9119408130645752,
0.3933499753475189,
-0.7243030667304993,
0.02914588339626789,
0.10375860333442688,
-0.8022534847259521,
0.9338449239730835,
0.18482555449008942,
-0.4223819375038147,
-0.0338074266910553,
0.7173468470573425,
0.2887241840362549,
0.29415836930274963,
0.3371731638908386,
0.687529444694519,
0.4419471025466919,
-0.1643652468919754,
1.1624711751937866,
-0.5836365818977356,
0.2532033920288086,
1.318397045135498,
0.05387036129832268,
0.9135340452194214,
0.4580097794532776,
-0.4427291452884674,
0.7112217545509338,
0.48711323738098145,
-0.07785343378782272,
0.4224320352077484,
0.0235820971429348,
-0.13785365223884583,
-0.13228842616081238,
-0.36144670844078064,
-0.6337417960166931,
0.22931616008281708,
0.5626450777053833,
-0.478518009185791,
-0.09261307865381241,
-0.24048741161823273,
0.17219822108745575,
0.4428284764289856,
-0.28287822008132935,
0.7212213277816772,
-0.1348111629486084,
-0.2983478009700775,
0.3766253590583801,
0.2108898013830185,
0.44383227825164795,
-0.45368823409080505,
-0.03852875158190727,
-0.12984883785247803,
0.029381664469838142,
-0.4114147126674652,
-0.9496902823448181,
0.6402089595794678,
0.11955355107784271,
-0.5365186929702759,
-0.38342350721359253,
0.5549203753471375,
-0.45670798420906067,
-0.937846839427948,
0.10987728089094162,
0.6523054838180542,
0.2979196310043335,
0.16598249971866608,
-0.9140978455543518,
0.1375381201505661,
0.17746742069721222,
-0.4042581021785736,
0.20498591661453247,
0.5288487076759338,
-0.4045225977897644,
0.1537284553050995,
0.6115222573280334,
0.27742457389831543,
-0.013267558999359608,
0.21173936128616333,
0.9322252869606018,
-0.9130322933197021,
-0.29093557596206665,
-0.7509042620658875,
0.7426105737686157,
-0.5273177027702332,
-0.2907177805900574,
1.075325608253479,
0.8615123629570007,
1.088842749595642,
-0.060755323618650436,
0.8759143948554993,
-0.4244990944862366,
1.1307995319366455,
-0.2793574035167694,
0.8607213497161865,
-0.5158539414405823,
0.21449212729930878,
-0.48328012228012085,
-0.7434567213058472,
-0.46976447105407715,
0.4696737825870514,
-0.41456231474876404,
-0.07754795998334885,
0.7270069122314453,
0.7606730461120605,
0.08235678821802139,
0.060696665197610855,
0.12896789610385895,
0.4718838930130005,
-0.10265038162469864,
0.6079807877540588,
0.30701744556427,
-0.692778468132019,
0.43158847093582153,
-0.5686467885971069,
-0.16551901400089264,
0.18664182722568512,
-0.7055891752243042,
-0.8186746835708618,
-0.9083997011184692,
-0.5293476581573486,
-0.4377843141555786,
0.07253199070692062,
1.2107460498809814,
0.2230062186717987,
-1.3099383115768433,
-0.608356773853302,
0.09913917630910873,
0.1689661741256714,
-0.2700837254524231,
-0.2352948635816574,
0.6337096095085144,
0.012293660081923008,
-0.8867715001106262,
-0.0705508440732956,
-0.011116672307252884,
-0.08237424492835999,
0.11089985817670822,
-0.11244843900203705,
-0.5311514735221863,
-0.20361514389514923,
0.33159226179122925,
0.49938908219337463,
-0.5452086925506592,
-0.057806771248579025,
-0.05934106186032295,
-0.12210702896118164,
0.05474834144115448,
0.2940180003643036,
-0.522864043712616,
0.11597063392400742,
0.6178463697433472,
0.31449997425079346,
0.37030234932899475,
0.026420408859848976,
0.5268629193305969,
-0.7079057693481445,
0.2516215443611145,
0.050614774227142334,
0.36973053216934204,
0.2873903214931488,
-0.46846291422843933,
0.7297674417495728,
0.2668204605579376,
-0.43142038583755493,
-0.608822226524353,
-0.04924015328288078,
-1.22498619556427,
-0.02462853118777275,
1.384922742843628,
-0.010983562096953392,
-0.40160152316093445,
-0.3123153746128082,
-0.27755895256996155,
0.44539910554885864,
-0.7354658842086792,
0.5040380954742432,
0.7771757245063782,
0.2564382255077362,
-0.031372103840112686,
-0.6910955309867859,
0.6293439865112305,
0.20426642894744873,
-0.9086106419563293,
-0.12714222073554993,
0.5163587927818298,
0.054461512714624405,
0.10770677775144577,
0.8209801912307739,
-0.5234256982803345,
0.20929650962352753,
-0.16506262123584747,
0.34248021245002747,
-0.029522567987442017,
-0.05310387909412384,
-0.03477069362998009,
0.010501439683139324,
-0.07520785182714462,
-0.28064289689064026
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
wiki_source | null | 2022-11-03T16:07:54Z | 293 | 0 | null | [
"task_categories:translation",
"annotations_creators:found",
"language_creators:found",
"multilinguality:multilingual",
"size_categories:10K<n<100K",
"source_datasets:original",
"language:en",
"language:sv",
"license:unknown",
"region:us"
] | 2022-11-03T16:07:54Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
annotations_creators:
- found
language_creators:
- found
language:
- en
- sv
license:
- unknown
multilinguality:
- multilingual
size_categories:
- 10K<n<100K
source_datasets:
- original
task_categories:
- translation
task_ids: []
paperswithcode_id: null
pretty_name: WikiSource
dataset_info:
features:
- name: id
dtype: string
- name: translation
dtype:
translation:
languages:
- en
- sv
config_name: en-sv
splits:
- name: train
num_bytes: 8153542
num_examples: 33283
download_size: 2375052
dataset_size: 8153542
---
# Dataset Card for WikiSource
## 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:** http://opus.nlpl.eu/WikiSource.php
- **Repository:** None
- **Paper:** http://www.lrec-conf.org/proceedings/lrec2012/pdf/463_Paper.pdf
- **Leaderboard:** [More Information Needed]
- **Point of Contact:** [More Information Needed]
### Dataset Summary
[More Information Needed]
### 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
[More Information Needed]
#### Initial Data Collection and Normalization
[More Information Needed]
#### Who are the source language producers?
[More Information Needed]
### Annotations
[More Information Needed]
#### 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
Thanks to [@abhishekkrthakur](https://github.com/abhishekkrthakur) for adding this dataset. | [
-0.6250826716423035,
-0.299214631319046,
0.083138607442379,
0.07067721337080002,
-0.30069616436958313,
0.10831073671579361,
-0.44771042466163635,
-0.45246264338493347,
0.6556424498558044,
0.6025264263153076,
-0.9838972091674805,
-1.0056259632110596,
-0.675945520401001,
0.36407583951950073,
-0.3316989243030548,
1.2912635803222656,
-0.11744682490825653,
-0.16156181693077087,
-0.21302291750907898,
-0.2885036766529083,
-0.453969806432724,
-0.21093808114528656,
-0.40518301725387573,
-0.21388719975948334,
0.7577313184738159,
1.0163975954055786,
0.7186710238456726,
0.7804315090179443,
0.5807274580001831,
0.26832252740859985,
0.08990423381328583,
0.2634248435497284,
-0.6616230010986328,
-0.14617182314395905,
-0.35359418392181396,
-0.13730770349502563,
-0.7228738069534302,
0.1611330360174179,
0.4810292720794678,
0.7531340718269348,
-0.035411566495895386,
0.7883324027061462,
0.14186574518680573,
0.6629706025123596,
-0.6799298524856567,
0.6260756850242615,
-0.35009244084358215,
0.008603540249168873,
-0.660866379737854,
-0.10611715912818909,
-0.14153829216957092,
-0.29431086778640747,
-0.3033435642719269,
-0.9852848649024963,
0.14174188673496246,
-0.04622970148921013,
0.8234996795654297,
-0.13440236449241638,
-0.15132158994674683,
-0.281572163105011,
-0.5660079121589661,
0.6631893515586853,
-0.7086721658706665,
0.09740505367517471,
0.8346923589706421,
0.24477215111255646,
0.0310133658349514,
-1.053627610206604,
-0.6501602530479431,
0.238428995013237,
-0.11500762403011322,
0.2965072691440582,
-0.15181869268417358,
-0.23343980312347412,
0.7402223944664001,
0.44052818417549133,
-0.40645352005958557,
-0.15265700221061707,
-0.855822741985321,
-0.2268572598695755,
0.9976118206977844,
0.40907514095306396,
0.22370654344558716,
-0.41229042410850525,
0.10018853843212128,
-0.18431872129440308,
-0.33957576751708984,
-0.13829201459884644,
0.48784342408180237,
0.47498437762260437,
-0.7202805280685425,
0.8143556714057922,
-0.35643869638442993,
0.6016864776611328,
-0.07315600663423538,
-0.21564632654190063,
0.6851983070373535,
-0.5412474274635315,
0.21334229409694672,
0.08093371242284775,
0.7755181789398193,
0.6475229859352112,
0.13215085864067078,
-0.00626170402392745,
0.04178411886096001,
-0.29541364312171936,
0.14279179275035858,
-0.7149229645729065,
-0.2794021964073181,
0.524719774723053,
-0.7670612335205078,
-0.42943087220191956,
0.38980817794799805,
-1.0708712339401245,
-0.2983001470565796,
-0.41158950328826904,
0.04334127530455589,
-0.057091109454631805,
-0.4531390368938446,
-0.414791464805603,
-0.2883363962173462,
0.2827591001987457,
0.003927604760974646,
-0.8322292566299438,
0.527687668800354,
0.5337480902671814,
0.7467779517173767,
-0.20431101322174072,
-0.4042526185512543,
-0.11726370453834534,
0.5518090128898621,
-0.23873673379421234,
0.6538528203964233,
-0.2104751467704773,
-0.6333498358726501,
0.1663631796836853,
0.3453455865383148,
0.22575335204601288,
-0.11339225620031357,
0.972445011138916,
-0.16205433011054993,
0.260165810585022,
-0.8519114851951599,
-0.6105048656463623,
0.10006074607372284,
0.22650058567523956,
-1.2197118997573853,
1.2128725051879883,
0.1386389285326004,
-1.21528160572052,
0.44732657074928284,
-1.1702513694763184,
-0.4031964838504791,
0.32209697365760803,
-0.23109503090381622,
-0.4337936043739319,
-0.2177172601222992,
-0.15425559878349304,
0.42510607838630676,
-0.3885214924812317,
0.022899039089679718,
-0.4332141578197479,
-0.23288235068321228,
0.116942398250103,
-0.08365448564291,
1.2359387874603271,
0.5359468460083008,
-0.25135982036590576,
-0.021938754245638847,
-1.0449780225753784,
0.10076122730970383,
0.34680476784706116,
-0.21596170961856842,
-0.12280268967151642,
-0.14387598633766174,
0.6655078530311584,
0.07377667725086212,
0.5379979610443115,
-0.3472117781639099,
0.17397856712341309,
0.014745748601853848,
0.24584262073040009,
0.673969566822052,
0.14939911663532257,
0.33258524537086487,
-0.33551838994026184,
0.3798089921474457,
-0.026766391471028328,
0.6173572540283203,
0.3194725513458252,
-0.6683840155601501,
-0.6968743801116943,
-0.08147544413805008,
0.2996387779712677,
0.6589637994766235,
-0.576100766658783,
0.8952756524085999,
-0.5670243501663208,
-0.8436512351036072,
-0.41380205750465393,
0.1883399486541748,
0.10912451148033142,
0.6083497405052185,
0.35629794001579285,
-0.3446199595928192,
-0.7497029304504395,
-0.940396785736084,
0.003609677078202367,
-0.11735151708126068,
0.2118736058473587,
0.37046632170677185,
0.9489575624465942,
-0.050361134111881256,
0.8851307034492493,
-0.7434981465339661,
-0.16887280344963074,
-0.5024041533470154,
0.046170078217983246,
0.49768495559692383,
0.40404438972473145,
0.4427216053009033,
-1.058398723602295,
-0.5883609652519226,
-0.2401043176651001,
-0.7174587249755859,
-0.3333590030670166,
0.2637789845466614,
-0.34909895062446594,
0.13128569722175598,
0.15277749300003052,
-0.5485213398933411,
0.6620171666145325,
0.4311921298503876,
-0.7100486755371094,
0.5038416385650635,
-0.029366176575422287,
0.2542073726654053,
-1.5217419862747192,
0.5054133534431458,
-0.2446085512638092,
0.21357689797878265,
-0.5968337059020996,
-0.15814025700092316,
0.11770543456077576,
-0.1316690593957901,
-0.2524908483028412,
0.6032508611679077,
-0.3414248824119568,
0.05620913952589035,
-0.009540755301713943,
0.048148754984140396,
0.11461149901151657,
0.25813838839530945,
-0.11173763871192932,
0.623448371887207,
0.47358253598213196,
-0.45183059573173523,
0.6388160586357117,
0.49712321162223816,
-0.2875588834285736,
0.8475078344345093,
-0.6206387281417847,
-0.03542913869023323,
-0.24083299934864044,
0.22973313927650452,
-0.7424569725990295,
-0.523776113986969,
0.6041203141212463,
-0.5612665414810181,
0.3754774332046509,
-0.07151957601308823,
-0.7303611636161804,
-0.48741796612739563,
-0.5309315919876099,
0.10633862763643265,
0.25138553977012634,
-0.2015639990568161,
0.415646493434906,
0.6253330707550049,
0.07347188889980316,
-0.676076352596283,
-0.8553597927093506,
0.18518202006816864,
-0.2050008624792099,
-0.45043015480041504,
0.6651743054389954,
-0.388828843832016,
-0.1860099732875824,
0.23916016519069672,
0.32125014066696167,
-0.1686861664056778,
0.03957267850637436,
0.3528825044631958,
0.21487650275230408,
0.1366506814956665,
0.06694062054157257,
-0.24697622656822205,
-0.1641881912946701,
-0.11129546910524368,
-0.0065222387202084064,
0.3585987091064453,
0.31964632868766785,
-0.31609949469566345,
-0.31534701585769653,
0.6533458828926086,
0.36010032892227173,
-0.2554754316806793,
0.8227081894874573,
1.0802764892578125,
-0.5898139476776123,
0.10657186061143875,
-0.5981499552726746,
-0.005886611994355917,
-0.39785391092300415,
0.2642904818058014,
-0.14916273951530457,
-0.3937183916568756,
0.9997056126594543,
0.29332873225212097,
0.3318726718425751,
0.9466254711151123,
0.5954855680465698,
-0.03054831176996231,
0.6904012560844421,
0.43094736337661743,
-0.47031891345977783,
0.5918644666671753,
-0.624068021774292,
0.027191556990146637,
-0.6620341539382935,
-0.5460588335990906,
-0.8594266772270203,
-0.4275399148464203,
-1.0814855098724365,
-0.23892639577388763,
-0.0041030473075807095,
0.016596926376223564,
-0.28539490699768066,
0.3922460377216339,
-0.5591443181037903,
0.41709989309310913,
0.7233400940895081,
0.1033586710691452,
0.12008189409971237,
0.10574941337108612,
-0.0010164853883907199,
-0.041543133556842804,
-0.6274323463439941,
-0.4660964906215668,
1.2811359167099,
0.2436835914850235,
0.4811193346977234,
0.1071271076798439,
0.9698660969734192,
0.4489932358264923,
0.2743188440799713,
-0.38588035106658936,
0.5189951062202454,
-0.28050026297569275,
-1.0282355546951294,
-0.5356507897377014,
-0.3180990517139435,
-0.8445204496383667,
-0.3434554934501648,
-0.4576292932033539,
-0.5975922346115112,
0.5151072144508362,
0.036028891801834106,
0.04686134308576584,
0.37439388036727905,
-0.5414769649505615,
0.9366830587387085,
-0.047033827751874924,
-0.5073612332344055,
-0.18769487738609314,
-0.6635382771492004,
-0.014753255993127823,
0.137594074010849,
0.6863387227058411,
-0.20486393570899963,
-0.21674023568630219,
1.2299103736877441,
-0.7066859602928162,
0.9906871914863586,
-0.3597795069217682,
0.20928317308425903,
0.4095582067966461,
-0.5449317097663879,
0.5113672018051147,
0.07227835804224014,
-0.1931702047586441,
0.23721042275428772,
-0.07201165705919266,
-0.5339943766593933,
-0.3586084842681885,
0.814479649066925,
-0.915762186050415,
-0.053556401282548904,
-0.39640602469444275,
-0.4088383615016937,
-0.05023900792002678,
0.49626532196998596,
0.5103806853294373,
0.30019405484199524,
-0.1698189228773117,
0.32805541157722473,
0.6019917130470276,
-0.06858228892087936,
0.24516624212265015,
0.34591910243034363,
0.07051124423742294,
-0.908783495426178,
0.7842712998390198,
0.7332866787910461,
-0.08280664682388306,
0.2521533668041229,
0.020741747692227364,
-0.3800293207168579,
-0.3306279182434082,
-0.22369952499866486,
0.11605042219161987,
-0.9065695405006409,
-0.32730165123939514,
-0.3107171952724457,
-0.3169105350971222,
-0.6181531548500061,
0.010801044292747974,
-0.039041101932525635,
-0.6708081960678101,
-0.46260619163513184,
-0.4684067666530609,
0.9078053832054138,
0.5746645927429199,
-0.6629733443260193,
0.060028910636901855,
-0.5854048132896423,
0.4127117097377777,
0.12338598072528839,
0.7479344606399536,
0.029082417488098145,
-0.2011849582195282,
-0.5374573469161987,
0.00656947772949934,
-0.2880728542804718,
-1.0210994482040405,
-0.01393028162419796,
0.10140996426343918,
0.9039389491081238,
0.24054338037967682,
0.26837432384490967,
0.5860416293144226,
-0.2574707865715027,
1.088017463684082,
0.2422906756401062,
-0.5192583799362183,
0.6563608646392822,
-0.383612722158432,
0.31354740262031555,
0.9704774022102356,
0.3735264539718628,
-0.6710377931594849,
-0.05195174738764763,
-0.8818814158439636,
-1.1417033672332764,
0.6932002305984497,
0.21877969801425934,
0.3575299084186554,
-0.26899808645248413,
0.3329634368419647,
-0.06721706688404083,
0.012074382975697517,
-0.8139102458953857,
-1.0096595287322998,
-0.3242681324481964,
-0.4322025179862976,
0.08319251984357834,
-0.41930103302001953,
-0.35020872950553894,
-0.5429548621177673,
0.834456741809845,
0.1487334817647934,
0.15297174453735352,
0.13260483741760254,
0.18027308583259583,
-0.24529342353343964,
0.2527511417865753,
0.322382390499115,
0.8581124544143677,
-0.2593529224395752,
-0.17061617970466614,
0.20592282712459564,
-0.8915293216705322,
-0.24262405931949615,
0.29029422998428345,
-0.39456814527511597,
0.07822507619857788,
0.7156645655632019,
0.7356554269790649,
0.19903767108917236,
-0.16451308131217957,
0.5092363953590393,
0.08926975727081299,
-0.3564700484275818,
-0.8245970010757446,
-0.1042361781001091,
0.13366496562957764,
0.13834084570407867,
0.5910835862159729,
-0.39795368909835815,
0.29886874556541443,
-0.4338153898715973,
0.26509973406791687,
0.10768366605043411,
-0.27732646465301514,
-0.08610375970602036,
0.5282554030418396,
0.22020311653614044,
-0.27529314160346985,
0.5096641182899475,
0.004703506361693144,
-0.0936465710401535,
0.676497220993042,
0.13453423976898193,
0.8666841387748718,
-0.08379907160997391,
0.29645097255706787,
0.7292609810829163,
0.29631781578063965,
0.08629588037729263,
0.8964605927467346,
-0.17317040264606476,
-0.5827082395553589,
-0.23655511438846588,
-0.4699302911758423,
-0.25206834077835083,
0.22626431286334991,
-1.0186775922775269,
0.49817463755607605,
-0.49859049916267395,
-0.4104878604412079,
0.07920172065496445,
0.5655851364135742,
-1.0226761102676392,
0.2732623517513275,
0.039475586265325546,
1.347994327545166,
-0.9419834017753601,
0.7604813575744629,
0.5689089894294739,
-0.8866301774978638,
-0.8967829942703247,
-0.28795748949050903,
-0.012256210669875145,
-0.4780045449733734,
0.4785230755805969,
-0.2370276153087616,
0.4843403995037079,
-0.13946804404258728,
-0.875331461429596,
-0.8560097813606262,
1.5971626043319702,
0.08047740161418915,
-0.3010358214378357,
0.19109976291656494,
0.41361507773399353,
0.38702547550201416,
-0.3861902952194214,
0.14384785294532776,
0.4732074737548828,
0.9835361838340759,
0.18370327353477478,
-0.6944413185119629,
0.13629750907421112,
-0.5219744443893433,
-0.12000873684883118,
-0.07572569698095322,
-0.5617216229438782,
0.613876461982727,
-0.006747549865394831,
-0.02437334880232811,
-0.13848789036273956,
0.5692136287689209,
0.37945887446403503,
0.2665337324142456,
0.5083259344100952,
0.6710253357887268,
0.7829427719116211,
-0.13403624296188354,
0.9949048757553101,
-0.4468793272972107,
0.3871898651123047,
1.1495985984802246,
0.010869494639337063,
0.7757163643836975,
0.5936285257339478,
-0.3937385678291321,
0.5467734932899475,
0.6015193462371826,
-0.3615097999572754,
0.4951963722705841,
0.14274877309799194,
0.058060478419065475,
-0.040191128849983215,
-0.47892215847969055,
-0.7144584655761719,
0.3343644142150879,
0.38985857367515564,
-0.5990566611289978,
-0.10054275393486023,
-0.32531410455703735,
0.18758273124694824,
-0.0256428811699152,
-0.5068866610527039,
0.8846545815467834,
-0.1321994960308075,
-0.22122438251972198,
0.08013273775577545,
-0.004650594666600227,
0.4200389087200165,
-0.8108411431312561,
-0.23841212689876556,
-0.23435688018798828,
-0.13167643547058105,
-0.720885694026947,
-1.1343164443969727,
0.41096702218055725,
0.06504494696855545,
-0.6879927515983582,
-0.06513964384794235,
0.7703514695167542,
-0.35094714164733887,
-0.9712845683097839,
0.17912273108959198,
0.2523772418498993,
0.04416390135884285,
0.5302714705467224,
-0.949289083480835,
0.391480952501297,
-0.07776855677366257,
-0.4050443768501282,
0.13528767228126526,
0.47645002603530884,
-0.14591118693351746,
0.26904529333114624,
0.6096711754798889,
0.3787509500980377,
-0.14895343780517578,
0.5134385824203491,
0.852038562297821,
-0.6633744835853577,
-0.48645398020744324,
-0.490390807390213,
0.8456165194511414,
-0.8179895281791687,
-0.4051864445209503,
0.7496293187141418,
0.8279330134391785,
1.01548171043396,
-0.024109236896038055,
1.070986032485962,
-0.6470368504524231,
0.8316366076469421,
-0.27186959981918335,
1.0764387845993042,
-0.5061711072921753,
-0.15810053050518036,
-0.6228038668632507,
-0.8247515559196472,
-0.3007792830467224,
0.6894385814666748,
-0.19759662449359894,
0.1564338505268097,
0.35430920124053955,
0.6588582992553711,
-0.06870859116315842,
0.07721783965826035,
0.11687854677438736,
0.2719267010688782,
0.11580368131399155,
0.123934306204319,
0.25043848156929016,
-0.6012113690376282,
0.7104451656341553,
-0.7346852421760559,
-0.2109423279762268,
0.009973905049264431,
-1.091722011566162,
-0.7128610014915466,
-1.0633296966552734,
-0.46418166160583496,
-0.48015522956848145,
-0.09172683209180832,
1.0851333141326904,
0.5731573104858398,
-1.1242033243179321,
-0.47158482670783997,
0.2827722132205963,
0.19880738854408264,
-0.10578376054763794,
-0.27251845598220825,
0.6311166286468506,
0.1399044543504715,
-0.49556294083595276,
-0.3190690875053406,
-0.07439504563808441,
-0.11296113580465317,
-0.33016499876976013,
-0.3858530521392822,
-0.312940776348114,
-0.26952067017555237,
0.3519129455089569,
0.40623053908348083,
-0.533547580242157,
-0.22955533862113953,
-0.20519059896469116,
-0.016903284937143326,
-0.2857634127140045,
0.567161500453949,
-0.12364771217107773,
0.3306553363800049,
0.6907240748405457,
0.09491019695997238,
0.6004078388214111,
-0.34905576705932617,
0.2873595952987671,
-0.6681100130081177,
0.15737557411193848,
-0.021235784515738487,
0.47614842653274536,
0.2924800515174866,
-0.5554202198982239,
0.7506945729255676,
0.22590816020965576,
-0.33522167801856995,
-0.6910076141357422,
-0.06497924029827118,
-1.020329475402832,
-0.08227420598268509,
1.0974624156951904,
0.007828907109797001,
-0.27130717039108276,
-0.3097325563430786,
-0.16010332107543945,
0.569369912147522,
-0.49895456433296204,
0.6284311413764954,
1.0350818634033203,
0.22892285883426666,
-0.12918753921985626,
-0.634874701499939,
0.6246762871742249,
-0.5174757242202759,
-1.0411726236343384,
0.1760956197977066,
0.584804117679596,
0.3611624836921692,
0.3701929748058319,
0.8355532288551331,
-0.45647624135017395,
0.31163322925567627,
-0.02101864106953144,
0.3336764872074127,
-0.1988598108291626,
-0.10085082799196243,
0.1192084401845932,
-0.09876351058483124,
0.047762464731931686,
-0.10399515926837921
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
Check/region_3 | Check | 2021-09-04T11:05:41Z | 293 | 0 | null | [
"region:us"
] | 2021-09-04T11:05:41Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227645754814148,
-0.22568479180335999,
0.8622263669967651,
0.43461522459983826,
-0.52829909324646,
0.7012971639633179,
0.7915719747543335,
0.07618614286184311,
0.774603009223938,
0.2563217282295227,
-0.7852813005447388,
-0.22573819756507874,
-0.9104475975036621,
0.5715674161911011,
-0.3992327153682709,
0.5791246294975281,
-0.14494499564170837,
-0.10751135647296906,
0.28233814239501953,
-0.2768957316875458,
-0.5409227013587952,
-0.3685525059700012,
-1.1902779340744019,
0.061491698026657104,
0.5316582918167114,
0.743514358997345,
0.7584061622619629,
0.3652168810367584,
0.643257737159729,
0.39322906732559204,
-0.231389120221138,
0.48270541429519653,
-0.04171793907880783,
0.0026038705836981535,
-0.3524438440799713,
-0.5516899824142456,
-0.28596577048301697,
0.07584768533706665,
1.096130132675171,
0.9666873812675476,
-0.28466421365737915,
0.05330856889486313,
-0.30636167526245117,
0.3308892846107483,
-0.4973427355289459,
0.3054097294807434,
-0.022506216540932655,
0.16318757832050323,
-0.704151451587677,
-0.5535351634025574,
0.012795033864676952,
-0.7361212968826294,
0.17926514148712158,
-0.6900812387466431,
0.8269097208976746,
0.18583209812641144,
1.1533749103546143,
0.14819422364234924,
-0.4624859392642975,
-0.8161761164665222,
-0.6538985371589661,
0.5711163282394409,
-0.32703715562820435,
0.3968023657798767,
0.7028226256370544,
-0.048573337495326996,
-0.9820331335067749,
-0.6745738983154297,
-0.46466246247291565,
0.2923974096775055,
0.3540281355381012,
-0.3411684036254883,
-0.17522093653678894,
-0.30589917302131653,
0.15791958570480347,
0.1281142681837082,
-0.48419976234436035,
-0.5543919205665588,
-0.547515869140625,
-0.39602571725845337,
0.6206656694412231,
0.34829503297805786,
0.24291737377643585,
-0.18884189426898956,
-0.3228582441806793,
0.0880165845155716,
-0.41608554124832153,
0.3402574062347412,
0.6335517168045044,
0.711402416229248,
-0.5811446309089661,
0.5602157711982727,
-0.049275897443294525,
0.7439709901809692,
0.11445585638284683,
-0.2747812569141388,
0.4146060049533844,
-0.14724673330783844,
0.055171847343444824,
0.42263513803482056,
0.3152443468570709,
0.28413069248199463,
-0.3273696303367615,
0.20322275161743164,
-0.32151490449905396,
-0.3049626648426056,
-0.2233218252658844,
-0.29490745067596436,
-0.35921788215637207,
0.5492295026779175,
-0.3314018249511719,
-0.4285552501678467,
1.1431758403778076,
-0.42007699608802795,
-0.7302228808403015,
0.33156365156173706,
0.40652117133140564,
-0.0994473472237587,
-0.37146514654159546,
-0.052260853350162506,
-0.8458787202835083,
-0.00790744461119175,
0.7491178512573242,
-0.7198969125747681,
0.33717358112335205,
0.47280627489089966,
0.741721510887146,
0.1965060532093048,
-0.14034466445446014,
-0.4294945299625397,
0.2971963882446289,
-0.8659994006156921,
0.6320174336433411,
-0.20135276019573212,
-1.0051976442337036,
0.11150483042001724,
0.8971704244613647,
-0.3789643347263336,
-1.2094870805740356,
1.0605157613754272,
-0.6887932419776917,
0.16017864644527435,
-0.6767609119415283,
-0.14661164581775665,
-0.07118469476699829,
-0.005095955915749073,
-0.6088155508041382,
0.7567099332809448,
0.5872676968574524,
-0.49952778220176697,
0.21429462730884552,
-0.2602984309196472,
-0.3915135860443115,
0.38824939727783203,
-0.0793546810746193,
-0.21858906745910645,
0.7138336896896362,
-0.6647078394889832,
-0.2693284749984741,
0.2942773103713989,
0.23689350485801697,
-0.357060968875885,
-0.793192446231842,
0.08478079736232758,
-0.05786222219467163,
1.5507503747940063,
-0.03868860378861427,
-0.35861143469810486,
-0.6793836951255798,
-1.1506236791610718,
-0.07070811837911606,
0.6886887550354004,
-0.9194992184638977,
-0.27839499711990356,
-0.046410247683525085,
-0.26169371604919434,
0.0899493545293808,
0.7390591502189636,
-1.119404911994934,
0.28327250480651855,
-0.050927065312862396,
-0.22794730961322784,
0.8271061182022095,
0.1538720428943634,
0.24758882820606232,
0.14913466572761536,
0.4295872151851654,
0.5277255773544312,
0.11115183681249619,
0.6835882663726807,
-0.3472035229206085,
-0.9694353938102722,
0.6154633164405823,
0.25266438722610474,
0.8121451139450073,
-0.49945372343063354,
0.2685092091560364,
0.2702546715736389,
-0.3409683108329773,
-0.5682377815246582,
-0.310282826423645,
0.09025713056325912,
0.14930608868598938,
0.11142496764659882,
-0.5721707344055176,
-0.6576128005981445,
-0.9689135551452637,
-0.13590654730796814,
-0.43143755197525024,
-0.35715678334236145,
0.2100687474012375,
0.5792907476425171,
-1.1975533962249756,
0.4128877520561218,
-0.7705622911453247,
-0.703874409198761,
-0.010655621066689491,
-0.1933809369802475,
0.7540653944015503,
0.43240174651145935,
0.5033961534500122,
-0.6397145390510559,
-0.5661987066268921,
-0.22470159828662872,
-1.0333740711212158,
-0.13280484080314636,
0.24819664657115936,
0.3065737783908844,
-0.1342328041791916,
-0.2744964361190796,
-0.48740261793136597,
0.8100383877754211,
0.14789214730262756,
-0.5391897559165955,
0.5220769643783569,
-0.3020317554473877,
0.17224839329719543,
-0.6369158029556274,
-0.0691685602068901,
-0.6616761684417725,
-0.0009067110950127244,
-0.36083078384399414,
-0.5737436413764954,
0.14772333204746246,
0.07017548382282257,
-0.16065415740013123,
0.2880837619304657,
-0.909276008605957,
-0.0010854422580450773,
-0.744221568107605,
0.37907224893569946,
0.0639476627111435,
-0.3145084083080292,
-0.017516743391752243,
1.000038743019104,
0.7784457206726074,
-0.3848040699958801,
0.7217439413070679,
0.4440040588378906,
0.19036099314689636,
0.7630518674850464,
-0.18725158274173737,
0.16478213667869568,
-0.5245421528816223,
-0.12161099910736084,
-0.8887605667114258,
-1.0982943773269653,
0.7320572137832642,
-0.6114250421524048,
0.36542850732803345,
-0.42778605222702026,
0.2589159309864044,
-0.6919258832931519,
-0.038853395730257034,
0.4808599054813385,
-0.05936374515295029,
-0.6863952875137329,
0.5232571363449097,
0.4531749188899994,
-0.2019244134426117,
-0.6609036922454834,
-0.5301570296287537,
0.39365914463996887,
0.6154113411903381,
-0.16390396654605865,
0.06878498196601868,
0.14941087365150452,
-0.5441920757293701,
-0.040802545845508575,
-0.3869187533855438,
-0.4576674997806549,
0.05422405153512955,
0.13053379952907562,
-0.005750161595642567,
-0.40482011437416077,
-0.08680257946252823,
-0.35842010378837585,
-0.4656125009059906,
0.21876463294029236,
0.30119529366493225,
-0.04096344858407974,
-0.42599743604660034,
-0.36198148131370544,
-0.8881808519363403,
0.6719611883163452,
0.5370280146598816,
0.05281474441289902,
0.7555550336837769,
0.16819244623184204,
-0.801498293876648,
-0.13532206416130066,
-0.17607054114341736,
0.2696835994720459,
-0.5588056445121765,
0.13849826157093048,
-0.013484805822372437,
-0.06374907493591309,
0.2629791498184204,
0.25386205315589905,
-0.4300558567047119,
0.927625298500061,
-0.26152747869491577,
-0.3592526614665985,
0.7960182428359985,
0.5974737405776978,
0.4958309531211853,
0.16503198444843292,
-0.044541094452142715,
0.9007097482681274,
-1.196651816368103,
-0.6563171744346619,
-0.7409546375274658,
-0.15945661067962646,
-0.43510857224464417,
-0.0321057066321373,
0.6254417300224304,
0.29009905457496643,
-0.13333925604820251,
0.47563934326171875,
-0.5243490934371948,
0.3556032180786133,
1.0119839906692505,
0.3574867248535156,
0.34357017278671265,
-0.7570232152938843,
-0.25157779455184937,
-0.14024296402931213,
-0.9998159408569336,
-0.2631372809410095,
0.8871029615402222,
0.2275265008211136,
0.8444608449935913,
0.5992542505264282,
0.6784538626670837,
0.136723130941391,
0.2523833215236664,
-0.305902898311615,
0.39202871918678284,
0.43760839104652405,
-1.040114164352417,
-0.42758411169052124,
0.02141888067126274,
-0.9703332185745239,
-0.14227578043937683,
-0.03495054319500923,
-0.42617106437683105,
0.7681738138198853,
0.00016635804786346853,
-0.4076710641384125,
0.7732735872268677,
-0.4555833339691162,
0.7562878727912903,
-0.4473649859428406,
-0.026638653129339218,
0.4699098467826843,
-0.707064151763916,
0.4677433967590332,
0.12878736853599548,
0.6205845475196838,
-0.015571946278214455,
-0.04078621417284012,
0.7104931473731995,
-0.9129164814949036,
0.25438612699508667,
-0.6348398923873901,
0.22421303391456604,
0.24246959388256073,
0.5160625576972961,
0.5969962477684021,
0.4371241629123688,
0.10119915008544922,
-0.23920848965644836,
0.04115789383649826,
-0.8241121172904968,
-0.21050670742988586,
0.6975144147872925,
-0.7186897397041321,
-0.6864195466041565,
-1.2355334758758545,
0.14438661932945251,
0.2734704911708832,
0.3893047273159027,
0.7959297895431519,
0.5714079141616821,
0.12895449995994568,
0.6805254220962524,
0.9888579249382019,
-0.06885591894388199,
0.916691780090332,
0.3224475085735321,
0.09175165742635727,
-0.2194489687681198,
0.703682541847229,
0.2662784457206726,
-0.2470790147781372,
-0.11939744651317596,
0.20913469791412354,
-0.11069414764642715,
-0.5917618870735168,
-0.4999074339866638,
0.3701755702495575,
-0.6731783747673035,
-0.1830393373966217,
-0.6243732571601868,
-0.6043766736984253,
-0.5117589235305786,
0.0692739263176918,
-0.7147684097290039,
0.23979082703590393,
-0.7753568887710571,
-0.10574901103973389,
0.04323358088731766,
0.9792002439498901,
-0.5893120765686035,
0.5805228352546692,
-1.12185800075531,
0.19345775246620178,
-0.07949890196323395,
0.792106032371521,
0.2139579802751541,
-0.7344390153884888,
-0.39754199981689453,
-0.11592598259449005,
-0.37299054861068726,
-1.3576757907867432,
0.21404962241649628,
-0.24541422724723816,
0.2309398353099823,
0.6145407557487488,
0.13977040350437164,
0.5258244276046753,
-0.3432632088661194,
0.7029102444648743,
-0.057016827166080475,
-0.7069293856620789,
0.7934491038322449,
-0.5026893615722656,
0.4963533282279968,
0.9766002893447876,
0.5333840250968933,
-0.7984007596969604,
0.0357406847178936,
-1.041122555732727,
-0.600869357585907,
0.38426393270492554,
0.1192895919084549,
-0.03601125627756119,
-0.665955662727356,
-0.054019927978515625,
-0.16143806278705597,
0.6043741703033447,
-1.0390695333480835,
-0.785835862159729,
0.25766894221305847,
0.5277299284934998,
0.08168502151966095,
-0.5653401613235474,
0.2088075876235962,
-0.5444163084030151,
1.0657776594161987,
0.45109352469444275,
0.32744958996772766,
0.8406059145927429,
0.4649237096309662,
-0.38231605291366577,
0.09252502024173737,
0.7662692070007324,
0.6666228771209717,
-0.5239795446395874,
-0.2908027172088623,
-0.0882752314209938,
-0.9143400192260742,
0.05927503854036331,
0.1116887554526329,
-0.013456095941364765,
0.9082115292549133,
0.579308032989502,
0.253970205783844,
0.4514276385307312,
-0.7264610528945923,
0.8859445452690125,
-0.1495419293642044,
-0.1247284859418869,
-1.0677239894866943,
0.19486205279827118,
-0.23984935879707336,
0.5006400346755981,
1.0061331987380981,
0.525004506111145,
-0.047630541026592255,
-0.814338207244873,
-0.014736384153366089,
0.6939173936843872,
-0.7091119289398193,
-0.17449775338172913,
0.9448539614677429,
0.38471025228500366,
-1.295304536819458,
1.106776475906372,
-0.5381773710250854,
-0.5603317618370056,
0.9121302366256714,
0.5229570269584656,
1.1221849918365479,
-0.44204193353652954,
0.0008675057324580848,
0.2662239074707031,
0.4137844443321228,
0.5423170328140259,
1.0869632959365845,
0.43141356110572815,
-0.7931072115898132,
0.8826581835746765,
-0.24776068329811096,
-0.40361127257347107,
-0.053475700318813324,
-0.42859864234924316,
0.16892209649085999,
-0.4406189024448395,
-0.10712965577840805,
-0.3444185256958008,
0.2854307293891907,
-0.70720374584198,
0.42807644605636597,
-0.08385642617940903,
0.8653066754341125,
-0.8553729057312012,
0.47207602858543396,
0.6354700326919556,
-0.33373481035232544,
-0.8508192300796509,
-0.26198476552963257,
-0.1144845262169838,
-0.6389466524124146,
0.30214792490005493,
-0.45541054010391235,
0.044398874044418335,
0.09623479843139648,
-0.6491509675979614,
-1.1778273582458496,
0.9093631505966187,
-0.6396117210388184,
-0.2784458100795746,
0.20463958382606506,
-0.1151471883058548,
0.28811654448509216,
-0.2524648904800415,
0.010661328211426735,
0.4187661111354828,
0.7489396333694458,
0.28446561098098755,
-0.7727053761482239,
-0.36948859691619873,
0.0015033691888675094,
-0.44474759697914124,
0.7582973837852478,
-0.6002098917961121,
1.1840776205062866,
-0.556353747844696,
-0.05965423583984375,
0.4438447952270508,
0.24690861999988556,
0.21076245605945587,
0.6629217267036438,
0.144208163022995,
0.7282259464263916,
1.0701210498809814,
-0.4083522856235504,
0.881180465221405,
0.26432785391807556,
0.4743083417415619,
0.7238510251045227,
-0.6487718820571899,
0.7513747811317444,
0.3181043267250061,
-0.5682927966117859,
0.9228019714355469,
1.290606141090393,
-0.15699152648448944,
0.80793696641922,
0.051364265382289886,
-1.0815999507904053,
0.32583361864089966,
-0.20724761486053467,
-0.7530062198638916,
0.31502565741539,
0.19055864214897156,
-0.6920987367630005,
-0.5770313739776611,
-0.2404651641845703,
-0.35662829875946045,
-0.11552873998880386,
-0.763173520565033,
0.6720565557479858,
-0.01696927472949028,
-0.5103673934936523,
0.18857470154762268,
0.28775009512901306,
0.17368444800376892,
-0.5235736966133118,
-0.029393965378403664,
-0.22823575139045715,
0.2660652697086334,
-0.5670853853225708,
-0.5234523415565491,
0.5724437236785889,
-0.32430148124694824,
-0.5343252420425415,
0.181474968791008,
0.7635870575904846,
-0.16923785209655762,
-0.4515411853790283,
0.3247268795967102,
0.6959530115127563,
0.16658467054367065,
0.42502790689468384,
-0.23511283099651337,
0.2448059767484665,
-0.08044827729463577,
-0.06651593744754791,
0.27714747190475464,
0.3449171781539917,
0.22435645759105682,
0.44501352310180664,
0.432856947183609,
-0.018087303265929222,
-0.10736559331417084,
-0.38282057642936707,
0.41249361634254456,
-0.9542784690856934,
-0.5713290572166443,
-0.630710780620575,
0.2740667760372162,
-0.023154327645897865,
-1.0836422443389893,
0.41451746225357056,
1.4406688213348389,
1.0359984636306763,
-0.4756380617618561,
1.0672271251678467,
-0.21818462014198303,
0.9594789743423462,
0.4148314893245697,
0.5420438051223755,
-0.6030403971672058,
0.038353081792593,
-0.43644052743911743,
-1.0769634246826172,
-0.3571633994579315,
0.4539390206336975,
-0.02289981208741665,
-0.3429867625236511,
0.8725717663764954,
0.5887162685394287,
-0.3347362279891968,
-0.11728022992610931,
0.04848663881421089,
-0.029941599816083908,
-0.12433874607086182,
0.5145372152328491,
0.764839768409729,
-0.9344298243522644,
-0.10680411010980606,
-0.21577700972557068,
-0.6382728815078735,
-0.5047284364700317,
-0.9632002711296082,
-0.12959381937980652,
-0.16037842631340027,
0.03534334897994995,
-0.5662809014320374,
0.002556905150413513,
1.2083250284194946,
0.5684951543807983,
-1.1113994121551514,
-0.5303782224655151,
0.33718499541282654,
0.39204245805740356,
-0.1874789297580719,
-0.24202406406402588,
0.2984571158885956,
0.1538221836090088,
-0.5908879041671753,
0.6875662803649902,
0.8089626431465149,
0.20888905227184296,
0.19554781913757324,
0.15893003344535828,
-0.8229468464851379,
-0.1491343379020691,
0.1744047999382019,
0.9450566172599792,
-0.9398531913757324,
-0.7114846110343933,
-0.03168468177318573,
-0.2709487974643707,
-0.05765697360038757,
0.17102089524269104,
-0.4046342968940735,
0.5180684924125671,
0.34591469168663025,
0.49933499097824097,
0.056160878390073776,
-0.05474642664194107,
0.5409556031227112,
-0.9069051742553711,
0.09425970166921616,
0.41343608498573303,
0.4154110848903656,
-0.4000871181488037,
-0.5910195112228394,
0.6713417172431946,
1.0073974132537842,
-0.6594864130020142,
-0.8743263483047485,
-0.19846680760383606,
-1.0016000270843506,
0.04189697653055191,
0.6762756109237671,
0.5009528994560242,
-0.48065176606178284,
-0.4174492359161377,
-0.5617400407791138,
-0.1254679411649704,
-0.13699708878993988,
0.76216059923172,
1.1796802282333374,
-0.7432100772857666,
0.07975788414478302,
-1.0386393070220947,
0.6594987511634827,
-0.2419460564851761,
-0.3457580506801605,
-0.4864429533481598,
0.3832802176475525,
0.3523699641227722,
0.44048118591308594,
0.6148120164871216,
0.14084689319133759,
0.8338428735733032,
0.31260576844215393,
-0.17026856541633606,
0.2698982357978821,
-0.4559198319911957,
-0.02893332578241825,
-0.05796259641647339,
0.3101596236228943,
-1.026215672492981
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
Check/region_9 | Check | 2021-09-04T11:09:23Z | 293 | 0 | null | [
"region:us"
] | 2021-09-04T11:09:23Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227645754814148,
-0.22568479180335999,
0.8622263669967651,
0.43461522459983826,
-0.52829909324646,
0.7012971639633179,
0.7915719747543335,
0.07618614286184311,
0.774603009223938,
0.2563217282295227,
-0.7852813005447388,
-0.22573819756507874,
-0.9104475975036621,
0.5715674161911011,
-0.3992327153682709,
0.5791246294975281,
-0.14494499564170837,
-0.10751135647296906,
0.28233814239501953,
-0.2768957316875458,
-0.5409227013587952,
-0.3685525059700012,
-1.1902779340744019,
0.061491698026657104,
0.5316582918167114,
0.743514358997345,
0.7584061622619629,
0.3652168810367584,
0.643257737159729,
0.39322906732559204,
-0.231389120221138,
0.48270541429519653,
-0.04171793907880783,
0.0026038705836981535,
-0.3524438440799713,
-0.5516899824142456,
-0.28596577048301697,
0.07584768533706665,
1.096130132675171,
0.9666873812675476,
-0.28466421365737915,
0.05330856889486313,
-0.30636167526245117,
0.3308892846107483,
-0.4973427355289459,
0.3054097294807434,
-0.022506216540932655,
0.16318757832050323,
-0.704151451587677,
-0.5535351634025574,
0.012795033864676952,
-0.7361212968826294,
0.17926514148712158,
-0.6900812387466431,
0.8269097208976746,
0.18583209812641144,
1.1533749103546143,
0.14819422364234924,
-0.4624859392642975,
-0.8161761164665222,
-0.6538985371589661,
0.5711163282394409,
-0.32703715562820435,
0.3968023657798767,
0.7028226256370544,
-0.048573337495326996,
-0.9820331335067749,
-0.6745738983154297,
-0.46466246247291565,
0.2923974096775055,
0.3540281355381012,
-0.3411684036254883,
-0.17522093653678894,
-0.30589917302131653,
0.15791958570480347,
0.1281142681837082,
-0.48419976234436035,
-0.5543919205665588,
-0.547515869140625,
-0.39602571725845337,
0.6206656694412231,
0.34829503297805786,
0.24291737377643585,
-0.18884189426898956,
-0.3228582441806793,
0.0880165845155716,
-0.41608554124832153,
0.3402574062347412,
0.6335517168045044,
0.711402416229248,
-0.5811446309089661,
0.5602157711982727,
-0.049275897443294525,
0.7439709901809692,
0.11445585638284683,
-0.2747812569141388,
0.4146060049533844,
-0.14724673330783844,
0.055171847343444824,
0.42263513803482056,
0.3152443468570709,
0.28413069248199463,
-0.3273696303367615,
0.20322275161743164,
-0.32151490449905396,
-0.3049626648426056,
-0.2233218252658844,
-0.29490745067596436,
-0.35921788215637207,
0.5492295026779175,
-0.3314018249511719,
-0.4285552501678467,
1.1431758403778076,
-0.42007699608802795,
-0.7302228808403015,
0.33156365156173706,
0.40652117133140564,
-0.0994473472237587,
-0.37146514654159546,
-0.052260853350162506,
-0.8458787202835083,
-0.00790744461119175,
0.7491178512573242,
-0.7198969125747681,
0.33717358112335205,
0.47280627489089966,
0.741721510887146,
0.1965060532093048,
-0.14034466445446014,
-0.4294945299625397,
0.2971963882446289,
-0.8659994006156921,
0.6320174336433411,
-0.20135276019573212,
-1.0051976442337036,
0.11150483042001724,
0.8971704244613647,
-0.3789643347263336,
-1.2094870805740356,
1.0605157613754272,
-0.6887932419776917,
0.16017864644527435,
-0.6767609119415283,
-0.14661164581775665,
-0.07118469476699829,
-0.005095955915749073,
-0.6088155508041382,
0.7567099332809448,
0.5872676968574524,
-0.49952778220176697,
0.21429462730884552,
-0.2602984309196472,
-0.3915135860443115,
0.38824939727783203,
-0.0793546810746193,
-0.21858906745910645,
0.7138336896896362,
-0.6647078394889832,
-0.2693284749984741,
0.2942773103713989,
0.23689350485801697,
-0.357060968875885,
-0.793192446231842,
0.08478079736232758,
-0.05786222219467163,
1.5507503747940063,
-0.03868860378861427,
-0.35861143469810486,
-0.6793836951255798,
-1.1506236791610718,
-0.07070811837911606,
0.6886887550354004,
-0.9194992184638977,
-0.27839499711990356,
-0.046410247683525085,
-0.26169371604919434,
0.0899493545293808,
0.7390591502189636,
-1.119404911994934,
0.28327250480651855,
-0.050927065312862396,
-0.22794730961322784,
0.8271061182022095,
0.1538720428943634,
0.24758882820606232,
0.14913466572761536,
0.4295872151851654,
0.5277255773544312,
0.11115183681249619,
0.6835882663726807,
-0.3472035229206085,
-0.9694353938102722,
0.6154633164405823,
0.25266438722610474,
0.8121451139450073,
-0.49945372343063354,
0.2685092091560364,
0.2702546715736389,
-0.3409683108329773,
-0.5682377815246582,
-0.310282826423645,
0.09025713056325912,
0.14930608868598938,
0.11142496764659882,
-0.5721707344055176,
-0.6576128005981445,
-0.9689135551452637,
-0.13590654730796814,
-0.43143755197525024,
-0.35715678334236145,
0.2100687474012375,
0.5792907476425171,
-1.1975533962249756,
0.4128877520561218,
-0.7705622911453247,
-0.703874409198761,
-0.010655621066689491,
-0.1933809369802475,
0.7540653944015503,
0.43240174651145935,
0.5033961534500122,
-0.6397145390510559,
-0.5661987066268921,
-0.22470159828662872,
-1.0333740711212158,
-0.13280484080314636,
0.24819664657115936,
0.3065737783908844,
-0.1342328041791916,
-0.2744964361190796,
-0.48740261793136597,
0.8100383877754211,
0.14789214730262756,
-0.5391897559165955,
0.5220769643783569,
-0.3020317554473877,
0.17224839329719543,
-0.6369158029556274,
-0.0691685602068901,
-0.6616761684417725,
-0.0009067110950127244,
-0.36083078384399414,
-0.5737436413764954,
0.14772333204746246,
0.07017548382282257,
-0.16065415740013123,
0.2880837619304657,
-0.909276008605957,
-0.0010854422580450773,
-0.744221568107605,
0.37907224893569946,
0.0639476627111435,
-0.3145084083080292,
-0.017516743391752243,
1.000038743019104,
0.7784457206726074,
-0.3848040699958801,
0.7217439413070679,
0.4440040588378906,
0.19036099314689636,
0.7630518674850464,
-0.18725158274173737,
0.16478213667869568,
-0.5245421528816223,
-0.12161099910736084,
-0.8887605667114258,
-1.0982943773269653,
0.7320572137832642,
-0.6114250421524048,
0.36542850732803345,
-0.42778605222702026,
0.2589159309864044,
-0.6919258832931519,
-0.038853395730257034,
0.4808599054813385,
-0.05936374515295029,
-0.6863952875137329,
0.5232571363449097,
0.4531749188899994,
-0.2019244134426117,
-0.6609036922454834,
-0.5301570296287537,
0.39365914463996887,
0.6154113411903381,
-0.16390396654605865,
0.06878498196601868,
0.14941087365150452,
-0.5441920757293701,
-0.040802545845508575,
-0.3869187533855438,
-0.4576674997806549,
0.05422405153512955,
0.13053379952907562,
-0.005750161595642567,
-0.40482011437416077,
-0.08680257946252823,
-0.35842010378837585,
-0.4656125009059906,
0.21876463294029236,
0.30119529366493225,
-0.04096344858407974,
-0.42599743604660034,
-0.36198148131370544,
-0.8881808519363403,
0.6719611883163452,
0.5370280146598816,
0.05281474441289902,
0.7555550336837769,
0.16819244623184204,
-0.801498293876648,
-0.13532206416130066,
-0.17607054114341736,
0.2696835994720459,
-0.5588056445121765,
0.13849826157093048,
-0.013484805822372437,
-0.06374907493591309,
0.2629791498184204,
0.25386205315589905,
-0.4300558567047119,
0.927625298500061,
-0.26152747869491577,
-0.3592526614665985,
0.7960182428359985,
0.5974737405776978,
0.4958309531211853,
0.16503198444843292,
-0.044541094452142715,
0.9007097482681274,
-1.196651816368103,
-0.6563171744346619,
-0.7409546375274658,
-0.15945661067962646,
-0.43510857224464417,
-0.0321057066321373,
0.6254417300224304,
0.29009905457496643,
-0.13333925604820251,
0.47563934326171875,
-0.5243490934371948,
0.3556032180786133,
1.0119839906692505,
0.3574867248535156,
0.34357017278671265,
-0.7570232152938843,
-0.25157779455184937,
-0.14024296402931213,
-0.9998159408569336,
-0.2631372809410095,
0.8871029615402222,
0.2275265008211136,
0.8444608449935913,
0.5992542505264282,
0.6784538626670837,
0.136723130941391,
0.2523833215236664,
-0.305902898311615,
0.39202871918678284,
0.43760839104652405,
-1.040114164352417,
-0.42758411169052124,
0.02141888067126274,
-0.9703332185745239,
-0.14227578043937683,
-0.03495054319500923,
-0.42617106437683105,
0.7681738138198853,
0.00016635804786346853,
-0.4076710641384125,
0.7732735872268677,
-0.4555833339691162,
0.7562878727912903,
-0.4473649859428406,
-0.026638653129339218,
0.4699098467826843,
-0.707064151763916,
0.4677433967590332,
0.12878736853599548,
0.6205845475196838,
-0.015571946278214455,
-0.04078621417284012,
0.7104931473731995,
-0.9129164814949036,
0.25438612699508667,
-0.6348398923873901,
0.22421303391456604,
0.24246959388256073,
0.5160625576972961,
0.5969962477684021,
0.4371241629123688,
0.10119915008544922,
-0.23920848965644836,
0.04115789383649826,
-0.8241121172904968,
-0.21050670742988586,
0.6975144147872925,
-0.7186897397041321,
-0.6864195466041565,
-1.2355334758758545,
0.14438661932945251,
0.2734704911708832,
0.3893047273159027,
0.7959297895431519,
0.5714079141616821,
0.12895449995994568,
0.6805254220962524,
0.9888579249382019,
-0.06885591894388199,
0.916691780090332,
0.3224475085735321,
0.09175165742635727,
-0.2194489687681198,
0.703682541847229,
0.2662784457206726,
-0.2470790147781372,
-0.11939744651317596,
0.20913469791412354,
-0.11069414764642715,
-0.5917618870735168,
-0.4999074339866638,
0.3701755702495575,
-0.6731783747673035,
-0.1830393373966217,
-0.6243732571601868,
-0.6043766736984253,
-0.5117589235305786,
0.0692739263176918,
-0.7147684097290039,
0.23979082703590393,
-0.7753568887710571,
-0.10574901103973389,
0.04323358088731766,
0.9792002439498901,
-0.5893120765686035,
0.5805228352546692,
-1.12185800075531,
0.19345775246620178,
-0.07949890196323395,
0.792106032371521,
0.2139579802751541,
-0.7344390153884888,
-0.39754199981689453,
-0.11592598259449005,
-0.37299054861068726,
-1.3576757907867432,
0.21404962241649628,
-0.24541422724723816,
0.2309398353099823,
0.6145407557487488,
0.13977040350437164,
0.5258244276046753,
-0.3432632088661194,
0.7029102444648743,
-0.057016827166080475,
-0.7069293856620789,
0.7934491038322449,
-0.5026893615722656,
0.4963533282279968,
0.9766002893447876,
0.5333840250968933,
-0.7984007596969604,
0.0357406847178936,
-1.041122555732727,
-0.600869357585907,
0.38426393270492554,
0.1192895919084549,
-0.03601125627756119,
-0.665955662727356,
-0.054019927978515625,
-0.16143806278705597,
0.6043741703033447,
-1.0390695333480835,
-0.785835862159729,
0.25766894221305847,
0.5277299284934998,
0.08168502151966095,
-0.5653401613235474,
0.2088075876235962,
-0.5444163084030151,
1.0657776594161987,
0.45109352469444275,
0.32744958996772766,
0.8406059145927429,
0.4649237096309662,
-0.38231605291366577,
0.09252502024173737,
0.7662692070007324,
0.6666228771209717,
-0.5239795446395874,
-0.2908027172088623,
-0.0882752314209938,
-0.9143400192260742,
0.05927503854036331,
0.1116887554526329,
-0.013456095941364765,
0.9082115292549133,
0.579308032989502,
0.253970205783844,
0.4514276385307312,
-0.7264610528945923,
0.8859445452690125,
-0.1495419293642044,
-0.1247284859418869,
-1.0677239894866943,
0.19486205279827118,
-0.23984935879707336,
0.5006400346755981,
1.0061331987380981,
0.525004506111145,
-0.047630541026592255,
-0.814338207244873,
-0.014736384153366089,
0.6939173936843872,
-0.7091119289398193,
-0.17449775338172913,
0.9448539614677429,
0.38471025228500366,
-1.295304536819458,
1.106776475906372,
-0.5381773710250854,
-0.5603317618370056,
0.9121302366256714,
0.5229570269584656,
1.1221849918365479,
-0.44204193353652954,
0.0008675057324580848,
0.2662239074707031,
0.4137844443321228,
0.5423170328140259,
1.0869632959365845,
0.43141356110572815,
-0.7931072115898132,
0.8826581835746765,
-0.24776068329811096,
-0.40361127257347107,
-0.053475700318813324,
-0.42859864234924316,
0.16892209649085999,
-0.4406189024448395,
-0.10712965577840805,
-0.3444185256958008,
0.2854307293891907,
-0.70720374584198,
0.42807644605636597,
-0.08385642617940903,
0.8653066754341125,
-0.8553729057312012,
0.47207602858543396,
0.6354700326919556,
-0.33373481035232544,
-0.8508192300796509,
-0.26198476552963257,
-0.1144845262169838,
-0.6389466524124146,
0.30214792490005493,
-0.45541054010391235,
0.044398874044418335,
0.09623479843139648,
-0.6491509675979614,
-1.1778273582458496,
0.9093631505966187,
-0.6396117210388184,
-0.2784458100795746,
0.20463958382606506,
-0.1151471883058548,
0.28811654448509216,
-0.2524648904800415,
0.010661328211426735,
0.4187661111354828,
0.7489396333694458,
0.28446561098098755,
-0.7727053761482239,
-0.36948859691619873,
0.0015033691888675094,
-0.44474759697914124,
0.7582973837852478,
-0.6002098917961121,
1.1840776205062866,
-0.556353747844696,
-0.05965423583984375,
0.4438447952270508,
0.24690861999988556,
0.21076245605945587,
0.6629217267036438,
0.144208163022995,
0.7282259464263916,
1.0701210498809814,
-0.4083522856235504,
0.881180465221405,
0.26432785391807556,
0.4743083417415619,
0.7238510251045227,
-0.6487718820571899,
0.7513747811317444,
0.3181043267250061,
-0.5682927966117859,
0.9228019714355469,
1.290606141090393,
-0.15699152648448944,
0.80793696641922,
0.051364265382289886,
-1.0815999507904053,
0.32583361864089966,
-0.20724761486053467,
-0.7530062198638916,
0.31502565741539,
0.19055864214897156,
-0.6920987367630005,
-0.5770313739776611,
-0.2404651641845703,
-0.35662829875946045,
-0.11552873998880386,
-0.763173520565033,
0.6720565557479858,
-0.01696927472949028,
-0.5103673934936523,
0.18857470154762268,
0.28775009512901306,
0.17368444800376892,
-0.5235736966133118,
-0.029393965378403664,
-0.22823575139045715,
0.2660652697086334,
-0.5670853853225708,
-0.5234523415565491,
0.5724437236785889,
-0.32430148124694824,
-0.5343252420425415,
0.181474968791008,
0.7635870575904846,
-0.16923785209655762,
-0.4515411853790283,
0.3247268795967102,
0.6959530115127563,
0.16658467054367065,
0.42502790689468384,
-0.23511283099651337,
0.2448059767484665,
-0.08044827729463577,
-0.06651593744754791,
0.27714747190475464,
0.3449171781539917,
0.22435645759105682,
0.44501352310180664,
0.432856947183609,
-0.018087303265929222,
-0.10736559331417084,
-0.38282057642936707,
0.41249361634254456,
-0.9542784690856934,
-0.5713290572166443,
-0.630710780620575,
0.2740667760372162,
-0.023154327645897865,
-1.0836422443389893,
0.41451746225357056,
1.4406688213348389,
1.0359984636306763,
-0.4756380617618561,
1.0672271251678467,
-0.21818462014198303,
0.9594789743423462,
0.4148314893245697,
0.5420438051223755,
-0.6030403971672058,
0.038353081792593,
-0.43644052743911743,
-1.0769634246826172,
-0.3571633994579315,
0.4539390206336975,
-0.02289981208741665,
-0.3429867625236511,
0.8725717663764954,
0.5887162685394287,
-0.3347362279891968,
-0.11728022992610931,
0.04848663881421089,
-0.029941599816083908,
-0.12433874607086182,
0.5145372152328491,
0.764839768409729,
-0.9344298243522644,
-0.10680411010980606,
-0.21577700972557068,
-0.6382728815078735,
-0.5047284364700317,
-0.9632002711296082,
-0.12959381937980652,
-0.16037842631340027,
0.03534334897994995,
-0.5662809014320374,
0.002556905150413513,
1.2083250284194946,
0.5684951543807983,
-1.1113994121551514,
-0.5303782224655151,
0.33718499541282654,
0.39204245805740356,
-0.1874789297580719,
-0.24202406406402588,
0.2984571158885956,
0.1538221836090088,
-0.5908879041671753,
0.6875662803649902,
0.8089626431465149,
0.20888905227184296,
0.19554781913757324,
0.15893003344535828,
-0.8229468464851379,
-0.1491343379020691,
0.1744047999382019,
0.9450566172599792,
-0.9398531913757324,
-0.7114846110343933,
-0.03168468177318573,
-0.2709487974643707,
-0.05765697360038757,
0.17102089524269104,
-0.4046342968940735,
0.5180684924125671,
0.34591469168663025,
0.49933499097824097,
0.056160878390073776,
-0.05474642664194107,
0.5409556031227112,
-0.9069051742553711,
0.09425970166921616,
0.41343608498573303,
0.4154110848903656,
-0.4000871181488037,
-0.5910195112228394,
0.6713417172431946,
1.0073974132537842,
-0.6594864130020142,
-0.8743263483047485,
-0.19846680760383606,
-1.0016000270843506,
0.04189697653055191,
0.6762756109237671,
0.5009528994560242,
-0.48065176606178284,
-0.4174492359161377,
-0.5617400407791138,
-0.1254679411649704,
-0.13699708878993988,
0.76216059923172,
1.1796802282333374,
-0.7432100772857666,
0.07975788414478302,
-1.0386393070220947,
0.6594987511634827,
-0.2419460564851761,
-0.3457580506801605,
-0.4864429533481598,
0.3832802176475525,
0.3523699641227722,
0.44048118591308594,
0.6148120164871216,
0.14084689319133759,
0.8338428735733032,
0.31260576844215393,
-0.17026856541633606,
0.2698982357978821,
-0.4559198319911957,
-0.02893332578241825,
-0.05796259641647339,
0.3101596236228943,
-1.026215672492981
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
CyranoB/polarity | CyranoB | 2022-10-25T08:54:09Z | 293 | 1 | null | [
"task_categories:text-classification",
"task_ids:sentiment-classification",
"annotations_creators:crowdsourced",
"language_creators:crowdsourced",
"multilinguality:monolingual",
"size_categories:1M<n<10M",
"source_datasets:original",
"language:en",
"license:apache-2.0",
"arxiv:1509.01626",
"region:us"
] | 2022-10-25T08:54:09Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
annotations_creators:
- crowdsourced
language_creators:
- crowdsourced
language:
- en
license:
- apache-2.0
multilinguality:
- monolingual
size_categories:
- 1M<n<10M
source_datasets:
- original
task_categories:
- text-classification
task_ids:
- sentiment-classification
pretty_name: Amazon Review Polarity
---
# Dataset Card for Amazon Review Polarity
## 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:** https://registry.opendata.aws/
- **Repository:** https://github.com/zhangxiangxiao/Crepe
- **Paper:** https://arxiv.org/abs/1509.01626
- **Leaderboard:** [Needs More Information]
- **Point of Contact:** [Xiang Zhang](mailto:xiang.zhang@nyu.edu)
### Dataset Summary
The Amazon reviews dataset consists of reviews from amazon.
The data span a period of 18 years, including ~35 million reviews up to March 2013.
Reviews include product and user information, ratings, and a plaintext review.
### Supported Tasks and Leaderboards
- `text-classification`, `sentiment-classification`: The dataset is mainly used for text classification: given the content and the title, predict the correct star rating.
### Languages
Mainly English.
## Dataset Structure
### Data Instances
A typical data point, comprises of a title, a content and the corresponding label.
An example from the AmazonPolarity test set looks as follows:
```
{
'title':'Great CD',
'content':"My lovely Pat has one of the GREAT voices of her generation. I have listened to this CD for YEARS and I still LOVE IT. When I'm in a good mood it makes me feel better. A bad mood just evaporates like sugar in the rain. This CD just oozes LIFE. Vocals are jusat STUUNNING and lyrics just kill. One of life's hidden gems. This is a desert isle CD in my book. Why she never made it big is just beyond me. Everytime I play this, no matter black, white, young, old, male, female EVERYBODY says one thing ""Who was that singing ?""",
'label':1
}
```
### Data Fields
- 'title': a string containing the title of the review - escaped using double quotes (") and any internal double quote is escaped by 2 double quotes (""). New lines are escaped by a backslash followed with an "n" character, that is "\n".
- 'content': a string containing the body of the document - escaped using double quotes (") and any internal double quote is escaped by 2 double quotes (""). New lines are escaped by a backslash followed with an "n" character, that is "\n".
- 'label': either 1 (positive) or 0 (negative) rating.
### Data Splits
The Amazon reviews polarity dataset is constructed by taking review score 1 and 2 as negative, and 4 and 5 as positive. Samples of score 3 is ignored. Each class has 1,800,000 training samples and 200,000 testing samples.
## Dataset Creation
### Curation Rationale
The Amazon reviews polarity dataset is constructed by Xiang Zhang (xiang.zhang@nyu.edu). It is used as a text classification benchmark in the following paper: Xiang Zhang, Junbo Zhao, Yann LeCun. Character-level Convolutional Networks for Text Classification. Advances in Neural Information Processing Systems 28 (NIPS 2015).
### 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
[Needs More Information]
### Licensing Information
Apache License 2.0
### Citation Information
McAuley, Julian, and Jure Leskovec. "Hidden factors and hidden topics: understanding rating dimensions with review text." In Proceedings of the 7th ACM conference on Recommender systems, pp. 165-172. 2013.
Xiang Zhang, Junbo Zhao, Yann LeCun. Character-level Convolutional Networks for Text Classification. Advances in Neural Information Processing Systems 28 (NIPS 2015)
### Contributions
Thanks to [@hfawaz](https://github.com/hfawaz) for adding this dataset. | [
-0.5663706064224243,
-0.49735093116760254,
0.22922274470329285,
0.27410873770713806,
-0.3867834806442261,
0.1692732274532318,
-0.198602557182312,
-0.20967820286750793,
0.41424113512039185,
0.9508285522460938,
-0.8425271511077881,
-0.9999404549598694,
-0.5337232947349548,
0.08386128395795822,
-0.24681410193443298,
1.6137065887451172,
0.23771609365940094,
0.007204169407486916,
0.053431883454322815,
-0.352804034948349,
0.053183868527412415,
-0.6016774773597717,
-0.3883833885192871,
-0.1203143373131752,
0.5020707249641418,
0.5334165096282959,
0.7457892894744873,
0.29101327061653137,
0.5546764731407166,
0.13415749371051788,
-0.21448123455047607,
-0.010546387173235416,
-0.42930150032043457,
0.10527597367763519,
0.00731858192011714,
-0.47861048579216003,
-0.7227728366851807,
0.3532317876815796,
0.346976101398468,
0.5071204900741577,
0.0007485737442038953,
0.49834445118904114,
0.2041037231683731,
0.9218977093696594,
-0.4226109981536865,
0.35556456446647644,
-0.19335129857063293,
0.28825679421424866,
-0.11818065494298935,
-0.07055000215768814,
-0.18651236593723297,
-0.6122056841850281,
0.13310149312019348,
-0.6887496709823608,
0.45263493061065674,
0.18596939742565155,
0.8790342807769775,
0.08376378566026688,
-0.3928247094154358,
-0.2500041425228119,
-0.8574839234352112,
0.7503026127815247,
-0.6318493485450745,
0.03552477806806564,
0.541443943977356,
0.1673746407032013,
0.056207288056612015,
-0.36098453402519226,
-0.8622258901596069,
0.014152174815535545,
0.03455246239900589,
0.45393213629722595,
-0.07363107800483704,
-0.13672113418579102,
0.36022430658340454,
0.6021023392677307,
-0.4529440999031067,
-0.266706645488739,
-0.24892370402812958,
0.06480517983436584,
0.7706816792488098,
0.2005849927663803,
0.0498163104057312,
-0.6193023920059204,
-0.3550693690776825,
-0.4155381917953491,
-0.49785298109054565,
0.3344268202781677,
0.6008138656616211,
0.2155313491821289,
-0.37539246678352356,
0.6088601350784302,
-0.1086408942937851,
0.19834767282009125,
-0.031354375183582306,
0.15258315205574036,
0.5178185701370239,
-0.4873964190483093,
-0.11032742261886597,
-0.15329855680465698,
0.9661868214607239,
0.6816508769989014,
-0.03501763194799423,
0.2604626417160034,
-0.04893631860613823,
-0.09012171626091003,
0.20302395522594452,
-0.6204953789710999,
-0.3538045585155487,
0.6038961410522461,
-0.7007612586021423,
-0.5158995985984802,
0.2970923185348511,
-1.0423253774642944,
-0.42958804965019226,
-0.1766117513179779,
0.13473424315452576,
-0.17065003514289856,
-0.22458632290363312,
0.15336032211780548,
-0.3376506268978119,
0.10468846559524536,
0.08811214566230774,
-0.4708569049835205,
0.2596934735774994,
0.6389282941818237,
0.4450366795063019,
0.014256635680794716,
-0.15595899522304535,
-0.10689788311719894,
-0.12619301676750183,
-0.1672954261302948,
0.6806768774986267,
-0.36066120862960815,
-0.2616223692893982,
0.16493582725524902,
0.48160460591316223,
0.40716367959976196,
-0.31009921431541443,
0.9117457866668701,
-0.43405112624168396,
0.4262780249118805,
-0.661811351776123,
-0.30237698554992676,
-0.4216519594192505,
0.31251174211502075,
-0.7844794988632202,
1.0369141101837158,
0.09687644243240356,
-0.6616668105125427,
0.46294745802879333,
-0.5320931077003479,
-0.24258920550346375,
0.07457359880208969,
0.13595347106456757,
-0.8532373905181885,
-0.26518237590789795,
0.16169647872447968,
0.4796959459781647,
-0.5112536549568176,
0.08165659755468369,
-0.3715466260910034,
-0.022240934893488884,
0.46714159846305847,
-0.1344921737909317,
1.1466749906539917,
0.09143032133579254,
-0.46836644411087036,
-0.16305692493915558,
-0.8850623369216919,
-0.07377849519252777,
0.2755218744277954,
-0.23921416699886322,
-0.15279242396354675,
0.09955503046512604,
0.3753040134906769,
-0.02167614921927452,
0.16055460274219513,
-0.5218967795372009,
0.18289075791835785,
-0.054107364267110825,
0.5292972326278687,
0.4442098140716553,
0.28601697087287903,
0.3564942479133606,
-0.5351699590682983,
0.7601825594902039,
0.040150292217731476,
0.5945505499839783,
0.11419904232025146,
-0.6010932326316833,
-0.8919144868850708,
0.04078107699751854,
0.321576327085495,
0.6480173468589783,
-0.5083281397819519,
1.1545357704162598,
-0.1852896809577942,
-0.6897982954978943,
-0.5393760204315186,
0.13527637720108032,
0.39949342608451843,
0.19423675537109375,
0.4632881283760071,
-0.4980607330799103,
-0.20036262273788452,
-0.6990739703178406,
0.2100532501935959,
-0.3103366792201996,
-0.08129622042179108,
0.7333499193191528,
0.3561111390590668,
-0.18505778908729553,
0.7433399558067322,
-0.655807614326477,
-0.7017279267311096,
-0.4566168785095215,
0.21081896126270294,
0.3881915211677551,
0.3025835156440735,
0.5283514857292175,
-0.685500979423523,
-0.47448503971099854,
-0.2694561779499054,
-0.7046509981155396,
-0.1974433809518814,
-0.10494518280029297,
-0.14075301587581635,
0.03798973187804222,
-0.052115075290203094,
-0.4519246518611908,
0.25333428382873535,
0.5553241968154907,
-0.4460865259170532,
0.5368301868438721,
-0.05501420423388481,
0.25202280282974243,
-0.9063602685928345,
-0.008245663717389107,
0.14787714183330536,
0.2207103669643402,
-0.3073982298374176,
-0.1710917055606842,
-0.010532974265515804,
-0.09148105978965759,
-0.08392702788114548,
0.03687860444188118,
-0.3345780074596405,
0.14308732748031616,
0.0016799926524981856,
0.24464476108551025,
0.5390657186508179,
0.7235651612281799,
-0.19753357768058777,
0.39969533681869507,
0.5070299506187439,
-0.48158952593803406,
0.37256675958633423,
0.5757401585578918,
-0.346844345331192,
0.7450379133224487,
-0.6143771409988403,
0.014042394235730171,
-0.315697580575943,
0.5127144455909729,
-0.7694113254547119,
0.09380649775266647,
0.5251550674438477,
-0.39918023347854614,
-0.012956314720213413,
-0.07858991622924805,
-0.5116762518882751,
-0.372999906539917,
-0.5544814467430115,
0.3400493264198303,
0.4855996072292328,
-0.36601611971855164,
0.5326845645904541,
0.5885370969772339,
-0.21403031051158905,
-0.6716433763504028,
-0.5931479334831238,
0.007881722413003445,
-0.1407802700996399,
-0.29425689578056335,
0.3395213186740875,
-0.29856032133102417,
-0.016413487493991852,
0.049244146794080734,
0.23120169341564178,
0.23083031177520752,
-0.16497677564620972,
0.29540956020355225,
0.13561993837356567,
-0.21763211488723755,
0.21662527322769165,
0.09276629239320755,
-0.12694303691387177,
0.2090286761522293,
-0.08716818690299988,
0.4370766282081604,
-0.15552949905395508,
0.09544739872217178,
-0.4934755861759186,
0.2977294325828552,
0.4665656089782715,
-0.27647513151168823,
0.5543932318687439,
0.5149056911468506,
0.012883237563073635,
-0.6892374157905579,
-0.4359212815761566,
-0.1779620200395584,
-0.3565935492515564,
0.10791824012994766,
0.07741131633520126,
-0.36256977915763855,
0.7701948881149292,
0.3555743992328644,
-0.08552655577659607,
0.5302922129631042,
0.18492358922958374,
-0.25724363327026367,
0.7773168683052063,
0.5940341949462891,
-0.25832611322402954,
0.46326857805252075,
-0.7699227929115295,
0.27481111884117126,
-0.8762791752815247,
-0.3199843168258667,
-0.6802726984024048,
-0.42350679636001587,
-0.7300139665603638,
-0.25713351368904114,
0.22147014737129211,
0.06485860794782639,
-0.3591572642326355,
0.4889432191848755,
-0.8945163488388062,
0.35252806544303894,
0.6166974306106567,
0.3709225356578827,
0.2136833816766739,
-0.04430257901549339,
0.1274745613336563,
-0.08297759294509888,
-0.3981999456882477,
-0.5446983575820923,
1.2699644565582275,
0.492687463760376,
0.47945278882980347,
0.1144619882106781,
0.3403523862361908,
0.5737847685813904,
0.1837567687034607,
-0.6063268184661865,
0.6483672857284546,
-0.421062171459198,
-0.6182981729507446,
-0.20133110880851746,
-0.16401520371437073,
-0.8777799010276794,
-0.1007806584239006,
-0.5257109999656677,
-0.2098473459482193,
0.512304961681366,
-0.0910027027130127,
-0.4407508969306946,
0.19826197624206543,
-0.3949069380760193,
0.7109477519989014,
-0.36590737104415894,
-0.3114798069000244,
-0.05400821939110756,
-0.7549278736114502,
-0.05534784495830536,
0.2466275542974472,
0.2367130070924759,
-0.2094097137451172,
0.08092479407787323,
0.9754153490066528,
-0.43689680099487305,
0.8503246307373047,
-0.20383967459201813,
0.14828313887119293,
0.42894574999809265,
-0.03351345658302307,
0.3355572819709778,
0.1602981686592102,
0.0017163475276902318,
0.6344349980354309,
-0.13057008385658264,
-0.25159379839897156,
-0.45330655574798584,
0.6262758374214172,
-1.0228116512298584,
-0.2782458961009979,
-0.688660204410553,
-0.13566988706588745,
0.07529974728822708,
0.17695029079914093,
0.25763556361198425,
0.27632609009742737,
-0.06535941362380981,
0.37393075227737427,
0.6687036156654358,
-0.5228350758552551,
0.17915593087673187,
0.5972867608070374,
-0.18810254335403442,
-0.8645879030227661,
0.8938356041908264,
0.24879047274589539,
0.048964716494083405,
0.3103921413421631,
0.16519537568092346,
-0.08738256245851517,
-0.38492268323898315,
-0.3471011221408844,
0.39546823501586914,
-0.6055116057395935,
-0.1473018378019333,
-0.7894090414047241,
-0.3512090742588043,
-0.3340882658958435,
-0.07112216204404831,
-0.059925492852926254,
-0.41482338309288025,
-0.36178845167160034,
-0.41145703196525574,
0.49603885412216187,
0.7771191000938416,
0.022351611405611038,
0.36702579259872437,
-0.49462711811065674,
0.16699211299419403,
0.11610540747642517,
0.3039585053920746,
-0.0834297463297844,
-0.19404451549053192,
-0.05800973251461983,
-0.051814816892147064,
-0.5680689215660095,
-0.8987076282501221,
0.4661812484264374,
0.10580896586179733,
0.31671467423439026,
0.3905397057533264,
0.4388374984264374,
0.03878568485379219,
-0.04359693452715874,
1.2416458129882812,
-0.057528018951416016,
-0.6778531670570374,
0.5256901979446411,
-0.4602995812892914,
0.07941930741071701,
0.7289061546325684,
0.4944668114185333,
-0.4099016487598419,
-0.46301326155662537,
-0.8995274901390076,
-1.042702317237854,
0.6877875924110413,
0.2986013889312744,
0.16438570618629456,
0.12501409649848938,
0.21325914561748505,
0.3144012987613678,
0.5845200419425964,
-1.174400806427002,
-0.6996585726737976,
-0.39744365215301514,
-0.21273061633110046,
-0.39737290143966675,
-0.33796223998069763,
-0.31541329622268677,
-0.3711247742176056,
0.8433358073234558,
-0.012165337800979614,
0.34241920709609985,
0.2351342886686325,
0.23715297877788544,
-0.2683148682117462,
0.3020746409893036,
0.2259255200624466,
0.16210107505321503,
-0.5563939213752747,
-0.020221946761012077,
-0.2692978084087372,
-0.6652315258979797,
-0.14057181775569916,
0.10041949152946472,
-0.4785051941871643,
-0.18668511509895325,
0.21360522508621216,
0.6141237020492554,
-0.045851271599531174,
-0.3560273051261902,
0.8055495619773865,
-0.1915024220943451,
-0.11094393581151962,
-0.8651106357574463,
-0.0021454242523759604,
-0.24825036525726318,
0.17140820622444153,
0.46749573945999146,
0.1356929987668991,
0.17846767604351044,
-0.5642091035842896,
0.1102466732263565,
0.4036599397659302,
-0.5692571997642517,
-0.34337183833122253,
0.6160987019538879,
0.2661212682723999,
-0.42087697982788086,
0.6045879125595093,
-0.22095833718776703,
-0.6623209714889526,
0.80658358335495,
0.12688742578029633,
1.0237716436386108,
0.0984899252653122,
0.7726770639419556,
0.5889737010002136,
0.558462917804718,
0.20806507766246796,
0.41086700558662415,
-0.4667944312095642,
-0.7583770155906677,
0.18954665958881378,
-0.7434200644493103,
-0.587793231010437,
0.2424616664648056,
-0.6989086270332336,
0.30424872040748596,
-0.7711227536201477,
-0.2799065113067627,
0.008656738325953484,
0.19379565119743347,
-0.5625551342964172,
0.3044598698616028,
-0.13414573669433594,
0.6197814345359802,
-1.0385336875915527,
0.43097221851348877,
0.3247694671154022,
-0.9053192734718323,
-0.6092586517333984,
0.10442381352186203,
-0.06762588024139404,
-0.30009523034095764,
0.3471125066280365,
0.20915697515010834,
0.2223445177078247,
-0.271422803401947,
-0.7312491536140442,
-0.5601277351379395,
1.0742428302764893,
-0.1566992998123169,
-0.23147594928741455,
0.4410770833492279,
0.3528972566127777,
0.9264833331108093,
-0.5811285972595215,
0.4643694758415222,
0.3334852457046509,
0.5036831498146057,
-0.17501093447208405,
-0.39764824509620667,
0.07538622617721558,
-0.4547131061553955,
-0.3005528748035431,
-0.07114624232053757,
-0.8516861796379089,
0.9124517440795898,
0.09517541527748108,
-0.08487627655267715,
-0.1579177975654602,
0.28766247630119324,
0.1463201642036438,
0.5414197444915771,
0.49798691272735596,
0.6659725308418274,
0.5837308168411255,
-0.19843707978725433,
1.0382840633392334,
-0.3341296911239624,
0.562189519405365,
0.6337376832962036,
-0.3148888051509857,
0.9405929446220398,
0.030282024294137955,
-0.35666871070861816,
0.9848180413246155,
0.5875328779220581,
-0.4172360599040985,
0.5657559633255005,
-0.05894876644015312,
-0.1800258755683899,
-0.10152316838502884,
-0.14004948735237122,
-0.41301387548446655,
0.06026141345500946,
0.32841232419013977,
-0.6319695711135864,
0.19272932410240173,
0.026661846786737442,
-0.008706939406692982,
-0.027187462896108627,
-0.07511775195598602,
0.8167387843132019,
0.09580102562904358,
-0.6425237655639648,
0.3805706799030304,
-0.1323026567697525,
0.4744056761264801,
-0.4533134400844574,
-0.020276803523302078,
-0.1814154088497162,
0.28346267342567444,
-0.4698045551776886,
-0.9245625138282776,
-0.01467730663716793,
-0.2872796952724457,
-0.5412871241569519,
-0.3517037630081177,
0.2597856819629669,
-0.32063791155815125,
-0.6805176734924316,
0.5115209221839905,
0.03651302307844162,
0.12384912371635437,
0.10825467854738235,
-0.9083341360092163,
-0.048108551651239395,
0.09903541952371597,
-0.32114508748054504,
0.08440040051937103,
0.524194598197937,
0.13889993727207184,
0.5070809125900269,
0.7166708707809448,
0.22899730503559113,
-0.1518876701593399,
0.15167397260665894,
0.6873884201049805,
-0.8525703549385071,
-0.7567903399467468,
-0.1990567296743393,
0.5625877380371094,
-0.2699460983276367,
-0.6722549200057983,
0.8518527150154114,
0.6396030783653259,
0.7635911703109741,
-0.08312109112739563,
0.8655067682266235,
-0.16784372925758362,
0.6464430689811707,
-0.29616597294807434,
0.8926173448562622,
-0.55308598279953,
0.49175918102264404,
-0.38481366634368896,
-1.0617762804031372,
-0.35992521047592163,
0.4510516822338104,
-0.4577098488807678,
0.1695380061864853,
0.7935706973075867,
0.8754392862319946,
0.11600841581821442,
0.4003649950027466,
-0.08245798200368881,
0.49822211265563965,
0.190577894449234,
0.3030998706817627,
0.6043282151222229,
-0.7765085101127625,
0.4213971793651581,
-0.5955005884170532,
-0.4133540689945221,
-0.20325055718421936,
-0.8225361704826355,
-0.807161808013916,
-0.7680671811103821,
-0.6369438767433167,
-0.719925582408905,
-0.2036062777042389,
0.640850841999054,
0.4994314908981323,
-1.1009620428085327,
-0.2672877311706543,
-0.022427914664149284,
0.2360936999320984,
-0.5050816535949707,
-0.2969111502170563,
0.43860533833503723,
0.2271614521741867,
-0.49820786714553833,
-0.01740691252052784,
0.17927666008472443,
-0.17386771738529205,
-0.5386187434196472,
-0.08876673132181168,
0.049965277314186096,
0.050480179488658905,
0.36981892585754395,
0.2853672206401825,
-0.6062749028205872,
-0.20217899978160858,
0.05662380903959274,
-0.1020834669470787,
0.12088267505168915,
0.6516374349594116,
-0.4960538148880005,
0.26280897855758667,
0.6654916405677795,
0.10946584492921829,
0.4998815059661865,
0.15949560701847076,
0.1641436070203781,
-0.42493194341659546,
-0.22459015250205994,
0.37717559933662415,
0.18055415153503418,
0.33877894282341003,
-0.6498761177062988,
0.378601610660553,
0.26970434188842773,
-0.960110604763031,
-0.6147553324699402,
-0.045341137796640396,
-1.5930927991867065,
-0.11157360672950745,
1.258812427520752,
-0.001449885661713779,
-0.4105541706085205,
-0.33551034331321716,
-0.28261610865592957,
-0.13222499191761017,
-0.6043071150779724,
0.9174444675445557,
0.7692016959190369,
0.11192376911640167,
-0.11602886021137238,
-0.3649134635925293,
0.5388833284378052,
0.4242922365665436,
-0.6868372559547424,
0.038579147309064865,
0.5336697697639465,
0.26965996623039246,
0.43953362107276917,
0.45405519008636475,
-0.2276988923549652,
0.1350264698266983,
-0.12603093683719635,
0.43494343757629395,
0.14729338884353638,
-0.33931079506874084,
-0.4175506830215454,
0.5312709212303162,
-0.13491196930408478,
-0.009341945871710777
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
GEM-submissions/submission-scores | GEM-submissions | 2023-06-08T23:06:02Z | 293 | 0 | null | [
"region:us"
] | 2023-06-08T23:06:02Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227645754814148,
-0.22568479180335999,
0.8622263669967651,
0.43461522459983826,
-0.52829909324646,
0.7012971639633179,
0.7915719747543335,
0.07618614286184311,
0.774603009223938,
0.2563217282295227,
-0.7852813005447388,
-0.22573819756507874,
-0.9104475975036621,
0.5715674161911011,
-0.3992327153682709,
0.5791246294975281,
-0.14494499564170837,
-0.10751135647296906,
0.28233814239501953,
-0.2768957316875458,
-0.5409227013587952,
-0.3685525059700012,
-1.1902779340744019,
0.061491698026657104,
0.5316582918167114,
0.743514358997345,
0.7584061622619629,
0.3652168810367584,
0.643257737159729,
0.39322906732559204,
-0.231389120221138,
0.48270541429519653,
-0.04171793907880783,
0.0026038705836981535,
-0.3524438440799713,
-0.5516899824142456,
-0.28596577048301697,
0.07584768533706665,
1.096130132675171,
0.9666873812675476,
-0.28466421365737915,
0.05330856889486313,
-0.30636167526245117,
0.3308892846107483,
-0.4973427355289459,
0.3054097294807434,
-0.022506216540932655,
0.16318757832050323,
-0.704151451587677,
-0.5535351634025574,
0.012795033864676952,
-0.7361212968826294,
0.17926514148712158,
-0.6900812387466431,
0.8269097208976746,
0.18583209812641144,
1.1533749103546143,
0.14819422364234924,
-0.4624859392642975,
-0.8161761164665222,
-0.6538985371589661,
0.5711163282394409,
-0.32703715562820435,
0.3968023657798767,
0.7028226256370544,
-0.048573337495326996,
-0.9820331335067749,
-0.6745738983154297,
-0.46466246247291565,
0.2923974096775055,
0.3540281355381012,
-0.3411684036254883,
-0.17522093653678894,
-0.30589917302131653,
0.15791958570480347,
0.1281142681837082,
-0.48419976234436035,
-0.5543919205665588,
-0.547515869140625,
-0.39602571725845337,
0.6206656694412231,
0.34829503297805786,
0.24291737377643585,
-0.18884189426898956,
-0.3228582441806793,
0.0880165845155716,
-0.41608554124832153,
0.3402574062347412,
0.6335517168045044,
0.711402416229248,
-0.5811446309089661,
0.5602157711982727,
-0.049275897443294525,
0.7439709901809692,
0.11445585638284683,
-0.2747812569141388,
0.4146060049533844,
-0.14724673330783844,
0.055171847343444824,
0.42263513803482056,
0.3152443468570709,
0.28413069248199463,
-0.3273696303367615,
0.20322275161743164,
-0.32151490449905396,
-0.3049626648426056,
-0.2233218252658844,
-0.29490745067596436,
-0.35921788215637207,
0.5492295026779175,
-0.3314018249511719,
-0.4285552501678467,
1.1431758403778076,
-0.42007699608802795,
-0.7302228808403015,
0.33156365156173706,
0.40652117133140564,
-0.0994473472237587,
-0.37146514654159546,
-0.052260853350162506,
-0.8458787202835083,
-0.00790744461119175,
0.7491178512573242,
-0.7198969125747681,
0.33717358112335205,
0.47280627489089966,
0.741721510887146,
0.1965060532093048,
-0.14034466445446014,
-0.4294945299625397,
0.2971963882446289,
-0.8659994006156921,
0.6320174336433411,
-0.20135276019573212,
-1.0051976442337036,
0.11150483042001724,
0.8971704244613647,
-0.3789643347263336,
-1.2094870805740356,
1.0605157613754272,
-0.6887932419776917,
0.16017864644527435,
-0.6767609119415283,
-0.14661164581775665,
-0.07118469476699829,
-0.005095955915749073,
-0.6088155508041382,
0.7567099332809448,
0.5872676968574524,
-0.49952778220176697,
0.21429462730884552,
-0.2602984309196472,
-0.3915135860443115,
0.38824939727783203,
-0.0793546810746193,
-0.21858906745910645,
0.7138336896896362,
-0.6647078394889832,
-0.2693284749984741,
0.2942773103713989,
0.23689350485801697,
-0.357060968875885,
-0.793192446231842,
0.08478079736232758,
-0.05786222219467163,
1.5507503747940063,
-0.03868860378861427,
-0.35861143469810486,
-0.6793836951255798,
-1.1506236791610718,
-0.07070811837911606,
0.6886887550354004,
-0.9194992184638977,
-0.27839499711990356,
-0.046410247683525085,
-0.26169371604919434,
0.0899493545293808,
0.7390591502189636,
-1.119404911994934,
0.28327250480651855,
-0.050927065312862396,
-0.22794730961322784,
0.8271061182022095,
0.1538720428943634,
0.24758882820606232,
0.14913466572761536,
0.4295872151851654,
0.5277255773544312,
0.11115183681249619,
0.6835882663726807,
-0.3472035229206085,
-0.9694353938102722,
0.6154633164405823,
0.25266438722610474,
0.8121451139450073,
-0.49945372343063354,
0.2685092091560364,
0.2702546715736389,
-0.3409683108329773,
-0.5682377815246582,
-0.310282826423645,
0.09025713056325912,
0.14930608868598938,
0.11142496764659882,
-0.5721707344055176,
-0.6576128005981445,
-0.9689135551452637,
-0.13590654730796814,
-0.43143755197525024,
-0.35715678334236145,
0.2100687474012375,
0.5792907476425171,
-1.1975533962249756,
0.4128877520561218,
-0.7705622911453247,
-0.703874409198761,
-0.010655621066689491,
-0.1933809369802475,
0.7540653944015503,
0.43240174651145935,
0.5033961534500122,
-0.6397145390510559,
-0.5661987066268921,
-0.22470159828662872,
-1.0333740711212158,
-0.13280484080314636,
0.24819664657115936,
0.3065737783908844,
-0.1342328041791916,
-0.2744964361190796,
-0.48740261793136597,
0.8100383877754211,
0.14789214730262756,
-0.5391897559165955,
0.5220769643783569,
-0.3020317554473877,
0.17224839329719543,
-0.6369158029556274,
-0.0691685602068901,
-0.6616761684417725,
-0.0009067110950127244,
-0.36083078384399414,
-0.5737436413764954,
0.14772333204746246,
0.07017548382282257,
-0.16065415740013123,
0.2880837619304657,
-0.909276008605957,
-0.0010854422580450773,
-0.744221568107605,
0.37907224893569946,
0.0639476627111435,
-0.3145084083080292,
-0.017516743391752243,
1.000038743019104,
0.7784457206726074,
-0.3848040699958801,
0.7217439413070679,
0.4440040588378906,
0.19036099314689636,
0.7630518674850464,
-0.18725158274173737,
0.16478213667869568,
-0.5245421528816223,
-0.12161099910736084,
-0.8887605667114258,
-1.0982943773269653,
0.7320572137832642,
-0.6114250421524048,
0.36542850732803345,
-0.42778605222702026,
0.2589159309864044,
-0.6919258832931519,
-0.038853395730257034,
0.4808599054813385,
-0.05936374515295029,
-0.6863952875137329,
0.5232571363449097,
0.4531749188899994,
-0.2019244134426117,
-0.6609036922454834,
-0.5301570296287537,
0.39365914463996887,
0.6154113411903381,
-0.16390396654605865,
0.06878498196601868,
0.14941087365150452,
-0.5441920757293701,
-0.040802545845508575,
-0.3869187533855438,
-0.4576674997806549,
0.05422405153512955,
0.13053379952907562,
-0.005750161595642567,
-0.40482011437416077,
-0.08680257946252823,
-0.35842010378837585,
-0.4656125009059906,
0.21876463294029236,
0.30119529366493225,
-0.04096344858407974,
-0.42599743604660034,
-0.36198148131370544,
-0.8881808519363403,
0.6719611883163452,
0.5370280146598816,
0.05281474441289902,
0.7555550336837769,
0.16819244623184204,
-0.801498293876648,
-0.13532206416130066,
-0.17607054114341736,
0.2696835994720459,
-0.5588056445121765,
0.13849826157093048,
-0.013484805822372437,
-0.06374907493591309,
0.2629791498184204,
0.25386205315589905,
-0.4300558567047119,
0.927625298500061,
-0.26152747869491577,
-0.3592526614665985,
0.7960182428359985,
0.5974737405776978,
0.4958309531211853,
0.16503198444843292,
-0.044541094452142715,
0.9007097482681274,
-1.196651816368103,
-0.6563171744346619,
-0.7409546375274658,
-0.15945661067962646,
-0.43510857224464417,
-0.0321057066321373,
0.6254417300224304,
0.29009905457496643,
-0.13333925604820251,
0.47563934326171875,
-0.5243490934371948,
0.3556032180786133,
1.0119839906692505,
0.3574867248535156,
0.34357017278671265,
-0.7570232152938843,
-0.25157779455184937,
-0.14024296402931213,
-0.9998159408569336,
-0.2631372809410095,
0.8871029615402222,
0.2275265008211136,
0.8444608449935913,
0.5992542505264282,
0.6784538626670837,
0.136723130941391,
0.2523833215236664,
-0.305902898311615,
0.39202871918678284,
0.43760839104652405,
-1.040114164352417,
-0.42758411169052124,
0.02141888067126274,
-0.9703332185745239,
-0.14227578043937683,
-0.03495054319500923,
-0.42617106437683105,
0.7681738138198853,
0.00016635804786346853,
-0.4076710641384125,
0.7732735872268677,
-0.4555833339691162,
0.7562878727912903,
-0.4473649859428406,
-0.026638653129339218,
0.4699098467826843,
-0.707064151763916,
0.4677433967590332,
0.12878736853599548,
0.6205845475196838,
-0.015571946278214455,
-0.04078621417284012,
0.7104931473731995,
-0.9129164814949036,
0.25438612699508667,
-0.6348398923873901,
0.22421303391456604,
0.24246959388256073,
0.5160625576972961,
0.5969962477684021,
0.4371241629123688,
0.10119915008544922,
-0.23920848965644836,
0.04115789383649826,
-0.8241121172904968,
-0.21050670742988586,
0.6975144147872925,
-0.7186897397041321,
-0.6864195466041565,
-1.2355334758758545,
0.14438661932945251,
0.2734704911708832,
0.3893047273159027,
0.7959297895431519,
0.5714079141616821,
0.12895449995994568,
0.6805254220962524,
0.9888579249382019,
-0.06885591894388199,
0.916691780090332,
0.3224475085735321,
0.09175165742635727,
-0.2194489687681198,
0.703682541847229,
0.2662784457206726,
-0.2470790147781372,
-0.11939744651317596,
0.20913469791412354,
-0.11069414764642715,
-0.5917618870735168,
-0.4999074339866638,
0.3701755702495575,
-0.6731783747673035,
-0.1830393373966217,
-0.6243732571601868,
-0.6043766736984253,
-0.5117589235305786,
0.0692739263176918,
-0.7147684097290039,
0.23979082703590393,
-0.7753568887710571,
-0.10574901103973389,
0.04323358088731766,
0.9792002439498901,
-0.5893120765686035,
0.5805228352546692,
-1.12185800075531,
0.19345775246620178,
-0.07949890196323395,
0.792106032371521,
0.2139579802751541,
-0.7344390153884888,
-0.39754199981689453,
-0.11592598259449005,
-0.37299054861068726,
-1.3576757907867432,
0.21404962241649628,
-0.24541422724723816,
0.2309398353099823,
0.6145407557487488,
0.13977040350437164,
0.5258244276046753,
-0.3432632088661194,
0.7029102444648743,
-0.057016827166080475,
-0.7069293856620789,
0.7934491038322449,
-0.5026893615722656,
0.4963533282279968,
0.9766002893447876,
0.5333840250968933,
-0.7984007596969604,
0.0357406847178936,
-1.041122555732727,
-0.600869357585907,
0.38426393270492554,
0.1192895919084549,
-0.03601125627756119,
-0.665955662727356,
-0.054019927978515625,
-0.16143806278705597,
0.6043741703033447,
-1.0390695333480835,
-0.785835862159729,
0.25766894221305847,
0.5277299284934998,
0.08168502151966095,
-0.5653401613235474,
0.2088075876235962,
-0.5444163084030151,
1.0657776594161987,
0.45109352469444275,
0.32744958996772766,
0.8406059145927429,
0.4649237096309662,
-0.38231605291366577,
0.09252502024173737,
0.7662692070007324,
0.6666228771209717,
-0.5239795446395874,
-0.2908027172088623,
-0.0882752314209938,
-0.9143400192260742,
0.05927503854036331,
0.1116887554526329,
-0.013456095941364765,
0.9082115292549133,
0.579308032989502,
0.253970205783844,
0.4514276385307312,
-0.7264610528945923,
0.8859445452690125,
-0.1495419293642044,
-0.1247284859418869,
-1.0677239894866943,
0.19486205279827118,
-0.23984935879707336,
0.5006400346755981,
1.0061331987380981,
0.525004506111145,
-0.047630541026592255,
-0.814338207244873,
-0.014736384153366089,
0.6939173936843872,
-0.7091119289398193,
-0.17449775338172913,
0.9448539614677429,
0.38471025228500366,
-1.295304536819458,
1.106776475906372,
-0.5381773710250854,
-0.5603317618370056,
0.9121302366256714,
0.5229570269584656,
1.1221849918365479,
-0.44204193353652954,
0.0008675057324580848,
0.2662239074707031,
0.4137844443321228,
0.5423170328140259,
1.0869632959365845,
0.43141356110572815,
-0.7931072115898132,
0.8826581835746765,
-0.24776068329811096,
-0.40361127257347107,
-0.053475700318813324,
-0.42859864234924316,
0.16892209649085999,
-0.4406189024448395,
-0.10712965577840805,
-0.3444185256958008,
0.2854307293891907,
-0.70720374584198,
0.42807644605636597,
-0.08385642617940903,
0.8653066754341125,
-0.8553729057312012,
0.47207602858543396,
0.6354700326919556,
-0.33373481035232544,
-0.8508192300796509,
-0.26198476552963257,
-0.1144845262169838,
-0.6389466524124146,
0.30214792490005493,
-0.45541054010391235,
0.044398874044418335,
0.09623479843139648,
-0.6491509675979614,
-1.1778273582458496,
0.9093631505966187,
-0.6396117210388184,
-0.2784458100795746,
0.20463958382606506,
-0.1151471883058548,
0.28811654448509216,
-0.2524648904800415,
0.010661328211426735,
0.4187661111354828,
0.7489396333694458,
0.28446561098098755,
-0.7727053761482239,
-0.36948859691619873,
0.0015033691888675094,
-0.44474759697914124,
0.7582973837852478,
-0.6002098917961121,
1.1840776205062866,
-0.556353747844696,
-0.05965423583984375,
0.4438447952270508,
0.24690861999988556,
0.21076245605945587,
0.6629217267036438,
0.144208163022995,
0.7282259464263916,
1.0701210498809814,
-0.4083522856235504,
0.881180465221405,
0.26432785391807556,
0.4743083417415619,
0.7238510251045227,
-0.6487718820571899,
0.7513747811317444,
0.3181043267250061,
-0.5682927966117859,
0.9228019714355469,
1.290606141090393,
-0.15699152648448944,
0.80793696641922,
0.051364265382289886,
-1.0815999507904053,
0.32583361864089966,
-0.20724761486053467,
-0.7530062198638916,
0.31502565741539,
0.19055864214897156,
-0.6920987367630005,
-0.5770313739776611,
-0.2404651641845703,
-0.35662829875946045,
-0.11552873998880386,
-0.763173520565033,
0.6720565557479858,
-0.01696927472949028,
-0.5103673934936523,
0.18857470154762268,
0.28775009512901306,
0.17368444800376892,
-0.5235736966133118,
-0.029393965378403664,
-0.22823575139045715,
0.2660652697086334,
-0.5670853853225708,
-0.5234523415565491,
0.5724437236785889,
-0.32430148124694824,
-0.5343252420425415,
0.181474968791008,
0.7635870575904846,
-0.16923785209655762,
-0.4515411853790283,
0.3247268795967102,
0.6959530115127563,
0.16658467054367065,
0.42502790689468384,
-0.23511283099651337,
0.2448059767484665,
-0.08044827729463577,
-0.06651593744754791,
0.27714747190475464,
0.3449171781539917,
0.22435645759105682,
0.44501352310180664,
0.432856947183609,
-0.018087303265929222,
-0.10736559331417084,
-0.38282057642936707,
0.41249361634254456,
-0.9542784690856934,
-0.5713290572166443,
-0.630710780620575,
0.2740667760372162,
-0.023154327645897865,
-1.0836422443389893,
0.41451746225357056,
1.4406688213348389,
1.0359984636306763,
-0.4756380617618561,
1.0672271251678467,
-0.21818462014198303,
0.9594789743423462,
0.4148314893245697,
0.5420438051223755,
-0.6030403971672058,
0.038353081792593,
-0.43644052743911743,
-1.0769634246826172,
-0.3571633994579315,
0.4539390206336975,
-0.02289981208741665,
-0.3429867625236511,
0.8725717663764954,
0.5887162685394287,
-0.3347362279891968,
-0.11728022992610931,
0.04848663881421089,
-0.029941599816083908,
-0.12433874607086182,
0.5145372152328491,
0.764839768409729,
-0.9344298243522644,
-0.10680411010980606,
-0.21577700972557068,
-0.6382728815078735,
-0.5047284364700317,
-0.9632002711296082,
-0.12959381937980652,
-0.16037842631340027,
0.03534334897994995,
-0.5662809014320374,
0.002556905150413513,
1.2083250284194946,
0.5684951543807983,
-1.1113994121551514,
-0.5303782224655151,
0.33718499541282654,
0.39204245805740356,
-0.1874789297580719,
-0.24202406406402588,
0.2984571158885956,
0.1538221836090088,
-0.5908879041671753,
0.6875662803649902,
0.8089626431465149,
0.20888905227184296,
0.19554781913757324,
0.15893003344535828,
-0.8229468464851379,
-0.1491343379020691,
0.1744047999382019,
0.9450566172599792,
-0.9398531913757324,
-0.7114846110343933,
-0.03168468177318573,
-0.2709487974643707,
-0.05765697360038757,
0.17102089524269104,
-0.4046342968940735,
0.5180684924125671,
0.34591469168663025,
0.49933499097824097,
0.056160878390073776,
-0.05474642664194107,
0.5409556031227112,
-0.9069051742553711,
0.09425970166921616,
0.41343608498573303,
0.4154110848903656,
-0.4000871181488037,
-0.5910195112228394,
0.6713417172431946,
1.0073974132537842,
-0.6594864130020142,
-0.8743263483047485,
-0.19846680760383606,
-1.0016000270843506,
0.04189697653055191,
0.6762756109237671,
0.5009528994560242,
-0.48065176606178284,
-0.4174492359161377,
-0.5617400407791138,
-0.1254679411649704,
-0.13699708878993988,
0.76216059923172,
1.1796802282333374,
-0.7432100772857666,
0.07975788414478302,
-1.0386393070220947,
0.6594987511634827,
-0.2419460564851761,
-0.3457580506801605,
-0.4864429533481598,
0.3832802176475525,
0.3523699641227722,
0.44048118591308594,
0.6148120164871216,
0.14084689319133759,
0.8338428735733032,
0.31260576844215393,
-0.17026856541633606,
0.2698982357978821,
-0.4559198319911957,
-0.02893332578241825,
-0.05796259641647339,
0.3101596236228943,
-1.026215672492981
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
Jeska/autonlp-data-vaccinfaq | Jeska | 2021-10-19T12:06:57Z | 293 | 0 | null | [
"task_categories:text-classification",
"region:us"
] | 2021-10-19T12:06:57Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
task_categories:
- text-classification
---
# AutoNLP Dataset for project: vaccinfaq
## 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 vaccinfaq.
### 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
[
{
"target": 6,
"text": "What je naam?"
},
{
"target": 6,
"text": "Hoe heet je?"
}
]
```
### Dataset Fields
The dataset has the following fields (also called "features"):
```json
{
"target": "ClassLabel(num_classes=181, names=['chitchat_ask_bye', 'chitchat_ask_hi', 'chitchat_ask_hi_de', 'chitchat_ask_hi_en', 'chitchat_ask_hi_fr', 'chitchat_ask_hoe_gaat_het', 'chitchat_ask_name', 'chitchat_ask_thanks', 'faq_ask_aantal_gevaccineerd', 'faq_ask_aantal_gevaccineerd_wereldwijd', 'faq_ask_afspraak_afzeggen', 'faq_ask_afspraak_gemist', 'faq_ask_algemeen_info', 'faq_ask_allergisch_na_vaccinatie', 'faq_ask_alternatieve_medicatie', 'faq_ask_andere_vaccins', 'faq_ask_astrazeneca', 'faq_ask_astrazeneca_bij_ouderen', 'faq_ask_astrazeneca_bloedklonters', 'faq_ask_astrazeneca_prik_2', 'faq_ask_attest', 'faq_ask_autisme_na_vaccinatie', 'faq_ask_auto-immuun', 'faq_ask_begeleiding', 'faq_ask_beschermen', 'faq_ask_beschermingsduur', 'faq_ask_beschermingspercentage', 'faq_ask_besmetten_na_vaccin', 'faq_ask_betalen_voor_vaccin', 'faq_ask_betrouwbaar', 'faq_ask_betrouwbare_bronnen', 'faq_ask_bijsluiter', 'faq_ask_bijwerking_AZ', 'faq_ask_bijwerking_JJ', 'faq_ask_bijwerking_algemeen', 'faq_ask_bijwerking_lange_termijn', 'faq_ask_bijwerking_moderna', 'faq_ask_bijwerking_pfizer', 'faq_ask_bloed_geven', 'faq_ask_borstvoeding', 'faq_ask_buitenlander', 'faq_ask_chronisch_ziek', 'faq_ask_combi', 'faq_ask_complottheorie', 'faq_ask_complottheorie_5G', 'faq_ask_complottheorie_Bill_Gates', 'faq_ask_contra_ind', 'faq_ask_corona_is_griep', 'faq_ask_corona_vermijden', 'faq_ask_covid_door_vaccin', 'faq_ask_curevac', 'faq_ask_derde_prik', 'faq_ask_dna', 'faq_ask_duur_vaccinatie', 'faq_ask_eerst_weigeren', 'faq_ask_eerste_prik_buitenland', 'faq_ask_essentieel_beroep', 'faq_ask_experimenteel', 'faq_ask_foetus', 'faq_ask_geen_antwoord', 'faq_ask_geen_risicopatient', 'faq_ask_geen_uitnodiging', 'faq_ask_gestockeerd', 'faq_ask_gezondheidstoestand_gekend', 'faq_ask_gif_in_vaccin', 'faq_ask_goedkeuring', 'faq_ask_groepsimmuniteit', 'faq_ask_hartspierontsteking', 'faq_ask_hersenziekte', 'faq_ask_hoe_dodelijk', 'faq_ask_hoe_weet_overheid', 'faq_ask_hoeveel_dosissen', 'faq_ask_huisarts', 'faq_ask_huisdieren', 'faq_ask_iedereen', 'faq_ask_in_vaccin', 'faq_ask_info_vaccins', 'faq_ask_janssen', 'faq_ask_janssen_een_dosis', 'faq_ask_jong_en_gezond', 'faq_ask_keuze', 'faq_ask_keuze_vaccinatiecentrum', 'faq_ask_kinderen', 'faq_ask_kosjer_halal', 'faq_ask_leveringen', 'faq_ask_logistiek', 'faq_ask_logistiek_veilig', 'faq_ask_magnetisch', 'faq_ask_man_vrouw_verschillen', 'faq_ask_mantelzorger', 'faq_ask_maximaal_een_dosis', 'faq_ask_meer_bijwerkingen_tweede_dosis', 'faq_ask_minder_mobiel', 'faq_ask_moderna', 'faq_ask_mondmasker', 'faq_ask_motiveren', 'faq_ask_mrna_vs_andere_vaccins', 'faq_ask_naaldangst', 'faq_ask_nadelen', 'faq_ask_nuchter', 'faq_ask_ontwikkeling', 'faq_ask_onvruchtbaar', 'faq_ask_oplopen_vaccinatie', 'faq_ask_pfizer', 'faq_ask_phishing', 'faq_ask_pijnstiller', 'faq_ask_planning_eerstelijnszorg', 'faq_ask_planning_ouderen', 'faq_ask_positieve_test_na_vaccin', 'faq_ask_prioritaire_gropen', 'faq_ask_privacy', 'faq_ask_probleem_registratie', 'faq_ask_problemen_uitnodiging', 'faq_ask_quarantaine', 'faq_ask_qvax_probleem', 'faq_ask_reproductiegetal', 'faq_ask_risicopatient', 'faq_ask_risicopatient_diabetes', 'faq_ask_risicopatient_hartvaat', 'faq_ask_risicopatient_immuunziekte', 'faq_ask_risicopatient_kanker', 'faq_ask_risicopatient_luchtwegaandoening', 'faq_ask_smaakverlies', 'faq_ask_snel_ontwikkeld', 'faq_ask_sneller_aan_de_beurt', 'faq_ask_taxi', 'faq_ask_test_voor_vaccin', 'faq_ask_testen', 'faq_ask_tijd_tot_tweede_dosis', 'faq_ask_timing_andere_vaccins', 'faq_ask_trage_start', 'faq_ask_tweede_dosis_afspraak', 'faq_ask_tweede_dosis_vervroegen', 'faq_ask_twijfel_bijwerkingen', 'faq_ask_twijfel_effectiviteit', 'faq_ask_twijfel_inhoud', 'faq_ask_twijfel_ivm_vaccinatie', 'faq_ask_twijfel_noodzaak', 'faq_ask_twijfel_ontwikkeling', 'faq_ask_twijfel_praktisch', 'faq_ask_twijfel_vaccins_zelf', 'faq_ask_twijfel_vrijheid', 'faq_ask_uit_flacon', 'faq_ask_uitnodiging_afspraak_kwijt', 'faq_ask_uitnodiging_na_vaccinatie', 'faq_ask_vaccin_doorgeven', 'faq_ask_vaccin_immuunsysteem', 'faq_ask_vaccin_variant', 'faq_ask_vaccinatiecentrum', 'faq_ask_vaccine_covid_gehad', 'faq_ask_vaccine_covid_gehad_effect', 'faq_ask_vakantie', 'faq_ask_veelgestelde_vragen', 'faq_ask_vegan', 'faq_ask_verplicht', 'faq_ask_verschillen', 'faq_ask_vrijwillig_Janssen', 'faq_ask_vrijwilliger', 'faq_ask_waar_en_wanneer', 'faq_ask_waarom', 'faq_ask_waarom_niet_verplicht', 'faq_ask_waarom_ouderen_eerst', 'faq_ask_waarom_twee_prikken', 'faq_ask_waarom_twijfel', 'faq_ask_wanneer_algemene_bevolking', 'faq_ask_wanneer_iedereen_gevaccineerd', 'faq_ask_wat_is_corona', 'faq_ask_wat_is_rna', 'faq_ask_wat_is_vaccin', 'faq_ask_wat_na_vaccinatie', 'faq_ask_welk_vaccin_krijg_ik', 'faq_ask_welke_vaccin', 'faq_ask_wie_ben_ik', 'faq_ask_wie_doet_inenting', 'faq_ask_wie_is_risicopatient', 'faq_ask_wie_nu', 'faq_ask_wilsonbekwaam', 'faq_ask_zwanger', 'get_started', 'nlu_fallback', 'test'], 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 | 11651 |
| valid | 1267 |
| [
-0.531613290309906,
-0.5429306030273438,
0.11921756714582443,
0.1505105197429657,
-0.05276287719607353,
0.03564348444342613,
0.20946812629699707,
-0.2651444971561432,
0.3552531599998474,
0.15469218790531158,
-0.6352495551109314,
-0.7699580192565918,
-0.33678340911865234,
0.6539667844772339,
-0.1780768483877182,
0.7902738451957703,
-0.11195513606071472,
0.2259317934513092,
0.18550802767276764,
-0.2045528143644333,
0.40416261553764343,
-0.2784733474254608,
-0.4438173174858093,
0.046712253242731094,
0.6826967000961304,
0.5975191593170166,
0.5153907537460327,
0.45110100507736206,
0.22141234576702118,
0.32978230714797974,
-0.2533046305179596,
0.1269957572221756,
-0.10681343078613281,
-0.1291053295135498,
-0.12036306411027908,
-0.5160737633705139,
-0.5268310308456421,
0.29740002751350403,
0.018759552389383316,
0.5100159645080566,
0.10841879993677139,
0.5727691054344177,
0.0073640658520162106,
1.0327832698822021,
-0.4608578085899353,
-0.24573104083538055,
-0.14402525126934052,
0.1554384082555771,
0.008111968636512756,
0.1600215584039688,
-0.18768814206123352,
-0.5759947299957275,
-0.09960339963436127,
-0.7759956121444702,
0.03688618168234825,
-0.042180005460977554,
1.76566481590271,
-0.19157622754573822,
-0.45584961771965027,
-0.3756236135959625,
-0.28475481271743774,
0.7166125178337097,
-1.0154274702072144,
0.13486343622207642,
0.9058564901351929,
0.05700211971998215,
-0.36830925941467285,
-0.5449141263961792,
-0.9824249148368835,
0.12797929346561432,
-0.25725236535072327,
0.4060695171356201,
-0.5492451786994934,
-0.23435354232788086,
0.18783532083034515,
0.15392948687076569,
-1.0181185007095337,
-0.22660553455352783,
-0.604880690574646,
0.047559067606925964,
0.8660781383514404,
-0.19073064625263214,
0.34191691875457764,
-0.40914174914360046,
-0.4721532166004181,
-0.10907157510519028,
-0.3651697039604187,
0.5197209119796753,
0.34753480553627014,
-0.2012748122215271,
-0.5664616823196411,
0.7020402550697327,
-0.8935049176216125,
0.5608950853347778,
0.4693247377872467,
-0.24338573217391968,
0.8239006400108337,
-0.6303080916404724,
-0.5144527554512024,
-0.15077628195285797,
1.2428066730499268,
0.4485940933227539,
-0.005153132136911154,
0.22414804995059967,
0.27977803349494934,
-0.2166869193315506,
0.06727814674377441,
-0.7811416983604431,
-0.4335992932319641,
0.8420186042785645,
-0.7481975555419922,
-0.28441569209098816,
0.12074757367372513,
-1.2142455577850342,
0.09993599355220795,
0.16355514526367188,
0.7150413393974304,
-0.38577115535736084,
-0.30541691184043884,
0.40878501534461975,
-0.3162359595298767,
0.6608850955963135,
0.2888975739479065,
-0.8279830813407898,
0.027516771107912064,
0.21170659363269806,
0.7708048820495605,
0.04133198782801628,
0.02800597995519638,
-0.03166814520955086,
0.2864168882369995,
-0.6241862773895264,
0.8803571462631226,
-0.32681939005851746,
-0.5883197784423828,
-0.0842064768075943,
0.5664425492286682,
-0.2357976734638214,
-0.4891108572483063,
0.5844493508338928,
-0.21211378276348114,
0.7848566174507141,
-0.7915211915969849,
-0.16663594543933868,
-0.23597939312458038,
0.36729830503463745,
-0.4464851915836334,
1.3336060047149658,
0.47889444231987,
-1.050618290901184,
0.6691305041313171,
-0.7203209400177002,
-0.47509148716926575,
-0.16698946058750153,
-0.45165008306503296,
-0.8289676904678345,
-0.489864319562912,
0.46052786707878113,
0.4766380488872528,
-0.26894983649253845,
-0.05916779115796089,
-0.1967787891626358,
0.0031680327374488115,
0.0673568919301033,
-0.38818949460983276,
1.307408332824707,
0.5179738402366638,
-0.6413514614105225,
0.06633467972278595,
-1.1340910196304321,
0.07801475375890732,
0.4147520661354065,
-0.5874128341674805,
0.13761872053146362,
-0.676965594291687,
-0.27034664154052734,
0.6715517640113831,
0.11526932567358017,
-0.8149554133415222,
0.3110840916633606,
-0.6172436475753784,
0.22413067519664764,
0.5367097854614258,
0.134913831949234,
0.21733307838439941,
-0.9315773248672485,
0.7553806304931641,
0.21655404567718506,
0.3140586018562317,
0.07473118603229523,
-0.9294935464859009,
-0.9826131463050842,
-0.15564800798892975,
0.08336114883422852,
1.0993233919143677,
-0.871317982673645,
0.8889219164848328,
-0.18331584334373474,
-0.7964172959327698,
-0.391504168510437,
-0.01231688167899847,
0.36002177000045776,
0.5248392224311829,
0.21638213098049164,
0.10519209504127502,
-0.7096875309944153,
-1.2927777767181396,
-0.49422985315322876,
-0.2556009888648987,
0.11265935748815536,
0.5025873184204102,
1.23936128616333,
0.08264609426259995,
0.9188441634178162,
-0.6779067516326904,
-0.2724921703338623,
-0.31601905822753906,
-0.21601471304893494,
0.572921633720398,
0.6491184234619141,
0.8383135795593262,
-1.0904507637023926,
-0.9469190835952759,
0.2055121660232544,
-0.6990368366241455,
0.2297046035528183,
-0.16446854174137115,
0.015023122541606426,
0.3174217939376831,
0.26804977655410767,
-0.7933051586151123,
1.0186808109283447,
0.5535073280334473,
-0.546947717666626,
0.6094246506690979,
-0.5886950492858887,
0.6252059936523438,
-1.3630696535110474,
0.1111859455704689,
-0.07539360225200653,
0.1917041838169098,
-0.5665733218193054,
-0.32487112283706665,
0.00880508217960596,
-0.16767573356628418,
-0.9804853796958923,
0.46522289514541626,
-0.6320563554763794,
0.38759928941726685,
0.3811619281768799,
-0.36284273862838745,
0.1899917721748352,
0.6204525828361511,
-0.3051566183567047,
1.3320472240447998,
0.9220795631408691,
-0.7413373589515686,
0.38513705134391785,
0.4952729046344757,
-0.4747215807437897,
0.489515483379364,
-0.7882130146026611,
-0.4028998017311096,
0.008809707127511501,
0.41336315870285034,
-1.2651638984680176,
-0.563754141330719,
0.6703781485557556,
-1.009438157081604,
-0.12028507888317108,
0.09153026342391968,
-0.3350246846675873,
-1.1140235662460327,
-0.3319060504436493,
0.18484556674957275,
0.676744818687439,
-0.3441275358200073,
0.7266297340393066,
0.45800378918647766,
0.20344671607017517,
-0.860232412815094,
-1.0827089548110962,
-0.15587218105793,
-0.39433223009109497,
-0.5493685007095337,
0.2455054670572281,
0.18756243586540222,
-0.008823983371257782,
0.43329569697380066,
-0.4355252683162689,
-0.5745055675506592,
0.04303465038537979,
0.14051662385463715,
-0.05905597284436226,
-0.21617336571216583,
-0.35286179184913635,
-0.26481297612190247,
0.06245390325784683,
-0.2104804664850235,
0.150668203830719,
0.43837854266166687,
0.044599588960409164,
-0.1194874718785286,
-0.8121232986450195,
0.8709369897842407,
0.4383438527584076,
-0.2145613580942154,
1.2539596557617188,
1.0018056631088257,
-0.36630570888519287,
0.12317410111427307,
-0.42002344131469727,
0.27607154846191406,
-0.5133775472640991,
0.17260843515396118,
-0.4926419258117676,
-0.8135042190551758,
0.6156842112541199,
-0.05033993348479271,
-0.030132900923490524,
0.9997313618659973,
0.6423154473304749,
-0.3423774242401123,
1.0379743576049805,
0.4777023196220398,
0.025198085233569145,
0.02277253195643425,
-0.6597544550895691,
0.27562835812568665,
-0.4172561466693878,
-0.7063621878623962,
-0.7316514253616333,
-0.08316731452941895,
-0.7924875020980835,
-0.7422395348548889,
0.7887515425682068,
0.12334046512842178,
-0.6595995426177979,
0.5235655903816223,
-0.6454250812530518,
0.46222907304763794,
0.8110601305961609,
0.28503793478012085,
-0.16637344658374786,
0.01526445522904396,
-0.47164347767829895,
0.1693083792924881,
-0.9993370771408081,
-0.5101732015609741,
1.1094489097595215,
0.016815463081002235,
0.37549296021461487,
0.217979297041893,
0.8249611854553223,
0.12604765594005585,
0.04321345314383507,
-0.6148403286933899,
0.5896441340446472,
-0.40952685475349426,
-0.8945700526237488,
-0.6975752115249634,
-0.3058057427406311,
-1.5511411428451538,
0.05544969066977501,
-0.10142506659030914,
-1.1637696027755737,
0.5952978730201721,
-0.17929446697235107,
-0.6527361869812012,
0.38147303462028503,
-0.8431308269500732,
0.9759566187858582,
-0.15427625179290771,
-0.24076427519321442,
0.22547055780887604,
-0.8909448981285095,
0.2262377291917801,
0.32170993089675903,
0.46617645025253296,
-0.44443413615226746,
-0.1642606109380722,
1.0400395393371582,
-0.86050945520401,
0.7401906251907349,
0.04492799937725067,
0.13559024035930634,
0.40760716795921326,
-0.35861697793006897,
0.3463605046272278,
0.3692508935928345,
-0.1417260766029358,
0.22770965099334717,
0.1729123741388321,
-0.7767186164855957,
-0.12244775891304016,
0.8456233739852905,
-0.9219590425491333,
-0.9808350205421448,
-1.0789748430252075,
-0.10869678854942322,
0.08068637549877167,
0.37695246934890747,
0.5901727080345154,
0.15667219460010529,
-0.005517549812793732,
0.22467561066150665,
0.7900516986846924,
-0.6847805976867676,
0.5642338395118713,
0.5221202969551086,
0.19823512434959412,
-1.006615400314331,
0.5928497314453125,
0.36356765031814575,
0.3588387072086334,
0.5398545861244202,
0.42684468626976013,
-0.17781031131744385,
-0.12774886190891266,
-0.7038853168487549,
0.3048568069934845,
-0.6375210881233215,
-0.3509037494659424,
-1.3652156591415405,
-0.19012397527694702,
-1.1221305131912231,
-0.3737568259239197,
-0.20519857108592987,
-0.3464265763759613,
-0.2743734121322632,
-0.03462962433695793,
0.6779649257659912,
0.6750866770744324,
-0.5662232637405396,
0.1106983870267868,
-0.9572345018386841,
0.9379956126213074,
0.31819334626197815,
0.2519518733024597,
-0.580612063407898,
-0.4657534956932068,
-0.2785916030406952,
0.01694897562265396,
-0.6302891373634338,
-1.197525143623352,
0.7382664084434509,
0.1091151088476181,
0.6377143859863281,
0.25661447644233704,
0.11443416774272919,
0.7765027284622192,
-0.36517995595932007,
1.6309869289398193,
0.3455106317996979,
-0.9138823747634888,
0.7874209880828857,
-0.46441322565078735,
0.6017687916755676,
0.617125391960144,
1.0478575229644775,
-0.5675977468490601,
-0.49167752265930176,
-0.9577307105064392,
-1.3400019407272339,
0.7050086259841919,
0.37948983907699585,
0.00711689330637455,
-0.15525594353675842,
-0.015102586708962917,
0.1771923154592514,
-0.007024322170764208,
-0.7458255290985107,
-1.0247009992599487,
-0.001863539800979197,
-0.15323741734027863,
0.13871535658836365,
-0.3436107933521271,
-0.31836193799972534,
-0.8849398493766785,
0.9529833197593689,
0.44467103481292725,
0.2685335874557495,
0.8420248031616211,
0.36417657136917114,
-0.022217432036995888,
0.6424124240875244,
0.7939722537994385,
0.9670395255088806,
-0.06785808503627777,
-0.14892926812171936,
0.20080223679542542,
-0.7822176814079285,
0.4740491807460785,
-0.10619677603244781,
-0.4659639596939087,
0.4043334126472473,
0.03172428160905838,
0.45361220836639404,
-0.07850394397974014,
-0.37256357073783875,
0.6545822024345398,
-0.0831516906619072,
-0.8639164566993713,
-0.6046117544174194,
-0.012986287474632263,
0.11028148978948593,
0.03303457424044609,
0.5687519907951355,
-0.07017435133457184,
0.09952449798583984,
-0.5924917459487915,
0.671997606754303,
0.10687977820634842,
-0.13953042030334473,
0.25538793206214905,
0.9701050519943237,
0.17663529515266418,
0.027719056233763695,
0.19112491607666016,
-0.47447577118873596,
-0.5922043323516846,
0.9727742075920105,
0.4079829156398773,
0.8225434422492981,
-0.5715711116790771,
0.6208199858665466,
0.9493834376335144,
0.3789158761501312,
-0.29012104868888855,
0.6700770854949951,
0.4904378652572632,
-0.5991954207420349,
-0.13476108014583588,
-0.5875116586685181,
-0.27445197105407715,
0.5003442168235779,
-0.9234533905982971,
0.18060895800590515,
-0.24048176407814026,
-0.37612050771713257,
0.12371981143951416,
0.1704992949962616,
-0.8613172769546509,
0.7320592403411865,
-0.1597498208284378,
1.0114922523498535,
-1.239685297012329,
0.9700890779495239,
1.034833550453186,
-0.7649638056755066,
-1.062124252319336,
0.0223066546022892,
-0.1871774047613144,
-0.6864650249481201,
0.8561329245567322,
0.185182586312294,
0.29507333040237427,
-0.4133113622665405,
-0.5136030316352844,
-1.0663982629776,
0.9297941327095032,
0.09147446602582932,
-0.4452427625656128,
0.27805185317993164,
0.06715944409370422,
0.1983931064605713,
-0.1031312420964241,
0.44887930154800415,
0.9584158062934875,
0.5287849307060242,
-0.02091039903461933,
-1.2066456079483032,
-0.21452291309833527,
-0.645094096660614,
-0.41349539160728455,
-0.025192251428961754,
-1.0386103391647339,
1.0409870147705078,
-0.3243776857852936,
-0.2017270177602768,
-0.2200508415699005,
0.7999927997589111,
0.15281124413013458,
0.6372285485267639,
0.5695684552192688,
0.7175402045249939,
0.8461300730705261,
0.007565606851130724,
1.1225677728652954,
-0.21299703419208527,
0.2605288326740265,
1.0880849361419678,
0.10303928703069687,
0.8105462789535522,
0.43734627962112427,
-0.6458593010902405,
0.3802834153175354,
0.793710470199585,
-0.018765749409794807,
0.7196025848388672,
0.06687886267900467,
-0.27378061413764954,
-0.3123732805252075,
-0.16503998637199402,
-0.7226158976554871,
0.5011674761772156,
0.4900139272212982,
-0.37374237179756165,
0.03220108523964882,
0.07351402938365936,
0.37518274784088135,
0.13300921022891998,
-0.16493554413318634,
0.7046504616737366,
-0.05109354108572006,
-0.34653979539871216,
1.2422035932540894,
-0.3116144835948944,
0.7594372034072876,
-0.6396530866622925,
0.10212178528308868,
-0.08238925039768219,
0.09836358577013016,
-0.3065820038318634,
-0.9730525016784668,
0.25709056854248047,
0.013096571899950504,
-0.5046780109405518,
-0.04760413244366646,
0.28897395730018616,
-0.6266571879386902,
-0.8564398288726807,
0.10380976647138596,
0.5190442800521851,
0.2443569451570511,
0.24303090572357178,
-1.4514724016189575,
-0.07084421068429947,
0.42368659377098083,
-0.5690487027168274,
0.2905740737915039,
0.6942716836929321,
0.3118566870689392,
0.8864578604698181,
0.5756253600120544,
0.3847821354866028,
0.16738910973072052,
-0.4390012323856354,
0.8510720133781433,
-0.8493749499320984,
-0.41085147857666016,
-0.9103081226348877,
0.5378589034080505,
-0.35424959659576416,
-0.5942577123641968,
1.4210883378982544,
1.0936212539672852,
1.1475714445114136,
-0.3165346682071686,
1.2974439859390259,
-0.3197652995586395,
0.652631938457489,
-0.4281153976917267,
0.8246151208877563,
-0.8831872940063477,
-0.33646702766418457,
0.03513612598180771,
-0.351113498210907,
-0.39369598031044006,
0.9672771692276001,
-0.5525579452514648,
-0.008903653360903263,
0.930245578289032,
1.1551940441131592,
0.04525911435484886,
-0.07058081775903702,
0.35334011912345886,
0.4570115804672241,
0.07639362663030624,
0.5876112580299377,
0.2167205810546875,
-0.9348134994506836,
0.5176753401756287,
-0.8346761465072632,
-0.012079346925020218,
-0.006649831309914589,
-0.8011562824249268,
-0.7822575569152832,
-0.6431280970573425,
-0.6091963052749634,
-0.7710978984832764,
-0.04689016565680504,
1.4118380546569824,
0.6825047135353088,
-1.317909598350525,
-0.2579245865345001,
0.3877238929271698,
0.0324428528547287,
-0.1832420527935028,
-0.33483484387397766,
0.9906671643257141,
0.16336886584758759,
-0.7554125189781189,
0.32314205169677734,
0.3188394606113434,
0.3461228013038635,
0.3958936035633087,
0.2261594980955124,
-0.7068129777908325,
0.46231621503829956,
0.4953661262989044,
0.5312602519989014,
-0.789752721786499,
-0.2295173853635788,
-0.028479715809226036,
-0.6123242378234863,
0.5208155512809753,
0.17822808027267456,
-0.421406626701355,
0.3771081864833832,
0.6080255508422852,
0.5639137625694275,
0.1560317724943161,
0.19013166427612305,
0.425517201423645,
-0.09898161143064499,
0.42112839221954346,
0.11230259388685226,
0.22338984906673431,
0.08066873997449875,
-0.7179217338562012,
0.5590335130691528,
0.2209821343421936,
-0.5961118340492249,
-0.7293830513954163,
-0.20361250638961792,
-1.6279670000076294,
-0.3970019519329071,
1.8358198404312134,
-0.45331594347953796,
-0.8152837753295898,
-0.45825669169425964,
-0.21550394594669342,
0.5572260022163391,
-0.675944447517395,
0.4328680634498596,
0.7094326615333557,
-0.1038912907242775,
0.25940805673599243,
-1.0569703578948975,
0.7423300743103027,
0.5397325754165649,
-1.215247631072998,
-0.21907372772693634,
-0.07240165770053864,
0.3281531035900116,
-0.09710139036178589,
1.101611614227295,
-0.06052561476826668,
0.2661081850528717,
0.2723150849342346,
0.06025347486138344,
0.335476279258728,
0.2556276023387909,
0.016856253147125244,
-0.03010377660393715,
-0.6449423432350159,
-0.8492985963821411
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
SebastianS/github-issues | SebastianS | 2022-10-25T09:06:38Z | 293 | 0 | null | [
"task_categories:text-classification",
"language_creators:crowdsourced",
"multilinguality:monolingual",
"size_categories:unknown",
"region:us"
] | 2022-10-25T09:06:38Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
annotations_creators: []
language_creators:
- crowdsourced
language:
- en-US
license: []
multilinguality:
- monolingual
pretty_name: github-issues
size_categories:
- unknown
source_datasets: []
task_categories:
- text-classification
task_ids: []
---
# Dataset Card for GitHub Issues
## Dataset Description
this was an example dataset made from the huggingface course | [
-0.34555795788764954,
-0.5482669472694397,
-0.05583477020263672,
-0.008164959028363228,
-0.15970662236213684,
0.1891307830810547,
0.03851114958524704,
-0.02949419617652893,
0.7941462397575378,
0.3896397054195404,
-0.8254134058952332,
-0.8268184065818787,
-0.20840854942798615,
-0.2682878375053406,
-0.47423988580703735,
1.8173539638519287,
-0.11328647285699844,
0.05752919241786003,
-0.44306787848472595,
-0.24543650448322296,
-0.2558152973651886,
-0.29321837425231934,
-0.3825231194496155,
-0.6579363942146301,
0.7792379260063171,
0.9474306106567383,
0.9861593246459961,
0.6742089986801147,
0.7940664291381836,
0.04373627528548241,
0.04935421422123909,
-0.6816174387931824,
-0.5125274658203125,
-0.347474068403244,
0.04858607053756714,
-0.5175305008888245,
-0.6617787480354309,
0.5741033554077148,
0.5509240031242371,
0.582263171672821,
-0.37886282801628113,
0.7444019913673401,
-0.2864086329936981,
1.026227355003357,
-0.322771817445755,
0.28292006254196167,
-0.213057279586792,
0.14182846248149872,
-0.5374654531478882,
0.3384479880332947,
0.09086423367261887,
-0.5845352411270142,
-0.0024181727785617113,
-0.941498339176178,
0.22861753404140472,
0.12103909999132156,
1.0220794677734375,
0.14715531468391418,
0.07575873285531998,
-0.39139923453330994,
-0.0296306274831295,
0.08111059665679932,
-0.23156152665615082,
-0.027718637138605118,
0.7063746452331543,
0.7860485911369324,
-0.1548699140548706,
-0.5658522248268127,
-0.6574533581733704,
0.2716193199157715,
0.04164921119809151,
0.25744035840034485,
-0.1875118762254715,
-0.021499028429389,
0.7949605584144592,
0.8371418714523315,
-0.7665691375732422,
-0.5328773856163025,
-0.8650645017623901,
-0.13223384320735931,
0.9097658395767212,
0.14001084864139557,
0.4105818569660187,
-0.5009827017784119,
-0.14926886558532715,
-0.32502421736717224,
-0.44231900572776794,
-0.11605336517095566,
0.7861561179161072,
0.1706848442554474,
-0.9432192444801331,
0.649435818195343,
0.2634910047054291,
0.47486642003059387,
0.07721905410289764,
0.42712491750717163,
0.7101532816886902,
-0.09794681519269943,
-0.4716312289237976,
-0.05897701159119606,
0.3775354325771332,
0.5494781136512756,
0.6813497543334961,
0.13620002567768097,
0.11489316076040268,
0.06454077363014221,
0.37283626198768616,
-0.663320004940033,
-1.1012725830078125,
0.5618913769721985,
-0.5065485835075378,
-0.7487870454788208,
0.11397672444581985,
-0.9891406297683716,
-0.42255115509033203,
-0.3622826635837555,
-0.1709958165884018,
-0.07995779812335968,
-0.7693524956703186,
-0.16293548047542572,
-0.3713825047016144,
0.66461580991745,
-0.06763284653425217,
-0.7641898989677429,
0.44042450189590454,
0.7571069598197937,
0.6517385840415955,
0.28692203760147095,
-0.3728438913822174,
-0.12207183986902237,
-0.14847739040851593,
-0.38391944766044617,
0.7396854758262634,
-0.427205890417099,
-0.4211292862892151,
-0.002348370850086212,
0.22291965782642365,
0.29406753182411194,
-0.5030016899108887,
0.35199636220932007,
-0.1856738179922104,
0.10037494450807571,
-0.4736037850379944,
-0.49609461426734924,
-0.07484991103410721,
0.5607727766036987,
-0.9156854748725891,
1.1529241800308228,
0.9683958888053894,
-0.9305734634399414,
0.3545161783695221,
-1.0827980041503906,
-0.07808446884155273,
0.436375230550766,
-0.24906675517559052,
-0.5797277092933655,
-0.16442172229290009,
-0.6292460560798645,
0.2770138382911682,
-0.01380784623324871,
0.35241439938545227,
-0.7456192970275879,
-0.15134166181087494,
-0.08493617922067642,
0.40856504440307617,
0.9526715278625488,
0.10436046123504639,
0.04707540199160576,
-0.05748346447944641,
-0.7777226567268372,
-0.01566457375884056,
0.5439515113830566,
0.13746264576911926,
-0.4777396023273468,
-0.6345959901809692,
0.5913637280464172,
-0.16132895648479462,
-0.0007162860711105168,
-0.5220655202865601,
1.1405805349349976,
0.20584401488304138,
0.06443698704242706,
0.49306806921958923,
-0.06853778660297394,
0.30561086535453796,
-0.4993205964565277,
0.6426525115966797,
0.0017586903413757682,
0.27086493372917175,
0.03014088049530983,
-0.44780540466308594,
-0.5151383876800537,
-0.01754937879741192,
0.768214225769043,
0.766137957572937,
-0.7952414155006409,
0.33775725960731506,
0.004371334332972765,
-0.5786938071250916,
-0.3127437233924866,
0.1711956113576889,
0.5612660050392151,
0.35760751366615295,
0.19045761227607727,
-0.21117696166038513,
-0.3607058525085449,
-0.8267055153846741,
0.22823572158813477,
-0.37254098057746887,
0.0191153883934021,
0.3641509413719177,
0.7892765402793884,
-0.3827747702598572,
0.9509262442588806,
-0.6901869177818298,
-0.08009500056505203,
0.19545109570026398,
0.2901177406311035,
0.07079384475946426,
0.8541354537010193,
1.0646071434020996,
-0.8232449293136597,
-0.09761238098144531,
-0.5445241332054138,
-0.9058660268783569,
-0.11434977501630783,
0.15872323513031006,
-0.6127073168754578,
0.13319063186645508,
-0.006292530335485935,
-0.5084840059280396,
0.8424562811851501,
0.7130241394042969,
-0.7001687288284302,
0.3159802556037903,
0.033385928720235825,
0.0523589625954628,
-1.215909719467163,
-0.09104287624359131,
0.22037148475646973,
-0.18471214175224304,
-0.2988665699958801,
0.02057684026658535,
0.22403253614902496,
-0.6398935317993164,
-0.26364666223526,
0.25007694959640503,
-0.4626515805721283,
-0.2546820342540741,
-0.13463355600833893,
0.029086926952004433,
0.037626199424266815,
0.31666016578674316,
-0.2775035500526428,
0.4016419053077698,
0.9095596671104431,
-0.22959157824516296,
0.9939586520195007,
0.8664748072624207,
0.30991891026496887,
1.2246454954147339,
-0.62901771068573,
0.10665150731801987,
-0.3001169264316559,
0.18290044367313385,
-0.944741427898407,
-0.8052506446838379,
0.6762557029724121,
-0.4802497327327728,
0.6010403633117676,
-0.5236624479293823,
-0.5553253889083862,
-0.8937376737594604,
-0.4107680022716522,
0.3893025517463684,
0.714198887348175,
-0.6549871563911438,
0.4337314963340759,
0.5183754563331604,
0.17761719226837158,
-0.1700734794139862,
-0.8789206743240356,
0.027476171031594276,
-0.6426855325698853,
-0.2598470449447632,
0.18979156017303467,
-0.4287284314632416,
-0.2673676609992981,
-0.040660638362169266,
0.1691373735666275,
-0.030786734074354172,
-0.0707441121339798,
0.6393391489982605,
0.34215065836906433,
-0.01601203717291355,
0.40860244631767273,
-0.0029943713452667,
-0.23736736178398132,
0.2302546203136444,
-0.10270913690328598,
0.08280295133590698,
-0.34619078040122986,
-0.25275173783302307,
-0.3425542414188385,
0.24195797741413116,
0.18401911854743958,
0.30232614278793335,
0.38030603528022766,
0.5367010831832886,
-0.8171932101249695,
-0.13094361126422882,
-0.19501887261867523,
-0.17191283404827118,
-0.38465943932533264,
-0.22001637518405914,
-0.3911753296852112,
-0.5210322737693787,
0.9111989736557007,
0.08922869712114334,
0.22057485580444336,
0.4963732063770294,
0.1714433878660202,
-0.31905481219291687,
0.05602402240037918,
0.4251249432563782,
-0.4964763820171356,
0.335784375667572,
-0.5699157118797302,
-0.4262268543243408,
-0.7168043851852417,
-0.21293003857135773,
-0.5202268958091736,
-0.37508532404899597,
-0.8589106798171997,
-0.33040156960487366,
-0.41420307755470276,
0.6003745794296265,
-0.4003899395465851,
0.8656779527664185,
-0.8170862793922424,
0.5511173605918884,
0.3288109600543976,
0.2327573001384735,
-0.20828191936016083,
0.16951380670070648,
0.3576916754245758,
-0.10330654680728912,
-0.6781542897224426,
-0.5137606859207153,
1.1899043321609497,
0.5420185327529907,
0.8846754431724548,
-0.10611028969287872,
0.8398647904396057,
0.7065995931625366,
0.6653832197189331,
-0.5203544497489929,
0.09673673659563065,
-0.03882097080349922,
-0.7702819108963013,
-0.2089359015226364,
-0.25081586837768555,
-0.8669666647911072,
-0.562919020652771,
-0.15075154602527618,
-0.2626771032810211,
-0.055351465940475464,
0.29782846570014954,
0.16768710315227509,
0.292117178440094,
-0.7874985933303833,
1.3487251996994019,
-0.13994088768959045,
-0.10056758671998978,
0.288604199886322,
-0.8261691331863403,
0.09361601620912552,
0.26566627621650696,
-0.06835290044546127,
-0.3752497136592865,
0.26743701100349426,
0.7652567625045776,
-0.2429187148809433,
0.8368163108825684,
-0.5089979767799377,
0.02595575712621212,
0.4894597828388214,
-0.08814050257205963,
0.06785891205072403,
0.30927377939224243,
0.013037140481173992,
0.3175906836986542,
0.12749148905277252,
-0.8734843134880066,
-0.5737738013267517,
0.5258363485336304,
-0.40744560956954956,
0.020794739946722984,
-0.3797682821750641,
-0.4147458076477051,
0.15110385417938232,
-0.1625152826309204,
0.03568045049905777,
0.7889990210533142,
-0.2752362787723541,
-0.1563047617673874,
0.7131171822547913,
0.09485086053609848,
0.27624621987342834,
0.3733576238155365,
-0.4719138741493225,
-0.7140854001045227,
0.9870179295539856,
0.18570585548877716,
-0.07694726437330246,
-0.31873199343681335,
0.30173948407173157,
0.09375297278165817,
-0.3402482569217682,
-1.057343602180481,
0.14683841168880463,
-0.47397348284721375,
-0.5115216374397278,
-0.19944211840629578,
-0.0862252339720726,
-0.4619150757789612,
-0.4865044951438904,
-0.12731963396072388,
-0.42147621512413025,
-0.5181751847267151,
-0.42466920614242554,
1.3176242113113403,
0.9097076654434204,
-0.37755298614501953,
0.7024063467979431,
-0.7455865144729614,
0.46073585748672485,
-0.16995596885681152,
1.0758464336395264,
-0.5177929401397705,
-0.21833808720111847,
-0.22403083741664886,
0.05324798822402954,
-0.3753487169742584,
-0.9141777753829956,
-0.1635507047176361,
-0.0183766670525074,
0.4979143738746643,
0.2435525804758072,
0.09230242669582367,
0.36712589859962463,
-0.20156314969062805,
0.731056809425354,
0.13277773559093475,
-0.7325147986412048,
0.9855700731277466,
-0.6901577115058899,
0.45328718423843384,
1.130326509475708,
0.7873213887214661,
-0.5413613319396973,
-0.12821941077709198,
-1.3530393838882446,
-0.5241319537162781,
0.48817262053489685,
0.318308025598526,
0.22711260616779327,
0.05786188319325447,
1.0445654392242432,
0.06556674093008041,
0.33386120200157166,
-0.757243812084198,
-0.9704907536506653,
-0.28018584847450256,
-0.5561426281929016,
0.39900705218315125,
-0.1789870262145996,
-0.14358237385749817,
-0.29752880334854126,
0.6651325225830078,
-0.18564780056476593,
0.048743512481451035,
-0.028416786342859268,
0.32184967398643494,
-0.18665549159049988,
-0.2798437476158142,
0.4661569893360138,
0.591847836971283,
-0.4564977288246155,
-0.34491151571273804,
-0.08481542766094208,
-0.6972954869270325,
-0.18821513652801514,
0.5213776230812073,
-0.09995567798614502,
0.015608950518071651,
0.294718474149704,
0.3079278767108917,
0.04171409457921982,
-0.30950450897216797,
0.6245843768119812,
-0.043846242129802704,
-0.30895039439201355,
-0.697020411491394,
0.015905683860182762,
0.11273904144763947,
0.17007650434970856,
0.15814410150051117,
-0.27407383918762207,
0.3517836928367615,
-0.36733245849609375,
0.6676554083824158,
0.2675565481185913,
-0.8162790536880493,
-0.2979949414730072,
0.3847411572933197,
0.42254897952079773,
-0.6942011117935181,
0.8347951173782349,
-0.2190323919057846,
-0.49926233291625977,
1.020789384841919,
0.2688886225223541,
0.5369843244552612,
-0.09263233840465546,
0.5093434453010559,
0.5012016296386719,
0.1320057511329651,
0.2637081742286682,
0.6863349080085754,
-0.45559409260749817,
-0.36516785621643066,
0.2262050062417984,
-0.1779852956533432,
-0.8201448321342468,
0.007657691836357117,
-1.2309805154800415,
0.4525469243526459,
-0.644765317440033,
-0.20029719173908234,
0.10326123982667923,
0.23955290019512177,
-0.5332472920417786,
0.3377326428890228,
0.16791749000549316,
1.589792013168335,
-1.2533856630325317,
0.6752501726150513,
1.0136102437973022,
-0.7047796249389648,
-0.7894296646118164,
-0.011333332397043705,
0.14909827709197998,
-0.7336474657058716,
0.16230818629264832,
0.20926658809185028,
0.3771117031574249,
-0.23333320021629333,
-1.2384499311447144,
-0.23815880715847015,
1.0532108545303345,
0.23410841822624207,
-0.5150948166847229,
0.0875195860862732,
-0.15779085457324982,
0.3698929250240326,
-0.5580195188522339,
0.2866704761981964,
0.751986563205719,
0.45512011647224426,
0.23573040962219238,
-0.6120191216468811,
-0.2788686454296112,
-0.6991626620292664,
-0.06340481340885162,
0.30293822288513184,
-0.9054007530212402,
0.21823760867118835,
-0.15087440609931946,
0.15838609635829926,
-0.08159482479095459,
0.6653761267662048,
0.48507118225097656,
0.8332726359367371,
0.46939635276794434,
0.8323754072189331,
0.8972170948982239,
-0.5195358395576477,
1.0224885940551758,
0.14687694609165192,
0.8173783421516418,
1.2215434312820435,
-0.32105398178100586,
0.18468895554542542,
0.3800185024738312,
-0.18637113273143768,
0.6544772386550903,
1.0997501611709595,
-0.4398841857910156,
0.18816669285297394,
0.91326504945755,
0.15247483551502228,
-0.003446751506999135,
-0.030400414019823074,
-0.8066462278366089,
0.18488582968711853,
0.2898532450199127,
-0.3601711094379425,
-0.2809045612812042,
0.3604341149330139,
0.47477981448173523,
0.022515680640935898,
-0.4261227250099182,
0.9933956265449524,
-0.13220563530921936,
0.11989812552928925,
0.1845514327287674,
-0.45804324746131897,
0.3983648717403412,
-0.5086231827735901,
-0.36912479996681213,
-0.1698000133037567,
-0.19833295047283173,
-0.3535784184932709,
-1.3798158168792725,
0.5382057428359985,
-0.06658770889043808,
-0.35429689288139343,
-0.1597081422805786,
0.6197629570960999,
-0.513566792011261,
-0.8052858114242554,
0.21069727838039398,
-0.14692147076129913,
0.6708127856254578,
0.26361724734306335,
-1.2386839389801025,
0.3421112596988678,
-0.02242160215973854,
-0.4492172598838806,
0.008248724043369293,
0.4280835688114166,
0.1607280820608139,
0.48666515946388245,
0.1784379482269287,
-0.03680821508169174,
-0.5988130569458008,
0.2450561225414276,
1.118114709854126,
-0.8390820622444153,
-0.4951649308204651,
-0.34899815917015076,
0.6865912079811096,
-0.35129839181900024,
-0.699000895023346,
0.6067566871643066,
0.9848474264144897,
0.8606942296028137,
0.0662168487906456,
0.8019397854804993,
-0.33801308274269104,
0.534591019153595,
-0.18129585683345795,
0.7038388848304749,
-0.4700794816017151,
-0.37725114822387695,
-0.471834272146225,
-0.6177336573600769,
-0.3589265048503876,
0.8398974537849426,
0.08362313359975815,
0.0016837461153045297,
0.41177448630332947,
0.4406073987483978,
-0.18403056263923645,
0.52008455991745,
0.09862615168094635,
-0.2268381267786026,
-0.1578073352575302,
0.39419928193092346,
0.4357261657714844,
-0.9403694868087769,
0.16608531773090363,
-0.36271920800209045,
-0.49707064032554626,
0.12781843543052673,
-1.2208635807037354,
-1.2423686981201172,
-0.6593485474586487,
-0.8624106645584106,
-1.1993027925491333,
0.08745283633470535,
0.9076912999153137,
1.1505497694015503,
-0.8842441439628601,
-0.08029285818338394,
0.10275574773550034,
0.40043458342552185,
0.26547178626060486,
-0.2826346457004547,
0.3013191819190979,
0.2146480828523636,
-0.3292457163333893,
-0.4692123234272003,
-0.00018663065566215664,
0.5792085528373718,
-0.18689444661140442,
0.2598280608654022,
0.015008441172540188,
-0.4477423131465912,
0.028773678466677666,
0.5219487547874451,
-0.11712206900119781,
-0.5561801791191101,
-0.22633576393127441,
-0.11712943762540817,
0.31944629549980164,
1.0768054723739624,
-0.5754968523979187,
0.17175282537937164,
0.20306992530822754,
0.6005764007568359,
0.6454610228538513,
0.3723355233669281,
0.293653279542923,
-0.631990373134613,
0.2789020836353302,
-0.2361033707857132,
0.26314350962638855,
0.49448928236961365,
-0.7198663353919983,
0.9551215171813965,
0.3843352496623993,
-0.575537383556366,
-0.6011837720870972,
0.2068544179201126,
-1.505135178565979,
0.34293434023857117,
0.7284824252128601,
-0.08331490308046341,
-0.5722423791885376,
-0.181284561753273,
-0.24527403712272644,
0.32762962579727173,
-0.6125331521034241,
0.4407329559326172,
0.7506245970726013,
0.07641685754060745,
-0.2778675854206085,
-0.49313226342201233,
0.5222150683403015,
-0.2847369611263275,
-1.419666051864624,
0.30660849809646606,
0.7304137945175171,
0.31463193893432617,
0.09884286671876907,
0.49936580657958984,
-0.158257395029068,
0.3986946642398834,
0.29682329297065735,
0.4720522463321686,
-0.29606133699417114,
-0.5381829142570496,
-0.4997290074825287,
-0.12297791242599487,
-0.32979241013526917,
-0.2698299288749695
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
Serhii/Custom_SQuAD | Serhii | 2021-09-21T10:47:39Z | 293 | 1 | null | [
"region:us"
] | 2021-09-21T10:47:39Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227645754814148,
-0.22568479180335999,
0.8622263669967651,
0.43461522459983826,
-0.52829909324646,
0.7012971639633179,
0.7915719747543335,
0.07618614286184311,
0.774603009223938,
0.2563217282295227,
-0.7852813005447388,
-0.22573819756507874,
-0.9104475975036621,
0.5715674161911011,
-0.3992327153682709,
0.5791246294975281,
-0.14494499564170837,
-0.10751135647296906,
0.28233814239501953,
-0.2768957316875458,
-0.5409227013587952,
-0.3685525059700012,
-1.1902779340744019,
0.061491698026657104,
0.5316582918167114,
0.743514358997345,
0.7584061622619629,
0.3652168810367584,
0.643257737159729,
0.39322906732559204,
-0.231389120221138,
0.48270541429519653,
-0.04171793907880783,
0.0026038705836981535,
-0.3524438440799713,
-0.5516899824142456,
-0.28596577048301697,
0.07584768533706665,
1.096130132675171,
0.9666873812675476,
-0.28466421365737915,
0.05330856889486313,
-0.30636167526245117,
0.3308892846107483,
-0.4973427355289459,
0.3054097294807434,
-0.022506216540932655,
0.16318757832050323,
-0.704151451587677,
-0.5535351634025574,
0.012795033864676952,
-0.7361212968826294,
0.17926514148712158,
-0.6900812387466431,
0.8269097208976746,
0.18583209812641144,
1.1533749103546143,
0.14819422364234924,
-0.4624859392642975,
-0.8161761164665222,
-0.6538985371589661,
0.5711163282394409,
-0.32703715562820435,
0.3968023657798767,
0.7028226256370544,
-0.048573337495326996,
-0.9820331335067749,
-0.6745738983154297,
-0.46466246247291565,
0.2923974096775055,
0.3540281355381012,
-0.3411684036254883,
-0.17522093653678894,
-0.30589917302131653,
0.15791958570480347,
0.1281142681837082,
-0.48419976234436035,
-0.5543919205665588,
-0.547515869140625,
-0.39602571725845337,
0.6206656694412231,
0.34829503297805786,
0.24291737377643585,
-0.18884189426898956,
-0.3228582441806793,
0.0880165845155716,
-0.41608554124832153,
0.3402574062347412,
0.6335517168045044,
0.711402416229248,
-0.5811446309089661,
0.5602157711982727,
-0.049275897443294525,
0.7439709901809692,
0.11445585638284683,
-0.2747812569141388,
0.4146060049533844,
-0.14724673330783844,
0.055171847343444824,
0.42263513803482056,
0.3152443468570709,
0.28413069248199463,
-0.3273696303367615,
0.20322275161743164,
-0.32151490449905396,
-0.3049626648426056,
-0.2233218252658844,
-0.29490745067596436,
-0.35921788215637207,
0.5492295026779175,
-0.3314018249511719,
-0.4285552501678467,
1.1431758403778076,
-0.42007699608802795,
-0.7302228808403015,
0.33156365156173706,
0.40652117133140564,
-0.0994473472237587,
-0.37146514654159546,
-0.052260853350162506,
-0.8458787202835083,
-0.00790744461119175,
0.7491178512573242,
-0.7198969125747681,
0.33717358112335205,
0.47280627489089966,
0.741721510887146,
0.1965060532093048,
-0.14034466445446014,
-0.4294945299625397,
0.2971963882446289,
-0.8659994006156921,
0.6320174336433411,
-0.20135276019573212,
-1.0051976442337036,
0.11150483042001724,
0.8971704244613647,
-0.3789643347263336,
-1.2094870805740356,
1.0605157613754272,
-0.6887932419776917,
0.16017864644527435,
-0.6767609119415283,
-0.14661164581775665,
-0.07118469476699829,
-0.005095955915749073,
-0.6088155508041382,
0.7567099332809448,
0.5872676968574524,
-0.49952778220176697,
0.21429462730884552,
-0.2602984309196472,
-0.3915135860443115,
0.38824939727783203,
-0.0793546810746193,
-0.21858906745910645,
0.7138336896896362,
-0.6647078394889832,
-0.2693284749984741,
0.2942773103713989,
0.23689350485801697,
-0.357060968875885,
-0.793192446231842,
0.08478079736232758,
-0.05786222219467163,
1.5507503747940063,
-0.03868860378861427,
-0.35861143469810486,
-0.6793836951255798,
-1.1506236791610718,
-0.07070811837911606,
0.6886887550354004,
-0.9194992184638977,
-0.27839499711990356,
-0.046410247683525085,
-0.26169371604919434,
0.0899493545293808,
0.7390591502189636,
-1.119404911994934,
0.28327250480651855,
-0.050927065312862396,
-0.22794730961322784,
0.8271061182022095,
0.1538720428943634,
0.24758882820606232,
0.14913466572761536,
0.4295872151851654,
0.5277255773544312,
0.11115183681249619,
0.6835882663726807,
-0.3472035229206085,
-0.9694353938102722,
0.6154633164405823,
0.25266438722610474,
0.8121451139450073,
-0.49945372343063354,
0.2685092091560364,
0.2702546715736389,
-0.3409683108329773,
-0.5682377815246582,
-0.310282826423645,
0.09025713056325912,
0.14930608868598938,
0.11142496764659882,
-0.5721707344055176,
-0.6576128005981445,
-0.9689135551452637,
-0.13590654730796814,
-0.43143755197525024,
-0.35715678334236145,
0.2100687474012375,
0.5792907476425171,
-1.1975533962249756,
0.4128877520561218,
-0.7705622911453247,
-0.703874409198761,
-0.010655621066689491,
-0.1933809369802475,
0.7540653944015503,
0.43240174651145935,
0.5033961534500122,
-0.6397145390510559,
-0.5661987066268921,
-0.22470159828662872,
-1.0333740711212158,
-0.13280484080314636,
0.24819664657115936,
0.3065737783908844,
-0.1342328041791916,
-0.2744964361190796,
-0.48740261793136597,
0.8100383877754211,
0.14789214730262756,
-0.5391897559165955,
0.5220769643783569,
-0.3020317554473877,
0.17224839329719543,
-0.6369158029556274,
-0.0691685602068901,
-0.6616761684417725,
-0.0009067110950127244,
-0.36083078384399414,
-0.5737436413764954,
0.14772333204746246,
0.07017548382282257,
-0.16065415740013123,
0.2880837619304657,
-0.909276008605957,
-0.0010854422580450773,
-0.744221568107605,
0.37907224893569946,
0.0639476627111435,
-0.3145084083080292,
-0.017516743391752243,
1.000038743019104,
0.7784457206726074,
-0.3848040699958801,
0.7217439413070679,
0.4440040588378906,
0.19036099314689636,
0.7630518674850464,
-0.18725158274173737,
0.16478213667869568,
-0.5245421528816223,
-0.12161099910736084,
-0.8887605667114258,
-1.0982943773269653,
0.7320572137832642,
-0.6114250421524048,
0.36542850732803345,
-0.42778605222702026,
0.2589159309864044,
-0.6919258832931519,
-0.038853395730257034,
0.4808599054813385,
-0.05936374515295029,
-0.6863952875137329,
0.5232571363449097,
0.4531749188899994,
-0.2019244134426117,
-0.6609036922454834,
-0.5301570296287537,
0.39365914463996887,
0.6154113411903381,
-0.16390396654605865,
0.06878498196601868,
0.14941087365150452,
-0.5441920757293701,
-0.040802545845508575,
-0.3869187533855438,
-0.4576674997806549,
0.05422405153512955,
0.13053379952907562,
-0.005750161595642567,
-0.40482011437416077,
-0.08680257946252823,
-0.35842010378837585,
-0.4656125009059906,
0.21876463294029236,
0.30119529366493225,
-0.04096344858407974,
-0.42599743604660034,
-0.36198148131370544,
-0.8881808519363403,
0.6719611883163452,
0.5370280146598816,
0.05281474441289902,
0.7555550336837769,
0.16819244623184204,
-0.801498293876648,
-0.13532206416130066,
-0.17607054114341736,
0.2696835994720459,
-0.5588056445121765,
0.13849826157093048,
-0.013484805822372437,
-0.06374907493591309,
0.2629791498184204,
0.25386205315589905,
-0.4300558567047119,
0.927625298500061,
-0.26152747869491577,
-0.3592526614665985,
0.7960182428359985,
0.5974737405776978,
0.4958309531211853,
0.16503198444843292,
-0.044541094452142715,
0.9007097482681274,
-1.196651816368103,
-0.6563171744346619,
-0.7409546375274658,
-0.15945661067962646,
-0.43510857224464417,
-0.0321057066321373,
0.6254417300224304,
0.29009905457496643,
-0.13333925604820251,
0.47563934326171875,
-0.5243490934371948,
0.3556032180786133,
1.0119839906692505,
0.3574867248535156,
0.34357017278671265,
-0.7570232152938843,
-0.25157779455184937,
-0.14024296402931213,
-0.9998159408569336,
-0.2631372809410095,
0.8871029615402222,
0.2275265008211136,
0.8444608449935913,
0.5992542505264282,
0.6784538626670837,
0.136723130941391,
0.2523833215236664,
-0.305902898311615,
0.39202871918678284,
0.43760839104652405,
-1.040114164352417,
-0.42758411169052124,
0.02141888067126274,
-0.9703332185745239,
-0.14227578043937683,
-0.03495054319500923,
-0.42617106437683105,
0.7681738138198853,
0.00016635804786346853,
-0.4076710641384125,
0.7732735872268677,
-0.4555833339691162,
0.7562878727912903,
-0.4473649859428406,
-0.026638653129339218,
0.4699098467826843,
-0.707064151763916,
0.4677433967590332,
0.12878736853599548,
0.6205845475196838,
-0.015571946278214455,
-0.04078621417284012,
0.7104931473731995,
-0.9129164814949036,
0.25438612699508667,
-0.6348398923873901,
0.22421303391456604,
0.24246959388256073,
0.5160625576972961,
0.5969962477684021,
0.4371241629123688,
0.10119915008544922,
-0.23920848965644836,
0.04115789383649826,
-0.8241121172904968,
-0.21050670742988586,
0.6975144147872925,
-0.7186897397041321,
-0.6864195466041565,
-1.2355334758758545,
0.14438661932945251,
0.2734704911708832,
0.3893047273159027,
0.7959297895431519,
0.5714079141616821,
0.12895449995994568,
0.6805254220962524,
0.9888579249382019,
-0.06885591894388199,
0.916691780090332,
0.3224475085735321,
0.09175165742635727,
-0.2194489687681198,
0.703682541847229,
0.2662784457206726,
-0.2470790147781372,
-0.11939744651317596,
0.20913469791412354,
-0.11069414764642715,
-0.5917618870735168,
-0.4999074339866638,
0.3701755702495575,
-0.6731783747673035,
-0.1830393373966217,
-0.6243732571601868,
-0.6043766736984253,
-0.5117589235305786,
0.0692739263176918,
-0.7147684097290039,
0.23979082703590393,
-0.7753568887710571,
-0.10574901103973389,
0.04323358088731766,
0.9792002439498901,
-0.5893120765686035,
0.5805228352546692,
-1.12185800075531,
0.19345775246620178,
-0.07949890196323395,
0.792106032371521,
0.2139579802751541,
-0.7344390153884888,
-0.39754199981689453,
-0.11592598259449005,
-0.37299054861068726,
-1.3576757907867432,
0.21404962241649628,
-0.24541422724723816,
0.2309398353099823,
0.6145407557487488,
0.13977040350437164,
0.5258244276046753,
-0.3432632088661194,
0.7029102444648743,
-0.057016827166080475,
-0.7069293856620789,
0.7934491038322449,
-0.5026893615722656,
0.4963533282279968,
0.9766002893447876,
0.5333840250968933,
-0.7984007596969604,
0.0357406847178936,
-1.041122555732727,
-0.600869357585907,
0.38426393270492554,
0.1192895919084549,
-0.03601125627756119,
-0.665955662727356,
-0.054019927978515625,
-0.16143806278705597,
0.6043741703033447,
-1.0390695333480835,
-0.785835862159729,
0.25766894221305847,
0.5277299284934998,
0.08168502151966095,
-0.5653401613235474,
0.2088075876235962,
-0.5444163084030151,
1.0657776594161987,
0.45109352469444275,
0.32744958996772766,
0.8406059145927429,
0.4649237096309662,
-0.38231605291366577,
0.09252502024173737,
0.7662692070007324,
0.6666228771209717,
-0.5239795446395874,
-0.2908027172088623,
-0.0882752314209938,
-0.9143400192260742,
0.05927503854036331,
0.1116887554526329,
-0.013456095941364765,
0.9082115292549133,
0.579308032989502,
0.253970205783844,
0.4514276385307312,
-0.7264610528945923,
0.8859445452690125,
-0.1495419293642044,
-0.1247284859418869,
-1.0677239894866943,
0.19486205279827118,
-0.23984935879707336,
0.5006400346755981,
1.0061331987380981,
0.525004506111145,
-0.047630541026592255,
-0.814338207244873,
-0.014736384153366089,
0.6939173936843872,
-0.7091119289398193,
-0.17449775338172913,
0.9448539614677429,
0.38471025228500366,
-1.295304536819458,
1.106776475906372,
-0.5381773710250854,
-0.5603317618370056,
0.9121302366256714,
0.5229570269584656,
1.1221849918365479,
-0.44204193353652954,
0.0008675057324580848,
0.2662239074707031,
0.4137844443321228,
0.5423170328140259,
1.0869632959365845,
0.43141356110572815,
-0.7931072115898132,
0.8826581835746765,
-0.24776068329811096,
-0.40361127257347107,
-0.053475700318813324,
-0.42859864234924316,
0.16892209649085999,
-0.4406189024448395,
-0.10712965577840805,
-0.3444185256958008,
0.2854307293891907,
-0.70720374584198,
0.42807644605636597,
-0.08385642617940903,
0.8653066754341125,
-0.8553729057312012,
0.47207602858543396,
0.6354700326919556,
-0.33373481035232544,
-0.8508192300796509,
-0.26198476552963257,
-0.1144845262169838,
-0.6389466524124146,
0.30214792490005493,
-0.45541054010391235,
0.044398874044418335,
0.09623479843139648,
-0.6491509675979614,
-1.1778273582458496,
0.9093631505966187,
-0.6396117210388184,
-0.2784458100795746,
0.20463958382606506,
-0.1151471883058548,
0.28811654448509216,
-0.2524648904800415,
0.010661328211426735,
0.4187661111354828,
0.7489396333694458,
0.28446561098098755,
-0.7727053761482239,
-0.36948859691619873,
0.0015033691888675094,
-0.44474759697914124,
0.7582973837852478,
-0.6002098917961121,
1.1840776205062866,
-0.556353747844696,
-0.05965423583984375,
0.4438447952270508,
0.24690861999988556,
0.21076245605945587,
0.6629217267036438,
0.144208163022995,
0.7282259464263916,
1.0701210498809814,
-0.4083522856235504,
0.881180465221405,
0.26432785391807556,
0.4743083417415619,
0.7238510251045227,
-0.6487718820571899,
0.7513747811317444,
0.3181043267250061,
-0.5682927966117859,
0.9228019714355469,
1.290606141090393,
-0.15699152648448944,
0.80793696641922,
0.051364265382289886,
-1.0815999507904053,
0.32583361864089966,
-0.20724761486053467,
-0.7530062198638916,
0.31502565741539,
0.19055864214897156,
-0.6920987367630005,
-0.5770313739776611,
-0.2404651641845703,
-0.35662829875946045,
-0.11552873998880386,
-0.763173520565033,
0.6720565557479858,
-0.01696927472949028,
-0.5103673934936523,
0.18857470154762268,
0.28775009512901306,
0.17368444800376892,
-0.5235736966133118,
-0.029393965378403664,
-0.22823575139045715,
0.2660652697086334,
-0.5670853853225708,
-0.5234523415565491,
0.5724437236785889,
-0.32430148124694824,
-0.5343252420425415,
0.181474968791008,
0.7635870575904846,
-0.16923785209655762,
-0.4515411853790283,
0.3247268795967102,
0.6959530115127563,
0.16658467054367065,
0.42502790689468384,
-0.23511283099651337,
0.2448059767484665,
-0.08044827729463577,
-0.06651593744754791,
0.27714747190475464,
0.3449171781539917,
0.22435645759105682,
0.44501352310180664,
0.432856947183609,
-0.018087303265929222,
-0.10736559331417084,
-0.38282057642936707,
0.41249361634254456,
-0.9542784690856934,
-0.5713290572166443,
-0.630710780620575,
0.2740667760372162,
-0.023154327645897865,
-1.0836422443389893,
0.41451746225357056,
1.4406688213348389,
1.0359984636306763,
-0.4756380617618561,
1.0672271251678467,
-0.21818462014198303,
0.9594789743423462,
0.4148314893245697,
0.5420438051223755,
-0.6030403971672058,
0.038353081792593,
-0.43644052743911743,
-1.0769634246826172,
-0.3571633994579315,
0.4539390206336975,
-0.02289981208741665,
-0.3429867625236511,
0.8725717663764954,
0.5887162685394287,
-0.3347362279891968,
-0.11728022992610931,
0.04848663881421089,
-0.029941599816083908,
-0.12433874607086182,
0.5145372152328491,
0.764839768409729,
-0.9344298243522644,
-0.10680411010980606,
-0.21577700972557068,
-0.6382728815078735,
-0.5047284364700317,
-0.9632002711296082,
-0.12959381937980652,
-0.16037842631340027,
0.03534334897994995,
-0.5662809014320374,
0.002556905150413513,
1.2083250284194946,
0.5684951543807983,
-1.1113994121551514,
-0.5303782224655151,
0.33718499541282654,
0.39204245805740356,
-0.1874789297580719,
-0.24202406406402588,
0.2984571158885956,
0.1538221836090088,
-0.5908879041671753,
0.6875662803649902,
0.8089626431465149,
0.20888905227184296,
0.19554781913757324,
0.15893003344535828,
-0.8229468464851379,
-0.1491343379020691,
0.1744047999382019,
0.9450566172599792,
-0.9398531913757324,
-0.7114846110343933,
-0.03168468177318573,
-0.2709487974643707,
-0.05765697360038757,
0.17102089524269104,
-0.4046342968940735,
0.5180684924125671,
0.34591469168663025,
0.49933499097824097,
0.056160878390073776,
-0.05474642664194107,
0.5409556031227112,
-0.9069051742553711,
0.09425970166921616,
0.41343608498573303,
0.4154110848903656,
-0.4000871181488037,
-0.5910195112228394,
0.6713417172431946,
1.0073974132537842,
-0.6594864130020142,
-0.8743263483047485,
-0.19846680760383606,
-1.0016000270843506,
0.04189697653055191,
0.6762756109237671,
0.5009528994560242,
-0.48065176606178284,
-0.4174492359161377,
-0.5617400407791138,
-0.1254679411649704,
-0.13699708878993988,
0.76216059923172,
1.1796802282333374,
-0.7432100772857666,
0.07975788414478302,
-1.0386393070220947,
0.6594987511634827,
-0.2419460564851761,
-0.3457580506801605,
-0.4864429533481598,
0.3832802176475525,
0.3523699641227722,
0.44048118591308594,
0.6148120164871216,
0.14084689319133759,
0.8338428735733032,
0.31260576844215393,
-0.17026856541633606,
0.2698982357978821,
-0.4559198319911957,
-0.02893332578241825,
-0.05796259641647339,
0.3101596236228943,
-1.026215672492981
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
alvp/autonlp-data-alberti-stanza-names | alvp | 2021-11-19T13:26:10Z | 293 | 0 | null | [
"task_categories:text-classification",
"region:us"
] | 2021-11-19T13:26:10Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
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.37174177169799805,
-0.2760648727416992,
0.25257956981658936,
0.5879242420196533,
-0.5020530819892883,
0.1036996841430664,
0.20809030532836914,
-0.4756985604763031,
0.8653594255447388,
0.761673092842102,
-0.768954336643219,
-0.7539096474647522,
-0.3672909736633301,
0.4802010953426361,
-0.27772170305252075,
0.8874396085739136,
-0.15931399166584015,
-0.07223565131425858,
0.04381715506315231,
0.37914279103279114,
-0.4398716986179352,
0.07685095071792603,
-0.4749428927898407,
0.3750459849834442,
0.6820389628410339,
0.4445341229438782,
0.408180296421051,
0.6644541025161743,
0.531667172908783,
0.5356675982475281,
-0.06569065898656845,
0.1835681051015854,
-0.36013931035995483,
0.5915277004241943,
-0.6249733567237854,
-0.28391116857528687,
-0.33168965578079224,
-0.36570122838020325,
0.8078382611274719,
0.43057626485824585,
-0.374824583530426,
0.45556485652923584,
0.17719705402851105,
1.0030784606933594,
-0.6297644972801208,
0.547167956829071,
-0.34777089953422546,
0.346462607383728,
0.020447058603167534,
-0.20727090537548065,
0.04236770048737526,
-0.8309864401817322,
-0.3471926748752594,
-0.777600884437561,
0.24786071479320526,
0.2344827800989151,
0.9622396230697632,
0.10316730290651321,
-0.3307536840438843,
-0.6720714569091797,
-0.8300281763076782,
0.9762150049209595,
-0.6589247584342957,
0.3013521432876587,
0.3887809216976166,
0.14440348744392395,
-0.34098711609840393,
-0.8264935612678528,
-0.9585328698158264,
-0.0798676386475563,
-0.43613943457603455,
0.7975080013275146,
-0.7399923801422119,
-0.38517946004867554,
0.2902091443538666,
0.048370134085416794,
-0.5678281188011169,
-0.3646232485771179,
-0.6479541063308716,
-0.2100699543952942,
0.6996423006057739,
0.3150211572647095,
0.4953081011772156,
-0.22148212790489197,
-0.45112136006355286,
-0.21710702776908875,
-0.48085105419158936,
0.4372044801712036,
0.8458894491195679,
-0.06080814450979233,
-0.612345278263092,
0.5118581056594849,
-0.23535586893558502,
0.44043493270874023,
-0.013929305598139763,
-0.3720629811286926,
0.019513379782438278,
-0.3339283764362335,
-0.0552591010928154,
-0.3444168269634247,
1.1930886507034302,
0.8107027411460876,
0.23721294105052948,
-0.49842569231987,
-0.03644636645913124,
-0.12774881720542908,
0.24750685691833496,
-0.4971613883972168,
0.04391250014305115,
0.04627763479948044,
-0.39803415536880493,
-0.3256167471408844,
0.28967946767807007,
-1.445919394493103,
-0.1228291243314743,
0.2047637552022934,
-0.17084044218063354,
-0.3161325454711914,
0.20453765988349915,
0.3567371666431427,
0.013108008541166782,
-0.22767481207847595,
0.3497905731201172,
-0.9529698491096497,
0.24735338985919952,
0.2074168175458908,
0.18018919229507446,
0.22259406745433807,
-0.21558043360710144,
0.0639827698469162,
0.23864324390888214,
-0.5253893136978149,
0.7261155843734741,
-0.02343021333217621,
-0.6008924841880798,
-0.12648041546344757,
0.507454514503479,
-0.42154404520988464,
-0.1900682896375656,
0.8347803354263306,
-0.30447712540626526,
0.44498178362846375,
-0.3638208210468292,
-0.09183692187070847,
-0.05646928399801254,
-0.041790906339883804,
-0.6874542832374573,
0.5673518776893616,
-0.06388837844133377,
-0.7657063603401184,
-0.22629107534885406,
-0.3885745406150818,
-0.4339420199394226,
-0.11225122213363647,
-0.060296643525362015,
-0.24169427156448364,
-0.06978694349527359,
0.3058147132396698,
0.3539195954799652,
-0.43675926327705383,
-0.3990359604358673,
0.09261452406644821,
0.186406672000885,
0.7901636362075806,
-0.23500105738639832,
1.1937828063964844,
0.6607925295829773,
-0.34024468064308167,
-0.40600988268852234,
-0.6455639600753784,
-0.025362441316246986,
0.4545605182647705,
-0.37935641407966614,
0.30435559153556824,
-0.2526446580886841,
-0.1650438904762268,
0.34627094864845276,
0.7638429403305054,
-0.8839510083198547,
0.15623264014720917,
-0.3731345236301422,
0.24099017679691315,
0.5571909546852112,
0.5499651432037354,
0.2700122892856598,
-0.8237635493278503,
1.0864262580871582,
-0.10339768975973129,
0.4017046093940735,
-0.2875310778617859,
-0.40651270747184753,
-0.8804953694343567,
0.04614421725273132,
-0.2743091285228729,
1.050327181816101,
-0.7895471453666687,
0.3457231819629669,
-0.20704911649227142,
-0.7854262590408325,
-0.5885475277900696,
0.33558347821235657,
0.9507179260253906,
0.514172375202179,
0.40891432762145996,
-0.0723528191447258,
-0.7534253001213074,
-0.6160706877708435,
-0.12199586629867554,
-0.6693189144134521,
0.1492437720298767,
0.7510501146316528,
0.6373363733291626,
-0.06368842720985413,
0.45839694142341614,
-0.8952285051345825,
-0.3543224334716797,
-0.25796768069267273,
-0.4379202127456665,
0.5885266661643982,
0.30831143260002136,
0.7736911773681641,
-0.9053130149841309,
-0.7389780282974243,
0.10516722500324249,
-0.9588092565536499,
-0.1246771365404129,
-0.08243707567453384,
-0.38251063227653503,
-0.41955089569091797,
0.40066275000572205,
-0.39769306778907776,
0.3681716024875641,
0.32631760835647583,
-0.6578946709632874,
0.4311520755290985,
-0.5803849697113037,
0.39478808641433716,
-1.306225061416626,
-0.052602510899305344,
-0.10443854331970215,
0.07404755055904388,
-0.5844993591308594,
0.13357330858707428,
-0.12250689417123795,
0.520408034324646,
-0.9925384521484375,
0.7062578797340393,
-0.5867180228233337,
0.5445091724395752,
0.3070027232170105,
-0.1505969762802124,
0.35823139548301697,
0.4650602638721466,
-0.011252334341406822,
0.5946242809295654,
0.44463297724723816,
-0.38157638907432556,
0.8158702254295349,
0.4422430396080017,
-0.02730633318424225,
0.5657135248184204,
-0.8342421650886536,
0.03908557817339897,
-0.663777768611908,
0.3923540711402893,
-1.4720017910003662,
-0.29001739621162415,
0.880796492099762,
-0.5116658806800842,
0.16146762669086456,
-0.005237550009042025,
-0.40342119336128235,
-0.9100850820541382,
-0.10248467326164246,
0.3239297866821289,
0.5392747521400452,
-0.3416396677494049,
0.32194456458091736,
0.4711017608642578,
-0.2498459666967392,
-0.9933300018310547,
-0.6647214293479919,
0.28527602553367615,
-0.4434547424316406,
-0.5280760526657104,
0.3823041021823883,
-0.2989855706691742,
-0.2510201930999756,
-0.2937082052230835,
0.2114522010087967,
-0.3714827299118042,
-0.09094808995723724,
0.43482500314712524,
0.29658347368240356,
-0.4567332863807678,
-0.39161375164985657,
0.14964428544044495,
0.17183445394039154,
0.0509164035320282,
-0.06851360201835632,
0.5444434881210327,
-0.3911595046520233,
-0.049826107919216156,
-0.7555137276649475,
0.6717928051948547,
0.9111179709434509,
0.06764393299818039,
0.6576384902000427,
0.783614993095398,
-0.31850114464759827,
-0.1214488223195076,
-0.43137016892433167,
0.23353621363639832,
-0.5330967307090759,
-0.4889671206474304,
-0.10521306842565536,
-0.5067545175552368,
0.8619122505187988,
0.44800153374671936,
-0.365935742855072,
1.0402528047561646,
0.7075676321983337,
-0.7926730513572693,
0.6931862831115723,
0.4335253834724426,
-0.048327039927244186,
0.315032035112381,
-0.8912903070449829,
0.1392098069190979,
-0.6203962564468384,
-0.9840019345283508,
-0.604802668094635,
-0.5398865938186646,
-0.3204805850982666,
-0.34058186411857605,
0.10422801226377487,
0.3612361550331116,
-0.11785300821065903,
0.948022186756134,
-0.6442974805831909,
0.5191010236740112,
0.40654727816581726,
-0.031881507486104965,
0.4368142783641815,
-0.41087856888771057,
-0.33506664633750916,
-0.2793356478214264,
-0.5373438596725464,
-0.6254218816757202,
0.5787565112113953,
0.4369528591632843,
1.1606004238128662,
0.8817095160484314,
0.6617387533187866,
0.3033004403114319,
-0.11046051234006882,
-0.5041686296463013,
0.806675910949707,
-0.07806660234928131,
-0.702027440071106,
-0.32973647117614746,
0.00337661849334836,
-1.5076552629470825,
0.09255041182041168,
-0.25346648693084717,
-0.9167336225509644,
0.8951907157897949,
-0.28885316848754883,
-0.7708788514137268,
0.1354469656944275,
-0.9283446669578552,
0.9460011124610901,
-0.49279341101646423,
-0.15700750052928925,
0.19207516312599182,
-0.8172481656074524,
0.5407500863075256,
0.10577454417943954,
0.1531619131565094,
-0.3553845286369324,
-0.6022842526435852,
0.9624322056770325,
-0.7710375189781189,
0.9289120435714722,
0.38564178347587585,
-0.16515041887760162,
0.8200733065605164,
0.05718209594488144,
0.2770131528377533,
0.46140792965888977,
0.20370601117610931,
0.014715445227921009,
0.2749156355857849,
-0.31504547595977783,
-0.2793388068675995,
0.9991597533226013,
-0.9375323057174683,
-0.01290595717728138,
-0.6575489640235901,
-0.16070589423179626,
0.41466987133026123,
0.4406697750091553,
0.868617832660675,
0.29952478408813477,
-0.15924474596977234,
0.18329381942749023,
0.2163136750459671,
-0.10183791071176529,
0.8204635381698608,
0.5868076086044312,
-0.2675705850124359,
-0.6492584943771362,
0.8086649179458618,
0.3094484210014343,
-0.22435064613819122,
0.6690523028373718,
0.2823778986930847,
-0.6136714220046997,
-0.6343868970870972,
-0.2886942923069,
0.49549952149391174,
-0.5330461263656616,
-0.4561343491077423,
-0.9483190178871155,
0.04076150804758072,
-0.8835867047309875,
-0.30725109577178955,
-0.06281386315822601,
-0.165898859500885,
-0.6360542178153992,
0.03225221857428551,
0.45500418543815613,
1.0820715427398682,
0.06610027700662613,
0.47483086585998535,
-0.8444162011146545,
0.7323752045631409,
0.07678072899580002,
0.17086289823055267,
-0.21013423800468445,
-0.48379454016685486,
-0.3808967173099518,
0.1133609339594841,
-0.29016634821891785,
-1.3237615823745728,
0.8348726034164429,
-0.15095189213752747,
0.22989575564861298,
0.5210208296775818,
0.24236628413200378,
0.6728566288948059,
-0.7123838663101196,
0.8122795224189758,
0.4767988920211792,
-0.7463058829307556,
0.7772399187088013,
-0.7924343943595886,
-0.041499439626932144,
0.7719159722328186,
0.6153799891471863,
-0.7086613178253174,
-0.2670079171657562,
-1.009190320968628,
-0.7025426626205444,
0.4537821412086487,
0.20188479125499725,
0.5606961250305176,
-0.28150689601898193,
-0.06145163252949715,
-0.20683494210243225,
0.3573337495326996,
-0.7440875768661499,
-0.8048573732376099,
-0.061993181705474854,
0.00781522411853075,
0.1596650332212448,
0.011233663186430931,
-0.013622133061289787,
-0.9064139723777771,
0.7069082856178284,
0.5125486850738525,
0.45856112241744995,
0.26379144191741943,
0.014090750366449356,
-0.1414165496826172,
0.4082721769809723,
0.8647531867027283,
0.687996506690979,
-0.17770838737487793,
-0.04231877624988556,
0.16077855229377747,
-0.9904424548149109,
0.2155909687280655,
-0.10162308067083359,
-0.26404082775115967,
0.4085947573184967,
0.4259066581726074,
0.9883427619934082,
0.29017147421836853,
-0.6256125569343567,
0.8001996874809265,
-0.4736604392528534,
0.0353890061378479,
-0.9657593369483948,
0.05155859887599945,
-0.17544758319854736,
0.3832128942012787,
0.29514646530151367,
0.021318774670362473,
-0.01889062114059925,
-0.6751996874809265,
0.29616910219192505,
0.1656322479248047,
-0.24780121445655823,
-0.06833723932504654,
0.9439164400100708,
-0.03361646458506584,
-0.5173812508583069,
0.06255585700273514,
-0.5886528491973877,
-0.3239220976829529,
0.7537449598312378,
0.7705869078636169,
0.6934219002723694,
-0.5071722865104675,
0.6371951699256897,
0.7824812531471252,
0.29068514704704285,
-0.04982604458928108,
0.6763704419136047,
0.09657598286867142,
-0.7042638659477234,
-0.11923953145742416,
-0.8968809843063354,
-0.4673129916191101,
0.40140828490257263,
-0.591961681842804,
0.372363805770874,
-0.9322903156280518,
0.08786213397979736,
-0.14150384068489075,
-0.26311975717544556,
-1.0128427743911743,
0.44864127039909363,
0.22986513376235962,
0.6440683007240295,
-0.9030107855796814,
0.6755567193031311,
0.46446990966796875,
-0.7265073657035828,
-1.1267718076705933,
0.05130947008728981,
-0.3447225093841553,
-0.9856846928596497,
0.3249400854110718,
-0.525075376033783,
-0.30608248710632324,
0.38955578207969666,
-0.5285598039627075,
-1.1070518493652344,
1.1169267892837524,
0.1286320686340332,
-0.46854865550994873,
-0.09088016301393509,
0.0595102421939373,
0.8709642291069031,
-0.5896645784378052,
0.5824373960494995,
0.48878180980682373,
0.561504602432251,
0.5346022844314575,
-0.5976911187171936,
-0.09036808460950851,
-0.6192105412483215,
-0.2071732133626938,
-0.12194212526082993,
-0.6809103488922119,
0.9889342188835144,
-0.5399717092514038,
-0.32350656390190125,
0.3293599486351013,
1.0106596946716309,
-0.32566341757774353,
0.41425076127052307,
0.5241774320602417,
0.7520458102226257,
0.7842920422554016,
-0.17681248486042023,
1.1637252569198608,
-0.36338770389556885,
0.4737076759338379,
0.836887538433075,
0.14734074473381042,
0.8853667974472046,
0.27668386697769165,
-0.6706948280334473,
0.7026304602622986,
0.5346962809562683,
-0.2647336423397064,
0.39587804675102234,
0.3355391025543213,
-0.75384521484375,
0.3070068955421448,
-0.4658677577972412,
-0.32439494132995605,
0.651421070098877,
0.11860302835702896,
-0.6164065599441528,
-0.153158500790596,
0.31978458166122437,
0.2951090931892395,
0.3143080770969391,
-0.3130224347114563,
0.5997066497802734,
0.3084188997745514,
-0.9478556513786316,
0.6031340956687927,
-0.07535596191883087,
0.6109652519226074,
-0.25797221064567566,
0.2710237503051758,
-0.3551040291786194,
-0.08366189152002335,
-0.40774086117744446,
-1.0717335939407349,
0.1909680962562561,
0.38673487305641174,
-0.3889847993850708,
-0.6939800381660461,
0.4516136944293976,
-0.6626920104026794,
-1.2132495641708374,
0.21855822205543518,
0.6134950518608093,
0.6718025803565979,
0.4310011565685272,
-0.9365401864051819,
-0.0743737444281578,
0.28369250893592834,
-0.01534027885645628,
-0.22346147894859314,
0.09387513250112534,
0.13525773584842682,
0.46326830983161926,
0.5755031108856201,
0.5042944550514221,
0.388973593711853,
-0.027936218306422234,
0.36013004183769226,
-0.794584333896637,
-0.4664490818977356,
-1.0208115577697754,
0.9879692196846008,
0.03802894055843353,
-0.5234188437461853,
0.9131402373313904,
0.7759774327278137,
0.6175554990768433,
-0.5548719763755798,
0.6241220831871033,
-0.29476869106292725,
0.8134447336196899,
-0.3280497193336487,
0.9324302077293396,
-0.44461748003959656,
0.008170843124389648,
-0.5195889472961426,
-1.0136784315109253,
-0.31703492999076843,
0.766951858997345,
-0.40656623244285583,
-0.04535553231835365,
0.7807525992393494,
0.9110584259033203,
0.30206921696662903,
-0.266859769821167,
0.2894452214241028,
0.44501009583473206,
-0.020983276888728142,
0.6215605139732361,
0.9886647462844849,
-0.7184877991676331,
0.39883124828338623,
-0.9100589752197266,
0.3984070122241974,
-0.2980346977710724,
-0.9118505716323853,
-0.6072219610214233,
-0.8391053080558777,
-0.4846026301383972,
-0.726505696773529,
-0.18265706300735474,
0.6538571715354919,
-0.015336507000029087,
-0.9277569651603699,
-0.2543460726737976,
0.15893541276454926,
0.3677845895290375,
0.14589232206344604,
-0.17782752215862274,
0.05682945251464844,
0.43150418996810913,
-0.9657374024391174,
0.5376556515693665,
0.09221231192350388,
0.4600929021835327,
0.04011555388569832,
0.038374654948711395,
-0.06859235465526581,
0.05573863908648491,
0.09376310557126999,
0.5510197877883911,
-0.5301705598831177,
-0.1913454830646515,
0.23475034534931183,
-0.678098201751709,
-0.21400359272956848,
0.6724509000778198,
-0.5729276537895203,
0.19279687106609344,
0.8349694013595581,
-0.08971276879310608,
0.5559441447257996,
0.08958224952220917,
-0.04744702950119972,
-0.3548622727394104,
-0.019816439598798752,
0.8543215394020081,
0.6640588045120239,
-0.21006232500076294,
-0.6634455323219299,
0.44967514276504517,
0.3872029185295105,
-0.37847357988357544,
-0.7783445119857788,
0.06811497360467911,
-1.3989267349243164,
-0.039649493992328644,
1.1767653226852417,
0.34899812936782837,
-0.3942490816116333,
-0.183878093957901,
-0.43609920144081116,
0.5347806811332703,
-0.3718082308769226,
0.3756546378135681,
0.5466282963752747,
-0.1177334412932396,
0.08191757649183273,
-0.8185257315635681,
0.326119065284729,
0.16834326088428497,
-0.6448089480400085,
-0.41394004225730896,
0.26954320073127747,
0.26468169689178467,
0.36542758345603943,
1.0735702514648438,
0.1245899498462677,
0.21383893489837646,
0.012340878136456013,
0.39488327503204346,
0.4054035544395447,
-0.45917829871177673,
-0.15624696016311646,
-0.10066769272089005,
-0.454033762216568,
-0.4747195243835449
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
davanstrien/kitten | davanstrien | 2022-01-21T18:05:04Z | 293 | 0 | null | [
"region:us"
] | 2022-01-21T18:05:04Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227645754814148,
-0.22568479180335999,
0.8622263669967651,
0.43461522459983826,
-0.52829909324646,
0.7012971639633179,
0.7915719747543335,
0.07618614286184311,
0.774603009223938,
0.2563217282295227,
-0.7852813005447388,
-0.22573819756507874,
-0.9104475975036621,
0.5715674161911011,
-0.3992327153682709,
0.5791246294975281,
-0.14494499564170837,
-0.10751135647296906,
0.28233814239501953,
-0.2768957316875458,
-0.5409227013587952,
-0.3685525059700012,
-1.1902779340744019,
0.061491698026657104,
0.5316582918167114,
0.743514358997345,
0.7584061622619629,
0.3652168810367584,
0.643257737159729,
0.39322906732559204,
-0.231389120221138,
0.48270541429519653,
-0.04171793907880783,
0.0026038705836981535,
-0.3524438440799713,
-0.5516899824142456,
-0.28596577048301697,
0.07584768533706665,
1.096130132675171,
0.9666873812675476,
-0.28466421365737915,
0.05330856889486313,
-0.30636167526245117,
0.3308892846107483,
-0.4973427355289459,
0.3054097294807434,
-0.022506216540932655,
0.16318757832050323,
-0.704151451587677,
-0.5535351634025574,
0.012795033864676952,
-0.7361212968826294,
0.17926514148712158,
-0.6900812387466431,
0.8269097208976746,
0.18583209812641144,
1.1533749103546143,
0.14819422364234924,
-0.4624859392642975,
-0.8161761164665222,
-0.6538985371589661,
0.5711163282394409,
-0.32703715562820435,
0.3968023657798767,
0.7028226256370544,
-0.048573337495326996,
-0.9820331335067749,
-0.6745738983154297,
-0.46466246247291565,
0.2923974096775055,
0.3540281355381012,
-0.3411684036254883,
-0.17522093653678894,
-0.30589917302131653,
0.15791958570480347,
0.1281142681837082,
-0.48419976234436035,
-0.5543919205665588,
-0.547515869140625,
-0.39602571725845337,
0.6206656694412231,
0.34829503297805786,
0.24291737377643585,
-0.18884189426898956,
-0.3228582441806793,
0.0880165845155716,
-0.41608554124832153,
0.3402574062347412,
0.6335517168045044,
0.711402416229248,
-0.5811446309089661,
0.5602157711982727,
-0.049275897443294525,
0.7439709901809692,
0.11445585638284683,
-0.2747812569141388,
0.4146060049533844,
-0.14724673330783844,
0.055171847343444824,
0.42263513803482056,
0.3152443468570709,
0.28413069248199463,
-0.3273696303367615,
0.20322275161743164,
-0.32151490449905396,
-0.3049626648426056,
-0.2233218252658844,
-0.29490745067596436,
-0.35921788215637207,
0.5492295026779175,
-0.3314018249511719,
-0.4285552501678467,
1.1431758403778076,
-0.42007699608802795,
-0.7302228808403015,
0.33156365156173706,
0.40652117133140564,
-0.0994473472237587,
-0.37146514654159546,
-0.052260853350162506,
-0.8458787202835083,
-0.00790744461119175,
0.7491178512573242,
-0.7198969125747681,
0.33717358112335205,
0.47280627489089966,
0.741721510887146,
0.1965060532093048,
-0.14034466445446014,
-0.4294945299625397,
0.2971963882446289,
-0.8659994006156921,
0.6320174336433411,
-0.20135276019573212,
-1.0051976442337036,
0.11150483042001724,
0.8971704244613647,
-0.3789643347263336,
-1.2094870805740356,
1.0605157613754272,
-0.6887932419776917,
0.16017864644527435,
-0.6767609119415283,
-0.14661164581775665,
-0.07118469476699829,
-0.005095955915749073,
-0.6088155508041382,
0.7567099332809448,
0.5872676968574524,
-0.49952778220176697,
0.21429462730884552,
-0.2602984309196472,
-0.3915135860443115,
0.38824939727783203,
-0.0793546810746193,
-0.21858906745910645,
0.7138336896896362,
-0.6647078394889832,
-0.2693284749984741,
0.2942773103713989,
0.23689350485801697,
-0.357060968875885,
-0.793192446231842,
0.08478079736232758,
-0.05786222219467163,
1.5507503747940063,
-0.03868860378861427,
-0.35861143469810486,
-0.6793836951255798,
-1.1506236791610718,
-0.07070811837911606,
0.6886887550354004,
-0.9194992184638977,
-0.27839499711990356,
-0.046410247683525085,
-0.26169371604919434,
0.0899493545293808,
0.7390591502189636,
-1.119404911994934,
0.28327250480651855,
-0.050927065312862396,
-0.22794730961322784,
0.8271061182022095,
0.1538720428943634,
0.24758882820606232,
0.14913466572761536,
0.4295872151851654,
0.5277255773544312,
0.11115183681249619,
0.6835882663726807,
-0.3472035229206085,
-0.9694353938102722,
0.6154633164405823,
0.25266438722610474,
0.8121451139450073,
-0.49945372343063354,
0.2685092091560364,
0.2702546715736389,
-0.3409683108329773,
-0.5682377815246582,
-0.310282826423645,
0.09025713056325912,
0.14930608868598938,
0.11142496764659882,
-0.5721707344055176,
-0.6576128005981445,
-0.9689135551452637,
-0.13590654730796814,
-0.43143755197525024,
-0.35715678334236145,
0.2100687474012375,
0.5792907476425171,
-1.1975533962249756,
0.4128877520561218,
-0.7705622911453247,
-0.703874409198761,
-0.010655621066689491,
-0.1933809369802475,
0.7540653944015503,
0.43240174651145935,
0.5033961534500122,
-0.6397145390510559,
-0.5661987066268921,
-0.22470159828662872,
-1.0333740711212158,
-0.13280484080314636,
0.24819664657115936,
0.3065737783908844,
-0.1342328041791916,
-0.2744964361190796,
-0.48740261793136597,
0.8100383877754211,
0.14789214730262756,
-0.5391897559165955,
0.5220769643783569,
-0.3020317554473877,
0.17224839329719543,
-0.6369158029556274,
-0.0691685602068901,
-0.6616761684417725,
-0.0009067110950127244,
-0.36083078384399414,
-0.5737436413764954,
0.14772333204746246,
0.07017548382282257,
-0.16065415740013123,
0.2880837619304657,
-0.909276008605957,
-0.0010854422580450773,
-0.744221568107605,
0.37907224893569946,
0.0639476627111435,
-0.3145084083080292,
-0.017516743391752243,
1.000038743019104,
0.7784457206726074,
-0.3848040699958801,
0.7217439413070679,
0.4440040588378906,
0.19036099314689636,
0.7630518674850464,
-0.18725158274173737,
0.16478213667869568,
-0.5245421528816223,
-0.12161099910736084,
-0.8887605667114258,
-1.0982943773269653,
0.7320572137832642,
-0.6114250421524048,
0.36542850732803345,
-0.42778605222702026,
0.2589159309864044,
-0.6919258832931519,
-0.038853395730257034,
0.4808599054813385,
-0.05936374515295029,
-0.6863952875137329,
0.5232571363449097,
0.4531749188899994,
-0.2019244134426117,
-0.6609036922454834,
-0.5301570296287537,
0.39365914463996887,
0.6154113411903381,
-0.16390396654605865,
0.06878498196601868,
0.14941087365150452,
-0.5441920757293701,
-0.040802545845508575,
-0.3869187533855438,
-0.4576674997806549,
0.05422405153512955,
0.13053379952907562,
-0.005750161595642567,
-0.40482011437416077,
-0.08680257946252823,
-0.35842010378837585,
-0.4656125009059906,
0.21876463294029236,
0.30119529366493225,
-0.04096344858407974,
-0.42599743604660034,
-0.36198148131370544,
-0.8881808519363403,
0.6719611883163452,
0.5370280146598816,
0.05281474441289902,
0.7555550336837769,
0.16819244623184204,
-0.801498293876648,
-0.13532206416130066,
-0.17607054114341736,
0.2696835994720459,
-0.5588056445121765,
0.13849826157093048,
-0.013484805822372437,
-0.06374907493591309,
0.2629791498184204,
0.25386205315589905,
-0.4300558567047119,
0.927625298500061,
-0.26152747869491577,
-0.3592526614665985,
0.7960182428359985,
0.5974737405776978,
0.4958309531211853,
0.16503198444843292,
-0.044541094452142715,
0.9007097482681274,
-1.196651816368103,
-0.6563171744346619,
-0.7409546375274658,
-0.15945661067962646,
-0.43510857224464417,
-0.0321057066321373,
0.6254417300224304,
0.29009905457496643,
-0.13333925604820251,
0.47563934326171875,
-0.5243490934371948,
0.3556032180786133,
1.0119839906692505,
0.3574867248535156,
0.34357017278671265,
-0.7570232152938843,
-0.25157779455184937,
-0.14024296402931213,
-0.9998159408569336,
-0.2631372809410095,
0.8871029615402222,
0.2275265008211136,
0.8444608449935913,
0.5992542505264282,
0.6784538626670837,
0.136723130941391,
0.2523833215236664,
-0.305902898311615,
0.39202871918678284,
0.43760839104652405,
-1.040114164352417,
-0.42758411169052124,
0.02141888067126274,
-0.9703332185745239,
-0.14227578043937683,
-0.03495054319500923,
-0.42617106437683105,
0.7681738138198853,
0.00016635804786346853,
-0.4076710641384125,
0.7732735872268677,
-0.4555833339691162,
0.7562878727912903,
-0.4473649859428406,
-0.026638653129339218,
0.4699098467826843,
-0.707064151763916,
0.4677433967590332,
0.12878736853599548,
0.6205845475196838,
-0.015571946278214455,
-0.04078621417284012,
0.7104931473731995,
-0.9129164814949036,
0.25438612699508667,
-0.6348398923873901,
0.22421303391456604,
0.24246959388256073,
0.5160625576972961,
0.5969962477684021,
0.4371241629123688,
0.10119915008544922,
-0.23920848965644836,
0.04115789383649826,
-0.8241121172904968,
-0.21050670742988586,
0.6975144147872925,
-0.7186897397041321,
-0.6864195466041565,
-1.2355334758758545,
0.14438661932945251,
0.2734704911708832,
0.3893047273159027,
0.7959297895431519,
0.5714079141616821,
0.12895449995994568,
0.6805254220962524,
0.9888579249382019,
-0.06885591894388199,
0.916691780090332,
0.3224475085735321,
0.09175165742635727,
-0.2194489687681198,
0.703682541847229,
0.2662784457206726,
-0.2470790147781372,
-0.11939744651317596,
0.20913469791412354,
-0.11069414764642715,
-0.5917618870735168,
-0.4999074339866638,
0.3701755702495575,
-0.6731783747673035,
-0.1830393373966217,
-0.6243732571601868,
-0.6043766736984253,
-0.5117589235305786,
0.0692739263176918,
-0.7147684097290039,
0.23979082703590393,
-0.7753568887710571,
-0.10574901103973389,
0.04323358088731766,
0.9792002439498901,
-0.5893120765686035,
0.5805228352546692,
-1.12185800075531,
0.19345775246620178,
-0.07949890196323395,
0.792106032371521,
0.2139579802751541,
-0.7344390153884888,
-0.39754199981689453,
-0.11592598259449005,
-0.37299054861068726,
-1.3576757907867432,
0.21404962241649628,
-0.24541422724723816,
0.2309398353099823,
0.6145407557487488,
0.13977040350437164,
0.5258244276046753,
-0.3432632088661194,
0.7029102444648743,
-0.057016827166080475,
-0.7069293856620789,
0.7934491038322449,
-0.5026893615722656,
0.4963533282279968,
0.9766002893447876,
0.5333840250968933,
-0.7984007596969604,
0.0357406847178936,
-1.041122555732727,
-0.600869357585907,
0.38426393270492554,
0.1192895919084549,
-0.03601125627756119,
-0.665955662727356,
-0.054019927978515625,
-0.16143806278705597,
0.6043741703033447,
-1.0390695333480835,
-0.785835862159729,
0.25766894221305847,
0.5277299284934998,
0.08168502151966095,
-0.5653401613235474,
0.2088075876235962,
-0.5444163084030151,
1.0657776594161987,
0.45109352469444275,
0.32744958996772766,
0.8406059145927429,
0.4649237096309662,
-0.38231605291366577,
0.09252502024173737,
0.7662692070007324,
0.6666228771209717,
-0.5239795446395874,
-0.2908027172088623,
-0.0882752314209938,
-0.9143400192260742,
0.05927503854036331,
0.1116887554526329,
-0.013456095941364765,
0.9082115292549133,
0.579308032989502,
0.253970205783844,
0.4514276385307312,
-0.7264610528945923,
0.8859445452690125,
-0.1495419293642044,
-0.1247284859418869,
-1.0677239894866943,
0.19486205279827118,
-0.23984935879707336,
0.5006400346755981,
1.0061331987380981,
0.525004506111145,
-0.047630541026592255,
-0.814338207244873,
-0.014736384153366089,
0.6939173936843872,
-0.7091119289398193,
-0.17449775338172913,
0.9448539614677429,
0.38471025228500366,
-1.295304536819458,
1.106776475906372,
-0.5381773710250854,
-0.5603317618370056,
0.9121302366256714,
0.5229570269584656,
1.1221849918365479,
-0.44204193353652954,
0.0008675057324580848,
0.2662239074707031,
0.4137844443321228,
0.5423170328140259,
1.0869632959365845,
0.43141356110572815,
-0.7931072115898132,
0.8826581835746765,
-0.24776068329811096,
-0.40361127257347107,
-0.053475700318813324,
-0.42859864234924316,
0.16892209649085999,
-0.4406189024448395,
-0.10712965577840805,
-0.3444185256958008,
0.2854307293891907,
-0.70720374584198,
0.42807644605636597,
-0.08385642617940903,
0.8653066754341125,
-0.8553729057312012,
0.47207602858543396,
0.6354700326919556,
-0.33373481035232544,
-0.8508192300796509,
-0.26198476552963257,
-0.1144845262169838,
-0.6389466524124146,
0.30214792490005493,
-0.45541054010391235,
0.044398874044418335,
0.09623479843139648,
-0.6491509675979614,
-1.1778273582458496,
0.9093631505966187,
-0.6396117210388184,
-0.2784458100795746,
0.20463958382606506,
-0.1151471883058548,
0.28811654448509216,
-0.2524648904800415,
0.010661328211426735,
0.4187661111354828,
0.7489396333694458,
0.28446561098098755,
-0.7727053761482239,
-0.36948859691619873,
0.0015033691888675094,
-0.44474759697914124,
0.7582973837852478,
-0.6002098917961121,
1.1840776205062866,
-0.556353747844696,
-0.05965423583984375,
0.4438447952270508,
0.24690861999988556,
0.21076245605945587,
0.6629217267036438,
0.144208163022995,
0.7282259464263916,
1.0701210498809814,
-0.4083522856235504,
0.881180465221405,
0.26432785391807556,
0.4743083417415619,
0.7238510251045227,
-0.6487718820571899,
0.7513747811317444,
0.3181043267250061,
-0.5682927966117859,
0.9228019714355469,
1.290606141090393,
-0.15699152648448944,
0.80793696641922,
0.051364265382289886,
-1.0815999507904053,
0.32583361864089966,
-0.20724761486053467,
-0.7530062198638916,
0.31502565741539,
0.19055864214897156,
-0.6920987367630005,
-0.5770313739776611,
-0.2404651641845703,
-0.35662829875946045,
-0.11552873998880386,
-0.763173520565033,
0.6720565557479858,
-0.01696927472949028,
-0.5103673934936523,
0.18857470154762268,
0.28775009512901306,
0.17368444800376892,
-0.5235736966133118,
-0.029393965378403664,
-0.22823575139045715,
0.2660652697086334,
-0.5670853853225708,
-0.5234523415565491,
0.5724437236785889,
-0.32430148124694824,
-0.5343252420425415,
0.181474968791008,
0.7635870575904846,
-0.16923785209655762,
-0.4515411853790283,
0.3247268795967102,
0.6959530115127563,
0.16658467054367065,
0.42502790689468384,
-0.23511283099651337,
0.2448059767484665,
-0.08044827729463577,
-0.06651593744754791,
0.27714747190475464,
0.3449171781539917,
0.22435645759105682,
0.44501352310180664,
0.432856947183609,
-0.018087303265929222,
-0.10736559331417084,
-0.38282057642936707,
0.41249361634254456,
-0.9542784690856934,
-0.5713290572166443,
-0.630710780620575,
0.2740667760372162,
-0.023154327645897865,
-1.0836422443389893,
0.41451746225357056,
1.4406688213348389,
1.0359984636306763,
-0.4756380617618561,
1.0672271251678467,
-0.21818462014198303,
0.9594789743423462,
0.4148314893245697,
0.5420438051223755,
-0.6030403971672058,
0.038353081792593,
-0.43644052743911743,
-1.0769634246826172,
-0.3571633994579315,
0.4539390206336975,
-0.02289981208741665,
-0.3429867625236511,
0.8725717663764954,
0.5887162685394287,
-0.3347362279891968,
-0.11728022992610931,
0.04848663881421089,
-0.029941599816083908,
-0.12433874607086182,
0.5145372152328491,
0.764839768409729,
-0.9344298243522644,
-0.10680411010980606,
-0.21577700972557068,
-0.6382728815078735,
-0.5047284364700317,
-0.9632002711296082,
-0.12959381937980652,
-0.16037842631340027,
0.03534334897994995,
-0.5662809014320374,
0.002556905150413513,
1.2083250284194946,
0.5684951543807983,
-1.1113994121551514,
-0.5303782224655151,
0.33718499541282654,
0.39204245805740356,
-0.1874789297580719,
-0.24202406406402588,
0.2984571158885956,
0.1538221836090088,
-0.5908879041671753,
0.6875662803649902,
0.8089626431465149,
0.20888905227184296,
0.19554781913757324,
0.15893003344535828,
-0.8229468464851379,
-0.1491343379020691,
0.1744047999382019,
0.9450566172599792,
-0.9398531913757324,
-0.7114846110343933,
-0.03168468177318573,
-0.2709487974643707,
-0.05765697360038757,
0.17102089524269104,
-0.4046342968940735,
0.5180684924125671,
0.34591469168663025,
0.49933499097824097,
0.056160878390073776,
-0.05474642664194107,
0.5409556031227112,
-0.9069051742553711,
0.09425970166921616,
0.41343608498573303,
0.4154110848903656,
-0.4000871181488037,
-0.5910195112228394,
0.6713417172431946,
1.0073974132537842,
-0.6594864130020142,
-0.8743263483047485,
-0.19846680760383606,
-1.0016000270843506,
0.04189697653055191,
0.6762756109237671,
0.5009528994560242,
-0.48065176606178284,
-0.4174492359161377,
-0.5617400407791138,
-0.1254679411649704,
-0.13699708878993988,
0.76216059923172,
1.1796802282333374,
-0.7432100772857666,
0.07975788414478302,
-1.0386393070220947,
0.6594987511634827,
-0.2419460564851761,
-0.3457580506801605,
-0.4864429533481598,
0.3832802176475525,
0.3523699641227722,
0.44048118591308594,
0.6148120164871216,
0.14084689319133759,
0.8338428735733032,
0.31260576844215393,
-0.17026856541633606,
0.2698982357978821,
-0.4559198319911957,
-0.02893332578241825,
-0.05796259641647339,
0.3101596236228943,
-1.026215672492981
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
davanstrien/manuscript_iiif_test | davanstrien | 2022-02-05T11:43:31Z | 293 | 0 | null | [
"region:us"
] | 2022-02-05T11:43:31Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227649927139282,
-0.225684255361557,
0.862226128578186,
0.43461498618125916,
-0.5282987952232361,
0.7012963891029358,
0.7915717363357544,
0.07618629932403564,
0.7746025919914246,
0.2563219666481018,
-0.7852816581726074,
-0.2257382869720459,
-0.9104480743408203,
0.5715669393539429,
-0.3992333710193634,
0.5791246294975281,
-0.14494505524635315,
-0.1075117364525795,
0.28233781456947327,
-0.27689552307128906,
-0.5409225821495056,
-0.36855241656303406,
-1.1902779340744019,
0.06149129197001457,
0.5316579937934875,
0.7435141205787659,
0.7584060430526733,
0.36521655321121216,
0.6432582139968872,
0.3932291865348816,
-0.23138919472694397,
0.48270565271377563,
-0.04171822592616081,
0.0026042789686471224,
-0.35244375467300415,
-0.5516899228096008,
-0.2859659492969513,
0.07584736496210098,
1.096130132675171,
0.9666878581047058,
-0.28466349840164185,
0.053308140486478806,
-0.3063623607158661,
0.33088886737823486,
-0.4973432123661041,
0.3054099678993225,
-0.022505804896354675,
0.16318807005882263,
-0.704151451587677,
-0.553535521030426,
0.012794691137969494,
-0.7361213564872742,
0.1792658269405365,
-0.690081000328064,
0.8269096612930298,
0.1858319342136383,
1.1533750295639038,
0.14819398522377014,
-0.46248704195022583,
-0.8161765933036804,
-0.653899073600769,
0.5711169242858887,
-0.3270370066165924,
0.3968023359775543,
0.7028235197067261,
-0.048573169857263565,
-0.982033371925354,
-0.6745743751525879,
-0.4646618366241455,
0.29239633679389954,
0.35402780771255493,
-0.34116774797439575,
-0.17522098124027252,
-0.305899053812027,
0.15792018175125122,
0.1281152069568634,
-0.48419952392578125,
-0.5543919205665588,
-0.5475160479545593,
-0.39602527022361755,
0.6206656694412231,
0.3482950031757355,
0.24291758239269257,
-0.1888413429260254,
-0.3228580057621002,
0.08801636844873428,
-0.41608506441116333,
0.34025701880455017,
0.6335514783859253,
0.7114018201828003,
-0.5811443328857422,
0.5602161288261414,
-0.04927589371800423,
0.7439702153205872,
0.11445537954568863,
-0.274780809879303,
0.4146057665348053,
-0.14724718034267426,
0.05517164617776871,
0.42263469099998474,
0.31524428725242615,
0.28413113951683044,
-0.3273695409297943,
0.20322294533252716,
-0.3215145766735077,
-0.3049623370170593,
-0.22332172095775604,
-0.29490751028060913,
-0.35921818017959595,
0.549229085445404,
-0.33140188455581665,
-0.4285547137260437,
1.1431758403778076,
-0.42007675766944885,
-0.7302225828170776,
0.3315642476081848,
0.40652093291282654,
-0.0994480699300766,
-0.3714657425880432,
-0.05226074904203415,
-0.8458789587020874,
-0.007907691411674023,
0.7491171956062317,
-0.7198970317840576,
0.3371737599372864,
0.47280654311180115,
0.7417216897010803,
0.19650569558143616,
-0.14034494757652283,
-0.4294942021369934,
0.29719704389572144,
-0.8659993410110474,
0.6320173144340515,
-0.2013520747423172,
-1.0051978826522827,
0.11150495707988739,
0.8971706628799438,
-0.37896373867988586,
-1.2094876766204834,
1.060516119003296,
-0.6887933015823364,
0.1601785123348236,
-0.676761269569397,
-0.14661230146884918,
-0.07118520885705948,
-0.005096568260341883,
-0.6088157892227173,
0.7567103505134583,
0.5872674584388733,
-0.4995274543762207,
0.21429486572742462,
-0.26029834151268005,
-0.39151403307914734,
0.3882487714290619,
-0.07935424149036407,
-0.2185889184474945,
0.7138333916664124,
-0.664708137512207,
-0.2693280875682831,
0.29427722096443176,
0.23689362406730652,
-0.357060968875885,
-0.7931919693946838,
0.08478114753961563,
-0.05786252021789551,
1.550750494003296,
-0.03868845850229263,
-0.3586105704307556,
-0.6793834567070007,
-1.1506240367889404,
-0.07070795446634293,
0.6886884570121765,
-0.9194990992546082,
-0.2783949673175812,
-0.04641014337539673,
-0.2616930603981018,
0.08994894474744797,
0.7390590906143188,
-1.1194051504135132,
0.2832726836204529,
-0.050926774740219116,
-0.22794683277606964,
0.8271058201789856,
0.15387241542339325,
0.24758955836296082,
0.1491340696811676,
0.4295870363712311,
0.5277254581451416,
0.11115201562643051,
0.6835877895355225,
-0.3472035527229309,
-0.9694353342056274,
0.6154632568359375,
0.25266385078430176,
0.8121447563171387,
-0.4994528889656067,
0.26850956678390503,
0.2702553868293762,
-0.3409680724143982,
-0.5682373046875,
-0.31028372049331665,
0.0902574211359024,
0.14930583536624908,
0.11142507940530777,
-0.5721709728240967,
-0.6576125025749207,
-0.9689140319824219,
-0.13590635359287262,
-0.4314374029636383,
-0.3571571409702301,
0.21006926894187927,
0.5792905688285828,
-1.1975526809692383,
0.4128873944282532,
-0.7705625891685486,
-0.7038741707801819,
-0.010655654594302177,
-0.19338122010231018,
0.7540656924247742,
0.4324018955230713,
0.5033968091011047,
-0.6397148966789246,
-0.5661988854408264,
-0.22470149397850037,
-1.0333750247955322,
-0.13280494511127472,
0.2481962889432907,
0.3065735399723053,
-0.1342335343360901,
-0.2744964361190796,
-0.4874034523963928,
0.8100388646125793,
0.14789165556430817,
-0.5391895174980164,
0.5220765471458435,
-0.3020317852497101,
0.17224819958209991,
-0.6369152069091797,
-0.06916812807321548,
-0.6616762280464172,
-0.000907188281416893,
-0.36083072423934937,
-0.573743999004364,
0.1477230042219162,
0.07017485052347183,
-0.16065460443496704,
0.2880840599536896,
-0.9092769622802734,
-0.001085409545339644,
-0.744221031665802,
0.37907201051712036,
0.06394761800765991,
-0.31450793147087097,
-0.017517389729619026,
1.0000383853912354,
0.7784460783004761,
-0.384804904460907,
0.7217445373535156,
0.4440041482448578,
0.19036149978637695,
0.7630521655082703,
-0.18725110590457916,
0.16478213667869568,
-0.5245417356491089,
-0.12161097675561905,
-0.888759970664978,
-1.0982946157455444,
0.7320567965507507,
-0.6114249229431152,
0.3654290437698364,
-0.42778700590133667,
0.2589159309864044,
-0.6919260025024414,
-0.038853563368320465,
0.48085999488830566,
-0.05936327576637268,
-0.6863945722579956,
0.5232571363449097,
0.4531753957271576,
-0.2019241750240326,
-0.6609030961990356,
-0.5301573872566223,
0.393658310174942,
0.615411639213562,
-0.16390356421470642,
0.06878511607646942,
0.1494106948375702,
-0.5441924333572388,
-0.04080261290073395,
-0.3869195580482483,
-0.45766744017601013,
0.05422399193048477,
0.1305345743894577,
-0.005750620272010565,
-0.40482011437416077,
-0.08680271357297897,
-0.358420193195343,
-0.46561211347579956,
0.21876494586467743,
0.30119460821151733,
-0.04096325486898422,
-0.42599788308143616,
-0.36198195815086365,
-0.8881813883781433,
0.6719611287117004,
0.5370281934738159,
0.052815474569797516,
0.7555548548698425,
0.16819289326667786,
-0.8014988899230957,
-0.13532212376594543,
-0.17607063055038452,
0.2696830928325653,
-0.5588056445121765,
0.1384982466697693,
-0.01348454225808382,
-0.06374932825565338,
0.26297885179519653,
0.25386232137680054,
-0.4300557076931,
0.9276250600814819,
-0.2615273594856262,
-0.35925212502479553,
0.7960182428359985,
0.597474217414856,
0.495831161737442,
0.16503207385540009,
-0.04454176500439644,
0.9007095098495483,
-1.196651577949524,
-0.6563177704811096,
-0.7409546971321106,
-0.15945690870285034,
-0.4351082742214203,
-0.03210579603910446,
0.6254411935806274,
0.29009905457496643,
-0.13333874940872192,
0.4756394326686859,
-0.5243490934371948,
0.35560351610183716,
1.0119842290878296,
0.3574865460395813,
0.34356987476348877,
-0.7570229172706604,
-0.25157785415649414,
-0.14024284482002258,
-0.9998159408569336,
-0.2631374001502991,
0.8871029615402222,
0.2275259792804718,
0.844460666179657,
0.5992542505264282,
0.6784543395042419,
0.13672281801700592,
0.25238290429115295,
-0.30590343475341797,
0.3920292854309082,
0.4376083016395569,
-1.0401140451431274,
-0.4275839328765869,
0.021418850868940353,
-0.9703340530395508,
-0.14227530360221863,
-0.03495030477643013,
-0.42617112398147583,
0.7681736946105957,
0.00016602575487922877,
-0.4076712131500244,
0.7732729911804199,
-0.45558351278305054,
0.7562873959541321,
-0.4473651051521301,
-0.02663874253630638,
0.4699097275733948,
-0.7070637345314026,
0.46774300932884216,
0.12878793478012085,
0.6205841302871704,
-0.01557224802672863,
-0.04078586772084236,
0.7104939222335815,
-0.9129160046577454,
0.25438636541366577,
-0.634839653968811,
0.2242129147052765,
0.24246971309185028,
0.5160630345344543,
0.59699547290802,
0.43712449073791504,
0.10119903087615967,
-0.23920896649360657,
0.04115808755159378,
-0.8241122961044312,
-0.2105063647031784,
0.6975157260894775,
-0.71868896484375,
-0.6864197850227356,
-1.2355337142944336,
0.14438673853874207,
0.2734706997871399,
0.38930535316467285,
0.7959295511245728,
0.5714088082313538,
0.12895449995994568,
0.680525004863739,
0.9888588190078735,
-0.06885646283626556,
0.9166923761367798,
0.3224477469921112,
0.09175156056880951,
-0.21944813430309296,
0.7036822438240051,
0.266279011964798,
-0.24707970023155212,
-0.11939714848995209,
0.20913450419902802,
-0.11069407314062119,
-0.5917617082595825,
-0.4999065399169922,
0.3701757788658142,
-0.6731789112091064,
-0.18303894996643066,
-0.6243734359741211,
-0.6043769121170044,
-0.5117590427398682,
0.06927337497472763,
-0.7147688269615173,
0.2397904098033905,
-0.775356650352478,
-0.10574903339147568,
0.04323428124189377,
0.9792010188102722,
-0.5893122553825378,
0.5805224180221558,
-1.1218583583831787,
0.1934579312801361,
-0.0794990062713623,
0.792106032371521,
0.21395783126354218,
-0.7344393134117126,
-0.39754194021224976,
-0.11592612415552139,
-0.3729906678199768,
-1.3576762676239014,
0.21404941380023956,
-0.24541425704956055,
0.230940580368042,
0.6145402193069458,
0.13977056741714478,
0.5258246660232544,
-0.34326282143592834,
0.7029102444648743,
-0.05701731517910957,
-0.7069286108016968,
0.7934495210647583,
-0.5026895403862,
0.49635347723960876,
0.9766000509262085,
0.5333837270736694,
-0.79840087890625,
0.035741277039051056,
-1.0411232709884644,
-0.6008694171905518,
0.38426414132118225,
0.11928923428058624,
-0.03601084277033806,
-0.6659561395645142,
-0.054019391536712646,
-0.1614380031824112,
0.6043745279312134,
-1.0390692949295044,
-0.7858357429504395,
0.2576698064804077,
0.5277301073074341,
0.08168556541204453,
-0.565339982509613,
0.20880655944347382,
-0.5444158911705017,
1.06577730178833,
0.45109421014785767,
0.3274499773979187,
0.8406060338020325,
0.464924156665802,
-0.3823162913322449,
0.09252461791038513,
0.7662690877914429,
0.6666231751441956,
-0.5239797830581665,
-0.2908027172088623,
-0.08827538788318634,
-0.9143403768539429,
0.05927461385726929,
0.11168905347585678,
-0.013455879874527454,
0.9082109332084656,
0.5793081521987915,
0.25397056341171265,
0.45142802596092224,
-0.726460337638855,
0.8859450221061707,
-0.14954176545143127,
-0.12472869455814362,
-1.0677239894866943,
0.19486209750175476,
-0.2398495376110077,
0.500640332698822,
1.0061328411102295,
0.5250048637390137,
-0.047630272805690765,
-0.8143380880355835,
-0.014735929667949677,
0.6939170956611633,
-0.709112286567688,
-0.17449809610843658,
0.9448536038398743,
0.38471001386642456,
-1.2953054904937744,
1.106776475906372,
-0.5381773114204407,
-0.560332179069519,
0.9121302366256714,
0.5229569673538208,
1.1221848726272583,
-0.4420413076877594,
0.0008674964192323387,
0.26622357964515686,
0.4137844145298004,
0.542316734790802,
1.0869629383087158,
0.43141308426856995,
-0.7931063771247864,
0.8826583623886108,
-0.24776022136211395,
-0.4036114811897278,
-0.05347560718655586,
-0.42859894037246704,
0.16892187297344208,
-0.4406191408634186,
-0.10713012516498566,
-0.3444187045097351,
0.2854316830635071,
-0.7072039246559143,
0.4280761778354645,
-0.08385668694972992,
0.8653068542480469,
-0.855372428894043,
0.4720762372016907,
0.6354703903198242,
-0.3337356448173523,
-0.8508188128471375,
-0.2619844973087311,
-0.11448472738265991,
-0.638946533203125,
0.30214816331863403,
-0.4554104804992676,
0.04439886286854744,
0.09623479098081589,
-0.6491516828536987,
-1.1778275966644287,
0.9093635678291321,
-0.6396123766899109,
-0.2784460783004761,
0.20464055240154266,
-0.11514773219823837,
0.2881172299385071,
-0.25246477127075195,
0.010661167092621326,
0.41876548528671265,
0.7489399909973145,
0.28446558117866516,
-0.7727052569389343,
-0.3694884181022644,
0.0015033757081255317,
-0.44474753737449646,
0.7582978010177612,
-0.6002100706100464,
1.1840780973434448,
-0.5563542246818542,
-0.059654414653778076,
0.44384512305259705,
0.24690917134284973,
0.21076181530952454,
0.6629220247268677,
0.14420798420906067,
0.7282263040542603,
1.0701215267181396,
-0.4083522856235504,
0.8811809420585632,
0.2643283009529114,
0.47430819272994995,
0.7238501310348511,
-0.6487723588943481,
0.7513749003410339,
0.31810465455055237,
-0.5682922601699829,
0.92280113697052,
1.2906063795089722,
-0.1569921225309372,
0.8079374432563782,
0.05136488750576973,
-1.081600546836853,
0.3258334994316101,
-0.20724749565124512,
-0.7530064582824707,
0.3150251507759094,
0.1905587911605835,
-0.6920983195304871,
-0.5770308375358582,
-0.24046501517295837,
-0.3566280007362366,
-0.1155291423201561,
-0.7631731033325195,
0.6720564961433411,
-0.016969282180070877,
-0.5103682279586792,
0.18857553601264954,
0.28775009512901306,
0.17368437349796295,
-0.5235732793807983,
-0.029394114390015602,
-0.22823619842529297,
0.26606568694114685,
-0.5670853853225708,
-0.5234529376029968,
0.5724431276321411,
-0.32430222630500793,
-0.5343254804611206,
0.18147492408752441,
0.763587474822998,
-0.16923826932907104,
-0.45154085755348206,
0.32472723722457886,
0.6959527134895325,
0.16658525168895721,
0.4250282347202301,
-0.23511238396167755,
0.24480600655078888,
-0.08044824749231339,
-0.06651554256677628,
0.2771476209163666,
0.3449169993400574,
0.22435645759105682,
0.4450143277645111,
0.4328565001487732,
-0.01808754727244377,
-0.10736513137817383,
-0.3828198313713074,
0.4124940037727356,
-0.9542784690856934,
-0.5713282823562622,
-0.6307111978530884,
0.2740660309791565,
-0.023154366761446,
-1.0836423635482788,
0.4145169258117676,
1.4406683444976807,
1.0359983444213867,
-0.475638210773468,
1.067226767539978,
-0.2181849181652069,
0.9594791531562805,
0.41483116149902344,
0.5420439839363098,
-0.6030409336090088,
0.03835364058613777,
-0.4364396035671234,
-1.0769630670547485,
-0.35716351866722107,
0.4539393484592438,
-0.022899314761161804,
-0.3429868221282959,
0.872571587562561,
0.5887165665626526,
-0.3347361087799072,
-0.11728020012378693,
0.0484871007502079,
-0.029941529035568237,
-0.1243385523557663,
0.514537513256073,
0.7648400068283081,
-0.934430718421936,
-0.1068042665719986,
-0.21577759087085724,
-0.6382726430892944,
-0.5047283172607422,
-0.9632008671760559,
-0.12959399819374084,
-0.16037814319133759,
0.03534340113401413,
-0.566280722618103,
0.002557432744652033,
1.208324909210205,
0.568495512008667,
-1.1113994121551514,
-0.5303788185119629,
0.3371853828430176,
0.3920421004295349,
-0.187479168176651,
-0.24202406406402588,
0.2984566390514374,
0.15382234752178192,
-0.5908878445625305,
0.6875665783882141,
0.8089625239372253,
0.20888924598693848,
0.19554752111434937,
0.15893033146858215,
-0.8229473829269409,
-0.14913442730903625,
0.1744045466184616,
0.9450570940971375,
-0.9398530125617981,
-0.7114841938018799,
-0.031685058027505875,
-0.27094873785972595,
-0.057657480239868164,
0.17102116346359253,
-0.404634565114975,
0.5180680155754089,
0.3459148108959198,
0.4993346333503723,
0.05616114288568497,
-0.05474681779742241,
0.5409557223320007,
-0.9069057703018188,
0.09425967186689377,
0.4134361743927002,
0.41541147232055664,
-0.40008649230003357,
-0.5910195112228394,
0.6713423132896423,
1.007397174835205,
-0.6594868898391724,
-0.8743270039558411,
-0.19846725463867188,
-1.0016002655029297,
0.04189706966280937,
0.6762765049934387,
0.5009526014328003,
-0.480651319026947,
-0.41744986176490784,
-0.5617401599884033,
-0.12546734511852264,
-0.13699713349342346,
0.7621601819992065,
1.179680585861206,
-0.7432094812393188,
0.07975751906633377,
-1.0386396646499634,
0.6594986915588379,
-0.2419460266828537,
-0.3457581400871277,
-0.486442893743515,
0.3832802474498749,
0.35236966609954834,
0.44048118591308594,
0.6148122549057007,
0.1408470869064331,
0.8338426351547241,
0.3126053810119629,
-0.17026884853839874,
0.26989835500717163,
-0.45591992139816284,
-0.02893286943435669,
-0.057962339371442795,
0.31015974283218384,
-1.0262155532836914
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
TheBritishLibrary/BookGenreSnorkelAnnotated | TheBritishLibrary | 2021-12-17T11:37:52Z | 293 | 0 | null | [
"region:us"
] | 2021-12-17T11:37:52Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227649927139282,
-0.225684255361557,
0.862226128578186,
0.43461498618125916,
-0.5282987952232361,
0.7012963891029358,
0.7915717363357544,
0.07618629932403564,
0.7746025919914246,
0.2563219666481018,
-0.7852816581726074,
-0.2257382869720459,
-0.9104480743408203,
0.5715669393539429,
-0.3992333710193634,
0.5791246294975281,
-0.14494505524635315,
-0.1075117364525795,
0.28233781456947327,
-0.27689552307128906,
-0.5409225821495056,
-0.36855241656303406,
-1.1902779340744019,
0.06149129197001457,
0.5316579937934875,
0.7435141205787659,
0.7584060430526733,
0.36521655321121216,
0.6432582139968872,
0.3932291865348816,
-0.23138919472694397,
0.48270565271377563,
-0.04171822592616081,
0.0026042789686471224,
-0.35244375467300415,
-0.5516899228096008,
-0.2859659492969513,
0.07584736496210098,
1.096130132675171,
0.9666878581047058,
-0.28466349840164185,
0.053308140486478806,
-0.3063623607158661,
0.33088886737823486,
-0.4973432123661041,
0.3054099678993225,
-0.022505804896354675,
0.16318807005882263,
-0.704151451587677,
-0.553535521030426,
0.012794691137969494,
-0.7361213564872742,
0.1792658269405365,
-0.690081000328064,
0.8269096612930298,
0.1858319342136383,
1.1533750295639038,
0.14819398522377014,
-0.46248704195022583,
-0.8161765933036804,
-0.653899073600769,
0.5711169242858887,
-0.3270370066165924,
0.3968023359775543,
0.7028235197067261,
-0.048573169857263565,
-0.982033371925354,
-0.6745743751525879,
-0.4646618366241455,
0.29239633679389954,
0.35402780771255493,
-0.34116774797439575,
-0.17522098124027252,
-0.305899053812027,
0.15792018175125122,
0.1281152069568634,
-0.48419952392578125,
-0.5543919205665588,
-0.5475160479545593,
-0.39602527022361755,
0.6206656694412231,
0.3482950031757355,
0.24291758239269257,
-0.1888413429260254,
-0.3228580057621002,
0.08801636844873428,
-0.41608506441116333,
0.34025701880455017,
0.6335514783859253,
0.7114018201828003,
-0.5811443328857422,
0.5602161288261414,
-0.04927589371800423,
0.7439702153205872,
0.11445537954568863,
-0.274780809879303,
0.4146057665348053,
-0.14724718034267426,
0.05517164617776871,
0.42263469099998474,
0.31524428725242615,
0.28413113951683044,
-0.3273695409297943,
0.20322294533252716,
-0.3215145766735077,
-0.3049623370170593,
-0.22332172095775604,
-0.29490751028060913,
-0.35921818017959595,
0.549229085445404,
-0.33140188455581665,
-0.4285547137260437,
1.1431758403778076,
-0.42007675766944885,
-0.7302225828170776,
0.3315642476081848,
0.40652093291282654,
-0.0994480699300766,
-0.3714657425880432,
-0.05226074904203415,
-0.8458789587020874,
-0.007907691411674023,
0.7491171956062317,
-0.7198970317840576,
0.3371737599372864,
0.47280654311180115,
0.7417216897010803,
0.19650569558143616,
-0.14034494757652283,
-0.4294942021369934,
0.29719704389572144,
-0.8659993410110474,
0.6320173144340515,
-0.2013520747423172,
-1.0051978826522827,
0.11150495707988739,
0.8971706628799438,
-0.37896373867988586,
-1.2094876766204834,
1.060516119003296,
-0.6887933015823364,
0.1601785123348236,
-0.676761269569397,
-0.14661230146884918,
-0.07118520885705948,
-0.005096568260341883,
-0.6088157892227173,
0.7567103505134583,
0.5872674584388733,
-0.4995274543762207,
0.21429486572742462,
-0.26029834151268005,
-0.39151403307914734,
0.3882487714290619,
-0.07935424149036407,
-0.2185889184474945,
0.7138333916664124,
-0.664708137512207,
-0.2693280875682831,
0.29427722096443176,
0.23689362406730652,
-0.357060968875885,
-0.7931919693946838,
0.08478114753961563,
-0.05786252021789551,
1.550750494003296,
-0.03868845850229263,
-0.3586105704307556,
-0.6793834567070007,
-1.1506240367889404,
-0.07070795446634293,
0.6886884570121765,
-0.9194990992546082,
-0.2783949673175812,
-0.04641014337539673,
-0.2616930603981018,
0.08994894474744797,
0.7390590906143188,
-1.1194051504135132,
0.2832726836204529,
-0.050926774740219116,
-0.22794683277606964,
0.8271058201789856,
0.15387241542339325,
0.24758955836296082,
0.1491340696811676,
0.4295870363712311,
0.5277254581451416,
0.11115201562643051,
0.6835877895355225,
-0.3472035527229309,
-0.9694353342056274,
0.6154632568359375,
0.25266385078430176,
0.8121447563171387,
-0.4994528889656067,
0.26850956678390503,
0.2702553868293762,
-0.3409680724143982,
-0.5682373046875,
-0.31028372049331665,
0.0902574211359024,
0.14930583536624908,
0.11142507940530777,
-0.5721709728240967,
-0.6576125025749207,
-0.9689140319824219,
-0.13590635359287262,
-0.4314374029636383,
-0.3571571409702301,
0.21006926894187927,
0.5792905688285828,
-1.1975526809692383,
0.4128873944282532,
-0.7705625891685486,
-0.7038741707801819,
-0.010655654594302177,
-0.19338122010231018,
0.7540656924247742,
0.4324018955230713,
0.5033968091011047,
-0.6397148966789246,
-0.5661988854408264,
-0.22470149397850037,
-1.0333750247955322,
-0.13280494511127472,
0.2481962889432907,
0.3065735399723053,
-0.1342335343360901,
-0.2744964361190796,
-0.4874034523963928,
0.8100388646125793,
0.14789165556430817,
-0.5391895174980164,
0.5220765471458435,
-0.3020317852497101,
0.17224819958209991,
-0.6369152069091797,
-0.06916812807321548,
-0.6616762280464172,
-0.000907188281416893,
-0.36083072423934937,
-0.573743999004364,
0.1477230042219162,
0.07017485052347183,
-0.16065460443496704,
0.2880840599536896,
-0.9092769622802734,
-0.001085409545339644,
-0.744221031665802,
0.37907201051712036,
0.06394761800765991,
-0.31450793147087097,
-0.017517389729619026,
1.0000383853912354,
0.7784460783004761,
-0.384804904460907,
0.7217445373535156,
0.4440041482448578,
0.19036149978637695,
0.7630521655082703,
-0.18725110590457916,
0.16478213667869568,
-0.5245417356491089,
-0.12161097675561905,
-0.888759970664978,
-1.0982946157455444,
0.7320567965507507,
-0.6114249229431152,
0.3654290437698364,
-0.42778700590133667,
0.2589159309864044,
-0.6919260025024414,
-0.038853563368320465,
0.48085999488830566,
-0.05936327576637268,
-0.6863945722579956,
0.5232571363449097,
0.4531753957271576,
-0.2019241750240326,
-0.6609030961990356,
-0.5301573872566223,
0.393658310174942,
0.615411639213562,
-0.16390356421470642,
0.06878511607646942,
0.1494106948375702,
-0.5441924333572388,
-0.04080261290073395,
-0.3869195580482483,
-0.45766744017601013,
0.05422399193048477,
0.1305345743894577,
-0.005750620272010565,
-0.40482011437416077,
-0.08680271357297897,
-0.358420193195343,
-0.46561211347579956,
0.21876494586467743,
0.30119460821151733,
-0.04096325486898422,
-0.42599788308143616,
-0.36198195815086365,
-0.8881813883781433,
0.6719611287117004,
0.5370281934738159,
0.052815474569797516,
0.7555548548698425,
0.16819289326667786,
-0.8014988899230957,
-0.13532212376594543,
-0.17607063055038452,
0.2696830928325653,
-0.5588056445121765,
0.1384982466697693,
-0.01348454225808382,
-0.06374932825565338,
0.26297885179519653,
0.25386232137680054,
-0.4300557076931,
0.9276250600814819,
-0.2615273594856262,
-0.35925212502479553,
0.7960182428359985,
0.597474217414856,
0.495831161737442,
0.16503207385540009,
-0.04454176500439644,
0.9007095098495483,
-1.196651577949524,
-0.6563177704811096,
-0.7409546971321106,
-0.15945690870285034,
-0.4351082742214203,
-0.03210579603910446,
0.6254411935806274,
0.29009905457496643,
-0.13333874940872192,
0.4756394326686859,
-0.5243490934371948,
0.35560351610183716,
1.0119842290878296,
0.3574865460395813,
0.34356987476348877,
-0.7570229172706604,
-0.25157785415649414,
-0.14024284482002258,
-0.9998159408569336,
-0.2631374001502991,
0.8871029615402222,
0.2275259792804718,
0.844460666179657,
0.5992542505264282,
0.6784543395042419,
0.13672281801700592,
0.25238290429115295,
-0.30590343475341797,
0.3920292854309082,
0.4376083016395569,
-1.0401140451431274,
-0.4275839328765869,
0.021418850868940353,
-0.9703340530395508,
-0.14227530360221863,
-0.03495030477643013,
-0.42617112398147583,
0.7681736946105957,
0.00016602575487922877,
-0.4076712131500244,
0.7732729911804199,
-0.45558351278305054,
0.7562873959541321,
-0.4473651051521301,
-0.02663874253630638,
0.4699097275733948,
-0.7070637345314026,
0.46774300932884216,
0.12878793478012085,
0.6205841302871704,
-0.01557224802672863,
-0.04078586772084236,
0.7104939222335815,
-0.9129160046577454,
0.25438636541366577,
-0.634839653968811,
0.2242129147052765,
0.24246971309185028,
0.5160630345344543,
0.59699547290802,
0.43712449073791504,
0.10119903087615967,
-0.23920896649360657,
0.04115808755159378,
-0.8241122961044312,
-0.2105063647031784,
0.6975157260894775,
-0.71868896484375,
-0.6864197850227356,
-1.2355337142944336,
0.14438673853874207,
0.2734706997871399,
0.38930535316467285,
0.7959295511245728,
0.5714088082313538,
0.12895449995994568,
0.680525004863739,
0.9888588190078735,
-0.06885646283626556,
0.9166923761367798,
0.3224477469921112,
0.09175156056880951,
-0.21944813430309296,
0.7036822438240051,
0.266279011964798,
-0.24707970023155212,
-0.11939714848995209,
0.20913450419902802,
-0.11069407314062119,
-0.5917617082595825,
-0.4999065399169922,
0.3701757788658142,
-0.6731789112091064,
-0.18303894996643066,
-0.6243734359741211,
-0.6043769121170044,
-0.5117590427398682,
0.06927337497472763,
-0.7147688269615173,
0.2397904098033905,
-0.775356650352478,
-0.10574903339147568,
0.04323428124189377,
0.9792010188102722,
-0.5893122553825378,
0.5805224180221558,
-1.1218583583831787,
0.1934579312801361,
-0.0794990062713623,
0.792106032371521,
0.21395783126354218,
-0.7344393134117126,
-0.39754194021224976,
-0.11592612415552139,
-0.3729906678199768,
-1.3576762676239014,
0.21404941380023956,
-0.24541425704956055,
0.230940580368042,
0.6145402193069458,
0.13977056741714478,
0.5258246660232544,
-0.34326282143592834,
0.7029102444648743,
-0.05701731517910957,
-0.7069286108016968,
0.7934495210647583,
-0.5026895403862,
0.49635347723960876,
0.9766000509262085,
0.5333837270736694,
-0.79840087890625,
0.035741277039051056,
-1.0411232709884644,
-0.6008694171905518,
0.38426414132118225,
0.11928923428058624,
-0.03601084277033806,
-0.6659561395645142,
-0.054019391536712646,
-0.1614380031824112,
0.6043745279312134,
-1.0390692949295044,
-0.7858357429504395,
0.2576698064804077,
0.5277301073074341,
0.08168556541204453,
-0.565339982509613,
0.20880655944347382,
-0.5444158911705017,
1.06577730178833,
0.45109421014785767,
0.3274499773979187,
0.8406060338020325,
0.464924156665802,
-0.3823162913322449,
0.09252461791038513,
0.7662690877914429,
0.6666231751441956,
-0.5239797830581665,
-0.2908027172088623,
-0.08827538788318634,
-0.9143403768539429,
0.05927461385726929,
0.11168905347585678,
-0.013455879874527454,
0.9082109332084656,
0.5793081521987915,
0.25397056341171265,
0.45142802596092224,
-0.726460337638855,
0.8859450221061707,
-0.14954176545143127,
-0.12472869455814362,
-1.0677239894866943,
0.19486209750175476,
-0.2398495376110077,
0.500640332698822,
1.0061328411102295,
0.5250048637390137,
-0.047630272805690765,
-0.8143380880355835,
-0.014735929667949677,
0.6939170956611633,
-0.709112286567688,
-0.17449809610843658,
0.9448536038398743,
0.38471001386642456,
-1.2953054904937744,
1.106776475906372,
-0.5381773114204407,
-0.560332179069519,
0.9121302366256714,
0.5229569673538208,
1.1221848726272583,
-0.4420413076877594,
0.0008674964192323387,
0.26622357964515686,
0.4137844145298004,
0.542316734790802,
1.0869629383087158,
0.43141308426856995,
-0.7931063771247864,
0.8826583623886108,
-0.24776022136211395,
-0.4036114811897278,
-0.05347560718655586,
-0.42859894037246704,
0.16892187297344208,
-0.4406191408634186,
-0.10713012516498566,
-0.3444187045097351,
0.2854316830635071,
-0.7072039246559143,
0.4280761778354645,
-0.08385668694972992,
0.8653068542480469,
-0.855372428894043,
0.4720762372016907,
0.6354703903198242,
-0.3337356448173523,
-0.8508188128471375,
-0.2619844973087311,
-0.11448472738265991,
-0.638946533203125,
0.30214816331863403,
-0.4554104804992676,
0.04439886286854744,
0.09623479098081589,
-0.6491516828536987,
-1.1778275966644287,
0.9093635678291321,
-0.6396123766899109,
-0.2784460783004761,
0.20464055240154266,
-0.11514773219823837,
0.2881172299385071,
-0.25246477127075195,
0.010661167092621326,
0.41876548528671265,
0.7489399909973145,
0.28446558117866516,
-0.7727052569389343,
-0.3694884181022644,
0.0015033757081255317,
-0.44474753737449646,
0.7582978010177612,
-0.6002100706100464,
1.1840780973434448,
-0.5563542246818542,
-0.059654414653778076,
0.44384512305259705,
0.24690917134284973,
0.21076181530952454,
0.6629220247268677,
0.14420798420906067,
0.7282263040542603,
1.0701215267181396,
-0.4083522856235504,
0.8811809420585632,
0.2643283009529114,
0.47430819272994995,
0.7238501310348511,
-0.6487723588943481,
0.7513749003410339,
0.31810465455055237,
-0.5682922601699829,
0.92280113697052,
1.2906063795089722,
-0.1569921225309372,
0.8079374432563782,
0.05136488750576973,
-1.081600546836853,
0.3258334994316101,
-0.20724749565124512,
-0.7530064582824707,
0.3150251507759094,
0.1905587911605835,
-0.6920983195304871,
-0.5770308375358582,
-0.24046501517295837,
-0.3566280007362366,
-0.1155291423201561,
-0.7631731033325195,
0.6720564961433411,
-0.016969282180070877,
-0.5103682279586792,
0.18857553601264954,
0.28775009512901306,
0.17368437349796295,
-0.5235732793807983,
-0.029394114390015602,
-0.22823619842529297,
0.26606568694114685,
-0.5670853853225708,
-0.5234529376029968,
0.5724431276321411,
-0.32430222630500793,
-0.5343254804611206,
0.18147492408752441,
0.763587474822998,
-0.16923826932907104,
-0.45154085755348206,
0.32472723722457886,
0.6959527134895325,
0.16658525168895721,
0.4250282347202301,
-0.23511238396167755,
0.24480600655078888,
-0.08044824749231339,
-0.06651554256677628,
0.2771476209163666,
0.3449169993400574,
0.22435645759105682,
0.4450143277645111,
0.4328565001487732,
-0.01808754727244377,
-0.10736513137817383,
-0.3828198313713074,
0.4124940037727356,
-0.9542784690856934,
-0.5713282823562622,
-0.6307111978530884,
0.2740660309791565,
-0.023154366761446,
-1.0836423635482788,
0.4145169258117676,
1.4406683444976807,
1.0359983444213867,
-0.475638210773468,
1.067226767539978,
-0.2181849181652069,
0.9594791531562805,
0.41483116149902344,
0.5420439839363098,
-0.6030409336090088,
0.03835364058613777,
-0.4364396035671234,
-1.0769630670547485,
-0.35716351866722107,
0.4539393484592438,
-0.022899314761161804,
-0.3429868221282959,
0.872571587562561,
0.5887165665626526,
-0.3347361087799072,
-0.11728020012378693,
0.0484871007502079,
-0.029941529035568237,
-0.1243385523557663,
0.514537513256073,
0.7648400068283081,
-0.934430718421936,
-0.1068042665719986,
-0.21577759087085724,
-0.6382726430892944,
-0.5047283172607422,
-0.9632008671760559,
-0.12959399819374084,
-0.16037814319133759,
0.03534340113401413,
-0.566280722618103,
0.002557432744652033,
1.208324909210205,
0.568495512008667,
-1.1113994121551514,
-0.5303788185119629,
0.3371853828430176,
0.3920421004295349,
-0.187479168176651,
-0.24202406406402588,
0.2984566390514374,
0.15382234752178192,
-0.5908878445625305,
0.6875665783882141,
0.8089625239372253,
0.20888924598693848,
0.19554752111434937,
0.15893033146858215,
-0.8229473829269409,
-0.14913442730903625,
0.1744045466184616,
0.9450570940971375,
-0.9398530125617981,
-0.7114841938018799,
-0.031685058027505875,
-0.27094873785972595,
-0.057657480239868164,
0.17102116346359253,
-0.404634565114975,
0.5180680155754089,
0.3459148108959198,
0.4993346333503723,
0.05616114288568497,
-0.05474681779742241,
0.5409557223320007,
-0.9069057703018188,
0.09425967186689377,
0.4134361743927002,
0.41541147232055664,
-0.40008649230003357,
-0.5910195112228394,
0.6713423132896423,
1.007397174835205,
-0.6594868898391724,
-0.8743270039558411,
-0.19846725463867188,
-1.0016002655029297,
0.04189706966280937,
0.6762765049934387,
0.5009526014328003,
-0.480651319026947,
-0.41744986176490784,
-0.5617401599884033,
-0.12546734511852264,
-0.13699713349342346,
0.7621601819992065,
1.179680585861206,
-0.7432094812393188,
0.07975751906633377,
-1.0386396646499634,
0.6594986915588379,
-0.2419460266828537,
-0.3457581400871277,
-0.486442893743515,
0.3832802474498749,
0.35236966609954834,
0.44048118591308594,
0.6148122549057007,
0.1408470869064331,
0.8338426351547241,
0.3126053810119629,
-0.17026884853839874,
0.26989835500717163,
-0.45591992139816284,
-0.02893286943435669,
-0.057962339371442795,
0.31015974283218384,
-1.0262155532836914
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
echarlaix/gqa-lxmert | echarlaix | 2022-02-09T23:39:45Z | 293 | 0 | null | [
"license:apache-2.0",
"region:us"
] | 2022-02-09T23:39:45Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
license: apache-2.0
---
| [
-0.12853367626667023,
-0.18616794049739838,
0.6529126763343811,
0.4943627417087555,
-0.19319313764572144,
0.23607443273067474,
0.36071979999542236,
0.05056338757276535,
0.5793654322624207,
0.7400138974189758,
-0.6508103013038635,
-0.23783987760543823,
-0.710224986076355,
-0.047825977206230164,
-0.38947534561157227,
0.8470761775970459,
-0.09598265588283539,
0.024005040526390076,
0.04712013900279999,
-0.14317817986011505,
-0.6121038198471069,
-0.047717273235321045,
-1.0524537563323975,
-0.06787492334842682,
0.30022794008255005,
0.5120974779129028,
0.8275895118713379,
0.39602917432785034,
0.503056526184082,
1.751556158065796,
-0.08836926519870758,
-0.22754432260990143,
-0.458920419216156,
0.4223068654537201,
-0.33277371525764465,
-0.42133718729019165,
-0.26241663098335266,
-0.0744933933019638,
0.32380396127700806,
0.7903716564178467,
-0.3810412287712097,
0.19328096508979797,
-0.22438444197177887,
1.008224368095398,
-0.820207417011261,
0.22630877792835236,
-0.16698335111141205,
0.14053210616111755,
0.04230869188904762,
-0.1459193378686905,
-0.1326322704553604,
-0.6440035104751587,
0.0646945908665657,
-0.8995962738990784,
0.10274960845708847,
-0.044611066579818726,
0.8789560794830322,
0.21909058094024658,
-0.5102370977401733,
-0.045977432280778885,
-0.6883597373962402,
1.0972506999969482,
-0.1755603551864624,
0.7615712881088257,
0.4507811665534973,
0.45288562774658203,
-0.5849331021308899,
-1.178218126296997,
-0.4441865384578705,
-0.13578999042510986,
0.14722827076911926,
0.30556103587150574,
-0.3453029990196228,
-0.02234382927417755,
0.10801100730895996,
0.5610313415527344,
-0.5003758668899536,
-0.31195953488349915,
-0.9579930305480957,
-0.18164914846420288,
0.6820484399795532,
0.319308340549469,
0.8340444564819336,
0.18731524050235748,
-0.7347196340560913,
0.12866298854351044,
-1.3239703178405762,
0.07650738954544067,
0.6465023159980774,
0.2394675314426422,
-0.5545988082885742,
0.859478235244751,
-0.285879909992218,
0.626249372959137,
0.27284660935401917,
-0.11645287275314331,
0.2784251272678375,
-0.23030748963356018,
-0.273506224155426,
0.033087559044361115,
0.34597286581993103,
0.8204491138458252,
0.1624864935874939,
-0.01998518407344818,
-0.22123971581459045,
0.002071656286716461,
0.26844510436058044,
-0.7935094237327576,
-0.4712669551372528,
0.19266945123672485,
-0.5589527487754822,
-0.09108512848615646,
0.43270212411880493,
-1.0976829528808594,
-0.48129817843437195,
-0.1879846155643463,
0.054681483656167984,
-0.5451692342758179,
-0.36979466676712036,
0.07273256033658981,
-0.7925414443016052,
-0.12434178590774536,
0.5709511637687683,
-0.6230252981185913,
0.4397459626197815,
0.533625602722168,
0.7861635684967041,
0.23303905129432678,
-0.2361360639333725,
-0.6695020198822021,
0.4884827733039856,
-0.866186797618866,
0.36860716342926025,
-0.3073781132698059,
-0.8298641443252563,
-0.09631048142910004,
0.5393160581588745,
0.20664851367473602,
-0.6653256416320801,
0.7074047327041626,
-0.5496984720230103,
-0.07806534320116043,
-0.4308285415172577,
-0.24322018027305603,
0.17460426688194275,
0.11115437000989914,
-0.6238909363746643,
0.9402234554290771,
0.5551106333732605,
-0.5841099619865417,
0.3170124888420105,
-0.48695075511932373,
-0.6865583062171936,
0.2674814760684967,
-0.008750908076763153,
-0.047152355313301086,
0.32795292139053345,
-0.15983964502811432,
-0.0020511597394943237,
0.1050577163696289,
0.00829973816871643,
-0.2189169079065323,
-0.47863027453422546,
0.06349950283765793,
0.1516501009464264,
1.2536834478378296,
0.40836215019226074,
-0.37718820571899414,
-0.1314014345407486,
-1.0526149272918701,
0.025432512164115906,
0.050501517951488495,
-0.42306768894195557,
-0.2504563331604004,
-0.14882192015647888,
-0.2038157731294632,
0.43072617053985596,
0.21184737980365753,
-0.8131152391433716,
0.22643619775772095,
-0.20640254020690918,
0.3644965887069702,
0.8222091197967529,
0.27031025290489197,
0.3976055085659027,
-0.6625286340713501,
0.6563138961791992,
0.20761865377426147,
0.495901882648468,
0.3540417551994324,
-0.3845822215080261,
-0.9641587734222412,
-0.44216156005859375,
-0.10117398947477341,
0.29755300283432007,
-0.7744958400726318,
0.5847320556640625,
0.012979544699192047,
-0.5836706161499023,
-0.44652819633483887,
-0.15488100051879883,
0.27553310990333557,
-0.06606576591730118,
0.03334895521402359,
-0.40497803688049316,
-0.7394418716430664,
-1.0127897262573242,
-0.13788136839866638,
-0.5021387338638306,
-0.21892830729484558,
0.3160587549209595,
0.2617739737033844,
-0.3429005444049835,
0.7610748410224915,
-0.6059278249740601,
-0.704064130783081,
-0.13973551988601685,
-0.09959837794303894,
0.6187721490859985,
0.9297671318054199,
0.7491384744644165,
-0.7224892377853394,
-0.8973820209503174,
-0.05623084306716919,
-0.5420039296150208,
-0.020044423639774323,
0.038150057196617126,
-0.18260684609413147,
-0.10514986515045166,
0.22352539002895355,
-0.6100802421569824,
0.8851073980331421,
0.43224966526031494,
-0.6815467476844788,
0.5210591554641724,
-0.44444143772125244,
0.6073805093765259,
-0.8642841577529907,
-0.2911490797996521,
-0.16823579370975494,
-0.19761186838150024,
-0.7090160846710205,
0.1941155195236206,
-0.3002234399318695,
-0.33029887080192566,
-0.7474031448364258,
0.5274897813796997,
-0.9497010707855225,
-0.18781518936157227,
-0.336728036403656,
-0.03423096612095833,
0.25807830691337585,
0.19490517675876617,
-0.23560257256031036,
0.8900530338287354,
0.9160482287406921,
-0.712130606174469,
0.5487276315689087,
0.3930908441543579,
-0.1920013725757599,
0.7131237387657166,
-0.38877394795417786,
0.051619984209537506,
-0.12344935536384583,
0.1437460035085678,
-1.1263885498046875,
-0.5611583590507507,
0.13677364587783813,
-0.712703287601471,
0.17686963081359863,
-0.16556870937347412,
-0.09428534656763077,
-0.6608465909957886,
-0.3380639851093292,
0.2591007351875305,
0.48612284660339355,
-0.4796995222568512,
0.6188147068023682,
0.5728040933609009,
0.026518598198890686,
-0.5307408571243286,
-0.7206820845603943,
0.20418106019496918,
0.0396464504301548,
-0.5569697618484497,
0.30116894841194153,
0.006543688476085663,
-0.6622446775436401,
-0.3711249828338623,
-0.26354193687438965,
-0.6043856739997864,
-0.22679755091667175,
0.7826985120773315,
0.11994211375713348,
-0.09012249112129211,
-0.20310267806053162,
-0.31995368003845215,
-0.061675239354372025,
0.3048742413520813,
-0.07575292140245438,
0.7232834696769714,
-0.33623751997947693,
-0.178500697016716,
-0.8877342343330383,
0.6527546048164368,
0.9970465898513794,
0.0944671630859375,
0.806644082069397,
0.4632422626018524,
-0.35647469758987427,
-0.1304660439491272,
-0.35354605317115784,
-0.1512058526277542,
-0.6857745051383972,
-0.1806798279285431,
-0.5322476029396057,
-0.5411434769630432,
0.40530672669410706,
0.10101443529129028,
-0.0021041929721832275,
0.5167045593261719,
0.2533606290817261,
-0.28806865215301514,
0.755032479763031,
1.0343408584594727,
0.13917990028858185,
0.36029160022735596,
-0.2854715585708618,
0.6341593265533447,
-0.8329949378967285,
-0.34052157402038574,
-0.4548071622848511,
-0.25635841488838196,
-0.3121439218521118,
-0.10750871896743774,
0.5791022181510925,
0.281821608543396,
-0.44634681940078735,
0.12506800889968872,
-0.5994207859039307,
0.6587361693382263,
0.6273987293243408,
0.5719727873802185,
0.1997302919626236,
-0.4619947671890259,
0.1998295783996582,
0.04816673696041107,
-0.4574560523033142,
-0.40091079473495483,
0.7711142897605896,
0.2399626076221466,
0.8364025354385376,
0.20927050709724426,
0.49577733874320984,
0.33375436067581177,
0.25280576944351196,
-0.6318975687026978,
0.2009800225496292,
-0.22282804548740387,
-1.2459611892700195,
-0.2064266800880432,
-0.16551323235034943,
-1.0080583095550537,
-0.11792095750570297,
-0.18288999795913696,
-0.840661883354187,
0.2665729820728302,
-0.19225643575191498,
-0.6640646457672119,
0.5206149816513062,
-0.5103875398635864,
0.69347083568573,
-0.23555901646614075,
-0.2817089855670929,
0.1193007230758667,
-0.6889921426773071,
0.5254611372947693,
0.36671480536460876,
0.29168400168418884,
-0.3796898126602173,
-0.3192872405052185,
0.5068995952606201,
-0.8812242746353149,
0.4408113658428192,
-0.10564996302127838,
0.1942814588546753,
0.5358878970146179,
0.4153592586517334,
0.38239720463752747,
0.2869904637336731,
-0.24593788385391235,
-0.23415431380271912,
0.2250344455242157,
-0.7581346035003662,
-0.2775459885597229,
0.9095459580421448,
-0.7519427537918091,
-0.8586915731430054,
-0.6954255104064941,
-0.3064495027065277,
0.28865283727645874,
0.027814656496047974,
0.7154770493507385,
0.6456882953643799,
-0.18821074068546295,
0.23776978254318237,
0.7208226919174194,
-0.014694382436573505,
0.723556399345398,
0.294111967086792,
-0.40566474199295044,
-0.6169789433479309,
0.7182321548461914,
0.26270464062690735,
0.05162661895155907,
0.028327928856015205,
0.3058735728263855,
-0.17546704411506653,
-0.15078593790531158,
-0.6318322420120239,
-0.06395331770181656,
-0.7465728521347046,
-0.09279484301805496,
-0.7541396617889404,
-0.25077423453330994,
-0.7114590406417847,
-0.8068138360977173,
-0.7080164551734924,
-0.4560440480709076,
-0.43011951446533203,
-0.2335219383239746,
0.5163108706474304,
1.1627085208892822,
-0.26131537556648254,
0.8011053204536438,
-0.8900953531265259,
0.41936296224594116,
0.49695393443107605,
0.751973032951355,
-0.11061005294322968,
-0.6746935844421387,
-0.07836242020130157,
-0.5338754057884216,
-0.2948506474494934,
-1.0156972408294678,
0.3177465796470642,
-0.03688587248325348,
0.40537142753601074,
0.4293890595436096,
0.2519027292728424,
0.49392765760421753,
-0.3007310926914215,
1.1130688190460205,
0.7274302244186401,
-0.8033809661865234,
0.5195279717445374,
-0.7635002136230469,
0.16122335195541382,
0.9363659620285034,
0.5447746515274048,
-0.4417076110839844,
-0.1511392444372177,
-1.0259766578674316,
-0.8431373834609985,
0.5963037014007568,
0.15439948439598083,
0.01684391498565674,
0.01821417547762394,
0.031682685017585754,
0.29466384649276733,
0.3591303825378418,
-0.7847290635108948,
-0.8240218162536621,
-0.13851118087768555,
0.25803303718566895,
0.3145606815814972,
-0.16485413908958435,
-0.3003872036933899,
-0.611615777015686,
0.8711391687393188,
0.1828647404909134,
0.35462310910224915,
0.12073361873626709,
0.043693430721759796,
-0.35506927967071533,
0.14787021279335022,
0.552299976348877,
1.2529059648513794,
-0.40983325242996216,
0.36739128828048706,
0.1751261055469513,
-0.6540070176124573,
0.6494996547698975,
-0.303634911775589,
-0.02178453654050827,
0.6203135251998901,
0.17760875821113586,
0.2852839529514313,
0.3155994415283203,
-0.36214274168014526,
0.6047801971435547,
-0.029422037303447723,
-0.17758497595787048,
-0.7005698084831238,
0.15866965055465698,
0.02935062348842621,
0.2750794589519501,
0.4392022490501404,
0.24443314969539642,
0.08246774226427078,
-1.0602874755859375,
0.5711055994033813,
0.24493904411792755,
-0.8676618337631226,
-0.3011004626750946,
0.7047957181930542,
0.40753912925720215,
-0.47599565982818604,
0.38749033212661743,
0.012702062726020813,
-0.671023964881897,
0.5987741947174072,
0.5510414242744446,
0.7569674253463745,
-0.47024261951446533,
0.30880206823349,
0.6245602369308472,
0.06711331009864807,
0.20550546050071716,
0.6923203468322754,
0.03149385750293732,
-0.44738638401031494,
0.23022443056106567,
-0.5986735820770264,
-0.14689916372299194,
0.13735301792621613,
-0.8047425150871277,
0.3515335023403168,
-0.9312615394592285,
-0.24089950323104858,
0.0875159204006195,
0.1176113411784172,
-0.6130944490432739,
0.6674695611000061,
-0.00852501392364502,
0.9280492663383484,
-0.8549083471298218,
0.9626278877258301,
0.855958104133606,
-0.31830811500549316,
-0.7709447741508484,
-0.3355675935745239,
0.020139409229159355,
-0.6660526990890503,
0.7108278274536133,
-0.18973010778427124,
-0.41207438707351685,
-0.09323945641517639,
-0.6229829788208008,
-1.000373125076294,
0.03061842918395996,
0.017415713518857956,
-0.4625032842159271,
0.44547951221466064,
-0.5157256722450256,
0.3289681375026703,
-0.19169746339321136,
0.30509480834007263,
0.7719470262527466,
0.7958451509475708,
0.2296082079410553,
-0.6354781985282898,
-0.44666850566864014,
-0.010276101529598236,
-0.16682803630828857,
0.45458096265792847,
-1.0710971355438232,
0.9677366018295288,
-0.465257465839386,
-0.3473321795463562,
0.27066415548324585,
0.7977623343467712,
0.2538500726222992,
0.35241276025772095,
0.6219536662101746,
0.9016807079315186,
0.36450114846229553,
-0.31178346276283264,
0.7276746034622192,
0.2426338791847229,
0.41525399684906006,
0.7364202737808228,
-0.22712191939353943,
0.5403844118118286,
0.8906413316726685,
-0.7861621975898743,
0.538176417350769,
0.7879031896591187,
0.16047373414039612,
0.7758155465126038,
0.5944147109985352,
-0.6119526624679565,
-0.11859425902366638,
-0.14641429483890533,
-0.6171560287475586,
0.19797521829605103,
0.052926450967788696,
-0.11974739283323288,
-0.2846011817455292,
-0.13567358255386353,
0.1229507103562355,
0.28364551067352295,
-0.5959329605102539,
0.6068668365478516,
0.3434158265590668,
-0.6328281164169312,
0.21025116741657257,
-0.2577956020832062,
0.6709500551223755,
-0.5978152751922607,
0.02733626961708069,
-0.22699357569217682,
0.4181040823459625,
-0.46187418699264526,
-1.0075825452804565,
0.4713839888572693,
-0.2920242249965668,
-0.4055131673812866,
-0.2694242596626282,
0.8072363138198853,
-0.22133924067020416,
-0.5572862029075623,
0.37486040592193604,
0.13466599583625793,
0.4147365987300873,
0.4014599323272705,
-0.5487293601036072,
0.0477900356054306,
0.1376015990972519,
-0.20061787962913513,
0.36011868715286255,
0.2973729074001312,
0.25488775968551636,
0.7100129127502441,
0.5052477121353149,
0.22198699414730072,
0.25694388151168823,
-0.18668609857559204,
0.8387457132339478,
-0.9102797508239746,
-0.8167636394500732,
-0.9497331380844116,
0.3849893808364868,
0.025727592408657074,
-0.880144476890564,
0.7920305728912354,
0.765260636806488,
0.5113963484764099,
-0.487789124250412,
0.47552844882011414,
-0.326479434967041,
0.504713773727417,
-0.1387096792459488,
1.001089334487915,
-0.7607628703117371,
-0.29587242007255554,
-0.03055393323302269,
-0.9216439723968506,
-0.2533753514289856,
0.537574291229248,
0.15408316254615784,
-0.14608046412467957,
0.43859076499938965,
0.4421638250350952,
0.02217327617108822,
0.2522314488887787,
0.3286101818084717,
0.06042801961302757,
0.14508453011512756,
0.5510438680648804,
1.0931141376495361,
-0.4339441955089569,
0.18694788217544556,
-0.4923476576805115,
-0.4536250829696655,
-0.4153490662574768,
-0.9548057317733765,
-0.6640312671661377,
-0.48185449838638306,
-0.2973935604095459,
-0.5915578603744507,
0.11726468056440353,
0.9300886392593384,
0.9018139839172363,
-0.6256728172302246,
-0.41243651509284973,
0.2571352422237396,
0.3029341995716095,
-0.22954195737838745,
-0.1462680697441101,
0.2736492156982422,
-0.006407659035176039,
-0.7211177945137024,
0.3930942416191101,
0.807976484298706,
0.3887127637863159,
0.08443979918956757,
-0.07217122614383698,
-0.44070833921432495,
0.026101820170879364,
0.5373561382293701,
0.5729563236236572,
-0.6281181573867798,
-0.40996435284614563,
-0.5328316688537598,
-0.21386729180812836,
0.15529420971870422,
0.4807754456996918,
-0.5166378021240234,
0.3266112804412842,
0.8128961324691772,
0.17017662525177002,
0.7187885046005249,
-0.002249389886856079,
0.667864203453064,
-0.8970247507095337,
0.4446259140968323,
0.3953385651111603,
0.5681869983673096,
0.08998027443885803,
-0.7339163422584534,
0.9820243120193481,
0.49674347043037415,
-0.6334057450294495,
-1.0034241676330566,
0.030799537897109985,
-1.1931140422821045,
-0.3788175880908966,
0.9890844821929932,
-0.09595750272274017,
-0.9597459435462952,
-0.3644895553588867,
-0.36777177453041077,
0.07989635318517685,
-0.3380974233150482,
0.35498201847076416,
0.8268195986747742,
-0.2538072466850281,
-0.22041857242584229,
-0.9505583047866821,
0.4752943813800812,
0.31025269627571106,
-0.5886633396148682,
-0.05114369839429855,
0.32939112186431885,
0.45236867666244507,
0.3009701073169708,
0.5239558219909668,
0.10428208857774734,
0.897053062915802,
0.25200390815734863,
0.3049141764640808,
-0.04526623338460922,
-0.5900784134864807,
-0.016066426411271095,
0.2621477246284485,
0.044878363609313965,
-0.6869441270828247
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
flax-community/conceptual-12m-mbart-50-multilingual | flax-community | 2021-07-21T05:25:46Z | 293 | 0 | null | [
"region:us"
] | 2021-07-21T05:25:46Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227649927139282,
-0.225684255361557,
0.862226128578186,
0.43461498618125916,
-0.5282987952232361,
0.7012963891029358,
0.7915717363357544,
0.07618629932403564,
0.7746025919914246,
0.2563219666481018,
-0.7852816581726074,
-0.2257382869720459,
-0.9104480743408203,
0.5715669393539429,
-0.3992333710193634,
0.5791246294975281,
-0.14494505524635315,
-0.1075117364525795,
0.28233781456947327,
-0.27689552307128906,
-0.5409225821495056,
-0.36855241656303406,
-1.1902779340744019,
0.06149129197001457,
0.5316579937934875,
0.7435141205787659,
0.7584060430526733,
0.36521655321121216,
0.6432582139968872,
0.3932291865348816,
-0.23138919472694397,
0.48270565271377563,
-0.04171822592616081,
0.0026042789686471224,
-0.35244375467300415,
-0.5516899228096008,
-0.2859659492969513,
0.07584736496210098,
1.096130132675171,
0.9666878581047058,
-0.28466349840164185,
0.053308140486478806,
-0.3063623607158661,
0.33088886737823486,
-0.4973432123661041,
0.3054099678993225,
-0.022505804896354675,
0.16318807005882263,
-0.704151451587677,
-0.553535521030426,
0.012794691137969494,
-0.7361213564872742,
0.1792658269405365,
-0.690081000328064,
0.8269096612930298,
0.1858319342136383,
1.1533750295639038,
0.14819398522377014,
-0.46248704195022583,
-0.8161765933036804,
-0.653899073600769,
0.5711169242858887,
-0.3270370066165924,
0.3968023359775543,
0.7028235197067261,
-0.048573169857263565,
-0.982033371925354,
-0.6745743751525879,
-0.4646618366241455,
0.29239633679389954,
0.35402780771255493,
-0.34116774797439575,
-0.17522098124027252,
-0.305899053812027,
0.15792018175125122,
0.1281152069568634,
-0.48419952392578125,
-0.5543919205665588,
-0.5475160479545593,
-0.39602527022361755,
0.6206656694412231,
0.3482950031757355,
0.24291758239269257,
-0.1888413429260254,
-0.3228580057621002,
0.08801636844873428,
-0.41608506441116333,
0.34025701880455017,
0.6335514783859253,
0.7114018201828003,
-0.5811443328857422,
0.5602161288261414,
-0.04927589371800423,
0.7439702153205872,
0.11445537954568863,
-0.274780809879303,
0.4146057665348053,
-0.14724718034267426,
0.05517164617776871,
0.42263469099998474,
0.31524428725242615,
0.28413113951683044,
-0.3273695409297943,
0.20322294533252716,
-0.3215145766735077,
-0.3049623370170593,
-0.22332172095775604,
-0.29490751028060913,
-0.35921818017959595,
0.549229085445404,
-0.33140188455581665,
-0.4285547137260437,
1.1431758403778076,
-0.42007675766944885,
-0.7302225828170776,
0.3315642476081848,
0.40652093291282654,
-0.0994480699300766,
-0.3714657425880432,
-0.05226074904203415,
-0.8458789587020874,
-0.007907691411674023,
0.7491171956062317,
-0.7198970317840576,
0.3371737599372864,
0.47280654311180115,
0.7417216897010803,
0.19650569558143616,
-0.14034494757652283,
-0.4294942021369934,
0.29719704389572144,
-0.8659993410110474,
0.6320173144340515,
-0.2013520747423172,
-1.0051978826522827,
0.11150495707988739,
0.8971706628799438,
-0.37896373867988586,
-1.2094876766204834,
1.060516119003296,
-0.6887933015823364,
0.1601785123348236,
-0.676761269569397,
-0.14661230146884918,
-0.07118520885705948,
-0.005096568260341883,
-0.6088157892227173,
0.7567103505134583,
0.5872674584388733,
-0.4995274543762207,
0.21429486572742462,
-0.26029834151268005,
-0.39151403307914734,
0.3882487714290619,
-0.07935424149036407,
-0.2185889184474945,
0.7138333916664124,
-0.664708137512207,
-0.2693280875682831,
0.29427722096443176,
0.23689362406730652,
-0.357060968875885,
-0.7931919693946838,
0.08478114753961563,
-0.05786252021789551,
1.550750494003296,
-0.03868845850229263,
-0.3586105704307556,
-0.6793834567070007,
-1.1506240367889404,
-0.07070795446634293,
0.6886884570121765,
-0.9194990992546082,
-0.2783949673175812,
-0.04641014337539673,
-0.2616930603981018,
0.08994894474744797,
0.7390590906143188,
-1.1194051504135132,
0.2832726836204529,
-0.050926774740219116,
-0.22794683277606964,
0.8271058201789856,
0.15387241542339325,
0.24758955836296082,
0.1491340696811676,
0.4295870363712311,
0.5277254581451416,
0.11115201562643051,
0.6835877895355225,
-0.3472035527229309,
-0.9694353342056274,
0.6154632568359375,
0.25266385078430176,
0.8121447563171387,
-0.4994528889656067,
0.26850956678390503,
0.2702553868293762,
-0.3409680724143982,
-0.5682373046875,
-0.31028372049331665,
0.0902574211359024,
0.14930583536624908,
0.11142507940530777,
-0.5721709728240967,
-0.6576125025749207,
-0.9689140319824219,
-0.13590635359287262,
-0.4314374029636383,
-0.3571571409702301,
0.21006926894187927,
0.5792905688285828,
-1.1975526809692383,
0.4128873944282532,
-0.7705625891685486,
-0.7038741707801819,
-0.010655654594302177,
-0.19338122010231018,
0.7540656924247742,
0.4324018955230713,
0.5033968091011047,
-0.6397148966789246,
-0.5661988854408264,
-0.22470149397850037,
-1.0333750247955322,
-0.13280494511127472,
0.2481962889432907,
0.3065735399723053,
-0.1342335343360901,
-0.2744964361190796,
-0.4874034523963928,
0.8100388646125793,
0.14789165556430817,
-0.5391895174980164,
0.5220765471458435,
-0.3020317852497101,
0.17224819958209991,
-0.6369152069091797,
-0.06916812807321548,
-0.6616762280464172,
-0.000907188281416893,
-0.36083072423934937,
-0.573743999004364,
0.1477230042219162,
0.07017485052347183,
-0.16065460443496704,
0.2880840599536896,
-0.9092769622802734,
-0.001085409545339644,
-0.744221031665802,
0.37907201051712036,
0.06394761800765991,
-0.31450793147087097,
-0.017517389729619026,
1.0000383853912354,
0.7784460783004761,
-0.384804904460907,
0.7217445373535156,
0.4440041482448578,
0.19036149978637695,
0.7630521655082703,
-0.18725110590457916,
0.16478213667869568,
-0.5245417356491089,
-0.12161097675561905,
-0.888759970664978,
-1.0982946157455444,
0.7320567965507507,
-0.6114249229431152,
0.3654290437698364,
-0.42778700590133667,
0.2589159309864044,
-0.6919260025024414,
-0.038853563368320465,
0.48085999488830566,
-0.05936327576637268,
-0.6863945722579956,
0.5232571363449097,
0.4531753957271576,
-0.2019241750240326,
-0.6609030961990356,
-0.5301573872566223,
0.393658310174942,
0.615411639213562,
-0.16390356421470642,
0.06878511607646942,
0.1494106948375702,
-0.5441924333572388,
-0.04080261290073395,
-0.3869195580482483,
-0.45766744017601013,
0.05422399193048477,
0.1305345743894577,
-0.005750620272010565,
-0.40482011437416077,
-0.08680271357297897,
-0.358420193195343,
-0.46561211347579956,
0.21876494586467743,
0.30119460821151733,
-0.04096325486898422,
-0.42599788308143616,
-0.36198195815086365,
-0.8881813883781433,
0.6719611287117004,
0.5370281934738159,
0.052815474569797516,
0.7555548548698425,
0.16819289326667786,
-0.8014988899230957,
-0.13532212376594543,
-0.17607063055038452,
0.2696830928325653,
-0.5588056445121765,
0.1384982466697693,
-0.01348454225808382,
-0.06374932825565338,
0.26297885179519653,
0.25386232137680054,
-0.4300557076931,
0.9276250600814819,
-0.2615273594856262,
-0.35925212502479553,
0.7960182428359985,
0.597474217414856,
0.495831161737442,
0.16503207385540009,
-0.04454176500439644,
0.9007095098495483,
-1.196651577949524,
-0.6563177704811096,
-0.7409546971321106,
-0.15945690870285034,
-0.4351082742214203,
-0.03210579603910446,
0.6254411935806274,
0.29009905457496643,
-0.13333874940872192,
0.4756394326686859,
-0.5243490934371948,
0.35560351610183716,
1.0119842290878296,
0.3574865460395813,
0.34356987476348877,
-0.7570229172706604,
-0.25157785415649414,
-0.14024284482002258,
-0.9998159408569336,
-0.2631374001502991,
0.8871029615402222,
0.2275259792804718,
0.844460666179657,
0.5992542505264282,
0.6784543395042419,
0.13672281801700592,
0.25238290429115295,
-0.30590343475341797,
0.3920292854309082,
0.4376083016395569,
-1.0401140451431274,
-0.4275839328765869,
0.021418850868940353,
-0.9703340530395508,
-0.14227530360221863,
-0.03495030477643013,
-0.42617112398147583,
0.7681736946105957,
0.00016602575487922877,
-0.4076712131500244,
0.7732729911804199,
-0.45558351278305054,
0.7562873959541321,
-0.4473651051521301,
-0.02663874253630638,
0.4699097275733948,
-0.7070637345314026,
0.46774300932884216,
0.12878793478012085,
0.6205841302871704,
-0.01557224802672863,
-0.04078586772084236,
0.7104939222335815,
-0.9129160046577454,
0.25438636541366577,
-0.634839653968811,
0.2242129147052765,
0.24246971309185028,
0.5160630345344543,
0.59699547290802,
0.43712449073791504,
0.10119903087615967,
-0.23920896649360657,
0.04115808755159378,
-0.8241122961044312,
-0.2105063647031784,
0.6975157260894775,
-0.71868896484375,
-0.6864197850227356,
-1.2355337142944336,
0.14438673853874207,
0.2734706997871399,
0.38930535316467285,
0.7959295511245728,
0.5714088082313538,
0.12895449995994568,
0.680525004863739,
0.9888588190078735,
-0.06885646283626556,
0.9166923761367798,
0.3224477469921112,
0.09175156056880951,
-0.21944813430309296,
0.7036822438240051,
0.266279011964798,
-0.24707970023155212,
-0.11939714848995209,
0.20913450419902802,
-0.11069407314062119,
-0.5917617082595825,
-0.4999065399169922,
0.3701757788658142,
-0.6731789112091064,
-0.18303894996643066,
-0.6243734359741211,
-0.6043769121170044,
-0.5117590427398682,
0.06927337497472763,
-0.7147688269615173,
0.2397904098033905,
-0.775356650352478,
-0.10574903339147568,
0.04323428124189377,
0.9792010188102722,
-0.5893122553825378,
0.5805224180221558,
-1.1218583583831787,
0.1934579312801361,
-0.0794990062713623,
0.792106032371521,
0.21395783126354218,
-0.7344393134117126,
-0.39754194021224976,
-0.11592612415552139,
-0.3729906678199768,
-1.3576762676239014,
0.21404941380023956,
-0.24541425704956055,
0.230940580368042,
0.6145402193069458,
0.13977056741714478,
0.5258246660232544,
-0.34326282143592834,
0.7029102444648743,
-0.05701731517910957,
-0.7069286108016968,
0.7934495210647583,
-0.5026895403862,
0.49635347723960876,
0.9766000509262085,
0.5333837270736694,
-0.79840087890625,
0.035741277039051056,
-1.0411232709884644,
-0.6008694171905518,
0.38426414132118225,
0.11928923428058624,
-0.03601084277033806,
-0.6659561395645142,
-0.054019391536712646,
-0.1614380031824112,
0.6043745279312134,
-1.0390692949295044,
-0.7858357429504395,
0.2576698064804077,
0.5277301073074341,
0.08168556541204453,
-0.565339982509613,
0.20880655944347382,
-0.5444158911705017,
1.06577730178833,
0.45109421014785767,
0.3274499773979187,
0.8406060338020325,
0.464924156665802,
-0.3823162913322449,
0.09252461791038513,
0.7662690877914429,
0.6666231751441956,
-0.5239797830581665,
-0.2908027172088623,
-0.08827538788318634,
-0.9143403768539429,
0.05927461385726929,
0.11168905347585678,
-0.013455879874527454,
0.9082109332084656,
0.5793081521987915,
0.25397056341171265,
0.45142802596092224,
-0.726460337638855,
0.8859450221061707,
-0.14954176545143127,
-0.12472869455814362,
-1.0677239894866943,
0.19486209750175476,
-0.2398495376110077,
0.500640332698822,
1.0061328411102295,
0.5250048637390137,
-0.047630272805690765,
-0.8143380880355835,
-0.014735929667949677,
0.6939170956611633,
-0.709112286567688,
-0.17449809610843658,
0.9448536038398743,
0.38471001386642456,
-1.2953054904937744,
1.106776475906372,
-0.5381773114204407,
-0.560332179069519,
0.9121302366256714,
0.5229569673538208,
1.1221848726272583,
-0.4420413076877594,
0.0008674964192323387,
0.26622357964515686,
0.4137844145298004,
0.542316734790802,
1.0869629383087158,
0.43141308426856995,
-0.7931063771247864,
0.8826583623886108,
-0.24776022136211395,
-0.4036114811897278,
-0.05347560718655586,
-0.42859894037246704,
0.16892187297344208,
-0.4406191408634186,
-0.10713012516498566,
-0.3444187045097351,
0.2854316830635071,
-0.7072039246559143,
0.4280761778354645,
-0.08385668694972992,
0.8653068542480469,
-0.855372428894043,
0.4720762372016907,
0.6354703903198242,
-0.3337356448173523,
-0.8508188128471375,
-0.2619844973087311,
-0.11448472738265991,
-0.638946533203125,
0.30214816331863403,
-0.4554104804992676,
0.04439886286854744,
0.09623479098081589,
-0.6491516828536987,
-1.1778275966644287,
0.9093635678291321,
-0.6396123766899109,
-0.2784460783004761,
0.20464055240154266,
-0.11514773219823837,
0.2881172299385071,
-0.25246477127075195,
0.010661167092621326,
0.41876548528671265,
0.7489399909973145,
0.28446558117866516,
-0.7727052569389343,
-0.3694884181022644,
0.0015033757081255317,
-0.44474753737449646,
0.7582978010177612,
-0.6002100706100464,
1.1840780973434448,
-0.5563542246818542,
-0.059654414653778076,
0.44384512305259705,
0.24690917134284973,
0.21076181530952454,
0.6629220247268677,
0.14420798420906067,
0.7282263040542603,
1.0701215267181396,
-0.4083522856235504,
0.8811809420585632,
0.2643283009529114,
0.47430819272994995,
0.7238501310348511,
-0.6487723588943481,
0.7513749003410339,
0.31810465455055237,
-0.5682922601699829,
0.92280113697052,
1.2906063795089722,
-0.1569921225309372,
0.8079374432563782,
0.05136488750576973,
-1.081600546836853,
0.3258334994316101,
-0.20724749565124512,
-0.7530064582824707,
0.3150251507759094,
0.1905587911605835,
-0.6920983195304871,
-0.5770308375358582,
-0.24046501517295837,
-0.3566280007362366,
-0.1155291423201561,
-0.7631731033325195,
0.6720564961433411,
-0.016969282180070877,
-0.5103682279586792,
0.18857553601264954,
0.28775009512901306,
0.17368437349796295,
-0.5235732793807983,
-0.029394114390015602,
-0.22823619842529297,
0.26606568694114685,
-0.5670853853225708,
-0.5234529376029968,
0.5724431276321411,
-0.32430222630500793,
-0.5343254804611206,
0.18147492408752441,
0.763587474822998,
-0.16923826932907104,
-0.45154085755348206,
0.32472723722457886,
0.6959527134895325,
0.16658525168895721,
0.4250282347202301,
-0.23511238396167755,
0.24480600655078888,
-0.08044824749231339,
-0.06651554256677628,
0.2771476209163666,
0.3449169993400574,
0.22435645759105682,
0.4450143277645111,
0.4328565001487732,
-0.01808754727244377,
-0.10736513137817383,
-0.3828198313713074,
0.4124940037727356,
-0.9542784690856934,
-0.5713282823562622,
-0.6307111978530884,
0.2740660309791565,
-0.023154366761446,
-1.0836423635482788,
0.4145169258117676,
1.4406683444976807,
1.0359983444213867,
-0.475638210773468,
1.067226767539978,
-0.2181849181652069,
0.9594791531562805,
0.41483116149902344,
0.5420439839363098,
-0.6030409336090088,
0.03835364058613777,
-0.4364396035671234,
-1.0769630670547485,
-0.35716351866722107,
0.4539393484592438,
-0.022899314761161804,
-0.3429868221282959,
0.872571587562561,
0.5887165665626526,
-0.3347361087799072,
-0.11728020012378693,
0.0484871007502079,
-0.029941529035568237,
-0.1243385523557663,
0.514537513256073,
0.7648400068283081,
-0.934430718421936,
-0.1068042665719986,
-0.21577759087085724,
-0.6382726430892944,
-0.5047283172607422,
-0.9632008671760559,
-0.12959399819374084,
-0.16037814319133759,
0.03534340113401413,
-0.566280722618103,
0.002557432744652033,
1.208324909210205,
0.568495512008667,
-1.1113994121551514,
-0.5303788185119629,
0.3371853828430176,
0.3920421004295349,
-0.187479168176651,
-0.24202406406402588,
0.2984566390514374,
0.15382234752178192,
-0.5908878445625305,
0.6875665783882141,
0.8089625239372253,
0.20888924598693848,
0.19554752111434937,
0.15893033146858215,
-0.8229473829269409,
-0.14913442730903625,
0.1744045466184616,
0.9450570940971375,
-0.9398530125617981,
-0.7114841938018799,
-0.031685058027505875,
-0.27094873785972595,
-0.057657480239868164,
0.17102116346359253,
-0.404634565114975,
0.5180680155754089,
0.3459148108959198,
0.4993346333503723,
0.05616114288568497,
-0.05474681779742241,
0.5409557223320007,
-0.9069057703018188,
0.09425967186689377,
0.4134361743927002,
0.41541147232055664,
-0.40008649230003357,
-0.5910195112228394,
0.6713423132896423,
1.007397174835205,
-0.6594868898391724,
-0.8743270039558411,
-0.19846725463867188,
-1.0016002655029297,
0.04189706966280937,
0.6762765049934387,
0.5009526014328003,
-0.480651319026947,
-0.41744986176490784,
-0.5617401599884033,
-0.12546734511852264,
-0.13699713349342346,
0.7621601819992065,
1.179680585861206,
-0.7432094812393188,
0.07975751906633377,
-1.0386396646499634,
0.6594986915588379,
-0.2419460266828537,
-0.3457581400871277,
-0.486442893743515,
0.3832802474498749,
0.35236966609954834,
0.44048118591308594,
0.6148122549057007,
0.1408470869064331,
0.8338426351547241,
0.3126053810119629,
-0.17026884853839874,
0.26989835500717163,
-0.45591992139816284,
-0.02893286943435669,
-0.057962339371442795,
0.31015974283218384,
-1.0262155532836914
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
flax-community/conceptual-12m-multilingual-marian-128 | flax-community | 2021-07-29T15:49:32Z | 293 | 0 | null | [
"region:us"
] | 2021-07-29T15:49:32Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | This dataset is created from subset of [Conceptual Captions](https://ai.google.com/research/ConceptualCaptions/). The original dataset has 12M captions but this dataset has around 10M image, caption pairs in different languages with 2.5M unique images. This dataset has captions translated from English to Spanish, German, French using language specific English to [Marian](https://huggingface.co/Helsinki-NLP) models (with sequence length 128). Data distribution is following:
`train_file_marian_final.tsv`: 10002432 captions (2500608 captions of English, German, Spanish, French each)
<br />
`val_file_marian_final.tsv`: 102400 captions (25600 captions of English, German, Spanish, French each) | [
-0.32089903950691223,
-0.3921690583229065,
0.3744954764842987,
0.579546332359314,
-0.652087926864624,
-0.02285580150783062,
-0.1767883449792862,
-0.34264710545539856,
0.420154333114624,
0.6506572365760803,
-0.6314300298690796,
-0.6396719217300415,
-0.7988196015357971,
0.40747135877609253,
-0.6705502271652222,
1.1453241109848022,
-0.23474863171577454,
0.5231390595436096,
-0.20927627384662628,
-0.4434571862220764,
-0.4567287266254425,
-0.05268559977412224,
-0.4844034016132355,
0.12317819148302078,
0.22363825142383575,
0.1991163194179535,
0.5347673296928406,
0.6382576823234558,
0.8620507121086121,
0.26940909028053284,
0.2944950461387634,
0.06777598708868027,
-0.5406262874603271,
-0.13071134686470032,
-0.07347598671913147,
-0.6833895444869995,
-0.13422605395317078,
0.09469285607337952,
0.9414932727813721,
0.470457524061203,
0.11052647233009338,
0.43075594305992126,
-0.20989054441452026,
1.013815999031067,
-0.02598833478987217,
0.35656076669692993,
-0.5118873119354248,
0.30657607316970825,
-0.25836706161499023,
-0.11473572254180908,
-0.3121877610683441,
-0.13208848237991333,
0.23155926167964935,
-0.8299666047096252,
0.43653205037117004,
0.21525141596794128,
1.137222170829773,
0.3993031978607178,
-0.11889295279979706,
-0.029548974707722664,
-0.4896194636821747,
0.9957024455070496,
-0.4964733421802521,
0.1709793210029602,
0.35636305809020996,
0.3110602796077728,
0.18002718687057495,
-0.581457257270813,
-0.7088775634765625,
0.09742750227451324,
-0.18876728415489197,
0.04964356869459152,
-0.17925810813903809,
-0.6225121021270752,
0.3318054974079132,
0.4232802987098694,
-0.9442722797393799,
-0.12024223804473877,
-0.6010801792144775,
-0.0876307263970375,
0.981259286403656,
0.27042949199676514,
0.4071577787399292,
-0.46864086389541626,
-0.27894729375839233,
-0.3685236871242523,
-0.5868896245956421,
-0.3142949640750885,
0.31657251715660095,
0.33270612359046936,
-0.7874176502227783,
0.7120628952980042,
-0.44065701961517334,
0.705535888671875,
-0.3466668725013733,
-0.21338507533073425,
0.7697737812995911,
-0.4261506199836731,
-0.48492512106895447,
-0.29746919870376587,
1.1578714847564697,
0.3943529427051544,
0.6136943697929382,
-0.21994316577911377,
-0.0032418586779385805,
0.06980279088020325,
0.05704861879348755,
-0.24246828258037567,
-0.21771448850631714,
0.2389683574438095,
-0.3546617329120636,
-0.4076511263847351,
0.28261643648147583,
-0.6500301957130432,
-0.16453970968723297,
-0.5997068285942078,
0.19423259794712067,
-0.4605463445186615,
-0.14408600330352783,
0.2936115264892578,
-0.16351082921028137,
0.19502678513526917,
0.12635713815689087,
-0.39732345938682556,
0.2543725371360779,
0.1540171205997467,
1.118309497833252,
-0.40244564414024353,
-0.1651986688375473,
-0.06033044680953026,
0.026695996522903442,
-0.2590179443359375,
0.6137651205062866,
-0.3692528307437897,
-0.16419994831085205,
0.0011278315214440227,
0.5560881495475769,
-0.3687986135482788,
-0.3964028060436249,
0.5508858561515808,
-0.5457298755645752,
0.28059205412864685,
-0.4417791962623596,
-0.31685522198677063,
-0.20368069410324097,
0.22551941871643066,
-1.0551611185073853,
0.8189595937728882,
0.24170750379562378,
-1.121289610862732,
0.536026120185852,
-0.8076756000518799,
-0.4513106346130371,
0.19624020159244537,
-0.26266470551490784,
-0.38014110922813416,
-0.07502295076847076,
0.5938770771026611,
0.5870152711868286,
-0.47572100162506104,
0.4151824116706848,
0.15317712724208832,
-0.18825559318065643,
0.1709812879562378,
-0.10560635477304459,
0.8215556144714355,
0.48486173152923584,
-0.30294737219810486,
-0.09282134473323822,
-0.8365548253059387,
-0.2676272988319397,
0.5069853067398071,
-0.01361654419451952,
-0.3210780918598175,
-0.3602515757083893,
0.4783460199832916,
0.3375888764858246,
0.05118577182292938,
-0.5985924005508423,
0.021204272285103798,
-0.18344871699810028,
0.43879103660583496,
0.5346934795379639,
0.20757731795310974,
0.6375965476036072,
-0.5429887771606445,
0.8087252974510193,
0.5381629467010498,
0.12695948779582977,
0.004286503419280052,
-0.7748991250991821,
-0.6987890601158142,
-0.4997728765010834,
0.44757020473480225,
0.6385467052459717,
-1.0684541463851929,
0.4845806956291199,
-0.712563157081604,
-0.34413033723831177,
-1.0237046480178833,
-0.11921270191669464,
0.34081268310546875,
0.3609904944896698,
0.24326661229133606,
-0.1873112916946411,
-0.4159729778766632,
-1.4646247625350952,
0.434002161026001,
0.06317523866891861,
-0.060209598392248154,
0.0015416855458170176,
0.9605286121368408,
-0.07064143568277359,
0.842700719833374,
-0.6285620331764221,
-0.637292206287384,
-0.0016049958067014813,
-0.17217189073562622,
0.24672406911849976,
0.624048113822937,
0.9150396585464478,
-0.843755304813385,
-0.745186448097229,
-0.08425741642713547,
-0.9913756847381592,
0.3241052031517029,
-0.43435847759246826,
-0.45308008790016174,
0.3171564042568207,
0.1293521672487259,
-0.41823530197143555,
0.22906635701656342,
0.5309662818908691,
0.1785326600074768,
0.30683302879333496,
0.07271647453308105,
0.2769329249858856,
-1.6494661569595337,
0.19174669682979584,
0.24706082046031952,
-0.1671389490365982,
-0.1031142994761467,
0.0884414091706276,
-0.1692749559879303,
0.024362724274396896,
-0.45950376987457275,
0.5197693109512329,
-0.5074659585952759,
-0.009077615104615688,
0.3936314582824707,
0.32020094990730286,
-0.20438627898693085,
0.5113822221755981,
0.328268826007843,
0.666365921497345,
0.9833680987358093,
-0.25553789734840393,
0.5925621390342712,
0.9179446697235107,
-0.6437761187553406,
0.6129534840583801,
-0.7707691788673401,
-0.13037262856960297,
-0.24022412300109863,
0.19760070741176605,
-1.1001155376434326,
-0.2986200451850891,
0.3951139748096466,
-0.40948495268821716,
-0.011673563160002232,
-0.046192362904548645,
-0.9920268654823303,
-0.2170514464378357,
-0.30960792303085327,
0.2942982017993927,
0.5065176486968994,
-0.45538976788520813,
0.09149342030286789,
0.556898832321167,
-0.3427930772304535,
-0.6283152103424072,
-0.847141683101654,
0.19981376826763153,
-0.31025928258895874,
-0.8530935645103455,
-0.053086474537849426,
-0.14613868296146393,
-0.018494632095098495,
0.30601269006729126,
0.41006243228912354,
0.10455860197544098,
-0.48531243205070496,
0.34930500388145447,
0.22551743686199188,
-0.05255112797021866,
0.11844730377197266,
0.02348230965435505,
0.16124749183654785,
-0.02788628451526165,
-0.23383577167987823,
0.6670143604278564,
-0.16019374132156372,
-0.12442521750926971,
-0.426762193441391,
0.39901718497276306,
0.5369724631309509,
-0.13457217812538147,
1.1635947227478027,
0.726630687713623,
-0.15882404148578644,
0.005404917523264885,
-0.27993088960647583,
0.09948720037937164,
-0.3421246111392975,
0.37074506282806396,
-0.6433492302894592,
-0.571925938129425,
0.9861993789672852,
0.596291720867157,
0.09072399139404297,
0.7468122243881226,
0.3698616921901703,
-0.1555732935667038,
0.8773864507675171,
0.25497502088546753,
-0.798417329788208,
0.3198856711387634,
-0.8773022890090942,
-0.09219163656234741,
-0.6981374621391296,
-0.3571983575820923,
-0.3587910234928131,
-0.44765281677246094,
-0.8058397173881531,
-0.48381319642066956,
0.2603120505809784,
-0.4947006404399872,
-0.20345629751682281,
0.3974693715572357,
-0.47940078377723694,
0.3786384165287018,
0.7929194569587708,
0.3883713185787201,
0.3577979803085327,
0.7105396389961243,
-0.2790713310241699,
-0.1942930817604065,
-0.5956467390060425,
-0.5510748028755188,
1.3049639463424683,
0.47052690386772156,
0.41887617111206055,
0.28280654549598694,
0.47548380494117737,
0.48408105969429016,
0.09261291474103928,
-0.43961256742477417,
0.5691916942596436,
-0.24780942499637604,
-0.7007817029953003,
-0.32596367597579956,
-0.5752913951873779,
-0.9175293445587158,
-0.20794908702373505,
-0.2710895538330078,
-0.4403490126132965,
-0.20957471430301666,
-0.24838078022003174,
0.19801734387874603,
0.21777670085430145,
-0.5093839168548584,
0.6851990222930908,
0.1863880306482315,
-0.05024842172861099,
0.02849743887782097,
-1.0468155145645142,
0.49237439036369324,
-0.3909662961959839,
0.20358090102672577,
0.012871069833636284,
0.2598029673099518,
1.1627790927886963,
-0.1531844437122345,
0.6343583464622498,
0.034178681671619415,
0.09554019570350647,
0.33901119232177734,
-0.30483460426330566,
0.3754451870918274,
0.1602061539888382,
0.22971056401729584,
0.19791753590106964,
0.02297704853117466,
-0.7450564503669739,
-0.23474761843681335,
0.6968832612037659,
-1.1451188325881958,
-0.10991019755601883,
-0.4772554039955139,
-0.9073270559310913,
-0.07122261077165604,
-0.07452256977558136,
0.7438762784004211,
0.42977190017700195,
-0.014115378260612488,
0.31602638959884644,
0.5297088027000427,
-0.2602461874485016,
0.3584737479686737,
0.6296371221542358,
-0.03630029037594795,
-0.7048854231834412,
0.7695227861404419,
0.038357410579919815,
0.2351343333721161,
0.4239715337753296,
-0.2986624836921692,
-0.5677481293678284,
-0.6207093000411987,
-0.5945686101913452,
0.8559185862541199,
-0.6607043147087097,
-0.22872962057590485,
-0.6492506861686707,
-0.4110397696495056,
-0.3985161781311035,
-0.010436146520078182,
0.008672255091369152,
-0.5602545738220215,
-0.3105793297290802,
-0.2603231370449066,
0.6841543316841125,
0.6058854460716248,
0.13962353765964508,
0.6219086050987244,
-0.8619613647460938,
0.33928239345550537,
-0.045807745307683945,
0.29113802313804626,
-0.1307251751422882,
-1.1257681846618652,
-0.3648121654987335,
-0.06278283894062042,
-0.0549873448908329,
-0.7879615426063538,
0.8224875330924988,
0.014008542522788048,
0.5119841694831848,
0.5378955006599426,
0.0488942414522171,
0.6915382146835327,
-0.517780601978302,
0.9098616242408752,
0.3982190191745758,
-0.5599655508995056,
0.5280048847198486,
-0.663638174533844,
0.24521812796592712,
0.5078163743019104,
0.6724896430969238,
-0.5607172250747681,
-0.6831234693527222,
-1.0342079401016235,
-0.7232057452201843,
0.8353540897369385,
0.6994483470916748,
0.16078971326351166,
-0.034619130194187164,
0.23089222609996796,
0.010747621767222881,
0.18256036937236786,
-0.8287432193756104,
-0.307668000459671,
0.06855263561010361,
-0.5694437026977539,
-0.4143153131008148,
0.22256530821323395,
-0.4961986243724823,
-0.49124178290367126,
1.026326298713684,
-0.09327493607997894,
0.363099604845047,
0.0699179619550705,
-0.2657776176929474,
-0.07108310610055923,
-0.22626528143882751,
0.8565680384635925,
0.4911612570285797,
-0.2051284909248352,
-0.1306302696466446,
-0.0673740953207016,
-0.6668626666069031,
0.026816725730895996,
0.06068611517548561,
-0.2615740895271301,
0.27217838168144226,
0.5714341402053833,
0.9840677380561829,
-0.3309369683265686,
-0.758418619632721,
0.28784894943237305,
-0.10480106621980667,
-0.3197767436504364,
-0.6209734082221985,
-0.16968849301338196,
0.18015728890895844,
0.13407011330127716,
0.4267585873603821,
0.09447406232357025,
-0.06473776698112488,
-0.15258288383483887,
0.48160022497177124,
0.23406434059143066,
-0.3021736443042755,
-0.2978203594684601,
0.5949853658676147,
0.0880800187587738,
0.2689919173717499,
0.9080770015716553,
-0.3161332905292511,
-0.22345396876335144,
0.7497549057006836,
0.19897465407848358,
0.693058967590332,
0.12003334611654282,
0.7191282510757446,
0.7414950132369995,
0.3649787902832031,
-0.3621945381164551,
0.41702359914779663,
0.4116440713405609,
-0.9704551696777344,
-0.295511931180954,
-0.8857446312904358,
-0.05513713136315346,
0.5982460379600525,
-0.9617006778717041,
0.18583092093467712,
-0.0014662558678537607,
-0.048729926347732544,
0.11276902258396149,
0.05394965037703514,
-0.9781697988510132,
0.3381689786911011,
-0.24483387172222137,
0.8708366751670837,
-1.7626107931137085,
0.6814207434654236,
0.889386773109436,
-0.8061333298683167,
-0.7214285731315613,
-0.5417094230651855,
-0.20230317115783691,
-1.0031284093856812,
0.7746391892433167,
-0.26946064829826355,
0.5560159087181091,
-0.02557387761771679,
-0.8676271438598633,
-0.7540140151977539,
0.9963741898536682,
0.18132056295871735,
-0.695367693901062,
0.30368572473526,
0.6721723675727844,
0.7035529613494873,
-0.6797839999198914,
-0.24272695183753967,
0.6556161046028137,
0.3631942570209503,
0.23557128012180328,
-0.8225398659706116,
-0.14571937918663025,
-0.5002040266990662,
0.12445057928562164,
-0.011936984024941921,
-0.4829547703266144,
0.4246414005756378,
-0.04468071833252907,
-0.0005921385600231588,
0.22172890603542328,
0.49095678329467773,
0.49065065383911133,
0.05658407509326935,
0.49346935749053955,
0.7468286752700806,
0.3721443712711334,
-0.2507907450199127,
1.0309611558914185,
-0.060877811163663864,
0.4641086459159851,
1.098703384399414,
0.07100031524896622,
0.8020431995391846,
0.5684834718704224,
-0.3314489424228668,
0.17831867933273315,
0.9777864217758179,
-0.4246152639389038,
0.7575820684432983,
0.15535056591033936,
-0.2028917372226715,
0.1720953732728958,
-0.17258182168006897,
-0.2910400629043579,
0.18740633130073547,
0.11575126647949219,
-0.7890515327453613,
0.09300515055656433,
0.23160547018051147,
0.22674594819545746,
0.0027408129535615444,
0.11067160964012146,
0.5951048135757446,
0.04935545101761818,
-0.5334650278091431,
0.5729264616966248,
-0.1592593938112259,
0.3697584569454193,
-0.4248155653476715,
0.1367090940475464,
-0.3877100944519043,
-0.14611613750457764,
-0.08122890442609787,
-1.1031041145324707,
0.0859987810254097,
0.14150844514369965,
-0.40655940771102905,
-0.09705100953578949,
0.09128625690937042,
-0.5924228429794312,
-0.9805343151092529,
0.020751314237713814,
0.5740857124328613,
0.6564242243766785,
0.035147130489349365,
-0.8393105268478394,
0.010872487910091877,
0.3397921025753021,
-0.061553679406642914,
0.17952370643615723,
0.4047406315803528,
-0.15910671651363373,
0.6294687390327454,
0.5932394862174988,
0.306927353143692,
0.33672165870666504,
0.37587639689445496,
0.8276373147964478,
-0.45764586329460144,
-0.6417734026908875,
-0.422815203666687,
0.7618069052696228,
-0.34057188034057617,
-0.3700282871723175,
0.5983119010925293,
0.8025180101394653,
0.7206233143806458,
-0.8514007925987244,
1.1278300285339355,
-0.19365769624710083,
0.29412004351615906,
-0.7122175097465515,
0.4501781463623047,
-0.574735164642334,
0.038445547223091125,
-0.5472068190574646,
-1.044034719467163,
-0.44171419739723206,
0.633200466632843,
-0.18690669536590576,
-0.1829102635383606,
0.656931459903717,
0.7512795329093933,
-0.025881431996822357,
0.003288611536845565,
0.34826749563217163,
0.07829281687736511,
0.2015479952096939,
0.5035859942436218,
0.5887352824211121,
-0.7924020886421204,
0.3559776544570923,
-0.27781787514686584,
-0.0851694867014885,
0.019531188532710075,
-0.7263110280036926,
-0.8296409845352173,
-1.0997902154922485,
-0.5953261256217957,
-0.23577727377414703,
-0.2327970713376999,
0.7455223798751831,
0.9307807683944702,
-1.1158924102783203,
0.0028617584612220526,
-0.014482744038105011,
-0.30775803327560425,
-0.12836578488349915,
-0.2945343554019928,
0.6739075183868408,
-0.14896449446678162,
-1.00860595703125,
-0.10795003920793533,
-0.10750976204872131,
0.13902278244495392,
-0.14783604443073273,
-0.22676463425159454,
-0.1734192669391632,
-0.1396426111459732,
0.5908502340316772,
-0.09551222622394562,
-0.5946675539016724,
-0.31114915013313293,
0.17463144659996033,
-0.05694001913070679,
0.1140000969171524,
0.20454205572605133,
-0.3415287137031555,
0.4017680585384369,
0.49466773867607117,
0.3355022072792053,
0.6927959322929382,
0.022010285407304764,
0.4443814158439636,
-1.1567729711532593,
0.46701478958129883,
-0.06625155359506607,
0.4749264121055603,
0.4654015004634857,
-0.2159854769706726,
1.0236892700195312,
0.5474158525466919,
-0.2447519153356552,
-0.7057610154151917,
-0.031635019928216934,
-1.5471383333206177,
0.0634382888674736,
1.1405930519104004,
-0.17275245487689972,
-0.14504505693912506,
0.16947312653064728,
-0.12278526276350021,
0.10579302161931992,
-0.5118895173072815,
0.7055603861808777,
0.8480070233345032,
0.09686526656150818,
-0.40855392813682556,
-0.7388923168182373,
0.33176031708717346,
0.07176705449819565,
-0.8637625575065613,
-0.5111365914344788,
0.40012967586517334,
0.5346522331237793,
0.5228379964828491,
0.46662092208862305,
-0.34904006123542786,
-0.22031967341899872,
-0.10674186795949936,
0.1985240876674652,
0.20951645076274872,
-0.5198297500610352,
-0.1552821695804596,
-0.034213028848171234,
-0.3904525637626648,
-0.7801175117492676
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
flax-community/conceptual-12m-multilingual-marian | flax-community | 2021-07-20T19:16:40Z | 293 | 0 | null | [
"region:us"
] | 2021-07-20T19:16:40Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | This dataset is created from subset of [Conceptual Captions](https://ai.google.com/research/ConceptualCaptions/). The original dataset has 12M captions but this dataset has around 10M image, caption pairs in different languages with 2.5M unique images. This dataset has captions translated from English to Spanish, German, French using language specific English to [Marian](https://huggingface.co/Helsinki-NLP) models. Data distribution is following:
`train_file_marian_final.tsv`: 10010625 captions (2502656 captions of English, German, Spanish, French each)
<br />
`val_file_marian_final.tsv`: 110592 captions (27648 captions of English, German, Spanish, French each) | [
-0.32986071705818176,
-0.4253484010696411,
0.37810707092285156,
0.6005855202674866,
-0.6217589378356934,
-0.020780544728040695,
-0.1977122724056244,
-0.34493789076805115,
0.4264456331729889,
0.6627297401428223,
-0.6419769525527954,
-0.6666718125343323,
-0.7786659002304077,
0.39922407269477844,
-0.6451402306556702,
1.1694810390472412,
-0.2702857255935669,
0.5393943190574646,
-0.25613734126091003,
-0.470506489276886,
-0.43267548084259033,
-0.06285400688648224,
-0.48584744334220886,
0.07970324158668518,
0.2290133833885193,
0.1973792314529419,
0.5381078124046326,
0.6139559149742126,
0.8756676316261292,
0.2763035297393799,
0.3147680163383484,
0.03390689939260483,
-0.5297788381576538,
-0.14678625762462616,
-0.10370257496833801,
-0.7009264230728149,
-0.12717844545841217,
0.12537500262260437,
0.9184677004814148,
0.48622143268585205,
0.08017116785049438,
0.43090611696243286,
-0.21562638878822327,
0.9836693406105042,
-0.020719926804304123,
0.3934442400932312,
-0.535779595375061,
0.29210346937179565,
-0.24481377005577087,
-0.09432946145534515,
-0.2761518955230713,
-0.1408681422472,
0.21013705432415009,
-0.866996169090271,
0.45097339153289795,
0.2007865011692047,
1.170609712600708,
0.409606009721756,
-0.13027435541152954,
-0.04408307000994682,
-0.455918550491333,
1.0124332904815674,
-0.4551719129085541,
0.16609230637550354,
0.3814484179019928,
0.3118118643760681,
0.19288432598114014,
-0.5839167237281799,
-0.7027023434638977,
0.07724808901548386,
-0.21055397391319275,
0.06750360131263733,
-0.21529169380664825,
-0.6334277391433716,
0.29187682271003723,
0.43960022926330566,
-0.8900339007377625,
-0.13121862709522247,
-0.5837196707725525,
-0.09663698822259903,
0.967904806137085,
0.23931291699409485,
0.45624178647994995,
-0.4438250660896301,
-0.2855362594127655,
-0.3704874515533447,
-0.5914978384971619,
-0.3021533191204071,
0.31173089146614075,
0.36423957347869873,
-0.8036537766456604,
0.7099350094795227,
-0.4295102059841156,
0.6896966695785522,
-0.3359229266643524,
-0.23010946810245514,
0.761201798915863,
-0.4465818703174591,
-0.465684711933136,
-0.317304402589798,
1.1538546085357666,
0.4259316027164459,
0.6296466588973999,
-0.2270352989435196,
-0.023969298228621483,
0.0846603587269783,
0.059714771807193756,
-0.22540797293186188,
-0.26907962560653687,
0.20062191784381866,
-0.3569739758968353,
-0.4462870657444,
0.25592684745788574,
-0.6118478775024414,
-0.2043585181236267,
-0.6027585864067078,
0.18417586386203766,
-0.4211421310901642,
-0.19009071588516235,
0.2591755986213684,
-0.1691727191209793,
0.18629123270511627,
0.14907491207122803,
-0.4144955575466156,
0.26213306188583374,
0.15162701904773712,
1.0914303064346313,
-0.41300341486930847,
-0.180215984582901,
-0.043034691363573074,
0.047572311013936996,
-0.2892830967903137,
0.6571188569068909,
-0.37761592864990234,
-0.13881629705429077,
0.02537595108151436,
0.5747865438461304,
-0.38384392857551575,
-0.4412815272808075,
0.5732006430625916,
-0.5139511227607727,
0.31693392992019653,
-0.4616502821445465,
-0.29039502143859863,
-0.21051879227161407,
0.2492518275976181,
-1.079067349433899,
0.8477832674980164,
0.27269503474235535,
-1.122354507446289,
0.5487448573112488,
-0.812100887298584,
-0.43823954463005066,
0.18894483149051666,
-0.2731858491897583,
-0.3827562630176544,
-0.06339462846517563,
0.5961651802062988,
0.581943690776825,
-0.48017096519470215,
0.38882604241371155,
0.12712697684764862,
-0.16085080802440643,
0.16014781594276428,
-0.07095003873109818,
0.8429855704307556,
0.42851465940475464,
-0.3203965425491333,
-0.09025853872299194,
-0.8137558698654175,
-0.25699955224990845,
0.5289679169654846,
0.006209030747413635,
-0.3548080623149872,
-0.3409755825996399,
0.49152976274490356,
0.35416802763938904,
0.06862650066614151,
-0.5845807790756226,
0.0183655247092247,
-0.17747612297534943,
0.40453511476516724,
0.5387271046638489,
0.2166905403137207,
0.6822963356971741,
-0.5364095568656921,
0.8128790855407715,
0.5238500237464905,
0.11267301440238953,
0.036078501492738724,
-0.7732051610946655,
-0.7182591557502747,
-0.5061757564544678,
0.41590616106987,
0.6098386645317078,
-1.06683349609375,
0.46485742926597595,
-0.6828818321228027,
-0.35653212666511536,
-1.0364164113998413,
-0.07649356126785278,
0.3374353349208832,
0.37372034788131714,
0.22998438775539398,
-0.13675524294376373,
-0.38943979144096375,
-1.4746090173721313,
0.43751659989356995,
0.028634507209062576,
-0.07042396813631058,
0.014119893312454224,
0.9446135759353638,
-0.06660290062427521,
0.8482365012168884,
-0.6082084774971008,
-0.691750705242157,
-0.025365225970745087,
-0.1824263334274292,
0.21732887625694275,
0.6170138120651245,
0.9663090705871582,
-0.8721209168434143,
-0.7759078741073608,
-0.041938744485378265,
-1.0057047605514526,
0.28116723895072937,
-0.4399396777153015,
-0.4565938115119934,
0.3075123131275177,
0.14969252049922943,
-0.42252448201179504,
0.22728542983531952,
0.5750489234924316,
0.17480170726776123,
0.28732186555862427,
0.072272889316082,
0.27028316259384155,
-1.6394981145858765,
0.16700001060962677,
0.26642540097236633,
-0.14701633155345917,
-0.09983790665864944,
0.1111597791314125,
-0.16030731797218323,
0.0330500565469265,
-0.4411434829235077,
0.5369739532470703,
-0.5259290933609009,
0.013373331166803837,
0.38474157452583313,
0.36194759607315063,
-0.18555450439453125,
0.5204333662986755,
0.3426155149936676,
0.6623466610908508,
0.9937645196914673,
-0.23377364873886108,
0.5951151847839355,
0.9063055515289307,
-0.6117566227912903,
0.655129075050354,
-0.8082950711250305,
-0.13899314403533936,
-0.21370385587215424,
0.2103070169687271,
-1.1034756898880005,
-0.3166302740573883,
0.40484854578971863,
-0.3948042094707489,
-0.05197761207818985,
-0.05912375450134277,
-0.997336745262146,
-0.17525221407413483,
-0.33538636565208435,
0.22907082736492157,
0.465221643447876,
-0.4719148278236389,
0.12096619606018066,
0.6013273000717163,
-0.33707961440086365,
-0.6055306792259216,
-0.8491812944412231,
0.20108537375926971,
-0.3025110363960266,
-0.8485164046287537,
-0.07322799414396286,
-0.1557283252477646,
-0.06484492123126984,
0.3306448459625244,
0.4080491364002228,
0.05990878865122795,
-0.4631630480289459,
0.3725842237472534,
0.23195193707942963,
-0.04555134102702141,
0.12945279479026794,
0.05215073749423027,
0.15906770527362823,
-0.02205253764986992,
-0.18447387218475342,
0.6466856598854065,
-0.16928038001060486,
-0.13680748641490936,
-0.4060026705265045,
0.40702322125434875,
0.5233720541000366,
-0.1582038253545761,
1.186976671218872,
0.7527991533279419,
-0.16371558606624603,
-0.022528814151883125,
-0.2847530245780945,
0.07900560647249222,
-0.34433940052986145,
0.36166152358055115,
-0.6633661389350891,
-0.5501290559768677,
0.9966098070144653,
0.582231879234314,
0.1254667341709137,
0.7486116290092468,
0.4094230830669403,
-0.1712200790643692,
0.9219783544540405,
0.3068675398826599,
-0.7817965149879456,
0.34216970205307007,
-0.8390640616416931,
-0.10757170617580414,
-0.6742307543754578,
-0.3670482933521271,
-0.39128825068473816,
-0.45828914642333984,
-0.8410972952842712,
-0.4660012125968933,
0.26935291290283203,
-0.49908247590065,
-0.17820420861244202,
0.3805080056190491,
-0.5058486461639404,
0.40331417322158813,
0.8088946342468262,
0.36437487602233887,
0.37126627564430237,
0.7481697201728821,
-0.2738617956638336,
-0.21240267157554626,
-0.5941923260688782,
-0.5547730922698975,
1.2899643182754517,
0.45729732513427734,
0.4270087480545044,
0.2800881266593933,
0.47572484612464905,
0.44918888807296753,
0.15852293372154236,
-0.45006102323532104,
0.5581908822059631,
-0.2343292385339737,
-0.755840539932251,
-0.30278095602989197,
-0.5876161456108093,
-0.9283531904220581,
-0.17654402554035187,
-0.29200366139411926,
-0.4388708472251892,
-0.21395529806613922,
-0.2495882213115692,
0.2552028000354767,
0.20725658535957336,
-0.5654400587081909,
0.6853865385055542,
0.19892969727516174,
-0.052486490458250046,
0.03072352521121502,
-1.0095038414001465,
0.47664526104927063,
-0.40966373682022095,
0.2137622982263565,
-0.01272191945463419,
0.21358294785022736,
1.151431679725647,
-0.11733680963516235,
0.6514520049095154,
0.017287714406847954,
0.07636361569166183,
0.3243730664253235,
-0.3001086413860321,
0.3638412356376648,
0.16330422461032867,
0.22346757352352142,
0.2133251428604126,
0.026545876637101173,
-0.7336095571517944,
-0.2629868984222412,
0.7131775617599487,
-1.186549425125122,
-0.09174871444702148,
-0.46488097310066223,
-0.9058617353439331,
-0.09437742084264755,
-0.04049099609255791,
0.7197036743164062,
0.3914450705051422,
-0.01782369799911976,
0.33876773715019226,
0.5302739143371582,
-0.2515069842338562,
0.3230713903903961,
0.6660019159317017,
-0.0528474785387516,
-0.6920871734619141,
0.779180109500885,
0.020053252577781677,
0.20476768910884857,
0.4098406136035919,
-0.2641509473323822,
-0.5474709868431091,
-0.5959203839302063,
-0.5767093896865845,
0.876183032989502,
-0.6588888764381409,
-0.2239667922258377,
-0.6536061763763428,
-0.3895966410636902,
-0.3687552511692047,
-0.028485795482993126,
0.009045666083693504,
-0.5593684911727905,
-0.3099616467952728,
-0.2675706446170807,
0.6625312566757202,
0.6061307787895203,
0.16313321888446808,
0.6434749364852905,
-0.8021876215934753,
0.35936760902404785,
-0.04497052729129791,
0.3068180978298187,
-0.17887617647647858,
-1.0590764284133911,
-0.35358038544654846,
-0.0282734502106905,
-0.04115491732954979,
-0.7844950556755066,
0.8048900365829468,
0.02865302748978138,
0.5591597557067871,
0.5231125950813293,
0.0467035137116909,
0.6601107120513916,
-0.48348450660705566,
0.9017643928527832,
0.4196501076221466,
-0.5508316159248352,
0.5203664302825928,
-0.6868426203727722,
0.24414804577827454,
0.5530175566673279,
0.6578883528709412,
-0.5571280121803284,
-0.7095053195953369,
-1.0445587635040283,
-0.7007862329483032,
0.8680172562599182,
0.6953455805778503,
0.19302316009998322,
0.00012295272608753294,
0.21402031183242798,
0.010452604852616787,
0.19737231731414795,
-0.8848254084587097,
-0.31430649757385254,
0.06441128253936768,
-0.5896912217140198,
-0.4059135615825653,
0.25091174244880676,
-0.5457822680473328,
-0.5082451105117798,
0.9975183606147766,
-0.10355109721422195,
0.33946508169174194,
0.021676180884242058,
-0.26516732573509216,
-0.11049378663301468,
-0.26245105266571045,
0.8279685974121094,
0.4948197603225708,
-0.1903863549232483,
-0.10313262045383453,
-0.07380851358175278,
-0.6690201163291931,
0.0100933238863945,
0.047604627907276154,
-0.2812665104866028,
0.2799377143383026,
0.5722902417182922,
0.9784677028656006,
-0.33070433139801025,
-0.7446128129959106,
0.2959325611591339,
-0.140411838889122,
-0.35314807295799255,
-0.610107421875,
-0.15437032282352448,
0.2141491174697876,
0.12638859450817108,
0.42325663566589355,
0.09078460931777954,
-0.09259255975484848,
-0.14948605000972748,
0.44893887639045715,
0.26248300075531006,
-0.30562424659729004,
-0.3129320740699768,
0.5692599415779114,
0.11163832992315292,
0.25982072949409485,
0.8898026943206787,
-0.28976595401763916,
-0.22041356563568115,
0.7345773577690125,
0.21910667419433594,
0.6878377199172974,
0.12109627574682236,
0.7439817190170288,
0.7178472280502319,
0.39001157879829407,
-0.31928551197052,
0.4048134386539459,
0.38487595319747925,
-0.9850627183914185,
-0.2663498818874359,
-0.8640926480293274,
-0.10113292187452316,
0.5857837796211243,
-0.9523336291313171,
0.18502159416675568,
-0.011590798385441303,
-0.043562982231378555,
0.12453873455524445,
0.07782962173223495,
-0.9861614108085632,
0.3433433473110199,
-0.24419698119163513,
0.8238943219184875,
-1.7615059614181519,
0.6793065071105957,
0.9663637280464172,
-0.8240394592285156,
-0.744001567363739,
-0.5239744782447815,
-0.18521906435489655,
-1.0074118375778198,
0.7428497672080994,
-0.30338066816329956,
0.5351652503013611,
-0.03534451127052307,
-0.9072527885437012,
-0.7539024949073792,
0.9691792130470276,
0.20778892934322357,
-0.6561044454574585,
0.3233523964881897,
0.6597595810890198,
0.7307314872741699,
-0.6834893226623535,
-0.21542391180992126,
0.6390130519866943,
0.3889917731285095,
0.19673274457454681,
-0.8454071283340454,
-0.1615830510854721,
-0.5180641412734985,
0.10131698101758957,
-0.03426266834139824,
-0.5065745711326599,
0.43652015924453735,
-0.00969540886580944,
0.009113968349993229,
0.1571904867887497,
0.4820786714553833,
0.489411324262619,
0.05910452455282211,
0.5351417660713196,
0.688607394695282,
0.38078573346138,
-0.26770323514938354,
1.0297600030899048,
-0.07320602238178253,
0.4829014539718628,
1.0879955291748047,
0.07839348912239075,
0.7864373326301575,
0.5868454575538635,
-0.32647088170051575,
0.18611116707324982,
0.9418045282363892,
-0.4098047912120819,
0.7434124946594238,
0.11775067448616028,
-0.20145007967948914,
0.1753016710281372,
-0.20598290860652924,
-0.2862003445625305,
0.21354074776172638,
0.09721674770116806,
-0.758870005607605,
0.047677554190158844,
0.2146383821964264,
0.25713783502578735,
0.032438382506370544,
0.13613146543502808,
0.6215161085128784,
0.041390568017959595,
-0.5260273218154907,
0.5600404143333435,
-0.1501525491476059,
0.3594629168510437,
-0.4564984440803528,
0.12541696429252625,
-0.40766409039497375,
-0.12407311052083969,
-0.09495807439088821,
-1.1178442239761353,
0.09570551663637161,
0.14273110032081604,
-0.3939647376537323,
-0.14029745757579803,
0.1272192895412445,
-0.6131970882415771,
-1.0261611938476562,
0.048458002507686615,
0.6116682291030884,
0.6294108033180237,
0.02429320476949215,
-0.868093729019165,
0.040194232016801834,
0.34515485167503357,
-0.08896812051534653,
0.19556353986263275,
0.41503915190696716,
-0.18124844133853912,
0.6485157608985901,
0.6056954860687256,
0.3246755599975586,
0.3178117871284485,
0.41247937083244324,
0.8628178238868713,
-0.4042084813117981,
-0.6369310617446899,
-0.3939962387084961,
0.7484539151191711,
-0.36438897252082825,
-0.37238118052482605,
0.6505078673362732,
0.757209300994873,
0.7125695943832397,
-0.8291861414909363,
1.1277083158493042,
-0.18634074926376343,
0.32097718119621277,
-0.6560207009315491,
0.5035907626152039,
-0.610124945640564,
0.012685442343354225,
-0.5610761642456055,
-1.0726560354232788,
-0.4501941502094269,
0.6629220247268677,
-0.19543440639972687,
-0.16598384082317352,
0.6442440748214722,
0.7744600772857666,
-0.03071507252752781,
-0.03805060684680939,
0.34608060121536255,
0.051781270653009415,
0.20617394149303436,
0.45793095231056213,
0.6072463393211365,
-0.7483611702919006,
0.3691776990890503,
-0.32349395751953125,
-0.10454721003770828,
0.05434614047408104,
-0.7189413905143738,
-0.8546528816223145,
-1.0789860486984253,
-0.6185733675956726,
-0.21874429285526276,
-0.2544642388820648,
0.721943736076355,
0.9389143586158752,
-1.107405424118042,
-0.016098638996481895,
-0.009100863710045815,
-0.2718188166618347,
-0.12988033890724182,
-0.2896045744419098,
0.6742464303970337,
-0.13499799370765686,
-1.0403598546981812,
-0.11040297895669937,
-0.11810236424207687,
0.115073062479496,
-0.16053538024425507,
-0.1975809633731842,
-0.14417020976543427,
-0.11934348940849304,
0.5772957801818848,
-0.1363600790500641,
-0.5716816782951355,
-0.286109983921051,
0.17134182155132294,
-0.08285259455442429,
0.10912364721298218,
0.19118304550647736,
-0.3391495943069458,
0.39920181035995483,
0.4686749577522278,
0.31152716279029846,
0.6770177483558655,
0.028526511043310165,
0.4445576071739197,
-1.1758372783660889,
0.48347148299217224,
-0.07158263772726059,
0.4563911259174347,
0.490132212638855,
-0.20314159989356995,
1.006424069404602,
0.5437121391296387,
-0.2244219332933426,
-0.71082603931427,
-0.04774197190999985,
-1.5539534091949463,
0.0699835941195488,
1.1619555950164795,
-0.16650252044200897,
-0.16927392780780792,
0.15716411173343658,
-0.1408562809228897,
0.06019054353237152,
-0.5126817226409912,
0.7126476168632507,
0.8686437010765076,
0.11944766342639923,
-0.4320070147514343,
-0.7386600375175476,
0.33427029848098755,
0.06761474907398224,
-0.8939546346664429,
-0.4832738935947418,
0.4090685546398163,
0.5410794019699097,
0.5160976052284241,
0.47293639183044434,
-0.3467802107334137,
-0.21832174062728882,
-0.09322913736104965,
0.2302522510290146,
0.19160540401935577,
-0.5007351040840149,
-0.13743796944618225,
-0.015525363385677338,
-0.40208274126052856,
-0.7631588578224182
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
flexthink/librig2p-nostress | flexthink | 2022-07-27T01:50:52Z | 293 | 0 | null | [
"region:us"
] | 2022-07-27T01:50:52Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | # librig2p-nostress - Grapheme-To-Phoneme Dataset
This dataset contains samples that can be used to train a Grapheme-to-Phoneme system **without** stress information.
The dataset is derived from the following pre-existing datasets:
* [LibriSpeech ASR Corpus](https://www.openslr.org/12)
* [LibriSpeech Alignments](https://github.com/CorentinJ/librispeech-alignments)
| [
-0.36419323086738586,
-0.26841187477111816,
0.15007026493549347,
0.0256881695240736,
-0.19708484411239624,
-0.16458769142627716,
0.008228057064116001,
-0.4454016089439392,
0.3382960259914398,
0.6969808340072632,
-0.7620446681976318,
-0.48448053002357483,
-0.3797103762626648,
-0.12345399707555771,
-0.4473798871040344,
1.162814736366272,
0.174680694937706,
0.5505185127258301,
0.10899408161640167,
-0.37154051661491394,
-0.011350959539413452,
-0.37517863512039185,
-0.759953498840332,
-0.537805438041687,
0.5666067004203796,
0.9190006852149963,
0.4744512438774109,
0.21005606651306152,
0.4429294466972351,
0.03937242552638054,
-0.10088380426168442,
0.1344597041606903,
-0.6013169884681702,
0.012991229072213173,
-0.005434667691588402,
-0.3224942684173584,
-0.3217293620109558,
0.07322566211223602,
0.7645717859268188,
0.7017484307289124,
0.04854751005768776,
0.5117539763450623,
0.1776881068944931,
0.5948504209518433,
-0.736883282661438,
-0.18097835779190063,
-0.37648871541023254,
0.15239010751247406,
-0.5145725607872009,
0.016472486779093742,
-0.43088817596435547,
-0.8657688498497009,
-0.038847871124744415,
-0.4181806743144989,
0.11109144240617752,
-0.01715049520134926,
0.9906712174415588,
0.3289005160331726,
-0.511347234249115,
-0.41957348585128784,
-0.7785627245903015,
0.5993674397468567,
-0.6876357793807983,
0.6777471303939819,
0.6126781702041626,
0.37971583008766174,
-0.05526090785861015,
-0.760759174823761,
-0.2312375158071518,
0.3913590610027313,
0.0439365990459919,
0.39476242661476135,
0.2986997663974762,
-0.08106528967618942,
0.6109662652015686,
0.5308167338371277,
-0.766168475151062,
0.2805306911468506,
-0.8717864751815796,
0.03543262183666229,
0.4866694211959839,
-0.2558887004852295,
0.3674180805683136,
-0.052586767822504044,
-0.6159681081771851,
-0.11172761768102646,
-0.7878605723381042,
0.0248968917876482,
0.48292672634124756,
0.31894657015800476,
-0.534640371799469,
0.5680307149887085,
0.16264978051185608,
0.7740593552589417,
-0.1278054416179657,
0.024197235703468323,
0.6680817008018494,
-0.05035657808184624,
-0.347964346408844,
0.17495524883270264,
0.7980561256408691,
0.312860369682312,
0.39268922805786133,
-0.42426055669784546,
-0.2441733181476593,
0.07907568663358688,
-0.0030208693351596594,
-0.9795087575912476,
-0.44069185853004456,
0.3200048804283142,
-0.2374691516160965,
-0.3000797629356384,
0.06509959697723389,
-0.971113383769989,
-0.3443661630153656,
-0.32593804597854614,
0.019656749442219734,
-0.6246941089630127,
-0.4161992371082306,
-0.004693654831498861,
-0.45846226811408997,
0.3504103422164917,
-0.2125830501317978,
-0.7808666229248047,
0.8869022727012634,
0.14204736053943634,
0.9130179286003113,
-0.042412951588630676,
-0.009225698187947273,
-0.552666187286377,
-0.07057632505893707,
-0.5008623600006104,
0.906550407409668,
-0.08217151463031769,
-0.8471565842628479,
-0.16961926221847534,
0.21925072371959686,
-0.21292279660701752,
-0.7011468410491943,
1.0499942302703857,
-0.47072550654411316,
0.35232484340667725,
-0.19042181968688965,
-0.886984646320343,
-0.25861066579818726,
-0.2658284306526184,
-0.9255682229995728,
1.5637454986572266,
0.28013768792152405,
-0.8020472526550293,
0.13022570312023163,
-0.8367138504981995,
-0.2874164283275604,
0.08634127676486969,
-0.1478549838066101,
-0.3987433612346649,
0.08681690692901611,
-0.03689335659146309,
-0.07989947497844696,
-0.2559852600097656,
-0.27162060141563416,
-0.5133716464042664,
-0.5171551704406738,
0.16309115290641785,
0.09302424639463425,
1.339766025543213,
0.2968069016933441,
-0.16316774487495422,
-0.21878844499588013,
-0.9939895272254944,
0.8142308592796326,
0.014875417575240135,
-0.14573781192302704,
-0.10258836299180984,
-0.31791362166404724,
0.49817243218421936,
0.3675357699394226,
0.14547745883464813,
-0.7147050499916077,
0.21387417614459991,
-0.5988764762878418,
0.28578615188598633,
0.4888571798801422,
0.03135795518755913,
0.35543128848075867,
-0.39027783274650574,
0.30239245295524597,
-0.32305651903152466,
0.026825806125998497,
0.5470976829528809,
-0.3347479999065399,
-0.9057347774505615,
-0.13674326241016388,
0.5355657935142517,
1.030375361442566,
-0.415854811668396,
0.6859687566757202,
-0.04311761260032654,
-0.8902571797370911,
-0.5957238674163818,
0.17760196328163147,
0.2831607758998871,
0.4606243669986725,
0.4382058084011078,
-0.39910078048706055,
-0.7575148344039917,
-0.8636007308959961,
0.13456551730632782,
0.16616226732730865,
-0.23092998564243317,
0.38813361525535583,
0.14980681240558624,
-0.06972962617874146,
0.5300692915916443,
-0.36685633659362793,
-0.028986036777496338,
0.20029108226299286,
0.11395470798015594,
0.42219874262809753,
0.6234078407287598,
0.5966202020645142,
-0.5305805802345276,
-0.23068127036094666,
-0.4848046600818634,
-0.6965086460113525,
-0.5483204126358032,
0.29653170704841614,
-0.13872961699962616,
-0.07017061114311218,
0.5796047449111938,
-0.33474719524383545,
0.504565417766571,
0.964956521987915,
-0.3851160705089569,
0.6333812475204468,
0.07863245904445648,
-0.12833447754383087,
-1.4375927448272705,
0.6450920701026917,
-0.3597147762775421,
-0.4790417551994324,
-0.6174110174179077,
-0.07142460346221924,
0.08379311859607697,
-0.6686181426048279,
-0.2782098650932312,
0.7826838493347168,
-0.690713107585907,
-0.5286731123924255,
-0.46970173716545105,
0.20864208042621613,
0.08789882808923721,
-0.015764854848384857,
0.17958129942417145,
0.9603700637817383,
0.8482376933097839,
-0.557844340801239,
0.38476476073265076,
0.6827223896980286,
-0.3476118743419647,
0.5811723470687866,
-0.8172997832298279,
0.7504462599754333,
0.13244028389453888,
-0.08063235133886337,
-0.8545196056365967,
-0.059243038296699524,
0.30952975153923035,
-0.5255272388458252,
0.04148075729608536,
-0.5269562005996704,
-0.6147683262825012,
-0.4389081299304962,
-0.0373326800763607,
0.2164401262998581,
0.5588309168815613,
-0.47095558047294617,
0.1825868785381317,
0.3918127417564392,
-0.2095784842967987,
-0.4315747022628784,
-0.8675623536109924,
-0.07471252232789993,
-0.19293411076068878,
-0.34092023968696594,
0.06389126181602478,
-0.2760222256183624,
-0.027637610211968422,
0.024547841399908066,
0.04824656620621681,
-0.458565354347229,
-0.0028618888463824987,
0.8549736142158508,
0.27323827147483826,
-0.27041882276535034,
0.5442968606948853,
-0.27925926446914673,
-0.27052557468414307,
-0.33352091908454895,
-0.37700769305229187,
0.8620573878288269,
0.11524522304534912,
-0.4232065975666046,
-0.5249989628791809,
0.3648223578929901,
0.26030346751213074,
-0.18387047946453094,
0.24933025240898132,
0.8229212164878845,
-0.3497536778450012,
-0.08940974622964859,
-0.35343775153160095,
-0.514060378074646,
-0.49009594321250916,
-0.1208980530500412,
-0.34722504019737244,
-0.8920456171035767,
0.267478883266449,
-0.3638378977775574,
0.03084181807935238,
0.2141638547182083,
0.2563958764076233,
-0.08913867920637131,
0.35514065623283386,
0.4727795422077179,
-0.4461609423160553,
0.40582752227783203,
-0.049278032034635544,
0.17931653559207916,
-0.7208535075187683,
0.059157419949769974,
-0.4760757386684418,
-0.5372602343559265,
-0.6657867431640625,
-0.4524277448654175,
0.05268719419836998,
0.4956544041633606,
-0.2964894473552704,
0.49664536118507385,
-0.4657458961009979,
0.45197221636772156,
0.7326359152793884,
0.05819489434361458,
-0.031660519540309906,
0.3502446413040161,
-0.0078047807328403,
0.04132923111319542,
-0.4913763999938965,
-0.6058167815208435,
1.1601343154907227,
-0.018881792202591896,
0.8016439080238342,
0.20209592580795288,
0.8378047943115234,
0.1039530485868454,
-0.16448549926280975,
-0.8552635312080383,
0.4598015546798706,
-0.3302318751811981,
-0.8180911540985107,
-0.17302365601062775,
-0.2698056995868683,
-1.0339148044586182,
-0.5554278492927551,
-0.23002687096595764,
-1.1775195598602295,
0.4505944550037384,
0.037371281534433365,
-0.463487833738327,
0.3203260898590088,
-0.6499256491661072,
0.7038471698760986,
-0.22412793338298798,
-0.08810383826494217,
0.01572161354124546,
-0.6165117621421814,
-0.11488938331604004,
0.06367961317300797,
-0.14503851532936096,
-0.2771385610103607,
0.17245303094387054,
0.9527704119682312,
-0.32982704043388367,
0.8170281052589417,
-0.29686516523361206,
0.04437702149152756,
0.6514614224433899,
0.052128639072179794,
0.37069034576416016,
-0.08803616464138031,
-0.4551343321800232,
0.24364255368709564,
0.07207843661308289,
-0.5924117565155029,
-0.34672021865844727,
0.5801641941070557,
-0.9791915416717529,
0.15082021057605743,
-0.18233028054237366,
-0.3954801559448242,
-0.39978691935539246,
0.5171796083450317,
0.6745362281799316,
0.8232743740081787,
-0.24178366363048553,
0.024206725880503654,
0.4389522075653076,
0.15416473150253296,
0.290170282125473,
0.520202100276947,
-0.30409449338912964,
-0.3924517333507538,
0.8110700845718384,
0.2869703769683838,
0.22574953734874725,
-0.1933542788028717,
-0.01647849567234516,
-0.4329533576965332,
-0.39362433552742004,
-0.4466210603713989,
0.21578440070152283,
-0.5347056984901428,
-0.09133343398571014,
-0.4337707459926605,
-0.6362175345420837,
-0.6278519630432129,
0.10474911332130432,
-0.40078315138816833,
-0.5870875120162964,
-0.4158019721508026,
-0.44795721769332886,
0.8513458371162415,
0.771038293838501,
-0.4838099479675293,
0.7002080082893372,
-0.7570031881332397,
0.20259921252727509,
0.1804654896259308,
0.40673768520355225,
-0.627474844455719,
-0.520033597946167,
-0.06415745615959167,
0.009906139224767685,
-0.12083399295806885,
-0.8600823879241943,
0.11406955122947693,
0.4347423315048218,
0.13968384265899658,
0.5920695662498474,
-0.13427311182022095,
0.6117317080497742,
-0.39985987544059753,
0.6424098014831543,
0.18534448742866516,
-0.8209536075592041,
0.5114814639091492,
-0.45815521478652954,
-0.017710445448756218,
0.8272383809089661,
0.5380555391311646,
-0.788302481174469,
0.16767050325870514,
-0.9699939489364624,
-0.8726118803024292,
0.5374619364738464,
0.17403262853622437,
-0.3264807462692261,
0.5520790815353394,
0.43819764256477356,
0.04225677624344826,
0.16851358115673065,
-0.5168988704681396,
-0.24510326981544495,
-0.19626212120056152,
-0.26740726828575134,
-0.17067153751850128,
-0.44853532314300537,
-0.4572964310646057,
0.07885754853487015,
0.6704062223434448,
-0.014561427757143974,
0.3449224829673767,
0.07603607326745987,
0.03188878670334816,
-0.018921269103884697,
0.19523175060749054,
0.2904911935329437,
0.36638975143432617,
-0.47651585936546326,
0.2682948112487793,
0.22644396126270294,
-0.4655100703239441,
0.16419532895088196,
0.3517509698867798,
-0.29423412680625916,
0.1501890867948532,
0.23018744587898254,
1.0482655763626099,
-0.0036147746723145247,
-0.5291247367858887,
0.28494003415107727,
0.26514866948127747,
-0.14235122501850128,
-0.8778938055038452,
0.07870516926050186,
0.35508570075035095,
0.17170403897762299,
0.015775922685861588,
-0.033877719193696976,
0.36278849840164185,
-0.1734161674976349,
0.7277477979660034,
-0.11366470903158188,
-1.0311685800552368,
-0.45361456274986267,
0.28683245182037354,
0.0558757409453392,
-0.23060838878154755,
0.824296236038208,
-0.29432743787765503,
-0.011397667229175568,
0.35057350993156433,
0.6132687926292419,
0.526364266872406,
-0.5859817862510681,
0.12613199651241302,
0.47853633761405945,
0.07665501534938812,
-0.053550150245428085,
0.9327322840690613,
0.29623329639434814,
-1.1010583639144897,
-0.19018708169460297,
-0.2830295264720917,
-0.4174478054046631,
0.5368878841400146,
-0.8984088897705078,
0.7267728447914124,
-0.8222922086715698,
-0.4538968801498413,
0.09605400264263153,
-0.0016594238113611937,
-0.6443217992782593,
0.4866054058074951,
0.35398730635643005,
1.055217981338501,
-0.9195908308029175,
0.9213541746139526,
0.6934123635292053,
-0.1967267394065857,
-0.9217399954795837,
-0.14572280645370483,
0.33583706617355347,
-1.16107177734375,
0.7542455792427063,
0.1575583666563034,
-0.2762807309627533,
0.2977675199508667,
-0.539426863193512,
-1.008349895477295,
0.8329516649246216,
0.18565665185451508,
-0.5443311929702759,
-0.09879369288682938,
0.03970884159207344,
0.3007018566131592,
-0.04028360918164253,
0.3555022180080414,
0.27382588386535645,
0.3528526723384857,
-0.08405119180679321,
-0.8690760731697083,
-0.210245743393898,
-0.5045648217201233,
-0.34974685311317444,
0.23499104380607605,
-0.8138529062271118,
0.789768397808075,
-0.06339391320943832,
-0.5279417634010315,
0.2612033188343048,
0.18948180973529816,
-0.01535458117723465,
-0.11806105077266693,
0.6723840832710266,
0.9399563074111938,
1.0316059589385986,
-0.03271011263132095,
0.5942555665969849,
-0.5528090596199036,
0.35289427638053894,
1.734372615814209,
-0.481535404920578,
0.699411928653717,
0.3593313694000244,
0.15380844473838806,
0.607646644115448,
0.8944490551948547,
-0.36023956537246704,
0.3682398498058319,
0.25529244542121887,
-0.2528035640716553,
-0.22052611410617828,
-0.24724073708057404,
-0.4484771192073822,
0.6896511316299438,
0.5735427737236023,
-0.21953628957271576,
-0.49363529682159424,
-0.39626526832580566,
0.11991710960865021,
-0.2686489224433899,
0.15057407319545746,
0.8725582361221313,
0.35739099979400635,
0.0264564361423254,
0.9063289165496826,
-0.396262526512146,
0.358415812253952,
-0.6481502652168274,
0.1806517094373703,
0.2041083127260208,
-0.033827830106019974,
-0.5040330290794373,
-0.8851257562637329,
0.38652440905570984,
-0.09814554452896118,
-0.05178185924887657,
0.05342220515012741,
1.1288127899169922,
-0.3512208163738251,
-0.699354887008667,
0.7061533331871033,
0.6938679218292236,
0.6744788885116577,
0.060851555317640305,
-0.7370812296867371,
-0.36034733057022095,
-0.1099274754524231,
-0.12342346459627151,
-0.09919006377458572,
0.31113266944885254,
0.2880851626396179,
0.5502043962478638,
0.5179531574249268,
0.43468064069747925,
-0.15340811014175415,
0.3830832540988922,
0.67615807056427,
-0.6313745379447937,
-0.3297758996486664,
-0.5500263571739197,
0.2323402464389801,
-0.5249779224395752,
-0.5469515323638916,
0.7861791849136353,
1.0824354887008667,
0.47567757964134216,
-0.03942429646849632,
1.0221904516220093,
-0.027517981827259064,
1.146291971206665,
-0.4716791808605194,
0.6138259768486023,
-0.44889652729034424,
-0.5562573671340942,
-0.012278609909117222,
-0.5580260157585144,
-0.11167912185192108,
0.5549699664115906,
-0.3742424249649048,
-0.29939520359039307,
0.4822998344898224,
1.0515588521957397,
-0.35950860381126404,
0.2572837769985199,
0.16445864737033844,
-0.1644032895565033,
-0.25876501202583313,
0.5387601852416992,
0.41223958134651184,
-0.5853150486946106,
0.37485018372535706,
0.05190719664096832,
-0.18314731121063232,
-0.35440531373023987,
-0.5314035415649414,
-0.9542579054832458,
-0.42885106801986694,
-0.1306539624929428,
-0.8178868293762207,
0.18085424602031708,
0.8437659740447998,
0.8864535093307495,
-1.180114507675171,
-0.5993428826332092,
-0.03310352936387062,
-0.26540860533714294,
0.023487204685807228,
-0.1823713332414627,
0.44655534625053406,
-0.16936640441417694,
-0.6539419889450073,
0.681351900100708,
-0.07160326838493347,
0.6052701473236084,
0.21955756843090057,
0.24518898129463196,
-0.06101161241531372,
-0.06781800091266632,
0.11113525182008743,
0.5043786764144897,
0.044733885675668716,
-0.40106457471847534,
0.04640902578830719,
-0.21344374120235443,
0.5233328342437744,
0.8397069573402405,
-0.34538382291793823,
0.14285485446453094,
0.4411950707435608,
0.4553832411766052,
0.6594430804252625,
-0.09136541187763214,
0.5255887508392334,
-1.0206738710403442,
0.9232433438301086,
0.3613347113132477,
0.29655230045318604,
0.47188282012939453,
-0.2171662151813507,
0.8808664679527283,
0.3594605624675751,
-0.5371205806732178,
-0.4443454444408417,
0.6427307724952698,
-1.130666732788086,
0.043903473764657974,
1.3152366876602173,
-0.1148236095905304,
-0.13682785630226135,
-0.19062736630439758,
-0.3175121545791626,
0.5062900185585022,
-0.5349740982055664,
0.4679439663887024,
0.5723757147789001,
0.058440010994672775,
-0.3722779452800751,
-0.6008339524269104,
0.7755137085914612,
0.25004637241363525,
-0.8655655980110168,
-0.07717131078243256,
0.1656637340784073,
0.6358835101127625,
0.302513062953949,
0.8255589008331299,
-0.2973964214324951,
-0.0743972584605217,
0.14826858043670654,
0.5849846601486206,
0.1624632477760315,
0.06668098270893097,
0.012095285579562187,
-0.10370957851409912,
0.1281740665435791,
-0.4007991850376129
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
frtna/es_it_Results-base-OPUS_Tatoeba | frtna | 2022-01-04T04:41:07Z | 293 | 0 | null | [
"region:us"
] | 2022-01-04T04:41:07Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | - Model: [OPUS-MT](https://huggingface.co/Helsinki-NLP/opus-mt-es-it)
- Tested on: [Tatoeba]()
<br>
- Metric:
- bleu(tensorflow),
- sacrebleu(github->mjpost),
- google_bleu(nltk),
- rouge(google-research),
- meteor(nltk),
- ter(university of Maryland)
<br>
- Retrieved from: [Huggingface](https://huggingface.co/metrics/) [metrics](https://github.com/huggingface/datasets/blob/master/metrics/)
- Script used for translation and testing: [https://gitlab.com/hmtkvs/machine_translation/-/tree/production-stable](https://gitlab.com/hmtkvs/machine_translation/-/tree/production-stable)
## Info
## mtdata-OPUS Tatoeba (length=14178, single reference)
**bleu** : 0.5228
<br>
**sacrebleu** : 0.5652
<br>
**google_bleu** : 0.5454
<br>
**rouge-mid** : precision=0.7792, recall=0.7899, f_measure=0.7796
<br>
**meteor** : 0.7557
<br>
**ter** : score=0.3003, num_edits= 24654, ref_length= 82079.0
## OPUS Tatoeba (length = 5000, multi references)
**bleu** : 0.5165
<br>
**sacrebleu** : 0.7098
<br>
**google_bleu** : 0.5397
<br>
**rouge-mid** : precision=0.9965, recall=0.5021, f_measure=0.6665
<br>
**meteor** : 0.3344
<br>
**ter** : score: 0.6703, 'num_edits': 38883, 'ref_length': 58000.0 | [
-0.4810568690299988,
-0.7717113494873047,
0.37226906418800354,
0.4233993589878082,
-0.34363022446632385,
-0.18605506420135498,
-0.5081960558891296,
-0.2665365934371948,
0.45930877327919006,
0.323681503534317,
-0.6537055969238281,
-0.8484795093536377,
-0.7296981811523438,
0.22450128197669983,
-0.20811468362808228,
1.058434247970581,
-0.15385591983795166,
0.08646219223737717,
0.2563953101634979,
-0.7667530179023743,
-0.38267526030540466,
-0.33094507455825806,
-0.6226442456245422,
-0.30218857526779175,
0.6412978768348694,
0.30718472599983215,
0.82381671667099,
0.6488388776779175,
0.753753125667572,
0.31568050384521484,
-0.33942142128944397,
0.1283048689365387,
-0.2733478546142578,
-0.1548583060503006,
-0.02070182003080845,
-0.47262269258499146,
-0.923880934715271,
-0.2444216012954712,
1.2317241430282593,
0.4931686520576477,
0.011542976833879948,
0.6487268805503845,
0.02957840822637081,
0.7370792627334595,
-0.2700152099132538,
-0.010314688086509705,
-0.3943735957145691,
0.1501287966966629,
-0.344332754611969,
-0.36243996024131775,
-0.517370879650116,
-0.36839452385902405,
0.09540445357561111,
-0.7215552926063538,
0.18262284994125366,
0.22653089463710785,
1.65349543094635,
0.48379406332969666,
-0.31509098410606384,
-0.0009319979581050575,
-0.6063317656517029,
1.0763963460922241,
-0.8092070817947388,
0.6377084255218506,
0.3412664234638214,
0.06817210465669632,
0.020510148257017136,
-0.5428752303123474,
-0.38988208770751953,
0.1508413553237915,
-0.378954142332077,
0.400287002325058,
-0.3339487314224243,
-0.26291099190711975,
0.33460307121276855,
0.513481855392456,
-0.9742496013641357,
0.090265654027462,
-0.4715961813926697,
-0.20627819001674652,
0.6289910674095154,
0.14485515654087067,
0.12456513941287994,
-0.5330663919448853,
-0.5382662415504456,
-0.6324419975280762,
-0.6806018948554993,
-0.0038752658292651176,
0.32731470465660095,
0.3191327154636383,
-0.5517686009407043,
0.7175227999687195,
-0.1262217015028,
0.7250291705131531,
-0.2005390077829361,
-0.1236046552658081,
0.9384024143218994,
-0.6845827102661133,
-0.3762449324131012,
-0.2924172282218933,
1.3493365049362183,
0.33259809017181396,
-0.09000300616025925,
-0.04830913990736008,
-0.17153067886829376,
-0.13106320798397064,
0.03466612100601196,
-1.0068851709365845,
0.1877915859222412,
0.446137011051178,
-0.43890640139579773,
-0.0911698266863823,
0.021611038595438004,
-0.8233858942985535,
0.21555949747562408,
-0.29369106888771057,
0.5588631629943848,
-0.6087316870689392,
-0.49509304761886597,
0.08943621814250946,
-0.1254490315914154,
0.35363003611564636,
0.06150666996836662,
-0.4563007950782776,
0.2014990746974945,
0.5325818657875061,
1.1761150360107422,
-0.14036355912685394,
-0.3483533263206482,
-0.384495347738266,
-0.10483340919017792,
-0.35089606046676636,
0.547473669052124,
0.043862149119377136,
-0.4901680648326874,
-0.19106081128120422,
0.29660049080848694,
-0.20429231226444244,
-0.3376856744289398,
1.1744338274002075,
-0.22777296602725983,
0.47564685344696045,
-0.37807324528694153,
-0.4763526916503906,
-0.5630477070808411,
0.5608518719673157,
-0.6322674751281738,
1.4649769067764282,
0.43395012617111206,
-1.0299500226974487,
0.4816461205482483,
-0.7968332767486572,
-0.02095603570342064,
0.057802166789770126,
-0.0676545649766922,
-0.9323681592941284,
-0.08312805742025375,
0.10496366024017334,
0.5166164040565491,
-0.5062505602836609,
0.35923412442207336,
-0.28787362575531006,
-0.16109447181224823,
0.07303797453641891,
-0.1717139035463333,
1.080412745475769,
0.2388876974582672,
-0.44343656301498413,
0.19202709197998047,
-0.8536681532859802,
0.025081239640712738,
0.16628383100032806,
-0.41410037875175476,
-0.2810961604118347,
-0.32163384556770325,
0.4962855875492096,
0.028936363756656647,
0.09869541227817535,
-0.6593109369277954,
0.23889797925949097,
-0.33629611134529114,
0.2138923555612564,
0.7010529041290283,
-0.11262550950050354,
0.22137556970119476,
-0.46775591373443604,
0.5465291142463684,
0.029586030170321465,
0.05036773905158043,
0.043186649680137634,
-0.6152505874633789,
-0.787924587726593,
-0.4621448516845703,
0.5561419725418091,
0.7948837876319885,
-0.8021291494369507,
0.6244195103645325,
-0.7936375141143799,
-0.8462923169136047,
-0.7884458303451538,
-0.16713635623455048,
0.6577392220497131,
0.704982578754425,
0.5735715627670288,
-0.21868962049484253,
-0.42119935154914856,
-1.1452354192733765,
-0.18610338866710663,
-0.18800759315490723,
-0.04238025099039078,
0.3416478931903839,
0.8811220526695251,
-0.23344573378562927,
0.6946460604667664,
-0.5081104636192322,
-0.5118810534477234,
0.14559893310070038,
0.24741138517856598,
0.694269597530365,
0.6827763319015503,
0.956369161605835,
-0.8756142258644104,
-0.544797956943512,
0.16307717561721802,
-0.8468987345695496,
-0.1566314697265625,
0.1097010150551796,
-0.25054338574409485,
0.342158704996109,
-0.18357069790363312,
-0.6160128712654114,
0.2791430652141571,
0.7040666341781616,
-0.929127037525177,
0.6746028065681458,
-0.16833382844924927,
0.4566818177700043,
-1.6686325073242188,
0.33049657940864563,
0.1876945197582245,
-0.32112863659858704,
-0.5690392851829529,
0.16405890882015228,
0.18916043639183044,
0.3940865993499756,
-0.6177030205726624,
0.8482971787452698,
-0.4136667549610138,
-0.23320746421813965,
0.21934524178504944,
0.08542671799659729,
0.10540074110031128,
0.7589256167411804,
0.09080333262681961,
0.8522119522094727,
0.7312371134757996,
-0.49963831901550293,
0.35067230463027954,
0.5968104004859924,
-0.4014056324958801,
0.6020261645317078,
-0.8115329742431641,
-0.22606289386749268,
0.169406920671463,
0.06852270662784576,
-0.7365618348121643,
-0.008359684608876705,
0.32699209451675415,
-0.7600041627883911,
0.1952744573354721,
-0.4898149371147156,
-0.9539285898208618,
-0.2652483284473419,
-0.3236358165740967,
0.5768494606018066,
0.5193488597869873,
-0.3570214807987213,
0.6158771514892578,
0.2127460241317749,
-0.17377318441867828,
-0.68671053647995,
-0.9252254366874695,
-0.14233091473579407,
-0.5602071285247803,
-0.8446979522705078,
0.4084211587905884,
-0.2164357453584671,
0.0340246744453907,
0.2104073166847229,
0.22108012437820435,
0.06956253200769424,
0.10740680992603302,
0.2863839566707611,
0.4978996217250824,
-0.536862850189209,
-0.1306958943605423,
-0.036669231951236725,
-0.21707218885421753,
-0.04361797496676445,
-0.325590580701828,
0.7628269195556641,
-0.4837897717952728,
-0.1503683626651764,
-0.6551846265792847,
-0.08416982740163803,
0.6409022212028503,
-0.23808617889881134,
0.850540280342102,
0.9023259878158569,
-0.39739376306533813,
0.1895424872636795,
-0.4661914110183716,
0.07671638578176498,
-0.4522991180419922,
0.28098544478416443,
-0.5553413033485413,
-0.7340537905693054,
0.8376780152320862,
0.24090121686458588,
0.2250646948814392,
0.9341530799865723,
0.77496737241745,
0.18347245454788208,
0.6674404740333557,
0.20759214460849762,
-0.11050628125667572,
0.44969695806503296,
-0.8982686400413513,
-0.2667681872844696,
-1.0961109399795532,
-0.20211808383464813,
-0.8318333625793457,
-0.3917776346206665,
-0.9357690811157227,
-0.4519558548927307,
0.39065441489219666,
-0.03126654773950577,
-0.37521401047706604,
0.9413017630577087,
-0.6439437866210938,
0.19489729404449463,
0.7883152365684509,
-0.051635194569826126,
0.28570353984832764,
-0.0671713799238205,
-0.3696894943714142,
-0.09366412460803986,
-0.536727249622345,
-0.41825875639915466,
1.338301658630371,
0.5555976629257202,
0.25427788496017456,
0.3449645936489105,
0.7092041373252869,
0.054765451699495316,
0.3900264799594879,
-0.6511849761009216,
0.4340440332889557,
0.013894496485590935,
-0.8515802025794983,
-0.21908536553382874,
-0.7905889749526978,
-0.9254361391067505,
0.5337174534797668,
-0.295446515083313,
-0.8700991272926331,
0.16384665668010712,
0.0038082716055214405,
-0.3335648477077484,
0.5565638542175293,
-0.7486919164657593,
1.1418544054031372,
-0.02615744061768055,
-0.3791831433773041,
0.11533205211162567,
-0.4457927644252777,
0.13435907661914825,
-0.05205041542649269,
0.36499062180519104,
-0.20507533848285675,
0.056339435279369354,
1.0534368753433228,
-0.11812081933021545,
0.325833797454834,
-0.13071823120117188,
0.05708668380975723,
0.19600898027420044,
0.2817101776599884,
0.4726657271385193,
0.13133764266967773,
-0.2704714834690094,
0.4629267752170563,
0.18641716241836548,
-0.5705896019935608,
-0.3141891658306122,
0.665103554725647,
-0.9088901281356812,
-0.2223784625530243,
-0.6051626801490784,
-0.6996442079544067,
0.0774727314710617,
0.4349859952926636,
0.5226386785507202,
0.6742494106292725,
-0.22991375625133514,
0.5898343324661255,
0.5498846173286438,
-0.23176774382591248,
0.575122594833374,
0.6399182081222534,
-0.20369000732898712,
-0.7125316262245178,
0.9410063624382019,
0.09061252325773239,
0.12468009442090988,
0.5581676363945007,
0.2310592085123062,
-0.47734731435775757,
-0.7539480924606323,
-0.9404979348182678,
0.45604515075683594,
-0.2927900552749634,
-0.45453837513923645,
-0.6078580021858215,
-0.16859965026378632,
-0.3274204432964325,
0.07816619426012039,
-0.5339376330375671,
-0.6268648505210876,
-0.15887871384620667,
-0.3409728407859802,
0.604917585849762,
0.38077497482299805,
-0.051324330270290375,
0.45261844992637634,
-1.0412453413009644,
0.08211244642734528,
-0.4830939471721649,
0.3927549123764038,
-0.34454774856567383,
-0.9023879170417786,
-0.29948678612709045,
0.005922909360378981,
-0.4637451171875,
-0.8794323801994324,
0.8069834113121033,
0.02362794801592827,
0.2911786437034607,
0.34855005145072937,
-0.1697504073381424,
0.6491996049880981,
-0.4789777100086212,
0.8051359057426453,
0.10616223514080048,
-0.7332828044891357,
0.48344969749450684,
-0.6213504076004028,
0.25972452759742737,
0.6369448304176331,
0.31896960735321045,
-0.529476523399353,
-0.558334469795227,
-0.9710118770599365,
-0.971939206123352,
0.9766838550567627,
0.7863779664039612,
-0.2097005546092987,
0.2799464762210846,
0.08693613857030869,
0.08447179198265076,
0.04370596259832382,
-0.9124707579612732,
-0.656936764717102,
-0.023375889286398888,
-0.3665482997894287,
-0.2678053677082062,
-0.04283495619893074,
-0.3906813859939575,
-0.2693105638027191,
1.0178238153457642,
0.03609301149845123,
0.2769819498062134,
0.39837881922721863,
-0.0002967588370665908,
-0.020951850339770317,
0.13447897136211395,
0.8742994070053101,
0.5047647356987,
-0.5039283037185669,
-0.15977735817432404,
0.2562931180000305,
-0.405070036649704,
-0.14774349331855774,
0.14934402704238892,
-0.3141040503978729,
0.3554096817970276,
0.4881156086921692,
1.0166130065917969,
-0.0037803640589118004,
-0.42206284403800964,
0.5503588318824768,
-0.016186878085136414,
-0.43864530324935913,
-0.6125906705856323,
-0.29833605885505676,
0.13335567712783813,
0.174652561545372,
0.26889801025390625,
0.1596943438053131,
0.09859069436788559,
-0.15707899630069733,
0.30440667271614075,
0.2910064160823822,
-0.3291378617286682,
-0.5786792635917664,
0.7242329716682434,
-0.018920784816145897,
-0.25875788927078247,
0.489529013633728,
-0.27506837248802185,
-0.514141857624054,
0.7315074801445007,
0.23719118535518646,
0.9987505674362183,
-0.055748194456100464,
0.05317439138889313,
0.9272735118865967,
0.4451046884059906,
-0.11844762414693832,
0.3980560004711151,
0.03675370290875435,
-0.7926669120788574,
-0.3582351505756378,
-0.8905920386314392,
-0.18143418431282043,
0.07344447821378708,
-0.9009665846824646,
0.4023209810256958,
-0.08363068103790283,
-0.3673342168331146,
0.11901076883077621,
0.3102295696735382,
-0.9543095231056213,
0.15022973716259003,
-0.26389169692993164,
1.0591719150543213,
-1.0505427122116089,
0.7933522462844849,
0.6715603470802307,
-0.6475937962532043,
-1.0018583536148071,
-0.4004158079624176,
0.02521771565079689,
-0.8168531656265259,
0.5949538350105286,
-0.047049786895513535,
0.18689297139644623,
-0.11798001080751419,
-0.12775933742523193,
-1.0922893285751343,
1.4558486938476562,
0.24819739162921906,
-0.4193960130214691,
0.11061763018369675,
0.09507808834314346,
0.6372569799423218,
-0.11493281275033951,
0.4501990079879761,
0.47046712040901184,
0.7669990658760071,
0.06446530669927597,
-1.224253535270691,
0.058992899954319,
-0.44731467962265015,
-0.18177710473537445,
0.5655229687690735,
-0.9793672561645508,
0.7950822710990906,
0.19380030035972595,
-0.06835675239562988,
0.1450442224740982,
0.6184154152870178,
0.3673292398452759,
0.19837187230587006,
0.506234347820282,
1.3336584568023682,
0.5565701127052307,
-0.6179103255271912,
1.184484601020813,
-0.23047573864459991,
0.9022670984268188,
0.9346869587898254,
0.2928866446018219,
0.9134073257446289,
0.43872565031051636,
-0.19769947230815887,
0.5607774257659912,
0.9326556921005249,
-0.2842063903808594,
0.2892756462097168,
-0.0786047875881195,
0.17419235408306122,
0.06468646973371506,
-0.016403423622250557,
-0.5742005705833435,
0.2262917160987854,
0.4050522744655609,
-0.30468109250068665,
-0.05058519169688225,
-0.2670433521270752,
0.31932660937309265,
-0.12266293168067932,
-0.08300738781690598,
0.6092015504837036,
0.07614506781101227,
-0.7071195244789124,
0.8449034690856934,
0.0936676412820816,
0.6206205487251282,
-0.538854718208313,
0.15191420912742615,
-0.23620866239070892,
0.19956757128238678,
-0.19352081418037415,
-0.9780163168907166,
0.4543994963169098,
0.09208633750677109,
-0.11127343028783798,
-0.4502730667591095,
0.17752192914485931,
-0.4214225113391876,
-0.8041161298751831,
0.5411781668663025,
0.4536367356777191,
0.38659897446632385,
0.13240641355514526,
-0.8630339503288269,
0.08909837901592255,
-0.051982227712869644,
-0.7650372385978699,
-0.006941008381545544,
0.5994125008583069,
0.1265535056591034,
0.6907275915145874,
0.7037595510482788,
0.2788240611553192,
0.252168744802475,
-0.03185347467660904,
0.7477731704711914,
-0.7654759883880615,
-0.5114274621009827,
-0.8903948664665222,
0.6808302998542786,
-0.1357542723417282,
-0.8212666511535645,
0.6989378333091736,
1.1481151580810547,
0.944245457649231,
0.01872674934566021,
0.32629892230033875,
-0.26729533076286316,
0.5887829661369324,
-0.570003092288971,
0.7311161756515503,
-1.0435307025909424,
-0.08112714439630508,
-0.3713293671607971,
-1.260197401046753,
-0.4037463963031769,
0.2838119864463806,
-0.04975522682070732,
-0.1897442489862442,
0.886111319065094,
0.8522531390190125,
-0.20343554019927979,
-0.27227887511253357,
0.1960948258638382,
0.446306973695755,
0.1825781911611557,
0.7072243690490723,
0.44251254200935364,
-0.8795082569122314,
0.46182775497436523,
-0.3158017694950104,
-0.19067665934562683,
-0.24264635145664215,
-0.729462206363678,
-0.7491063475608826,
-0.8413741588592529,
-0.3820873200893402,
-0.6093586683273315,
-0.3054601550102234,
1.028535008430481,
0.7682092189788818,
-0.9161996245384216,
-0.30222442746162415,
0.110838882625103,
0.18262368440628052,
-0.22853395342826843,
-0.2855992317199707,
0.799695611000061,
0.0038473450113087893,
-1.2172760963439941,
0.2723623514175415,
0.1385491043329239,
0.08950914442539215,
0.04052598774433136,
-0.2549552321434021,
-0.1684655100107193,
-0.28032949566841125,
0.31707823276519775,
0.26719194650650024,
-0.8463881015777588,
-0.22779811918735504,
0.09223458915948868,
-0.07896016538143158,
0.2996775209903717,
0.20236563682556152,
-0.37681844830513,
0.21269801259040833,
0.8439265489578247,
0.5507343411445618,
0.7017867565155029,
-0.010050463490188122,
0.3185892105102539,
-0.8850371837615967,
0.47706082463264465,
0.36240899562835693,
0.7577200531959534,
0.404801607131958,
-0.1480351835489273,
0.967292308807373,
0.3218609392642975,
-0.5400389432907104,
-1.180470585823059,
0.05644571781158447,
-1.595665454864502,
0.14353060722351074,
1.3466153144836426,
-0.18455801904201508,
-0.3317907154560089,
0.43058836460113525,
-0.05497350916266441,
0.14707565307617188,
-0.5615361332893372,
0.5172528028488159,
0.8631806373596191,
0.20935525000095367,
0.051229413598775864,
-0.7128602862358093,
0.38302063941955566,
0.5580503940582275,
-0.6760486364364624,
-0.33446425199508667,
0.15158112347126007,
0.4307955801486969,
0.604081392288208,
0.6542623043060303,
-0.34587085247039795,
0.09629923850297928,
-0.19465674459934235,
0.19553060829639435,
-0.017603006213903427,
-0.2809617221355438,
-0.13128095865249634,
-0.011117660440504551,
-0.08374819159507751,
-0.42446914315223694
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
frtna/opensubtitles_mt | frtna | 2021-12-05T20:53:04Z | 293 | 0 | null | [
"region:us"
] | 2021-12-05T20:53:04Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | annotations_creators:
- expert-generated
language_creators:
- crowdsourced
languages:
- es
- it
licenses:
- cc-by-4.0
multilinguality:
- multilingual
- translation
pretty_name: ''
source_datasets:
- original
task_categories:
- conditional-text-generation
task_ids:
- machine-translation | [
-0.11699316650629044,
-0.30906742811203003,
0.40094059705734253,
0.6349089741706848,
-0.18154661357402802,
0.1293937861919403,
-0.5049129724502563,
-0.36952951550483704,
0.3383828103542328,
0.9328216314315796,
-0.8372295498847961,
-0.6747612357139587,
-0.8540974855422974,
0.9171885251998901,
-0.5221890211105347,
1.4805426597595215,
-0.1532701700925827,
0.0022805496118962765,
-0.21866083145141602,
-0.4558015763759613,
0.1410132348537445,
-0.46437644958496094,
-0.6723151206970215,
-0.10002350807189941,
0.8275720477104187,
0.6331238746643066,
0.6924878358840942,
0.8359822034835815,
0.8250409960746765,
0.2839803099632263,
0.32755613327026367,
0.15495066344738007,
-0.14392273128032684,
-0.2576485276222229,
-0.5383440852165222,
-0.278393030166626,
-0.5178011655807495,
0.14112238585948944,
0.3192923665046692,
0.46382588148117065,
0.026548409834504128,
0.5788925290107727,
-0.12312022596597672,
0.660705029964447,
-0.49488869309425354,
0.6773187518119812,
-0.5670162439346313,
-0.016483986750245094,
-0.6693719625473022,
-0.06560790538787842,
-0.16246075928211212,
-0.5196968913078308,
-0.21335077285766602,
-1.23996901512146,
0.28074362874031067,
0.020798051729798317,
0.6046602129936218,
0.5117053985595703,
-0.3780030310153961,
-0.39954838156700134,
-0.3733542263507843,
0.9530448913574219,
-0.5961322784423828,
0.2794484496116638,
0.8014656901359558,
0.37369227409362793,
0.04622463509440422,
-1.1593270301818848,
-0.5868756175041199,
0.12412969768047333,
-0.32810360193252563,
0.37061312794685364,
0.14129331707954407,
-0.11093244701623917,
0.009515921585261822,
0.6849209666252136,
-0.41604772210121155,
-0.13144810497760773,
-0.6627996563911438,
-0.5137167572975159,
1.0714247226715088,
0.15890832245349884,
0.23592445254325867,
-0.5396335124969482,
-0.10338292270898819,
-0.07509513199329376,
-0.5237120389938354,
-0.2833729684352875,
0.5449501276016235,
0.5627669095993042,
-0.4843825697898865,
0.9965487718582153,
-0.6537829637527466,
0.7463822960853577,
-0.1126626506447792,
0.0005522936698980629,
0.8292177319526672,
-0.7936643958091736,
-0.048254065215587616,
-0.36829379200935364,
1.0613133907318115,
0.32146328687667847,
0.22676071524620056,
-0.46559152007102966,
-0.18912510573863983,
-0.33804988861083984,
-0.19306595623493195,
-0.5233163833618164,
-0.561893880367279,
0.37258484959602356,
-0.3444426953792572,
-0.38403019309043884,
0.19632141292095184,
-0.3211323618888855,
-0.2821606397628784,
-0.45758524537086487,
0.03501086309552193,
-0.2136242836713791,
-0.6303974390029907,
0.06401382386684418,
-0.32326778769493103,
-0.16376709938049316,
0.15146596729755402,
-0.7436599731445312,
0.2531090974807739,
0.6682255864143372,
0.7692068219184875,
-0.2555350959300995,
-0.7064645886421204,
-0.3501390814781189,
0.2688641846179962,
-0.019295666366815567,
0.5199273228645325,
-0.37104710936546326,
-0.2592438757419586,
0.27481815218925476,
0.5163564682006836,
0.16161395609378815,
-0.18498142063617706,
0.8251514434814453,
-0.3116946816444397,
0.6882478594779968,
-0.7763375043869019,
-0.2369503229856491,
-0.4148640036582947,
0.19988121092319489,
-1.1700117588043213,
1.3206390142440796,
0.49319395422935486,
-0.7819588780403137,
0.9573070406913757,
-0.9418493509292603,
-0.5247594118118286,
0.6477965116500854,
-0.10798456519842148,
-0.20073957741260529,
-0.0777265802025795,
0.18302246928215027,
0.6219651699066162,
-0.1882440596818924,
0.6508591175079346,
0.012328090146183968,
0.5241650342941284,
0.12117622047662735,
0.030802449211478233,
1.0317734479904175,
0.6577723622322083,
-0.06923951953649521,
0.6122638583183289,
-1.038191795349121,
-0.37221357226371765,
0.2413291484117508,
-0.4555387496948242,
-0.31736454367637634,
0.2320779263973236,
0.7933364510536194,
0.3752683699131012,
0.6173409223556519,
-0.5988245606422424,
0.31750011444091797,
-0.05117131397128105,
0.4084703326225281,
0.5781365036964417,
0.03331609070301056,
0.39268308877944946,
-0.1601390838623047,
0.5099186897277832,
-0.049010396003723145,
0.1755933314561844,
0.09102804213762283,
-0.8752225637435913,
-0.7831466794013977,
-0.4104727804660797,
0.349239706993103,
0.8603517413139343,
-1.1646476984024048,
0.522182822227478,
-0.37190431356430054,
-0.4131031930446625,
-0.89898681640625,
0.39316317439079285,
0.5118846297264099,
0.16185036301612854,
0.43359023332595825,
-0.04218851774930954,
-0.7274907827377319,
-1.072505235671997,
-0.26941585540771484,
-0.4109451174736023,
-0.13589437305927277,
0.12836776673793793,
0.619905948638916,
-0.39018502831459045,
0.9432486295700073,
-0.3076023757457733,
-0.5816576480865479,
-0.12369795143604279,
0.4497455656528473,
0.07165853679180145,
0.41497135162353516,
0.7493453621864319,
-0.9714686274528503,
-0.6452111005783081,
-0.051150429993867874,
-0.36561188101768494,
-0.5796400308609009,
-0.16028566658496857,
-0.2006763517856598,
0.25828152894973755,
0.3539732098579407,
-0.40947800874710083,
0.14684423804283142,
0.8323655128479004,
-0.33146506547927856,
0.24432404339313507,
-0.05138812214136124,
0.43595772981643677,
-1.5014877319335938,
0.3747386634349823,
0.051833249628543854,
-0.4263038635253906,
-0.2048814296722412,
0.19786879420280457,
0.03642003610730171,
0.1294185221195221,
-0.49644964933395386,
0.6147459149360657,
-0.5610116720199585,
0.18997354805469513,
0.14609766006469727,
0.40094423294067383,
-0.4300655722618103,
0.27077341079711914,
0.5729870200157166,
0.7039141654968262,
0.4660142958164215,
-0.33232179284095764,
0.6050992608070374,
0.687656581401825,
-0.2152857482433319,
0.6294854283332825,
-0.6172263622283936,
0.10619498789310455,
0.22339868545532227,
-0.05414077639579773,
-0.7131611704826355,
-0.8681142926216125,
0.4726329743862152,
-0.4602563977241516,
-0.48408183455467224,
-0.07748420536518097,
-1.2410833835601807,
-0.27723801136016846,
-0.13377587497234344,
0.2500247359275818,
0.04103011637926102,
-0.29471656680107117,
-0.03037751093506813,
0.3825984597206116,
-0.44849711656570435,
-0.44607439637184143,
-1.129622220993042,
0.4236968159675598,
0.1139153391122818,
-0.29871201515197754,
0.18927419185638428,
-0.27326059341430664,
-0.4082144796848297,
0.5448473691940308,
0.7981667518615723,
-0.4822874665260315,
0.23564425110816956,
0.07072113454341888,
-0.020711097866296768,
-0.042387623339891434,
0.12956002354621887,
0.09861230850219727,
-0.07366327941417694,
-0.048953332006931305,
-0.0173324141651392,
0.11158595234155655,
0.19429609179496765,
-0.4148557782173157,
-0.032895538955926895,
0.5563067197799683,
0.3855939209461212,
-0.695074737071991,
0.7251259088516235,
0.8238325119018555,
-0.6375967264175415,
0.07932240515947342,
-0.4874039590358734,
0.10864178836345673,
-0.40656501054763794,
0.38567668199539185,
-0.4209635257720947,
-0.8135465383529663,
0.7216871976852417,
0.3052254617214203,
0.42405492067337036,
1.0562245845794678,
0.7870181202888489,
0.5854872465133667,
0.8012477159500122,
0.4585045874118805,
-0.3870568573474884,
0.3291695713996887,
0.21306708455085754,
-0.00692575890570879,
-0.3156301975250244,
-0.40741005539894104,
-0.6401587724685669,
-0.10150463879108429,
-0.9255769848823547,
-0.4456275403499603,
-0.1878669261932373,
-0.196210116147995,
-0.10108502209186554,
0.6949220895767212,
-0.8855160474777222,
0.11375011503696442,
1.033487319946289,
-0.3934628367424011,
0.5060590505599976,
-0.15711192786693573,
0.36743706464767456,
-0.06542897969484329,
-0.4744481146335602,
-0.5800188183784485,
0.9276117086410522,
0.1518562287092209,
0.08194786310195923,
0.323070228099823,
0.8469560742378235,
0.4483315050601959,
0.5321356654167175,
-0.553440272808075,
0.5189286470413208,
-0.1657029390335083,
-1.1184370517730713,
-0.3006444573402405,
-0.46496638655662537,
-0.9605823755264282,
-0.35882535576820374,
-0.5585131645202637,
-0.4387558400630951,
-0.04775785282254219,
0.1349458396434784,
-0.08556248247623444,
0.21200856566429138,
-0.5860587954521179,
0.9166024923324585,
-0.3940296769142151,
-0.08005774021148682,
-0.10928690433502197,
-0.6561018228530884,
0.05479341000318527,
-0.3209562301635742,
0.5178589820861816,
-0.17657378315925598,
-0.36646562814712524,
0.9340022802352905,
-0.25460126996040344,
0.7901787757873535,
-0.17888537049293518,
0.18003405630588531,
0.3076327443122864,
-0.2005850374698639,
0.5345257520675659,
0.2386157512664795,
-0.17088933289051056,
0.3694632351398468,
-0.1156306117773056,
-0.3314952552318573,
0.13590490818023682,
0.5712305307388306,
-0.666901707649231,
-0.17668870091438293,
-0.31800922751426697,
-0.8365174531936646,
0.13019850850105286,
0.5825973749160767,
0.5523015856742859,
-0.1294131875038147,
-0.18028874695301056,
0.13818690180778503,
0.2579118609428406,
-0.17721423506736755,
0.31862759590148926,
0.7491829991340637,
-0.22495928406715393,
-0.9840751886367798,
1.1561810970306396,
0.11847992986440659,
-0.1745213270187378,
0.3752383589744568,
-0.20648407936096191,
-0.2585467994213104,
-0.6950226426124573,
-1.0072919130325317,
0.0913836732506752,
-0.39370155334472656,
-0.2451949566602707,
-0.640644371509552,
0.017385508865118027,
-0.531981348991394,
-0.16442979872226715,
-0.3690398633480072,
-0.86497563123703,
-0.4913337826728821,
-0.6833020448684692,
1.1383540630340576,
1.1945114135742188,
-0.16116467118263245,
0.37727072834968567,
-0.8137008547782898,
0.2353731095790863,
0.13485267758369446,
0.5447880625724792,
-0.6473692059516907,
-0.05764453485608101,
-0.4955114722251892,
0.09657247364521027,
-0.04303746670484543,
-0.9004946947097778,
0.5224593281745911,
0.23508945107460022,
0.7387938499450684,
0.24123767018318176,
0.008227820508182049,
0.4506915211677551,
-0.49085578322410583,
1.4596245288848877,
0.39739933609962463,
-0.8026887774467468,
0.44366589188575745,
-0.5251291394233704,
-0.1246080994606018,
0.8820310831069946,
0.396085262298584,
-0.5858052968978882,
-0.668662428855896,
-0.8426629304885864,
-1.1507309675216675,
0.6315819621086121,
0.44301310181617737,
0.07723232358694077,
-0.31875139474868774,
0.3195217251777649,
0.566146731376648,
0.4326987862586975,
-1.1086275577545166,
-0.5271351933479309,
-0.32582905888557434,
-0.6650828123092651,
-0.19948160648345947,
-0.07455434650182724,
-0.2569151818752289,
-0.2155344933271408,
0.9147780537605286,
-0.035118669271469116,
-0.07639893144369125,
0.1357097178697586,
-0.09065084159374237,
-0.2912690043449402,
0.20764927566051483,
0.6882378458976746,
0.5919913053512573,
-0.14745283126831055,
0.1272360384464264,
-0.0317227877676487,
-0.32104137539863586,
-0.1949452906847,
0.2885039448738098,
-0.08932803571224213,
0.20124223828315735,
0.5005768537521362,
0.6449350118637085,
-0.23028214275836945,
-0.26969045400619507,
0.46726322174072266,
0.1455821394920349,
-0.48824626207351685,
-0.6941264867782593,
-0.22994443774223328,
0.16060930490493774,
0.11689009517431259,
0.4950462877750397,
0.0410650297999382,
0.33769750595092773,
0.060722868889570236,
0.29826241731643677,
0.20359110832214355,
-0.24356265366077423,
-0.764922559261322,
0.9606126546859741,
0.6750888824462891,
-0.5706439018249512,
0.4151841104030609,
-0.6276789903640747,
-0.3814246952533722,
0.16512282192707062,
0.14060504734516144,
1.1799747943878174,
-0.287182092666626,
0.24378077685832977,
0.5931077003479004,
0.6025940179824829,
-0.16487446427345276,
0.7498092651367188,
-0.0014754950534552336,
-0.5626721382141113,
-0.6826333403587341,
-0.5348161458969116,
-0.39542579650878906,
0.18682017922401428,
-0.931780993938446,
0.27840980887413025,
-0.07197638601064682,
-0.2564801275730133,
-0.003044224577024579,
-0.06600433588027954,
-1.0506646633148193,
0.402357280254364,
0.093776635825634,
1.1745482683181763,
-1.510443091392517,
0.8897961378097534,
1.303666114807129,
-1.094344139099121,
-0.6389478445053101,
-0.33171534538269043,
-0.06785641610622406,
-0.6133230924606323,
0.5555955767631531,
-0.2984236776828766,
0.17834757268428802,
0.09539279341697693,
-0.6994950771331787,
-1.007995843887329,
0.7558076977729797,
0.4557913839817047,
-0.35895466804504395,
0.3981263041496277,
0.3228774964809418,
0.5773705244064331,
-0.134287029504776,
-0.13857904076576233,
0.4074481129646301,
1.041499376296997,
-0.6055022478103638,
-1.2910997867584229,
-0.22429542243480682,
-0.6757001876831055,
-0.44612789154052734,
0.028661087155342102,
-0.525467574596405,
0.6970047354698181,
0.21067818999290466,
0.06521971523761749,
0.1284525841474533,
0.8750554323196411,
0.28252238035202026,
0.26962557435035706,
0.5177097320556641,
0.518738865852356,
0.8252443075180054,
-0.4182373583316803,
1.1166998147964478,
-0.5457549095153809,
0.46547994017601013,
1.0238046646118164,
0.1278984546661377,
0.540544867515564,
0.754599928855896,
-0.20939692854881287,
0.29741862416267395,
0.8544732928276062,
-0.1643025130033493,
0.6871254444122314,
-0.13229334354400635,
0.0008228488150052726,
-0.22415843605995178,
-0.38396158814430237,
-0.24034443497657776,
0.19282636046409607,
0.3730660080909729,
-0.5328679084777832,
0.18156906962394714,
-0.16250263154506683,
0.2438620626926422,
0.341709703207016,
-0.26004451513290405,
0.9285091161727905,
-0.09339743852615356,
-0.7353231906890869,
-0.13298653066158295,
0.26610296964645386,
0.8164857029914856,
-0.47315043210983276,
-0.131831094622612,
-0.077688068151474,
-0.14073975384235382,
-0.5714167356491089,
-1.1839462518692017,
0.49447232484817505,
-0.020918987691402435,
-0.5335770845413208,
-0.509331226348877,
0.5227939486503601,
-0.7277264595031738,
-0.9741779565811157,
0.26284104585647583,
0.5376655459403992,
0.3568168580532074,
0.128774493932724,
-0.8102366328239441,
-0.2534843981266022,
0.06620199978351593,
-0.3334001898765564,
-0.07349173724651337,
0.760231077671051,
-0.3172135055065155,
0.48226556181907654,
0.5705451965332031,
0.5722931623458862,
0.1998385190963745,
0.05952565744519234,
0.6666544675827026,
-0.3331783711910248,
-0.4349948763847351,
-0.5889225006103516,
0.6345732808113098,
-0.4312741160392761,
-0.7629474401473999,
1.0713980197906494,
0.8692533373832703,
1.3064374923706055,
-0.2763449549674988,
1.2524055242538452,
-0.5838678479194641,
0.5321539640426636,
-0.2107342779636383,
0.9754018783569336,
-0.7000993490219116,
-0.38512253761291504,
-0.5811293721199036,
-0.6986652612686157,
-0.5268673300743103,
0.4211193919181824,
-0.2856180965900421,
-0.1713288575410843,
0.3007078766822815,
0.5146276950836182,
-0.03323971480131149,
-0.3361172676086426,
-0.03839392215013504,
-0.19514551758766174,
0.036840349435806274,
0.1623067855834961,
0.41437357664108276,
0.017836863175034523,
0.4815634787082672,
-0.5389951467514038,
-0.18287643790245056,
-0.037473492324352264,
-1.240080714225769,
-0.7472992539405823,
-1.240201711654663,
-0.8098886609077454,
-0.11765582859516144,
-0.41158032417297363,
1.2499231100082397,
0.7718731164932251,
-1.513189673423767,
-0.08619560301303864,
-0.15171527862548828,
-0.0847359150648117,
-0.3093673288822174,
-0.164955735206604,
0.3785921037197113,
-0.0570196807384491,
-0.9126703143119812,
0.19089552760124207,
-0.1262538731098175,
-0.23073872923851013,
-0.42158716917037964,
-0.2896892726421356,
0.09003622084856033,
-0.034260593354701996,
0.6122211217880249,
0.06187049672007561,
-0.8293927907943726,
-0.23143959045410156,
-0.20420852303504944,
-0.354164183139801,
-0.3239765465259552,
0.5224069356918335,
-0.325560986995697,
0.47396546602249146,
0.5537933707237244,
0.32997265458106995,
0.17649365961551666,
0.09372229874134064,
0.5841372609138489,
-1.1266494989395142,
0.649246335029602,
0.09344753623008728,
0.41395777463912964,
0.6584421396255493,
-0.5066527128219604,
0.7861104607582092,
0.4688813090324402,
-0.6533468961715698,
-0.7118337750434875,
0.03424758091568947,
-1.1344420909881592,
0.11811834573745728,
1.3293977975845337,
-0.2969135642051697,
-0.04810947924852371,
-0.18372005224227905,
-0.17943933606147766,
0.5474309921264648,
-0.6612023115158081,
0.5349285006523132,
0.6017988920211792,
0.35343247652053833,
-0.058037567883729935,
-0.8146743774414062,
0.8344976305961609,
-0.06594021618366241,
-0.6348239183425903,
-0.03575935214757919,
0.7024127244949341,
0.40898218750953674,
0.49988633394241333,
0.8887436985969543,
-0.16777177155017853,
0.0729983001947403,
-0.2841261327266693,
0.7904478311538696,
-0.4117136001586914,
0.18236646056175232,
0.1175544261932373,
-0.07905443012714386,
0.44572964310646057,
-0.3797643184661865
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
gcaillaut/cora | gcaillaut | 2021-10-20T07:45:16Z | 293 | 0 | null | [
"region:us"
] | 2021-10-20T07:45:16Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227645754814148,
-0.22568479180335999,
0.8622264862060547,
0.43461528420448303,
-0.52829909324646,
0.7012971639633179,
0.7915720343589783,
0.07618614286184311,
0.774603009223938,
0.2563217282295227,
-0.7852813005447388,
-0.22573819756507874,
-0.9104477167129517,
0.5715674161911011,
-0.3992327153682709,
0.5791246294975281,
-0.14494498074054718,
-0.10751134157180786,
0.28233814239501953,
-0.2768957316875458,
-0.5409227609634399,
-0.3685525059700012,
-1.1902780532836914,
0.061491698026657104,
0.5316582918167114,
0.7435142993927002,
0.7584062218666077,
0.3652168810367584,
0.643257737159729,
0.39322906732559204,
-0.231389120221138,
0.48270541429519653,
-0.04171793907880783,
0.0026038766372948885,
-0.3524438440799713,
-0.5516899824142456,
-0.28596580028533936,
0.07584768533706665,
1.096130132675171,
0.9666873812675476,
-0.28466421365737915,
0.05330856889486313,
-0.30636167526245117,
0.3308892846107483,
-0.4973427355289459,
0.3054097294807434,
-0.022506212815642357,
0.16318757832050323,
-0.704151451587677,
-0.5535351634025574,
0.012795033864676952,
-0.7361212968826294,
0.17926514148712158,
-0.6900812387466431,
0.8269097208976746,
0.18583208322525024,
1.1533749103546143,
0.14819422364234924,
-0.4624859392642975,
-0.8161761164665222,
-0.6538985371589661,
0.5711163878440857,
-0.32703715562820435,
0.3968023657798767,
0.7028225660324097,
-0.048573337495326996,
-0.9820331335067749,
-0.6745738387107849,
-0.4646624028682709,
0.2923974096775055,
0.3540281355381012,
-0.3411684036254883,
-0.17522093653678894,
-0.30589917302131653,
0.15791957080364227,
0.1281142681837082,
-0.48419976234436035,
-0.5543919801712036,
-0.547515869140625,
-0.39602574706077576,
0.6206656694412231,
0.34829503297805786,
0.24291737377643585,
-0.18884189426898956,
-0.3228582441806793,
0.0880165845155716,
-0.41608554124832153,
0.3402574062347412,
0.6335517168045044,
0.711402416229248,
-0.5811445713043213,
0.5602157711982727,
-0.049275897443294525,
0.7439709901809692,
0.11445585638284683,
-0.2747812569141388,
0.4146060049533844,
-0.14724673330783844,
0.055171847343444824,
0.42263513803482056,
0.3152443468570709,
0.284130722284317,
-0.3273696303367615,
0.20322275161743164,
-0.32151490449905396,
-0.3049626648426056,
-0.2233218252658844,
-0.29490745067596436,
-0.35921788215637207,
0.5492295622825623,
-0.3314017951488495,
-0.4285551905632019,
1.1431758403778076,
-0.42007699608802795,
-0.7302228808403015,
0.33156365156173706,
0.40652117133140564,
-0.0994473397731781,
-0.37146514654159546,
-0.052260853350162506,
-0.8458786010742188,
-0.007907438091933727,
0.749117910861969,
-0.7198969125747681,
0.33717361092567444,
0.47280627489089966,
0.741721510887146,
0.1965060532093048,
-0.14034466445446014,
-0.4294945299625397,
0.2971963882446289,
-0.8659994006156921,
0.6320174932479858,
-0.2013527899980545,
-1.0051976442337036,
0.11150483042001724,
0.8971704244613647,
-0.3789643347263336,
-1.2094870805740356,
1.0605157613754272,
-0.6887932419776917,
0.16017864644527435,
-0.6767609119415283,
-0.14661164581775665,
-0.0711846798658371,
-0.005095955915749073,
-0.6088155508041382,
0.7567099332809448,
0.5872676968574524,
-0.4995277523994446,
0.2142946422100067,
-0.2602984309196472,
-0.3915135860443115,
0.38824939727783203,
-0.0793546810746193,
-0.21858903765678406,
0.7138336896896362,
-0.6647078394889832,
-0.2693285048007965,
0.2942773103713989,
0.23689353466033936,
-0.357060968875885,
-0.793192446231842,
0.08478078991174698,
-0.05786222219467163,
1.5507503747940063,
-0.03868861123919487,
-0.35861143469810486,
-0.6793837547302246,
-1.1506236791610718,
-0.07070811837911606,
0.6886887550354004,
-0.9194992184638977,
-0.27839499711990356,
-0.046410251408815384,
-0.26169371604919434,
0.0899493545293808,
0.7390591502189636,
-1.119404911994934,
0.28327250480651855,
-0.0509270615875721,
-0.22794727981090546,
0.8271061182022095,
0.1538720428943634,
0.24758882820606232,
0.14913466572761536,
0.4295872747898102,
0.5277255773544312,
0.11115183681249619,
0.6835883259773254,
-0.3472035229206085,
-0.9694353938102722,
0.6154633164405823,
0.25266438722610474,
0.8121451139450073,
-0.49945372343063354,
0.2685092091560364,
0.2702546715736389,
-0.3409683108329773,
-0.5682377219200134,
-0.31028279662132263,
0.09025713056325912,
0.14930610358715057,
0.11142496764659882,
-0.5721707344055176,
-0.6576128005981445,
-0.9689136743545532,
-0.13590654730796814,
-0.43143755197525024,
-0.35715675354003906,
0.2100687474012375,
0.5792906880378723,
-1.197553277015686,
0.4128877520561218,
-0.7705622911453247,
-0.7038743495941162,
-0.010655623860657215,
-0.1933809518814087,
0.7540653944015503,
0.43240171670913696,
0.5033961534500122,
-0.6397145390510559,
-0.5661987066268921,
-0.22470159828662872,
-1.0333740711212158,
-0.13280484080314636,
0.24819664657115936,
0.3065738081932068,
-0.1342327892780304,
-0.2744964063167572,
-0.48740261793136597,
0.8100383877754211,
0.14789216220378876,
-0.5391896963119507,
0.5220770239830017,
-0.3020317256450653,
0.17224839329719543,
-0.6369158029556274,
-0.0691685602068901,
-0.6616761684417725,
-0.0009067117935046554,
-0.36083078384399414,
-0.5737435817718506,
0.14772331714630127,
0.07017547637224197,
-0.16065414249897003,
0.2880837917327881,
-0.909276008605957,
-0.001085443771444261,
-0.744221568107605,
0.37907224893569946,
0.06394767016172409,
-0.3145084083080292,
-0.017516745254397392,
1.000038743019104,
0.7784457206726074,
-0.3848040699958801,
0.7217439413070679,
0.4440040588378906,
0.19036099314689636,
0.7630518674850464,
-0.18725158274173737,
0.16478213667869568,
-0.5245421528816223,
-0.12161099910736084,
-0.8887605667114258,
-1.0982943773269653,
0.7320572137832642,
-0.61142498254776,
0.36542850732803345,
-0.42778611183166504,
0.25891590118408203,
-0.6919258832931519,
-0.038853395730257034,
0.4808599054813385,
-0.05936374515295029,
-0.6863952875137329,
0.5232571363449097,
0.453174889087677,
-0.2019244134426117,
-0.6609036326408386,
-0.5301569700241089,
0.39365917444229126,
0.6154112815856934,
-0.16390395164489746,
0.06878498196601868,
0.14941087365150452,
-0.5441920757293701,
-0.040802545845508575,
-0.3869187533855438,
-0.45766744017601013,
0.054224055260419846,
0.13053379952907562,
-0.005750161595642567,
-0.404820054769516,
-0.08680257946252823,
-0.35842007398605347,
-0.4656125009059906,
0.21876463294029236,
0.30119529366493225,
-0.04096343368291855,
-0.42599743604660034,
-0.36198148131370544,
-0.8881809115409851,
0.6719611883163452,
0.5370280146598816,
0.05281474441289902,
0.7555550932884216,
0.16819243133068085,
-0.801498293876648,
-0.13532207906246185,
-0.17607054114341736,
0.2696835994720459,
-0.5588056445121765,
0.13849826157093048,
-0.01348480861634016,
-0.06374907493591309,
0.2629791498184204,
0.25386205315589905,
-0.4300558567047119,
0.927625298500061,
-0.26152747869491577,
-0.3592526614665985,
0.7960182428359985,
0.5974737405776978,
0.4958309233188629,
0.16503198444843292,
-0.044541098177433014,
0.9007097482681274,
-1.196651816368103,
-0.6563172340393066,
-0.740954577922821,
-0.15945661067962646,
-0.43510857224464417,
-0.0321057066321373,
0.6254417300224304,
0.29009905457496643,
-0.13333925604820251,
0.47563934326171875,
-0.5243490934371948,
0.3556032180786133,
1.01198410987854,
0.357486754655838,
0.34357017278671265,
-0.7570232152938843,
-0.25157779455184937,
-0.14024297893047333,
-0.9998160600662231,
-0.2631372809410095,
0.8871029019355774,
0.2275265008211136,
0.8444608449935913,
0.5992542505264282,
0.6784538626670837,
0.136723130941391,
0.2523833215236664,
-0.305902898311615,
0.3920287489891052,
0.43760839104652405,
-1.040114164352417,
-0.427584171295166,
0.02141888067126274,
-0.9703332781791687,
-0.14227578043937683,
-0.03495054692029953,
-0.42617106437683105,
0.7681738138198853,
0.00016635804786346853,
-0.40767112374305725,
0.7732735872268677,
-0.455583393573761,
0.7562879323959351,
-0.4473649859428406,
-0.02663865126669407,
0.4699098467826843,
-0.707064151763916,
0.4677433967590332,
0.12878736853599548,
0.6205845475196838,
-0.015571946278214455,
-0.04078621417284012,
0.7104930877685547,
-0.912916362285614,
0.25438612699508667,
-0.6348398923873901,
0.22421303391456604,
0.24246959388256073,
0.5160625576972961,
0.5969963073730469,
0.4371241629123688,
0.10119915008544922,
-0.23920850455760956,
0.04115789383649826,
-0.8241121172904968,
-0.21050667762756348,
0.6975144147872925,
-0.7186897397041321,
-0.6864195466041565,
-1.2355334758758545,
0.14438661932945251,
0.27347052097320557,
0.3893046975135803,
0.7959297895431519,
0.5714079141616821,
0.12895449995994568,
0.6805253624916077,
0.9888579249382019,
-0.06885592639446259,
0.916691780090332,
0.3224475085735321,
0.09175165742635727,
-0.21944895386695862,
0.703682541847229,
0.2662784457206726,
-0.24707898497581482,
-0.11939744651317596,
0.20913469791412354,
-0.11069414764642715,
-0.5917618870735168,
-0.4999074935913086,
0.3701755404472351,
-0.6731783151626587,
-0.1830393373966217,
-0.6243732571601868,
-0.6043766736984253,
-0.5117589235305786,
0.0692739263176918,
-0.7147683501243591,
0.23979082703590393,
-0.7753568887710571,
-0.10574901103973389,
0.043233584612607956,
0.9792002439498901,
-0.5893121361732483,
0.5805228352546692,
-1.12185800075531,
0.19345775246620178,
-0.07949890196323395,
0.792106032371521,
0.2139579802751541,
-0.7344390153884888,
-0.39754197001457214,
-0.11592598259449005,
-0.37299054861068726,
-1.3576757907867432,
0.21404962241649628,
-0.24541425704956055,
0.2309398651123047,
0.6145407557487488,
0.13977038860321045,
0.5258244276046753,
-0.3432632088661194,
0.7029102444648743,
-0.05701681971549988,
-0.7069293856620789,
0.7934491038322449,
-0.5026893615722656,
0.4963533282279968,
0.9766002893447876,
0.5333840250968933,
-0.7984007596969604,
0.0357406847178936,
-1.041122555732727,
-0.6008694171905518,
0.38426393270492554,
0.1192895919084549,
-0.036011260002851486,
-0.665955662727356,
-0.05401992052793503,
-0.16143806278705597,
0.6043741703033447,
-1.0390695333480835,
-0.785835862159729,
0.25766894221305847,
0.527729868888855,
0.08168502151966095,
-0.5653401613235474,
0.2088075578212738,
-0.5444163084030151,
1.0657776594161987,
0.4510935842990875,
0.32744958996772766,
0.8406059145927429,
0.4649236798286438,
-0.38231605291366577,
0.09252502024173737,
0.7662692070007324,
0.6666229367256165,
-0.5239795446395874,
-0.2908026874065399,
-0.0882752314209938,
-0.9143400192260742,
0.05927504226565361,
0.11168874800205231,
-0.013456094078719616,
0.9082115292549133,
0.579308032989502,
0.253970205783844,
0.4514276385307312,
-0.7264610528945923,
0.8859445452690125,
-0.1495419293642044,
-0.1247284859418869,
-1.0677239894866943,
0.19486205279827118,
-0.23984935879707336,
0.5006400346755981,
1.0061330795288086,
0.525004506111145,
-0.047630541026592255,
-0.814338207244873,
-0.014736393466591835,
0.6939173936843872,
-0.7091119885444641,
-0.17449776828289032,
0.9448539614677429,
0.38471025228500366,
-1.295304536819458,
1.106776475906372,
-0.5381773710250854,
-0.5603318214416504,
0.9121303558349609,
0.5229570269584656,
1.1221849918365479,
-0.44204193353652954,
0.0008675068384036422,
0.2662239074707031,
0.4137844443321228,
0.5423170328140259,
1.086963176727295,
0.43141356110572815,
-0.7931071519851685,
0.8826581835746765,
-0.24776068329811096,
-0.40361127257347107,
-0.053475700318813324,
-0.4285985827445984,
0.16892209649085999,
-0.44061893224716187,
-0.10712965577840805,
-0.3444185256958008,
0.2854307293891907,
-0.70720374584198,
0.42807650566101074,
-0.08385643362998962,
0.8653066754341125,
-0.8553729057312012,
0.47207602858543396,
0.6354700326919556,
-0.33373481035232544,
-0.8508192300796509,
-0.2619847357273102,
-0.1144845262169838,
-0.6389466524124146,
0.30214792490005493,
-0.45541056990623474,
0.04439886659383774,
0.09623479843139648,
-0.6491509079933167,
-1.1778273582458496,
0.9093630909919739,
-0.6396117210388184,
-0.2784458100795746,
0.20463955402374268,
-0.1151471734046936,
0.28811654448509216,
-0.2524648904800415,
0.010661326348781586,
0.4187661111354828,
0.7489396333694458,
0.28446558117866516,
-0.7727053761482239,
-0.36948859691619873,
0.0015033691888675094,
-0.44474759697914124,
0.7582973837852478,
-0.6002099514007568,
1.1840776205062866,
-0.556353747844696,
-0.05965423583984375,
0.4438447952270508,
0.24690861999988556,
0.21076245605945587,
0.6629217267036438,
0.144208163022995,
0.7282260060310364,
1.0701210498809814,
-0.4083523154258728,
0.881180465221405,
0.26432785391807556,
0.47430840134620667,
0.7238510251045227,
-0.6487718820571899,
0.7513748407363892,
0.3181042969226837,
-0.5682927966117859,
0.9228019714355469,
1.290606141090393,
-0.15699151158332825,
0.8079370260238647,
0.05136425420641899,
-1.0815999507904053,
0.32583364844322205,
-0.20724764466285706,
-0.7530062794685364,
0.31502565741539,
0.19055864214897156,
-0.6920987367630005,
-0.5770313739776611,
-0.2404651641845703,
-0.35662832856178284,
-0.11552872508764267,
-0.763173520565033,
0.6720565557479858,
-0.01696927472949028,
-0.5103673934936523,
0.18857470154762268,
0.2877500653266907,
0.17368444800376892,
-0.5235736966133118,
-0.029393965378403664,
-0.22823575139045715,
0.2660652697086334,
-0.5670853853225708,
-0.5234523415565491,
0.5724437236785889,
-0.32430148124694824,
-0.5343252420425415,
0.1814749836921692,
0.7635869979858398,
-0.1692378669977188,
-0.4515411853790283,
0.3247268795967102,
0.6959530115127563,
0.16658465564250946,
0.42502784729003906,
-0.23511283099651337,
0.2448059767484665,
-0.08044828474521637,
-0.06651593744754791,
0.27714747190475464,
0.3449171483516693,
0.22435645759105682,
0.44501352310180664,
0.432856947183609,
-0.018087303265929222,
-0.10736560821533203,
-0.38282057642936707,
0.41249361634254456,
-0.9542783498764038,
-0.5713291168212891,
-0.630710780620575,
0.2740667760372162,
-0.023154327645897865,
-1.0836422443389893,
0.41451749205589294,
1.4406688213348389,
1.0359984636306763,
-0.4756380617618561,
1.0672271251678467,
-0.21818462014198303,
0.9594789743423462,
0.4148315489292145,
0.5420438051223755,
-0.6030403971672058,
0.038353078067302704,
-0.43644046783447266,
-1.0769634246826172,
-0.3571633994579315,
0.4539390504360199,
-0.02289981208741665,
-0.3429867625236511,
0.8725717663764954,
0.5887162089347839,
-0.3347362279891968,
-0.11728024482727051,
0.04848664999008179,
-0.02994159795343876,
-0.12433876097202301,
0.5145372152328491,
0.7648398280143738,
-0.9344298243522644,
-0.10680411010980606,
-0.21577700972557068,
-0.6382728815078735,
-0.5047284364700317,
-0.9632003903388977,
-0.12959381937980652,
-0.16037844121456146,
0.03534334897994995,
-0.5662809610366821,
0.002556905150413513,
1.2083250284194946,
0.5684951543807983,
-1.1113994121551514,
-0.5303782224655151,
0.33718496561050415,
0.39204245805740356,
-0.1874789297580719,
-0.24202406406402588,
0.2984570860862732,
0.1538221836090088,
-0.5908879041671753,
0.6875662803649902,
0.8089626431465149,
0.20888905227184296,
0.19554781913757324,
0.15893003344535828,
-0.8229469060897827,
-0.14913435280323029,
0.1744047999382019,
0.9450566172599792,
-0.939853310585022,
-0.7114846110343933,
-0.03168468549847603,
-0.2709487974643707,
-0.05765698105096817,
0.17102089524269104,
-0.4046342968940735,
0.5180684924125671,
0.34591469168663025,
0.49933499097824097,
0.056160878390073776,
-0.054746419191360474,
0.5409556031227112,
-0.9069050550460815,
0.09425969421863556,
0.41343602538108826,
0.4154110848903656,
-0.4000871777534485,
-0.5910195112228394,
0.6713417172431946,
1.0073974132537842,
-0.6594864130020142,
-0.8743263483047485,
-0.19846680760383606,
-1.0016000270843506,
0.04189697653055191,
0.6762756109237671,
0.5009528994560242,
-0.48065176606178284,
-0.4174492359161377,
-0.5617400407791138,
-0.1254679411649704,
-0.13699710369110107,
0.76216059923172,
1.1796802282333374,
-0.7432100772857666,
0.07975788414478302,
-1.0386393070220947,
0.6594986915588379,
-0.2419460266828537,
-0.3457580506801605,
-0.4864429533481598,
0.3832802176475525,
0.3523699641227722,
0.44048118591308594,
0.6148120164871216,
0.14084689319133759,
0.8338428735733032,
0.31260576844215393,
-0.17026858031749725,
0.2698982357978821,
-0.4559198319911957,
-0.02893332578241825,
-0.05796258896589279,
0.3101596236228943,
-1.026215672492981
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
gcaillaut/frwiki_good_pages_el | gcaillaut | 2022-07-04T12:36:42Z | 293 | 1 | null | [
"task_categories:other",
"annotations_creators:machine-generated",
"multilinguality:monolingual",
"size_categories:unknown",
"source_datasets:original",
"license:wtfpl",
"region:us"
] | 2022-07-04T12:36:42Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
annotations_creators:
- machine-generated
language_creators: []
language:
- fr-FR
- fr
license:
- wtfpl
multilinguality:
- monolingual
pretty_name: test
size_categories:
- unknown
source_datasets:
- original
task_categories:
- other
task_ids: []
---
# Dataset Card for frwiki_good_pages_el
## Dataset Description
- Repository: [frwiki_good_pages_el](https://github.com/GaaH/frwiki_good_pages_el)
- Point of Contact: [Gaëtan Caillaut](mailto://g.caillaut@brgm.fr)
### Dataset Summary
This dataset contains _featured_ and _good_ articles from the French Wikipédia. Pages are downloaded, as HTML files, from the [French Wikipedia website](https://fr.wikipedia.org).
It is intended to be used to train Entity Linking (EL) systems. Links in articles are used to detect named entities.
### Languages
- French
## Dataset Structure
```
{
"title": "Title of the page",
"qid": "QID of the corresponding Wikidata entity",
"words": ["tokens"],
"wikipedia": ["Wikipedia description of each entity"],
"wikidata": ["Wikidata description of each entity"],
"labels": ["NER labels"],
"titles": ["Wikipedia title of each entity"],
"qids": ["QID of each entity"],
}
```
The `words` field contains the article’s text splitted on white-spaces. The other fields are list with same length as `words` and contains data only when the respective token in `words` is the __start of an entity__. For instance, if the _i-th_ token in `words` is an entity, then the _i-th_ element of `wikipedia` contains a description, extracted from Wikipedia, of this entity. The same applies for the other fields. If the entity spans multiple words, then only the index of the first words contains data.
The only exception is the `labels` field, which is used to delimit entities. It uses the IOB encoding: if the token is not part of an entity, the label is `"O"`; if it is the first word of a multi-word entity, the label is `"B"`; otherwise the label is `"I"`. | [
-0.7561365962028503,
-0.4962999224662781,
0.07419195771217346,
0.2639709711074829,
-0.3317103385925293,
-0.2268570214509964,
-0.21809284389019012,
-0.49726036190986633,
0.48390644788742065,
0.38517236709594727,
-0.5729416608810425,
-0.8052083253860474,
-0.4419085383415222,
0.34374570846557617,
-0.5377910733222961,
1.5069053173065186,
-0.14738039672374725,
-0.014394319616258144,
-0.14402805268764496,
-0.3865436017513275,
0.15815356373786926,
-0.2350178360939026,
-0.7011364698410034,
-0.25535085797309875,
0.850772500038147,
0.5091735124588013,
0.6907439231872559,
0.6994152665138245,
0.4872065782546997,
0.18963362276554108,
0.0005319655756466091,
0.5942818522453308,
-0.7140573263168335,
-0.2471100091934204,
-0.48539239168167114,
-0.19369350373744965,
-0.38941821455955505,
0.07517119497060776,
0.8353147506713867,
0.5933638215065002,
0.202910915017128,
0.14125216007232666,
-0.055937714874744415,
0.5558282136917114,
-0.4586440622806549,
0.40304431319236755,
-0.5810694694519043,
-0.301315039396286,
-0.4413797855377197,
-0.3423815667629242,
-0.22183255851268768,
-0.21315063536167145,
-0.11491642892360687,
-0.8987435102462769,
0.4908633232116699,
0.24480284750461578,
1.4449958801269531,
-0.16629871726036072,
-0.2677009403705597,
-0.358743280172348,
-0.6396037936210632,
0.5487613081932068,
-0.6351964473724365,
0.665900707244873,
0.5934860706329346,
-0.11984454095363617,
-0.3258419632911682,
-0.7176748514175415,
-1.2337093353271484,
-0.007607485167682171,
-0.2483852654695511,
-0.05352409929037094,
0.017251187935471535,
-0.018664702773094177,
0.45077577233314514,
0.615531861782074,
-0.5529044270515442,
0.2726256847381592,
-0.7635077238082886,
-0.3177717924118042,
0.7764235138893127,
0.00009862565639195964,
0.39958691596984863,
-0.6095584630966187,
-0.3585226237773895,
-0.31844595074653625,
-0.6393958330154419,
-0.0783008486032486,
0.5662863850593567,
0.15901395678520203,
-0.42948204278945923,
0.802861750125885,
-0.48284363746643066,
0.5670490860939026,
0.04694875702261925,
-0.30237269401550293,
0.6819450855255127,
-0.28077855706214905,
0.029782084748148918,
0.018861187621951103,
1.1669766902923584,
0.7476567029953003,
0.3072623908519745,
-0.453363835811615,
-0.05719495564699173,
-0.2929268479347229,
0.046990785747766495,
-0.5532978177070618,
-0.37472420930862427,
0.25157874822616577,
-0.5279796719551086,
-0.26660415530204773,
0.4885942339897156,
-0.8978675603866577,
-0.02839968167245388,
0.01166309043765068,
0.4413832426071167,
-0.47680482268333435,
-0.08794774115085602,
-0.201100155711174,
-0.3470871150493622,
0.2637764513492584,
-0.06213773414492607,
-1.13499116897583,
0.2592101991176605,
0.5023745894432068,
0.531190812587738,
-0.2564815282821655,
-0.7599837183952332,
-0.23396243155002594,
0.36465656757354736,
-0.1356266289949417,
0.897452712059021,
-0.19000905752182007,
-0.4963912069797516,
0.010389955714344978,
0.4524005949497223,
-0.03510962054133415,
-0.33268800377845764,
0.8927597999572754,
-0.7017436623573303,
0.12811198830604553,
-0.354434996843338,
-0.7765421867370605,
-0.19027447700500488,
0.3358488976955414,
-1.2373398542404175,
1.0943411588668823,
0.18781495094299316,
-1.2142878770828247,
0.5766725540161133,
-0.6888408660888672,
-0.5505294799804688,
-0.06231435015797615,
-0.20153044164180756,
-0.21985720098018646,
0.0100499726831913,
0.1040012463927269,
0.45545169711112976,
-0.1879742443561554,
-0.2221541553735733,
-0.2932114601135254,
-0.26239439845085144,
0.37968504428863525,
-0.2528213858604431,
0.8582829236984253,
0.20284807682037354,
-0.044059522449970245,
-0.33204779028892517,
-1.293442726135254,
0.09872740507125854,
0.18781065940856934,
-0.7339895367622375,
-0.44449588656425476,
0.20202688872814178,
0.2162097543478012,
-0.06688620895147324,
0.25476619601249695,
-0.5259851217269897,
0.23563770949840546,
-0.46372151374816895,
0.09256016463041306,
0.48575931787490845,
0.33327314257621765,
0.4094664454460144,
0.052276771515607834,
-0.13830968737602234,
0.18750543892383575,
0.12069793045520782,
-0.030119221657514572,
-0.4322327673435211,
-0.9820663332939148,
-0.06181395426392555,
0.42598697543144226,
0.5986729860305786,
-0.9311694502830505,
0.8080584406852722,
-0.6176896691322327,
-0.6282310485839844,
-0.36253467202186584,
0.16084951162338257,
0.09553036838769913,
0.6759763360023499,
0.6765494346618652,
-0.1752241551876068,
-0.3168076276779175,
-1.141286015510559,
-0.018513958901166916,
-0.231556698679924,
0.13986939191818237,
0.24014157056808472,
0.870307207107544,
-0.18829962611198425,
0.6861923336982727,
-0.3713153600692749,
-0.14988279342651367,
-0.08409427851438522,
0.178158238530159,
0.39573848247528076,
0.48444345593452454,
0.5827635526657104,
-1.2231205701828003,
-0.6327410340309143,
-0.06260181963443756,
-0.8228360414505005,
0.04072031378746033,
0.005043981596827507,
-0.29282069206237793,
-0.02837713435292244,
0.06123574078083038,
-0.912061870098114,
0.44865933060646057,
0.220185786485672,
-0.4646112322807312,
0.2808920443058014,
-0.22009684145450592,
0.5073504447937012,
-1.137010931968689,
0.23317870497703552,
0.0953984260559082,
0.1405964195728302,
-0.47767382860183716,
0.01379217579960823,
0.21212826669216156,
0.16973739862442017,
-0.5212631225585938,
0.6218006610870361,
-0.46777719259262085,
0.15507204830646515,
-0.03957358002662659,
-0.06297994405031204,
0.2540716230869293,
0.44824478030204773,
0.004380148835480213,
0.7265767455101013,
0.49187496304512024,
-0.8699199557304382,
0.6416548490524292,
0.5059013962745667,
-0.20375128090381622,
0.7824196219444275,
-0.2775920629501343,
-0.11043690890073776,
-0.29620206356048584,
0.24022872745990753,
-0.5156762003898621,
-0.39239194989204407,
0.4072510302066803,
-0.44699886441230774,
0.5440656542778015,
0.2438873052597046,
-0.8414124846458435,
-0.5661950707435608,
-0.33240893483161926,
0.26782238483428955,
-0.08395538479089737,
-0.4360324740409851,
0.25853288173675537,
0.22710132598876953,
0.10830342769622803,
-0.7587104439735413,
-0.5956233143806458,
-0.03482086956501007,
0.018902244046330452,
-0.5109655857086182,
0.7520514130592346,
-0.12323936074972153,
-0.04810357466340065,
0.5061792731285095,
-0.12044409662485123,
-0.3009992241859436,
-0.04682845249772072,
0.04228119179606438,
0.21978209912776947,
-0.04321154206991196,
0.21644720435142517,
0.030054476112127304,
-0.27989259362220764,
-0.13981671631336212,
-0.26351094245910645,
0.5038245320320129,
0.1954859346151352,
-0.27226388454437256,
-0.4387544095516205,
0.45716461539268494,
0.3515124022960663,
-0.3505338728427887,
1.1075434684753418,
0.8329355120658875,
-0.6391572952270508,
-0.1461768001317978,
-0.5238487720489502,
0.04195164889097214,
-0.364646315574646,
0.3865448534488678,
-0.31388795375823975,
-0.44499436020851135,
0.6051956415176392,
0.4021442234516144,
0.14967745542526245,
1.3219939470291138,
0.3341168165206909,
-0.5010699033737183,
0.49258238077163696,
0.6053824424743652,
-0.4138522446155548,
0.12652646005153656,
-0.7184978723526001,
0.26603347063064575,
-0.6388294100761414,
-0.582065999507904,
-0.8747121691703796,
-0.36388128995895386,
-0.7940018177032471,
-0.2538301944732666,
0.013193866237998009,
0.5904834270477295,
-0.049733880907297134,
0.515681266784668,
-0.4734896421432495,
0.7033907771110535,
0.6241655945777893,
0.1461532860994339,
0.18457700312137604,
0.40736907720565796,
-0.08800110220909119,
-0.044339362531900406,
-0.5415607690811157,
-0.4372939169406891,
0.9746209383010864,
0.0997794046998024,
0.7394776344299316,
-0.05069968104362488,
0.939110279083252,
0.3442683815956116,
0.25449076294898987,
-0.4657770097255707,
0.498031347990036,
-0.31015098094940186,
-0.9755385518074036,
-0.47607624530792236,
-0.3913920819759369,
-0.8477900624275208,
-0.25780218839645386,
-0.4697054922580719,
-0.916423499584198,
0.44813627004623413,
-0.06666571646928787,
0.1220763623714447,
0.5068690180778503,
-0.38555705547332764,
0.8285852670669556,
-0.16755332052707672,
-0.21594172716140747,
-0.15702909231185913,
-0.4044507145881653,
-0.09630361944437027,
0.001450379379093647,
0.26700109243392944,
-0.07467863708734512,
0.08508681505918503,
1.0742278099060059,
-0.3998314142227173,
0.40659329295158386,
-0.1321786493062973,
0.03739798814058304,
0.5098376274108887,
-0.41460585594177246,
0.658714234828949,
0.11269530653953552,
-0.15729179978370667,
0.40762612223625183,
-0.15319855511188507,
-0.31911715865135193,
-0.2935311496257782,
0.9674658179283142,
-0.8518940210342407,
-0.037444256246089935,
-0.08931352198123932,
-0.1806267946958542,
-0.12666411697864532,
0.4403012692928314,
0.9864956140518188,
0.39102786779403687,
-0.3428465723991394,
0.41007667779922485,
1.0570063591003418,
-0.4453684091567993,
0.269051194190979,
0.4278399646282196,
0.12513433396816254,
-0.5114607214927673,
1.1205030679702759,
0.4108939468860626,
-0.18993721902370453,
0.6862332224845886,
-0.3795935809612274,
-0.3801500201225281,
-0.5358496308326721,
-0.5076844096183777,
0.3278847932815552,
-1.0222365856170654,
-0.3535824120044708,
-0.7645825743675232,
-0.5671548843383789,
-0.1823287010192871,
0.2691994905471802,
-0.07315166294574738,
-0.4511752426624298,
-0.4863576889038086,
-0.49354854226112366,
0.4882533550262451,
0.41813787817955017,
-0.28237494826316833,
0.06340478360652924,
-0.8643751740455627,
0.7375890016555786,
0.04174504429101944,
0.6840956211090088,
-0.007153654005378485,
-0.0642421543598175,
-0.6064439415931702,
-0.06676948070526123,
-0.18417315185070038,
-1.2815086841583252,
-0.09372537583112717,
0.23832067847251892,
0.9778034687042236,
0.37968161702156067,
-0.03044140338897705,
0.3041203022003174,
-0.7669479846954346,
0.942865788936615,
0.3421289622783661,
-0.3703906834125519,
0.4898352026939392,
-0.1958984136581421,
-0.14036697149276733,
0.7551166415214539,
0.7592976689338684,
-0.47168928384780884,
-0.31683018803596497,
-0.7971929907798767,
-1.0503054857254028,
0.5740613341331482,
0.3603060245513916,
0.31312233209609985,
-0.713350772857666,
0.41333961486816406,
0.1700650304555893,
0.07272741198539734,
-0.925229549407959,
-0.9189800024032593,
-0.21380989253520966,
-0.4288874864578247,
0.035227276384830475,
-0.4208492040634155,
-0.12119288742542267,
-0.21384023129940033,
1.0630698204040527,
0.2534160614013672,
0.4767155051231384,
0.22612886130809784,
-0.343039870262146,
-0.05738160386681557,
0.2615288496017456,
0.3232555389404297,
0.6079578995704651,
0.012278786860406399,
0.041956350207328796,
0.2858886122703552,
-0.48958736658096313,
-0.048092857003211975,
0.5102866291999817,
-0.2573891878128052,
0.26837286353111267,
0.6049954295158386,
0.9354296922683716,
0.2556476891040802,
-0.02893163450062275,
0.42643827199935913,
0.2778862714767456,
-0.154402494430542,
-0.09995297342538834,
0.26482078433036804,
0.16619645059108734,
0.1961592137813568,
0.6667432188987732,
-0.3977912664413452,
0.34483230113983154,
-0.22294405102729797,
0.28908878564834595,
0.15390950441360474,
0.04620425030589104,
-0.21086442470550537,
0.5596764087677002,
0.1876535266637802,
-0.3518930673599243,
0.6411591172218323,
-0.31535035371780396,
-0.39109161496162415,
0.5537401437759399,
0.3223516047000885,
0.5693808197975159,
0.23265103995800018,
0.19989146292209625,
0.6595994234085083,
0.3216768205165863,
0.15968620777130127,
0.40505027770996094,
-0.09160768240690231,
-0.8595266938209534,
-0.12385202944278717,
-1.0288128852844238,
0.03392179310321808,
0.4487292170524597,
-0.5396410226821899,
0.19111604988574982,
-0.21248649060726166,
-0.1932586133480072,
0.3580547273159027,
0.1993401199579239,
-1.1267821788787842,
0.5314981341362,
0.12086446583271027,
1.3784081935882568,
-0.656408965587616,
0.8232897520065308,
0.5773599147796631,
-0.8753798604011536,
-1.0468143224716187,
-0.08232095837593079,
-0.35711491107940674,
-0.5019934773445129,
0.7969697713851929,
0.04128082096576691,
0.3592362105846405,
0.027236931025981903,
-0.5641143321990967,
-0.7915785908699036,
1.0871559381484985,
-0.11797718703746796,
-0.4791833162307739,
-0.18445581197738647,
0.23265652358531952,
0.3893269896507263,
-0.0931776836514473,
-0.07803277671337128,
0.1522533893585205,
0.7816945910453796,
-0.3402036726474762,
-0.9580925703048706,
-0.28169435262680054,
-0.2728557586669922,
-0.3349940776824951,
0.30155646800994873,
-0.6344830393791199,
0.7273154854774475,
0.011463695205748081,
-0.2372710108757019,
0.10839173942804337,
0.8515858054161072,
0.00452116085216403,
0.2587893307209015,
0.5205882787704468,
0.8942782282829285,
0.9310118556022644,
-0.37250712513923645,
0.9587253928184509,
-0.4087892174720764,
0.6905046105384827,
0.8180484771728516,
0.16460193693637848,
0.8595653772354126,
0.536885678768158,
-0.1931745707988739,
0.6849489212036133,
0.6301296353340149,
-0.5575868487358093,
0.6768883466720581,
-0.03254356607794762,
-0.15358570218086243,
0.18392689526081085,
0.15244363248348236,
-0.5796000361442566,
0.37499749660491943,
0.4243011176586151,
-0.7003681063652039,
-0.32569801807403564,
-0.14638717472553253,
0.08869680762290955,
-0.21855942904949188,
-0.4360077381134033,
0.8284053206443787,
-0.04753965511918068,
-0.47772136330604553,
0.3409733772277832,
0.3938548266887665,
0.49896305799484253,
-0.5758616924285889,
-0.14240890741348267,
-0.3084641396999359,
-0.13567642867565155,
-0.6969420909881592,
-0.9852498173713684,
0.1222018226981163,
0.12168272584676743,
-0.7800591588020325,
0.3190915584564209,
0.8817229270935059,
-0.46877163648605347,
-0.5418508648872375,
0.1639629602432251,
0.3000125288963318,
0.3675757050514221,
0.4430118203163147,
-0.7332218885421753,
-0.07071451097726822,
0.010376103222370148,
-0.5362057089805603,
0.04579536244273186,
0.6560017466545105,
-0.11459815502166748,
0.33489087224006653,
0.6133735775947571,
0.18452060222625732,
0.04970848932862282,
-0.05268077552318573,
0.8552743792533875,
-0.7764683365821838,
-0.6662561893463135,
-0.7388091683387756,
0.6864293813705444,
-0.6190260052680969,
-0.3503822088241577,
0.6684103608131409,
0.9127019047737122,
1.1192951202392578,
-0.04897385835647583,
0.7718153595924377,
-0.42838552594184875,
0.3976533114910126,
-0.7015814781188965,
0.8931493759155273,
-0.5903006792068481,
-0.1341707557439804,
-0.13437224924564362,
-1.2676758766174316,
-0.15027128159999847,
0.7352607250213623,
0.017558857798576355,
-0.12743747234344482,
0.6802759170532227,
0.641160786151886,
-0.36610841751098633,
-0.0714336708188057,
-0.1087874174118042,
0.1892019361257553,
0.11044853180646896,
0.18829505145549774,
0.32877519726753235,
-0.5184324979782104,
0.45673468708992004,
-0.45463210344314575,
-0.16310155391693115,
-0.05506635829806328,
-0.7898769378662109,
-0.7287067174911499,
-0.7430278658866882,
-0.2137332260608673,
-0.663551390171051,
0.04214955121278763,
0.685996949672699,
0.47488465905189514,
-0.9482753276824951,
0.10074152052402496,
0.19548434019088745,
0.18505774438381195,
-0.04396529868245125,
-0.2763963043689728,
0.736773669719696,
-0.013078843243420124,
-0.6505025625228882,
0.1539458930492401,
0.15620917081832886,
0.07855786383152008,
-0.23971843719482422,
-0.4631345272064209,
-0.3000245988368988,
-0.19817818701267242,
0.270280122756958,
0.46359068155288696,
-0.47464707493782043,
-0.33758312463760376,
-0.22999422252178192,
-0.39058974385261536,
0.09101209789514542,
0.26510563492774963,
-0.4753022789955139,
0.30173030495643616,
0.6065303683280945,
0.4494616985321045,
0.6620142459869385,
-0.39042794704437256,
0.23390881717205048,
-0.7751764059066772,
0.1787179410457611,
-0.144486665725708,
0.466499000787735,
0.2926551103591919,
-0.4069245159626007,
0.6266027092933655,
0.38200369477272034,
-0.22891230881214142,
-0.5597984790802002,
-0.10820341855287552,
-0.9354217052459717,
0.05390273779630661,
1.0806297063827515,
-0.23171180486679077,
-0.3276909589767456,
0.28814563155174255,
0.05321848392486572,
0.4844408929347992,
-0.2887256145477295,
0.5042656660079956,
0.9413540959358215,
0.26270946860313416,
0.04994138702750206,
-0.5036784410476685,
0.5721306204795837,
-0.5237737894058228,
-0.7118463516235352,
-0.42628875374794006,
0.46505242586135864,
0.46941617131233215,
0.4435395896434784,
0.6687251925468445,
-0.09011378884315491,
0.2991710305213928,
-0.00959104299545288,
0.17104469239711761,
-0.04846949875354767,
-0.3596074879169464,
0.26645010709762573,
-0.008215949870646,
-0.11831846088171005,
-0.22343777120113373
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
ghomasHudson/vlsp | ghomasHudson | 2022-10-25T09:20:37Z | 293 | 0 | null | [
"language:en",
"region:us"
] | 2022-10-25T09:20:37Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
---
# Dataset Card for vlsp
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Data Instances](#data-instances)
- [Data Fields](#data-instances)
- [Data Splits](#data-instances)
- [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:** [Needs More Information]
- **Repository:** https://github.com/ghomasHudson/very_long_scientific_papers
- **Paper:** [Needs More Information]
- **Leaderboard:** [Needs More Information]
- **Point of Contact:** [Needs More Information]
### Dataset Summary
Dataset following the methodology of the scientific_papers dataset, but specifically designed for very long documents (>10,000 words). This is gathered from arxiv.org by searching for theses.
The dataset has 2 features:
- article: the body of the document.
- abstract: the abstract of the document.
### Supported Tasks and Leaderboards
Summarization
### Languages
English
## Dataset Structure
### Data Instances
[Needs More Information]
### Data Fields
[Needs More Information]
### Data Splits
Only a test set is provided.
## 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
[Needs More Information]
### Licensing Information
[Needs More Information]
### Citation Information
[Needs More Information]
| [
-0.5261651873588562,
-0.34008413553237915,
0.32255783677101135,
0.32754436135292053,
-0.29476645588874817,
0.15304222702980042,
-0.2703440487384796,
-0.5649932026863098,
0.5118772983551025,
0.7265031933784485,
-0.6599737405776978,
-0.9434889554977417,
-0.6423811912536621,
0.11756523698568344,
-0.3327287435531616,
1.3767304420471191,
-0.007170261349529028,
-0.1724475622177124,
-0.4037831127643585,
-0.14651711285114288,
-0.21618086099624634,
-0.5357066988945007,
-0.4125068187713623,
-0.27905407547950745,
0.4775868058204651,
0.6187383532524109,
0.550951361656189,
1.0618623495101929,
0.6618289947509766,
0.23705607652664185,
-0.2772963047027588,
0.16994701325893402,
-0.5492019057273865,
-0.1920422911643982,
-0.24461661279201508,
-0.24853423237800598,
-0.7824794054031372,
-0.08690734952688217,
0.7761392593383789,
0.5825992822647095,
0.15197031199932098,
0.737618625164032,
0.17290185391902924,
0.7119503021240234,
-0.5535075068473816,
0.7130082845687866,
-0.24819248914718628,
0.19128750264644623,
-0.6416770219802856,
-0.3265690803527832,
-0.1764552742242813,
-0.2398591935634613,
-0.05438019707798958,
-0.6966814398765564,
0.16673320531845093,
0.029611723497509956,
0.9221347570419312,
-0.0604497455060482,
-0.17406082153320312,
-0.26006948947906494,
-0.6215947270393372,
0.6922751069068909,
-0.6704145669937134,
-0.057698264718055725,
0.7036706805229187,
0.3138364851474762,
0.1611548513174057,
-1.1173715591430664,
-0.5126603841781616,
0.18550391495227814,
-0.19499166309833527,
0.3137805461883545,
-0.10140207409858704,
-0.03427337482571602,
0.7858504056930542,
0.4225868582725525,
-0.687443733215332,
-0.16204644739627838,
-0.9497083425521851,
-0.15940605103969574,
0.9817333817481995,
0.3918304741382599,
-0.12304824590682983,
-0.2825181782245636,
-0.17441557347774506,
-0.18898169696331024,
-0.36360806226730347,
-0.03820788487792015,
0.37086784839630127,
0.44897300004959106,
-0.6169425845146179,
0.7604646682739258,
-0.2322058230638504,
0.8520017862319946,
-0.3038930594921112,
-0.09901421517133713,
0.8216999173164368,
-0.6485854387283325,
-0.055058661848306656,
0.05854233726859093,
0.6518316268920898,
0.5659539699554443,
-0.00915711373090744,
0.25781184434890747,
-0.02800910733640194,
-0.28536754846572876,
0.025214312598109245,
-0.8929083943367004,
-0.23859982192516327,
0.6673162579536438,
-0.7803577780723572,
-0.3368001878261566,
0.26366493105888367,
-1.0829741954803467,
-0.2967628836631775,
-0.5418210625648499,
-0.16073647141456604,
-0.01558081153780222,
-0.2451593577861786,
-0.10850314795970917,
-0.35337918996810913,
0.45692846179008484,
0.08519001305103302,
-0.7641342878341675,
0.652570366859436,
0.7200872302055359,
0.8931695818901062,
-0.24430271983146667,
-0.3561617136001587,
-0.34405314922332764,
0.37847042083740234,
0.03590967133641243,
0.7000720500946045,
-0.4922034442424774,
-0.6095542311668396,
0.2364276498556137,
0.39201387763023376,
0.2640814781188965,
-0.14195550978183746,
0.9773591756820679,
-0.12855009734630585,
0.3196665048599243,
-0.7652977705001831,
-0.5682762861251831,
0.018916849046945572,
0.2435408979654312,
-0.8242307901382446,
1.2502156496047974,
-0.016027182340621948,
-1.0222965478897095,
0.34238946437835693,
-1.0497045516967773,
-0.38064536452293396,
0.41261669993400574,
-0.32854971289634705,
-0.5432887077331543,
-0.2743288278579712,
-0.11986307799816132,
0.6499466300010681,
-0.367956280708313,
0.05439307168126106,
-0.2589511275291443,
-0.21813449263572693,
-0.12984107434749603,
-0.05965961888432503,
1.0831327438354492,
0.3814796805381775,
-0.07992056757211685,
0.2161964625120163,
-1.166210412979126,
0.07480980455875397,
0.286173015832901,
-0.37869980931282043,
-0.1271885186433792,
-0.0886678546667099,
0.7634209394454956,
0.07675624638795853,
0.5924366116523743,
-0.30646103620529175,
0.3923737704753876,
0.10158875584602356,
0.4638780355453491,
0.6038811206817627,
0.11910086870193481,
0.23362267017364502,
-0.3542015552520752,
0.4642881751060486,
0.010641997680068016,
0.40018200874328613,
-0.014665422029793262,
-0.6451420783996582,
-0.6849840879440308,
-0.192889004945755,
0.23314787447452545,
0.7185377478599548,
-0.46504759788513184,
0.9011000394821167,
-0.4448446035385132,
-0.787161111831665,
-0.37712791562080383,
0.06117137894034386,
0.4789142608642578,
0.6442059874534607,
0.49296581745147705,
-0.3662351965904236,
-0.8003767728805542,
-0.9180318117141724,
0.23953093588352203,
-0.055917948484420776,
0.17703869938850403,
0.41918617486953735,
0.9657824635505676,
-0.015315667726099491,
0.7988715171813965,
-0.780500054359436,
-0.23346346616744995,
-0.380913108587265,
0.03075536899268627,
0.3864499032497406,
0.34886473417282104,
0.5502849817276001,
-1.0010944604873657,
-0.3925475776195526,
-0.2888043224811554,
-0.7718467116355896,
-0.17218022048473358,
-0.0577172115445137,
0.0014729449758306146,
0.2010064423084259,
0.35717955231666565,
-0.4083685874938965,
0.5370601415634155,
0.5296945571899414,
-0.6332807540893555,
0.6207265853881836,
-0.2631530463695526,
-0.0630546510219574,
-1.3365145921707153,
0.44498226046562195,
0.11604661494493484,
0.022994710132479668,
-0.5098295211791992,
-0.14716146886348724,
0.11294584721326828,
-0.14160050451755524,
-0.6023463606834412,
0.645451545715332,
-0.4328835606575012,
-0.05503271520137787,
-0.0554937869310379,
-0.05003468692302704,
0.1575748324394226,
0.28621160984039307,
0.22089238464832306,
0.6401692032814026,
0.6845790147781372,
-0.5552157163619995,
0.41159510612487793,
0.4003203809261322,
-0.17230668663978577,
0.6424842476844788,
-0.9061357975006104,
-0.09493438154459,
-0.44249168038368225,
0.29798540472984314,
-0.8695117235183716,
-0.42707502841949463,
0.39405545592308044,
-0.3773132264614105,
0.33868643641471863,
-0.09234075993299484,
-0.7172908186912537,
-0.5764580965042114,
-0.5418993830680847,
0.09656807780265808,
0.37435731291770935,
-0.2137068659067154,
0.3472689986228943,
0.5803064703941345,
0.08827141672372818,
-0.5965683460235596,
-0.8945287466049194,
0.15625981986522675,
-0.12332246452569962,
-0.5067776441574097,
0.614556074142456,
-0.3760191798210144,
-0.10903218388557434,
0.17575126886367798,
0.35689568519592285,
-0.06878124177455902,
-0.1299820989370346,
0.45852935314178467,
0.14017760753631592,
-0.002126132370904088,
0.12242511659860611,
-0.16761577129364014,
-0.24680247902870178,
-0.12715508043766022,
0.02511943317949772,
0.5818342566490173,
-0.2032226026058197,
-0.32253438234329224,
-0.20932750403881073,
0.47859057784080505,
0.4356640875339508,
-0.4378364086151123,
0.7056735754013062,
0.9070020914077759,
-0.5194370746612549,
0.06754619628190994,
-0.42875611782073975,
-0.007281456142663956,
-0.413176566362381,
0.3774259090423584,
-0.256259948015213,
-0.6270044445991516,
0.9321605563163757,
0.21046356856822968,
0.32451844215393066,
0.7562472224235535,
0.6334391236305237,
0.030509954318404198,
0.647996723651886,
0.5882276892662048,
-0.30187085270881653,
0.47680938243865967,
-0.577168881893158,
-0.02779116854071617,
-0.8029836416244507,
-0.46685534715652466,
-0.8795909881591797,
-0.23058176040649414,
-0.7394903302192688,
-0.2874336540699005,
-0.04878135025501251,
-0.02726881019771099,
-0.27912425994873047,
0.5550028681755066,
-0.810255765914917,
0.6256547570228577,
0.7626373767852783,
-0.13747134804725647,
0.0723605751991272,
0.06631065905094147,
0.3536689579486847,
-0.07154513895511627,
-0.594693124294281,
-0.6394914984703064,
1.229347586631775,
0.4583629369735718,
0.2868715524673462,
-0.06664106994867325,
0.9613580107688904,
0.3871378004550934,
-0.01806718111038208,
-0.4602903723716736,
0.7003069519996643,
-0.20073798298835754,
-0.6512604355812073,
-0.30694878101348877,
-0.13968177139759064,
-0.96708744764328,
-0.17518535256385803,
-0.3827066421508789,
-0.6927884221076965,
0.45193344354629517,
0.20859269797801971,
-0.2597660422325134,
0.18289895355701447,
-0.600911021232605,
0.9887691140174866,
-0.29432371258735657,
-0.5398353338241577,
0.09791453927755356,
-0.87384432554245,
0.10200033336877823,
0.14107370376586914,
0.4117021858692169,
0.044243618845939636,
-0.104545958340168,
1.1265226602554321,
-0.5034145712852478,
0.9927629232406616,
-0.27986910939216614,
0.3932654559612274,
0.4247862696647644,
-0.6123427152633667,
0.6313501596450806,
0.003340808441862464,
-0.22551575303077698,
0.30803948640823364,
0.18100020289421082,
-0.5451704263687134,
-0.35351815819740295,
0.6188146471977234,
-0.8500189781188965,
-0.16966243088245392,
-0.6565024852752686,
-0.3818320333957672,
0.17051054537296295,
0.3999547064304352,
0.2548283636569977,
0.16273729503154755,
-0.039013754576444626,
0.46784529089927673,
0.7403461933135986,
-0.16190990805625916,
0.32418307662010193,
0.42305752635002136,
-0.2018527388572693,
-0.48991909623146057,
1.0294983386993408,
0.5162777900695801,
0.0027922578155994415,
0.3081378936767578,
0.13989894092082977,
-0.38434919714927673,
-0.5710240006446838,
-0.14636129140853882,
0.21373778581619263,
-0.7573248147964478,
-0.07536758482456207,
-0.5839147567749023,
-0.48219749331474304,
-0.6417901515960693,
-0.06964416056871414,
-0.08834312856197357,
-0.4769781827926636,
-0.5719395279884338,
-0.44440314173698425,
0.594774067401886,
0.43300706148147583,
-0.4196927845478058,
0.24979576468467712,
-0.771409809589386,
0.30755895376205444,
0.05181341618299484,
0.41701963543891907,
-0.1334899365901947,
-0.3025248944759369,
-0.3253087103366852,
-0.10732083022594452,
-0.25891897082328796,
-0.8299866318702698,
0.3240080177783966,
0.15079030394554138,
0.7505877017974854,
0.27555420994758606,
0.07174739241600037,
0.605051577091217,
-0.2764356732368469,
1.1784721612930298,
0.07115845382213593,
-0.587327778339386,
0.7309529781341553,
-0.4205096960067749,
0.23095184564590454,
0.8626550436019897,
0.43797987699508667,
-0.5852934122085571,
0.19992361962795258,
-0.9156554341316223,
-1.3413050174713135,
0.5489020943641663,
0.1282554566860199,
0.15512016415596008,
-0.09547378122806549,
0.23481114208698273,
-0.16069741547107697,
0.29115885496139526,
-0.9522492289543152,
-0.8124130368232727,
-0.2614082992076874,
-0.1498814970254898,
0.10611212253570557,
-0.5327131748199463,
-0.5309785604476929,
-0.40939033031463623,
0.7885815501213074,
0.0858258530497551,
0.1334572285413742,
0.1861834079027176,
0.3596479296684265,
-0.03569764643907547,
0.12376080453395844,
0.7536900043487549,
0.8650981187820435,
-0.45910316705703735,
-0.0030980801675468683,
-0.03301757946610451,
-0.6854389309883118,
-0.3688143789768219,
0.2761671245098114,
-0.2855367362499237,
-0.020972033962607384,
0.6383931636810303,
0.872988224029541,
-0.21048972010612488,
-0.498988538980484,
0.633231520652771,
0.04969635233283043,
-0.45992976427078247,
-0.8903024792671204,
-0.1641152799129486,
0.06757322698831558,
0.22749163210391998,
0.3753277063369751,
-0.24858884513378143,
0.17515404522418976,
-0.5536819100379944,
0.28289374709129333,
0.04216400906443596,
-0.3545645773410797,
-0.0762501209974289,
0.5809065103530884,
0.2468140870332718,
-0.45723313093185425,
0.39063218235969543,
-0.24096238613128662,
-0.15111367404460907,
0.8075314164161682,
0.33077508211135864,
0.6984577178955078,
0.08414782583713531,
0.353847861289978,
0.5068219304084778,
0.36857277154922485,
-0.11264557391405106,
0.9396928548812866,
-0.1453080028295517,
-0.38995200395584106,
-0.267415314912796,
-0.5213665962219238,
-0.3463776111602783,
0.44582727551460266,
-0.8565870523452759,
0.5442541241645813,
-0.6331362724304199,
-0.12535828351974487,
0.16119110584259033,
0.3662666380405426,
-0.9718873500823975,
0.21572153270244598,
0.09288977086544037,
1.1572591066360474,
-1.1322548389434814,
0.7656567096710205,
0.6909646987915039,
-0.9159026145935059,
-0.6080774664878845,
-0.4434189796447754,
0.11597684770822525,
-0.7575401663780212,
0.6050950884819031,
-0.10560671985149384,
0.6139876246452332,
-0.2807738482952118,
-0.847415030002594,
-0.8883659243583679,
1.4648058414459229,
-0.022076593711972237,
-0.6488620638847351,
0.1411518007516861,
0.381862610578537,
0.7348630428314209,
-0.3687973916530609,
0.21226386725902557,
0.42740705609321594,
0.8999037742614746,
0.2361850142478943,
-0.7389786839485168,
0.12478505820035934,
-0.5535082817077637,
-0.13067813217639923,
-0.10537294298410416,
-0.6859115362167358,
0.8327256441116333,
0.09966540336608887,
0.06039828434586525,
-0.23734769225120544,
0.6716851592063904,
0.47313132882118225,
0.4206656217575073,
0.23115333914756775,
0.6555631160736084,
0.8746293783187866,
-0.07028280943632126,
1.0737687349319458,
-0.6034668684005737,
0.3503049314022064,
1.4536800384521484,
-0.1733683943748474,
0.7842572927474976,
0.614993691444397,
-0.3318006992340088,
0.12878145277500153,
0.7730808854103088,
-0.5521525144577026,
0.3818489611148834,
0.45122161507606506,
-0.06505755335092545,
-0.09973546117544174,
-0.43777090311050415,
-0.8575131297111511,
0.2898872196674347,
0.5236376523971558,
-0.8351784944534302,
-0.1339462697505951,
-0.26666945219039917,
0.17113366723060608,
-0.02725975401699543,
-0.4154568314552307,
0.6199160814285278,
-0.1186366006731987,
-0.17286930978298187,
0.14232222735881805,
-0.035187140107154846,
0.4288632273674011,
-0.7879015207290649,
-0.29132479429244995,
0.017748259007930756,
-0.050124891102313995,
-0.7422162890434265,
-1.316489338874817,
0.5267572999000549,
-0.12265495210886002,
-0.5347071290016174,
-0.24490861594676971,
0.7846389412879944,
-0.35048577189445496,
-0.8623571991920471,
0.1264088749885559,
0.3197600245475769,
0.362832248210907,
0.309378981590271,
-0.9623329043388367,
0.4037187993526459,
-0.009774260222911835,
-0.5078561902046204,
0.27921006083488464,
0.39981409907341003,
-0.11815857887268066,
0.3592986464500427,
0.6540839672088623,
0.48643043637275696,
-0.10844621062278748,
0.24184337258338928,
0.8611805438995361,
-0.6404510140419006,
-0.40367549657821655,
-0.5153619647026062,
0.8711637258529663,
-0.7722976803779602,
-0.5623670220375061,
0.7104235887527466,
0.9788557887077332,
1.0400530099868774,
-0.03372238948941231,
1.2042992115020752,
-0.3869186043739319,
0.6920375823974609,
-0.27286097407341003,
0.8294546604156494,
-0.45794543623924255,
0.06367669999599457,
-0.3783096373081207,
-1.0005775690078735,
-0.5414330959320068,
0.5753440260887146,
-0.357019305229187,
-0.06869404017925262,
0.40263068675994873,
0.6761360168457031,
-0.05376184731721878,
0.032661594450473785,
0.1378917396068573,
0.2253231257200241,
0.42520490288734436,
0.18197587132453918,
0.1150316447019577,
-0.5327537059783936,
0.5674516558647156,
-0.5096713900566101,
-0.26557669043540955,
-0.05400782451033592,
-1.246268391609192,
-0.8898695707321167,
-1.0822612047195435,
-0.5278127789497375,
-0.5693104267120361,
0.13112452626228333,
0.9962533116340637,
0.689195990562439,
-0.8848112225532532,
-0.38978245854377747,
0.09039229899644852,
-0.013086208142340183,
-0.048655916005373,
-0.27291736006736755,
0.7746751308441162,
0.11557547003030777,
-0.49372896552085876,
-0.20613065361976624,
0.10609123855829239,
0.04001870006322861,
-0.3139423727989197,
-0.16853350400924683,
-0.20739808678627014,
-0.2613106966018677,
0.6151515245437622,
0.7723402976989746,
-0.431438684463501,
-0.2602711319923401,
-0.22192665934562683,
0.04695776104927063,
-0.10364854335784912,
0.5108739733695984,
-0.25364765524864197,
0.4020423889160156,
0.8576210141181946,
0.31476980447769165,
0.7359867095947266,
-0.21786139905452728,
0.0883069559931755,
-0.7328382134437561,
0.22949333488941193,
0.28028756380081177,
0.46736621856689453,
0.11752535402774811,
-0.46385878324508667,
0.7666627764701843,
0.3086451590061188,
-0.5739694833755493,
-0.8289884328842163,
0.0583508275449276,
-1.4743306636810303,
-0.0743350088596344,
1.3115249872207642,
-0.02915959618985653,
-0.39980942010879517,
-0.30257752537727356,
-0.35238099098205566,
0.21141421794891357,
-0.6311370730400085,
0.6033112406730652,
0.8809460401535034,
0.004015492741018534,
-0.18156428635120392,
-0.639403760433197,
0.6437177062034607,
-0.2731848657131195,
-1.0741450786590576,
0.20201197266578674,
0.5027068853378296,
0.015606621280312538,
0.474209189414978,
0.8936707377433777,
-0.36886122822761536,
0.019802642986178398,
-0.04030485823750496,
0.381154865026474,
-0.333942174911499,
-0.2963143587112427,
-0.04269813746213913,
0.20402467250823975,
-0.074647456407547,
-0.1110076829791069
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/25-17 | huggingartists | 2022-10-25T09:20:55Z | 293 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:20:55Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/25-17"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 0.678946 MB
<div class="inline-flex flex-col" style="line-height: 1.5;">
<div class="flex">
<div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('https://images.genius.com/4fedc5dd2830a874a5274bf1cac62002.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/25-17">
<div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div>
</a>
<div style="text-align: center; font-size: 16px; font-weight: 800">25/17</div>
<a href="https://genius.com/artists/25-17">
<div style="text-align: center; font-size: 14px;">@25-17</div>
</a>
</div>
### Dataset Summary
The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists.
Model is available [here](https://huggingface.co/huggingartists/25-17).
### Supported Tasks and Leaderboards
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Languages
en
## How to use
How to load this dataset directly with the datasets library:
```python
from datasets import load_dataset
dataset = load_dataset("huggingartists/25-17")
```
## Dataset Structure
An example of 'train' looks as follows.
```
This example was too long and was cropped:
{
"text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..."
}
```
### Data Fields
The data fields are the same among all splits.
- `text`: a `string` feature.
### Data Splits
| train |validation|test|
|------:|---------:|---:|
|195| -| -|
'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code:
```python
from datasets import load_dataset, Dataset, DatasetDict
import numpy as np
datasets = load_dataset("huggingartists/25-17")
train_percentage = 0.9
validation_percentage = 0.07
test_percentage = 0.03
train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))])
datasets = DatasetDict(
{
'train': Dataset.from_dict({'text': list(train)}),
'validation': Dataset.from_dict({'text': list(validation)}),
'test': Dataset.from_dict({'text': list(test)})
}
)
```
## Dataset Creation
### Curation Rationale
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the source language producers?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Annotations
#### Annotation process
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the annotators?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Personal and Sensitive Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Discussion of Biases
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Other Known Limitations
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Additional Information
### Dataset Curators
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Licensing Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Citation Information
```
@InProceedings{huggingartists,
author={Aleksey Korshuk}
year=2021
}
```
## About
*Built by Aleksey Korshuk*
[](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.6450544595718384,
-0.5251335501670837,
0.08601970970630646,
0.28150323033332825,
-0.2343100756406784,
0.006135913077741861,
-0.3033420443534851,
-0.4613206386566162,
0.8439652323722839,
0.3266623020172119,
-0.9286096692085266,
-0.8359871506690979,
-0.5559970736503601,
0.1346866488456726,
-0.08091871440410614,
1.2852156162261963,
-0.18729270994663239,
-0.37273457646369934,
-0.3257793188095093,
-0.23589475452899933,
-0.2873002588748932,
-0.3023228347301483,
-0.3041512668132782,
-0.35136598348617554,
0.3537258803844452,
0.5137120485305786,
0.6994808316230774,
0.8992811441421509,
0.5284619331359863,
0.3544607162475586,
-0.12594379484653473,
-0.007374321110546589,
-0.37591394782066345,
-0.12906870245933533,
0.17670588195323944,
-0.29074808955192566,
-0.6917150020599365,
0.2568645477294922,
0.5384371876716614,
0.41112086176872253,
-0.09684247523546219,
0.48180094361305237,
0.055094968527555466,
0.8552811145782471,
-0.2703248858451843,
0.48316457867622375,
-0.24021507799625397,
-0.1509961485862732,
-0.30940279364585876,
0.0453486442565918,
0.18590319156646729,
-0.568313717842102,
-0.024191752076148987,
-0.7692157626152039,
0.07865452766418457,
-0.007196216844022274,
1.0114690065383911,
0.06114906072616577,
0.11482563614845276,
-0.1946774423122406,
-0.14720994234085083,
0.5286831259727478,
-0.5900956988334656,
-0.014061007648706436,
0.5885136723518372,
0.15034371614456177,
0.01707305945456028,
-0.6293559670448303,
-0.6220742464065552,
0.0939781442284584,
-0.13839228451251984,
0.2934970259666443,
-0.1693446934223175,
-0.31609854102134705,
0.5298059582710266,
0.5688205361366272,
-0.5045792460441589,
-0.24064993858337402,
-0.5494676828384399,
-0.12294148653745651,
1.2075740098953247,
0.16747941076755524,
0.41604843735694885,
-0.4932146370410919,
-0.219705730676651,
-0.4063790440559387,
-0.249307781457901,
0.34695085883140564,
0.5791505575180054,
0.43505948781967163,
-1.050406575202942,
0.6378759741783142,
-0.18973895907402039,
0.5327708721160889,
0.15080396831035614,
-0.01787356287240982,
0.7916391491889954,
-0.4248240292072296,
-0.1071956530213356,
-0.13579170405864716,
1.0730502605438232,
0.6927642226219177,
0.192853644490242,
0.12215518206357956,
-0.06398509442806244,
0.03712951019406319,
-0.14331606030464172,
-0.8402077555656433,
-0.41800493001937866,
0.6533180475234985,
-0.6083006262779236,
-0.6005592346191406,
0.14891991019248962,
-0.9874008297920227,
-0.24430903792381287,
-0.3045007586479187,
0.23083606362342834,
-0.3883507251739502,
-0.5251609683036804,
0.15151110291481018,
-0.3042011857032776,
0.12719102203845978,
0.052053555846214294,
-0.5960133671760559,
0.20053444802761078,
0.5886052846908569,
0.7525069117546082,
0.20807185769081116,
-0.2970364987850189,
-0.2612079083919525,
-0.2069559395313263,
-0.13535846769809723,
0.6616801023483276,
-0.3006168305873871,
-0.35699450969696045,
-0.15053164958953857,
0.3453424572944641,
-0.06476154923439026,
-0.2911839187145233,
0.9029231071472168,
0.06596849858760834,
0.18398238718509674,
-0.579140841960907,
-0.4245656430721283,
0.020484812557697296,
0.2734156548976898,
-0.761269748210907,
1.0802347660064697,
0.3181289732456207,
-1.0148563385009766,
0.19538559019565582,
-0.8153481483459473,
-0.29928770661354065,
0.04482397064566612,
0.08369725197553635,
-0.7966086864471436,
-0.1766224056482315,
0.1923687607049942,
0.7247063517570496,
-0.3066663444042206,
0.004167301580309868,
-0.625426173210144,
-0.12421298027038574,
0.3791467547416687,
0.2387634813785553,
1.1863417625427246,
0.11801200360059738,
-0.12713941931724548,
0.08784571290016174,
-0.9531669020652771,
0.11344596743583679,
0.4647192656993866,
-0.15251046419143677,
-0.09252674877643585,
-0.23952890932559967,
0.4178108870983124,
0.29391637444496155,
0.09403586387634277,
-0.6193318963050842,
0.41428035497665405,
-0.18216200172901154,
0.4625110924243927,
0.7316948175430298,
0.007759562693536282,
0.32666388154029846,
-0.6622321605682373,
0.41374579071998596,
0.08869321644306183,
0.38654300570487976,
-0.0011453456245362759,
-0.5687695145606995,
-0.45562201738357544,
-0.26636406779289246,
0.29784712195396423,
0.456932932138443,
-0.6765161156654358,
0.99053955078125,
-0.32643795013427734,
-0.8658035397529602,
-0.6220152974128723,
0.14345134794712067,
0.17013920843601227,
0.4980141222476959,
0.38252177834510803,
-0.43847420811653137,
-0.6046590209007263,
-0.642038106918335,
0.08129983395338058,
-0.2649443447589874,
0.18443737924098969,
0.41715288162231445,
0.8232480883598328,
-0.2513904273509979,
0.825961709022522,
-0.691967785358429,
-0.27884313464164734,
-0.2751391530036926,
-0.3180520236492157,
0.3777271807193756,
0.7931851148605347,
0.6934079527854919,
-0.8408921957015991,
-0.48683252930641174,
-0.24984987080097198,
-0.7049817442893982,
-0.09601578116416931,
-0.03278539702296257,
-0.26690641045570374,
0.021260851994156837,
0.1505637913942337,
-0.7214630842208862,
0.5595163702964783,
0.5030270218849182,
-0.6869376301765442,
0.5671374201774597,
0.0634155198931694,
-0.012411625124514103,
-1.269417405128479,
0.36104926466941833,
0.2698380649089813,
0.03196506202220917,
-0.5872175693511963,
-0.21334847807884216,
-0.05750018358230591,
-0.039385534822940826,
-0.10385757684707642,
0.6162031888961792,
-0.33526676893234253,
0.3196844160556793,
0.12820637226104736,
0.05493222922086716,
0.09124975651502609,
0.43171778321266174,
-0.07524766027927399,
0.26897069811820984,
0.9970048069953918,
-0.3695908188819885,
0.6716658473014832,
0.6146445274353027,
-0.20706002414226532,
0.8663266897201538,
-0.8057268261909485,
0.02732665464282036,
-0.27955350279808044,
0.42328327894210815,
-0.8387030363082886,
-0.5477045178413391,
0.8259519338607788,
-0.7054569125175476,
0.3924872875213623,
-0.22982317209243774,
-0.5312617421150208,
-0.8133467435836792,
-0.6920603513717651,
0.14487245678901672,
0.5365247130393982,
-0.3655204474925995,
0.4092136323451996,
0.5869086980819702,
0.07159185409545898,
-0.3589438498020172,
-0.7844168543815613,
-0.1389545351266861,
-0.4022515118122101,
-0.8139966130256653,
0.4348459839820862,
-0.3588126003742218,
-0.09807329624891281,
0.15128225088119507,
0.09830725938081741,
0.1075223982334137,
0.014439971186220646,
0.40826207399368286,
0.3119266927242279,
0.09915267676115036,
0.000044059524952899665,
-0.10174325853586197,
-0.2401810586452484,
0.13332237303256989,
-0.20014266669750214,
0.2633419334888458,
-0.29770001769065857,
-0.11160845309495926,
-0.6681568622589111,
0.19655494391918182,
0.4418061077594757,
-0.2657570242881775,
0.6834715604782104,
0.8180599808692932,
-0.24159105122089386,
-0.01665675640106201,
-0.4948902428150177,
-0.1527123749256134,
-0.4188491404056549,
0.04050704836845398,
-0.23120981454849243,
-0.5956194400787354,
0.9646177291870117,
0.23247015476226807,
0.07943740487098694,
0.6888365149497986,
0.4743839502334595,
-0.09422573447227478,
0.6666840314865112,
0.36187639832496643,
-0.2570321559906006,
0.5379396080970764,
-0.6868382096290588,
-0.23405104875564575,
-0.8751000761985779,
-0.4636628031730652,
-0.49226585030555725,
-0.5142966508865356,
-0.8807600736618042,
-0.46307817101478577,
0.18216535449028015,
0.13387607038021088,
-0.2175489366054535,
0.4516966938972473,
-0.9421218037605286,
0.264499694108963,
0.34855639934539795,
0.3002597689628601,
-0.12636934220790863,
0.07650896161794662,
0.08285952359437943,
0.1469302922487259,
-0.5926101803779602,
-0.22939826548099518,
1.157806634902954,
0.5123679041862488,
0.5430439710617065,
-0.10926105827093124,
0.8538368344306946,
0.04094899073243141,
0.22368338704109192,
-0.5237087607383728,
0.4944401979446411,
0.011054755188524723,
-0.5180116891860962,
-0.16382858157157898,
-0.50432950258255,
-0.9080855846405029,
-0.1569344699382782,
-0.4207557141780853,
-0.7036038637161255,
0.4923078417778015,
0.08815521746873856,
-0.21781966090202332,
0.3696541488170624,
-0.6295933127403259,
0.8559439778327942,
-0.04908326268196106,
-0.4567258059978485,
0.2745068073272705,
-1.0435329675674438,
0.17004311084747314,
0.193522647023201,
0.2808719873428345,
-0.42641085386276245,
0.03770449757575989,
1.0113778114318848,
-0.8111701011657715,
0.9367831349372864,
-0.37728697061538696,
0.14695243537425995,
0.5961573123931885,
-0.33733320236206055,
0.4523307979106903,
0.11461817473173141,
-0.2753978371620178,
0.32848671078681946,
0.05589434504508972,
-0.47745606303215027,
-0.42788082361221313,
0.6720406413078308,
-0.7349668145179749,
0.0455453023314476,
-0.359977126121521,
-0.46819746494293213,
0.062364306300878525,
0.17319658398628235,
0.27724626660346985,
0.38191041350364685,
0.006696865428239107,
0.14370067417621613,
0.4276215136051178,
-0.13909238576889038,
0.31431451439857483,
0.02168331854045391,
-0.08853060007095337,
-0.7890093922615051,
0.9201468229293823,
0.17993462085723877,
0.04499606788158417,
-0.055125366896390915,
0.4348672926425934,
-0.3642614483833313,
-0.12122417241334915,
-0.599156379699707,
0.4793548882007599,
-0.4039258658885956,
-0.3907071352005005,
-0.4947473108768463,
-0.17133751511573792,
-0.6384284496307373,
-0.15891151130199432,
-0.24854254722595215,
-0.514316976070404,
-0.3212113082408905,
-0.2202083319425583,
1.0522927045822144,
0.454810231924057,
-0.7034900784492493,
0.11734926700592041,
-0.5320044755935669,
0.27145642042160034,
-0.09348681569099426,
0.6500555872917175,
-0.09322363138198853,
-0.29476121068000793,
-0.21221143007278442,
0.0969945564866066,
-0.216328427195549,
-0.6749257445335388,
0.25098907947540283,
-0.03254196420311928,
0.37324339151382446,
0.10871254652738571,
0.14503629505634308,
0.6707015037536621,
-0.05062482878565788,
0.6628237962722778,
0.3044237792491913,
-0.804179847240448,
0.6647855043411255,
-0.5253416895866394,
0.1863805204629898,
0.7249264717102051,
0.37000545859336853,
-0.6156004667282104,
-0.1257438361644745,
-0.9912559986114502,
-0.849826991558075,
0.7999882102012634,
0.4144212603569031,
0.07329576462507248,
0.21996812522411346,
0.5569835901260376,
-0.19593942165374756,
0.27711254358291626,
-0.6238090991973877,
-0.8489888906478882,
-0.42210015654563904,
-0.3782312572002411,
-0.056681983172893524,
-0.07484482228755951,
-0.25905975699424744,
-0.6919782161712646,
0.762056291103363,
-0.14893171191215515,
0.3365859091281891,
0.40894830226898193,
0.4394216537475586,
-0.21919895708560944,
-0.02909724973142147,
0.275401771068573,
0.3738211989402771,
-0.24099063873291016,
-0.29832902550697327,
-0.14014437794685364,
-0.6346516609191895,
-0.10875061899423599,
0.5304608941078186,
-0.3367459177970886,
-0.10440796613693237,
0.3292813003063202,
0.8881406784057617,
-0.02261037938296795,
-0.24623322486877441,
0.5943264961242676,
-0.06374100595712662,
-0.4200311303138733,
-0.38280045986175537,
0.0013656216906383634,
0.15705329179763794,
0.23714891076087952,
0.059760451316833496,
0.09127011150121689,
-0.11455893516540527,
-0.40490493178367615,
0.41346219182014465,
0.2421034723520279,
-0.4159955084323883,
-0.5072139501571655,
0.5916911959648132,
0.07739075273275375,
-0.12130875885486603,
0.4881191849708557,
-0.15478941798210144,
-0.6104753613471985,
0.7859761118888855,
0.1104840636253357,
0.8064393401145935,
-0.14729352295398712,
0.3558879792690277,
0.7266964912414551,
0.20910663902759552,
-0.04492572322487831,
0.5471285581588745,
-0.20272988080978394,
-0.637756884098053,
-0.0639563575387001,
-0.5653541088104248,
-0.09838911890983582,
0.06657925993204117,
-0.8435710072517395,
0.437639445066452,
-0.4840342104434967,
-0.24566878378391266,
0.027080677449703217,
0.4137223958969116,
-0.738773763179779,
0.21860462427139282,
-0.039726968854665756,
1.0531443357467651,
-1.0439696311950684,
0.4475715160369873,
0.712630033493042,
-0.6664547324180603,
-1.172787070274353,
-0.14406073093414307,
0.20321024954319,
-0.580941915512085,
0.18332557380199432,
0.19342245161533356,
0.5212565660476685,
-0.06417595595121384,
-0.9187889099121094,
-0.6357902884483337,
1.1811602115631104,
0.011450200341641903,
-0.2070639282464981,
0.33838337659835815,
0.12752048671245575,
0.6370610594749451,
-0.3483120799064636,
0.32276734709739685,
0.6377860307693481,
0.6805812120437622,
0.31603750586509705,
-0.7063664793968201,
0.3021795153617859,
-0.6420819163322449,
-0.23512691259384155,
0.0713265910744667,
-1.0314483642578125,
0.6037482023239136,
-0.17900791764259338,
-0.026555251330137253,
0.01084510050714016,
0.6227082014083862,
0.4575430750846863,
0.435481995344162,
0.4429866075515747,
0.7662543058395386,
0.8134599924087524,
-0.33252373337745667,
1.234419822692871,
-0.26750069856643677,
0.6215159296989441,
0.751132607460022,
0.03874540701508522,
0.5098426938056946,
0.24939805269241333,
-0.3333832323551178,
0.5357444286346436,
0.6649504899978638,
-0.44647112488746643,
0.2364339381456375,
0.39706650376319885,
-0.04899568483233452,
-0.08831518143415451,
-0.27542054653167725,
-0.596022367477417,
0.30551791191101074,
0.22456929087638855,
-0.30572953820228577,
0.01614529825747013,
-0.025738058611750603,
0.38391628861427307,
-0.043426040560007095,
-0.26747384667396545,
0.650496244430542,
0.06580521911382675,
-0.35283514857292175,
0.5168295502662659,
-0.18936966359615326,
0.6737436056137085,
-0.5823149085044861,
0.15705783665180206,
-0.10206650197505951,
0.12837404012680054,
-0.6251541972160339,
-1.1055430173873901,
0.39455902576446533,
-0.07295026630163193,
-0.24881871044635773,
-0.35398155450820923,
0.7455356121063232,
-0.4474296569824219,
-0.7968823909759521,
0.21440987288951874,
0.20362553000450134,
0.30088305473327637,
0.1473483443260193,
-1.2811591625213623,
0.6010984778404236,
0.1408013254404068,
-0.46803054213523865,
0.12336993217468262,
0.5237751007080078,
0.1531122773885727,
0.5298477411270142,
0.7127767205238342,
0.24406206607818604,
-0.24536147713661194,
0.05281263217329979,
1.1067849397659302,
-0.5470018982887268,
-0.4687133729457855,
-0.7401005029678345,
0.9197056293487549,
-0.3915560841560364,
-0.4285343587398529,
0.6973564624786377,
0.7668842077255249,
0.8802087306976318,
0.011806379072368145,
0.8132723569869995,
-0.65254145860672,
0.6592271327972412,
-0.2017797827720642,
0.9426523447036743,
-0.7040939331054688,
-0.0740482434630394,
-0.7197359800338745,
-0.5334957242012024,
-0.40450042486190796,
0.6474741697311401,
-0.21387799084186554,
0.19802112877368927,
0.2705090343952179,
0.9014104604721069,
0.037748243659734726,
0.14295949041843414,
-0.25599679350852966,
0.2734479308128357,
0.2971513569355011,
0.5257141590118408,
0.4338304400444031,
-0.8992850184440613,
0.34629711508750916,
-0.784803032875061,
-0.3095560669898987,
0.035912733525037766,
-0.841862678527832,
-0.8981748223304749,
-0.9586933255195618,
-0.6916689872741699,
-0.7980504631996155,
-0.29673951864242554,
1.0712894201278687,
0.7135050296783447,
-0.6941876411437988,
-0.26137515902519226,
0.07000109553337097,
0.2541976273059845,
-0.08865536749362946,
-0.3189832270145416,
0.6438356041908264,
0.37541431188583374,
-0.6106605529785156,
-0.1497286707162857,
0.0011745825177058578,
0.2490188330411911,
0.060281164944171906,
-0.09991223365068436,
-0.10743046551942825,
-0.28087472915649414,
0.33784034848213196,
0.4729757010936737,
-0.31293758749961853,
-0.10290460288524628,
-0.22678405046463013,
0.030521996319293976,
0.17088159918785095,
0.4691418707370758,
-0.5122617483139038,
0.19874735176563263,
0.6653099060058594,
0.28520864248275757,
0.47549739480018616,
0.21936148405075073,
0.02383485622704029,
-0.48686036467552185,
0.09254563599824905,
-0.018442802131175995,
0.2942100763320923,
0.4228593409061432,
-0.4485948979854584,
0.7952554225921631,
0.5895970463752747,
-0.49881666898727417,
-0.8301180601119995,
-0.14975643157958984,
-1.334795594215393,
0.10620015859603882,
1.0413058996200562,
0.008547570556402206,
-0.5699853301048279,
0.08171569555997849,
-0.2272731363773346,
0.1437930017709732,
-0.5547941327095032,
0.4526737332344055,
0.5454094409942627,
-0.09902539849281311,
0.11757568269968033,
-0.3417815864086151,
0.6311987042427063,
-0.028883974999189377,
-0.9962128400802612,
0.17204385995864868,
0.4220459759235382,
0.4543316066265106,
0.31573009490966797,
0.7744883298873901,
-0.2749361991882324,
0.05742053687572479,
-0.0409330315887928,
0.28237804770469666,
-0.28055664896965027,
0.02880803681910038,
-0.34799742698669434,
-0.13842763006687164,
-0.5070188641548157,
-0.2193261682987213
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/arctic-monkeys | huggingartists | 2022-10-25T09:23:30Z | 293 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:23:30Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/arctic-monkeys"
## 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.246691 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/12c27f4fbb06ef32dc1c1e432098f447.570x570x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/arctic-monkeys">
<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">Arctic Monkeys</div>
<a href="https://genius.com/artists/arctic-monkeys">
<div style="text-align: center; font-size: 14px;">@arctic-monkeys</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/arctic-monkeys).
### 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/arctic-monkeys")
```
## 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|
|------:|---------:|---:|
|186| -| -|
'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/arctic-monkeys")
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.6317495703697205,
-0.4785442352294922,
0.06617345660924911,
0.2780304253101349,
-0.2630232870578766,
0.11486789584159851,
-0.3305462896823883,
-0.472120076417923,
0.8816190958023071,
0.3158766031265259,
-0.8973150253295898,
-0.8270177841186523,
-0.5299298763275146,
0.148738294839859,
-0.058684103190898895,
1.308373212814331,
-0.17664220929145813,
-0.4232155680656433,
-0.35585764050483704,
-0.26924028992652893,
-0.29589807987213135,
-0.317992627620697,
-0.3229183554649353,
-0.3338058888912201,
0.39365777373313904,
0.4921179711818695,
0.779287576675415,
0.8632763624191284,
0.5090206265449524,
0.3178531527519226,
-0.1501978486776352,
-0.005725712515413761,
-0.37978723645210266,
-0.10120539367198944,
0.17680709064006805,
-0.2531362771987915,
-0.6782229542732239,
0.26713401079177856,
0.5278238654136658,
0.40522417426109314,
-0.1133916899561882,
0.4745214283466339,
0.05361085385084152,
0.804739236831665,
-0.2665228247642517,
0.48972034454345703,
-0.25047600269317627,
-0.16273942589759827,
-0.2723381221294403,
0.11235330998897552,
0.1891649216413498,
-0.5812622308731079,
-0.05483106151223183,
-0.8389107584953308,
0.021035868674516678,
0.046176277101039886,
0.9999905228614807,
0.0389917716383934,
0.11764103174209595,
-0.1943902224302292,
-0.1576031595468521,
0.5651240944862366,
-0.6207841634750366,
-0.03351107984781265,
0.6024770736694336,
0.09705892205238342,
0.03248677775263786,
-0.6076772809028625,
-0.6790921688079834,
0.047054290771484375,
-0.1666637808084488,
0.2804338037967682,
-0.19900013506412506,
-0.31286531686782837,
0.5282160043716431,
0.5178990364074707,
-0.5354932546615601,
-0.2377668172121048,
-0.5603835582733154,
-0.12931273877620697,
1.2150332927703857,
0.1674349009990692,
0.4190950393676758,
-0.44070711731910706,
-0.14977099001407623,
-0.4278939664363861,
-0.26663482189178467,
0.3536306917667389,
0.5441260933876038,
0.4253205955028534,
-1.0516555309295654,
0.6228209733963013,
-0.18073967099189758,
0.5183241963386536,
0.1118856891989708,
-0.023852191865444183,
0.8027209043502808,
-0.3818598687648773,
-0.07235173135995865,
-0.12553583085536957,
1.0697317123413086,
0.6582523584365845,
0.1356421709060669,
0.09176797419786453,
-0.10091996937990189,
0.028512489050626755,
-0.16807769238948822,
-0.7651199698448181,
-0.4540763795375824,
0.6234869956970215,
-0.5693979263305664,
-0.612201452255249,
0.09166385978460312,
-0.9240075349807739,
-0.18017128109931946,
-0.3081492483615875,
0.2721385061740875,
-0.37979745864868164,
-0.566224217414856,
0.1613466441631317,
-0.29072871804237366,
0.13669978082180023,
0.07854403555393219,
-0.5787383317947388,
0.22572438418865204,
0.6024042963981628,
0.7937811017036438,
0.17265738546848297,
-0.2732577621936798,
-0.21466882526874542,
-0.16943131387233734,
-0.15178745985031128,
0.6489659547805786,
-0.3491290211677551,
-0.3646639883518219,
-0.22613897919654846,
0.3097146153450012,
-0.024432333186268806,
-0.2581472396850586,
0.824000358581543,
0.00625306461006403,
0.18305173516273499,
-0.5791509747505188,
-0.36659079790115356,
-0.03206375241279602,
0.28885409235954285,
-0.7671540975570679,
1.083796739578247,
0.3133229613304138,
-0.9875162243843079,
0.1680644452571869,
-0.8796750903129578,
-0.35373586416244507,
0.04154534265398979,
0.08154401928186417,
-0.7957473993301392,
-0.2064192295074463,
0.2184067815542221,
0.6835556626319885,
-0.34536153078079224,
0.026582984253764153,
-0.6383140087127686,
-0.08562963455915451,
0.3803695738315582,
0.2684350311756134,
1.2070860862731934,
0.14375421404838562,
-0.08166252821683884,
0.06265012919902802,
-0.9121267199516296,
0.14760152995586395,
0.4544524848461151,
-0.2091900259256363,
-0.12159212678670883,
-0.20769177377223969,
0.40792328119277954,
0.277528315782547,
0.043505530804395676,
-0.6219716668128967,
0.4498964250087738,
-0.14461715519428253,
0.5404528379440308,
0.7336030602455139,
-0.004475609865039587,
0.2804471254348755,
-0.6626102924346924,
0.420043408870697,
0.08848050981760025,
0.35623785853385925,
-0.007164069451391697,
-0.6160937547683716,
-0.4041459262371063,
-0.2666987180709839,
0.3074450194835663,
0.4205501079559326,
-0.696797788143158,
0.9542022347450256,
-0.33179524540901184,
-0.836044430732727,
-0.6062242984771729,
0.12285730242729187,
0.16307608783245087,
0.49519750475883484,
0.3585108518600464,
-0.4690302908420563,
-0.5629023313522339,
-0.634779155254364,
0.11447160691022873,
-0.30065497756004333,
0.17852123081684113,
0.4445970058441162,
0.8265695571899414,
-0.23978149890899658,
0.858285129070282,
-0.6982957720756531,
-0.20366227626800537,
-0.2633897066116333,
-0.2664766013622284,
0.42752745747566223,
0.8396859765052795,
0.6838163733482361,
-0.8190200924873352,
-0.48737743496894836,
-0.26376280188560486,
-0.6887444257736206,
-0.06252471357584,
-0.04848164692521095,
-0.2372032105922699,
-0.00846159178763628,
0.13414596021175385,
-0.7482625842094421,
0.5298781991004944,
0.47671326994895935,
-0.6156129837036133,
0.5579087734222412,
0.09949959814548492,
-0.02254655584692955,
-1.2316315174102783,
0.3930663466453552,
0.20604971051216125,
0.06019509583711624,
-0.5863139033317566,
-0.2283596247434616,
-0.07233252376317978,
-0.05620914325118065,
-0.08418478816747665,
0.5836698412895203,
-0.3375891447067261,
0.30252838134765625,
0.1655658483505249,
0.05275510996580124,
0.10154601186513901,
0.48245349526405334,
-0.03956163674592972,
0.2605816423892975,
1.0293668508529663,
-0.39099955558776855,
0.6574444770812988,
0.6071233749389648,
-0.21966831386089325,
0.7893737554550171,
-0.8144029974937439,
0.11099812388420105,
-0.2664194107055664,
0.42393243312835693,
-0.8552000522613525,
-0.5086902976036072,
0.8247715830802917,
-0.7332521080970764,
0.4060012102127075,
-0.19483208656311035,
-0.5490419864654541,
-0.802244246006012,
-0.7002785801887512,
0.22448064386844635,
0.5271241664886475,
-0.378606379032135,
0.4052619934082031,
0.5933682918548584,
0.05105213075876236,
-0.41201868653297424,
-0.7649102210998535,
-0.09355881810188293,
-0.3691972494125366,
-0.7972626090049744,
0.39935004711151123,
-0.3680715560913086,
-0.09875529259443283,
0.16713900864124298,
0.09462105482816696,
0.14655929803848267,
0.0328899510204792,
0.3817325830459595,
0.3044188320636749,
0.011137782596051693,
0.018746566027402878,
-0.08372331410646439,
-0.19116419553756714,
0.14813925325870514,
-0.21839600801467896,
0.2305644303560257,
-0.2683793008327484,
-0.08890382945537567,
-0.6362734436988831,
0.19765689969062805,
0.46244192123413086,
-0.2658366858959198,
0.6336793899536133,
0.7607733607292175,
-0.2516532242298126,
-0.0094098299741745,
-0.4836355745792389,
-0.15675269067287445,
-0.41503047943115234,
0.03353048861026764,
-0.19214625656604767,
-0.5809412598609924,
0.9436725378036499,
0.2432980090379715,
0.10082303732633591,
0.6861151456832886,
0.40060341358184814,
-0.097530297935009,
0.7324643731117249,
0.36369383335113525,
-0.3260073661804199,
0.47355636954307556,
-0.6906256079673767,
-0.19537261128425598,
-0.910159170627594,
-0.4580235183238983,
-0.4985094964504242,
-0.5274136662483215,
-0.8515966534614563,
-0.4159080386161804,
0.19334393739700317,
0.1437072604894638,
-0.26051387190818787,
0.434293270111084,
-0.9587717652320862,
0.30755361914634705,
0.3612651824951172,
0.25721579790115356,
-0.13467088341712952,
0.09722524136304855,
0.005392948165535927,
0.17351701855659485,
-0.5982829332351685,
-0.23418976366519928,
1.1634912490844727,
0.4865192472934723,
0.616383969783783,
-0.05800493061542511,
0.7654153108596802,
0.0696398988366127,
0.25840798020362854,
-0.5052669048309326,
0.4839480221271515,
0.04294130578637123,
-0.5355966687202454,
-0.1602611094713211,
-0.4508363604545593,
-0.878816545009613,
-0.1775362193584442,
-0.4624243676662445,
-0.7299923896789551,
0.5117918252944946,
0.07767171412706375,
-0.2791838049888611,
0.40355929732322693,
-0.5718244314193726,
0.8038652539253235,
-0.09514185786247253,
-0.4421451985836029,
0.2545735538005829,
-1.0656465291976929,
0.1986936628818512,
0.16782133281230927,
0.27740100026130676,
-0.42108896374702454,
0.016647618263959885,
1.0514287948608398,
-0.7864066958427429,
0.9301142692565918,
-0.3332771062850952,
0.1955810785293579,
0.5974544286727905,
-0.30800876021385193,
0.43497103452682495,
0.18398231267929077,
-0.28152725100517273,
0.3865183889865875,
0.030117789283394814,
-0.42549505829811096,
-0.3773343563079834,
0.65611732006073,
-0.8044684529304504,
0.014749663881957531,
-0.41892412304878235,
-0.4755991995334625,
0.08069029450416565,
0.1657971739768982,
0.21580924093723297,
0.3374539017677307,
0.04849869757890701,
0.13387221097946167,
0.4231443703174591,
-0.20841872692108154,
0.31117090582847595,
0.10787006467580795,
-0.09712620079517365,
-0.8158655166625977,
0.9168536067008972,
0.10338496416807175,
0.04869284853339195,
-0.0374421551823616,
0.41569459438323975,
-0.34472396969795227,
-0.1428634524345398,
-0.5710428953170776,
0.47812420129776,
-0.4235594868659973,
-0.4355003237724304,
-0.5300354957580566,
-0.18935595452785492,
-0.6550825238227844,
-0.17640744149684906,
-0.21373704075813293,
-0.5609239935874939,
-0.347368448972702,
-0.19069620966911316,
1.0782393217086792,
0.5301934480667114,
-0.76121586561203,
0.14530731737613678,
-0.49350592494010925,
0.27268826961517334,
-0.048823971301317215,
0.6166952252388,
-0.07360760867595673,
-0.2809004783630371,
-0.19540813565254211,
0.11304369568824768,
-0.26734527945518494,
-0.6555487513542175,
0.2923775911331177,
-0.002744028577581048,
0.3822019398212433,
0.11354328691959381,
0.14157553017139435,
0.6682395339012146,
0.0014259213348850608,
0.6997847557067871,
0.32122889161109924,
-0.8158026337623596,
0.6825987696647644,
-0.4776851236820221,
0.18449820578098297,
0.6655473113059998,
0.37536558508872986,
-0.6679152250289917,
-0.1651596873998642,
-0.9680780172348022,
-0.8856687545776367,
0.9097604155540466,
0.4464286267757416,
0.07791244238615036,
0.20674549043178558,
0.5818999409675598,
-0.17897337675094604,
0.2772333323955536,
-0.6795625686645508,
-0.8522717356681824,
-0.41428470611572266,
-0.31325820088386536,
-0.10771424323320389,
-0.019823696464300156,
-0.24073518812656403,
-0.7174624800682068,
0.7805747985839844,
-0.1455317884683609,
0.3342173397541046,
0.38550323247909546,
0.427935391664505,
-0.24977383017539978,
-0.06596555560827255,
0.2927072048187256,
0.3655949831008911,
-0.27284297347068787,
-0.2875968813896179,
-0.13913194835186005,
-0.6742982864379883,
-0.13234728574752808,
0.45090627670288086,
-0.33068907260894775,
-0.08564621955156326,
0.3202526271343231,
0.8490958213806152,
-0.08380677551031113,
-0.2342846542596817,
0.5407605767250061,
-0.11193318665027618,
-0.37296566367149353,
-0.37130817770957947,
0.0066639394499361515,
0.1750512421131134,
0.1946985274553299,
0.09759647399187088,
0.13888338208198547,
-0.14625082910060883,
-0.40966367721557617,
0.3634563088417053,
0.2718985676765442,
-0.36587291955947876,
-0.5271481871604919,
0.6370249390602112,
0.052018970251083374,
-0.13497008383274078,
0.5637282729148865,
-0.1868845522403717,
-0.6374145746231079,
0.8443083167076111,
0.14590848982334137,
0.8042835593223572,
-0.1546669602394104,
0.3277026116847992,
0.7567173838615417,
0.2550661861896515,
-0.04357573762536049,
0.5543245673179626,
-0.25846630334854126,
-0.6485111713409424,
-0.05703464895486832,
-0.5365235805511475,
-0.13308145105838776,
0.12185897678136826,
-0.8292509317398071,
0.45505931973457336,
-0.5081443190574646,
-0.2182566225528717,
0.10900482535362244,
0.3618883490562439,
-0.71849125623703,
0.1877463012933731,
0.0029529950115829706,
1.028965950012207,
-1.0516523122787476,
0.4921186566352844,
0.7388695478439331,
-0.6756818294525146,
-1.1646932363510132,
-0.1582096815109253,
0.19384151697158813,
-0.6290884017944336,
0.2739594578742981,
0.16283367574214935,
0.5081571340560913,
-0.09691542387008667,
-1.0039608478546143,
-0.7294415831565857,
1.2012121677398682,
0.0018389533506706357,
-0.22707591950893402,
0.3639196455478668,
0.14834429323673248,
0.6004526615142822,
-0.4000774919986725,
0.36828869581222534,
0.5953176617622375,
0.6666225790977478,
0.3254995346069336,
-0.7128954529762268,
0.3239661753177643,
-0.6291130781173706,
-0.21499617397785187,
0.05881918594241142,
-1.0014146566390991,
0.6274850964546204,
-0.23868396878242493,
-0.02714851312339306,
-0.03203859180212021,
0.6064741015434265,
0.44867143034935,
0.4356352686882019,
0.47568023204803467,
0.7534744739532471,
0.8065635561943054,
-0.3174816370010376,
1.160199761390686,
-0.2816885709762573,
0.6294043660163879,
0.7530893087387085,
0.001886534970253706,
0.5292837023735046,
0.23172470927238464,
-0.3455248475074768,
0.5089167356491089,
0.6932909488677979,
-0.4148099422454834,
0.2944466769695282,
0.43144363164901733,
-0.03717938810586929,
-0.09214214980602264,
-0.2239447683095932,
-0.598661482334137,
0.27716130018234253,
0.31884849071502686,
-0.2902073264122009,
0.045914046466350555,
-0.008323590271174908,
0.3490816652774811,
-0.12860199809074402,
-0.2669357657432556,
0.6711105108261108,
0.06327517330646515,
-0.3767627477645874,
0.5695220232009888,
-0.19533970952033997,
0.695316731929779,
-0.5692470669746399,
0.12081725895404816,
-0.12774091958999634,
0.08840125054121017,
-0.6219640374183655,
-1.13517165184021,
0.374862939119339,
-0.0909925252199173,
-0.20970480144023895,
-0.3104967772960663,
0.7075049877166748,
-0.4111798107624054,
-0.7667037844657898,
0.1886831820011139,
0.1498495191335678,
0.3506729304790497,
0.17555223405361176,
-1.3080662488937378,
0.5579771399497986,
0.16726000607013702,
-0.44624853134155273,
0.08611184358596802,
0.4994356632232666,
0.1397417187690735,
0.5414033532142639,
0.7371790409088135,
0.22494611144065857,
-0.28454843163490295,
-0.01717454381287098,
1.1728326082229614,
-0.5737707018852234,
-0.462907612323761,
-0.7259004712104797,
0.8749096989631653,
-0.35870710015296936,
-0.41767242550849915,
0.6313198208808899,
0.8168430924415588,
0.8918904662132263,
0.016262685880064964,
0.848196268081665,
-0.6875969767570496,
0.6409043669700623,
-0.17353425920009613,
0.9715042114257812,
-0.7185153365135193,
0.02164950966835022,
-0.6823543906211853,
-0.5154443383216858,
-0.4504944384098053,
0.663017749786377,
-0.17524118721485138,
0.19067516922950745,
0.281788170337677,
0.9431104063987732,
-0.011468219570815563,
0.16699813306331635,
-0.26725494861602783,
0.31957563757896423,
0.28418853878974915,
0.5413346886634827,
0.4938056170940399,
-0.8643816113471985,
0.3595719039440155,
-0.8034685254096985,
-0.2792471647262573,
0.04525088891386986,
-0.8560253977775574,
-0.8608351349830627,
-0.940980851650238,
-0.7670813798904419,
-0.8011661171913147,
-0.26187777519226074,
1.085869312286377,
0.7353110313415527,
-0.7458693981170654,
-0.26748910546302795,
0.11827904731035233,
0.3195822238922119,
-0.1157604306936264,
-0.31158435344696045,
0.6500435471534729,
0.379998117685318,
-0.5063582062721252,
-0.16831989586353302,
0.015653613954782486,
0.2144310176372528,
0.07344077527523041,
-0.12789548933506012,
-0.11082737892866135,
-0.2832719087600708,
0.3473964333534241,
0.5323191285133362,
-0.3484732210636139,
-0.10664977878332138,
-0.21705110371112823,
0.049753811210393906,
0.2192659229040146,
0.4651219844818115,
-0.5631303787231445,
0.21099047362804413,
0.6281753778457642,
0.22659197449684143,
0.47929373383522034,
0.16224424540996552,
0.020723635330796242,
-0.5055935978889465,
0.020176736637949944,
0.04635857045650482,
0.2705392837524414,
0.3801840841770172,
-0.4625748097896576,
0.7689817547798157,
0.5474954843521118,
-0.5300484299659729,
-0.8482279777526855,
-0.2079901099205017,
-1.3624212741851807,
0.09292014688253403,
1.0561319589614868,
-0.013400941155850887,
-0.5547506213188171,
0.02006315253674984,
-0.21065452694892883,
0.11420385539531708,
-0.6169044375419617,
0.4752185046672821,
0.5061389803886414,
-0.10334468632936478,
0.14768430590629578,
-0.34338730573654175,
0.6276006698608398,
-0.036749791353940964,
-0.9489590525627136,
0.18490007519721985,
0.3812187910079956,
0.4860423505306244,
0.3835030198097229,
0.7416571378707886,
-0.2477704882621765,
0.059048980474472046,
-0.061276763677597046,
0.32650983333587646,
-0.23659102618694305,
0.0902935191988945,
-0.3709500730037689,
-0.1834002137184143,
-0.4473172724246979,
-0.214266836643219
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/billie-eilish | huggingartists | 2022-10-25T09:24:46Z | 293 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:24:46Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/billie-eilish"
## 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.734139 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/1aa6c04aad3652556046bb3aabe96498.900x900x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/billie-eilish">
<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">Billie Eilish</div>
<a href="https://genius.com/artists/billie-eilish">
<div style="text-align: center; font-size: 14px;">@billie-eilish</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/billie-eilish).
### 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/billie-eilish")
```
## 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|
|------:|---------:|---:|
|298| -| -|
'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/billie-eilish")
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.5881845355033875,
-0.542632520198822,
0.06565443426370621,
0.19613094627857208,
-0.25057679414749146,
-0.0784708559513092,
-0.31460490822792053,
-0.4607129991054535,
0.9043459296226501,
0.3305945098400116,
-0.8998029232025146,
-0.8455801010131836,
-0.5578310489654541,
0.16398973762989044,
-0.14485113322734833,
1.3393830060958862,
-0.2657848298549652,
-0.3583202362060547,
-0.40066400170326233,
-0.2633812129497528,
-0.2642070949077606,
-0.3448408842086792,
-0.2384984940290451,
-0.28057974576950073,
0.42103680968284607,
0.5141515135765076,
0.7113550305366516,
0.8478531241416931,
0.43365851044654846,
0.33291327953338623,
-0.09435968101024628,
-0.035806603729724884,
-0.44446346163749695,
-0.048248644918203354,
0.1969132125377655,
-0.34977734088897705,
-0.6771469712257385,
0.2377997189760208,
0.5636792182922363,
0.4237138032913208,
-0.1050795316696167,
0.5730311870574951,
0.03613099828362465,
0.851128101348877,
-0.3254605233669281,
0.4594293236732483,
-0.25357237458229065,
-0.15011459589004517,
-0.3280714154243469,
0.07126690447330475,
0.21930572390556335,
-0.6041702628135681,
-0.054977212101221085,
-0.8315504789352417,
0.1096322312951088,
0.01098284125328064,
1.0304725170135498,
0.11857549101114273,
0.12668082118034363,
-0.23005980253219604,
-0.14632995426654816,
0.5228226780891418,
-0.5653622150421143,
0.015223056077957153,
0.5856071710586548,
0.06176815181970596,
0.022028189152479172,
-0.5850854516029358,
-0.6652945280075073,
0.12636509537696838,
-0.16915178298950195,
0.24409058690071106,
-0.07195064425468445,
-0.34158533811569214,
0.5986899137496948,
0.5479021072387695,
-0.5905284285545349,
-0.29439327120780945,
-0.5281374454498291,
-0.09134529531002045,
1.1530958414077759,
0.13655789196491241,
0.466636061668396,
-0.5021036863327026,
-0.20857121050357819,
-0.3824293911457062,
-0.25851961970329285,
0.29117900133132935,
0.5594086647033691,
0.45996958017349243,
-0.9880484342575073,
0.668100118637085,
-0.08039957284927368,
0.5555742979049683,
0.12490618228912354,
-0.09962034970521927,
0.7887042164802551,
-0.3940959870815277,
-0.13529682159423828,
-0.12810756266117096,
0.9530808329582214,
0.7141530513763428,
0.18818651139736176,
0.11042597889900208,
-0.08293141424655914,
0.09761319309473038,
-0.20553164184093475,
-0.798775851726532,
-0.46153926849365234,
0.6716601252555847,
-0.5855036973953247,
-0.5399417281150818,
0.11300348490476608,
-1.0098118782043457,
-0.20334647595882416,
-0.40483036637306213,
0.27497121691703796,
-0.3532309830188751,
-0.6177749037742615,
0.0866624116897583,
-0.3354629874229431,
0.18085522949695587,
0.07341442257165909,
-0.6150302290916443,
0.1927541345357895,
0.6260256767272949,
0.7343158721923828,
0.2472347915172577,
-0.30304110050201416,
-0.2941852807998657,
-0.12902769446372986,
-0.09537848830223083,
0.6188400387763977,
-0.3423685133457184,
-0.35669130086898804,
-0.14255087077617645,
0.3680720329284668,
-0.1397484838962555,
-0.27291038632392883,
0.9675753712654114,
0.07956505566835403,
0.19120430946350098,
-0.6601017117500305,
-0.520142674446106,
0.021658634766936302,
0.2524644732475281,
-0.7998891472816467,
1.1012364625930786,
0.36809995770454407,
-1.097812294960022,
0.25852519273757935,
-0.8140828609466553,
-0.29770877957344055,
0.02248590998351574,
0.035642318427562714,
-0.7809937000274658,
-0.19099698960781097,
0.20104628801345825,
0.7091650366783142,
-0.29478004574775696,
-0.02288193255662918,
-0.6601388454437256,
-0.15975148975849152,
0.3490663766860962,
0.3072119355201721,
1.1902525424957275,
0.10879335552453995,
-0.0872095450758934,
0.06050850823521614,
-0.9843571782112122,
0.12674230337142944,
0.5286436080932617,
-0.13805195689201355,
-0.18464791774749756,
-0.31892555952072144,
0.5632205605506897,
0.24588508903980255,
0.07193197309970856,
-0.5755634307861328,
0.37972405552864075,
-0.14402949810028076,
0.4647643566131592,
0.7247272729873657,
-0.05919177830219269,
0.2751835584640503,
-0.7172640562057495,
0.4487912952899933,
0.057837847620248795,
0.32734382152557373,
-0.03411831334233284,
-0.5566914081573486,
-0.4029507637023926,
-0.3119409680366516,
0.4386207163333893,
0.4551413059234619,
-0.6396114230155945,
0.9981890320777893,
-0.35044020414352417,
-0.7810153365135193,
-0.6685787439346313,
0.1458122879266739,
0.11754333227872849,
0.4855653941631317,
0.33087220788002014,
-0.4089498221874237,
-0.5963518023490906,
-0.6292359828948975,
0.05652369558811188,
-0.2902701497077942,
0.18236640095710754,
0.37705814838409424,
0.8150904774665833,
-0.22787334024906158,
0.8311343789100647,
-0.6573213934898376,
-0.21088053286075592,
-0.1824163943529129,
-0.2887481451034546,
0.35297635197639465,
0.7952759265899658,
0.7470382452011108,
-0.8892260193824768,
-0.49300912022590637,
-0.3245602250099182,
-0.7000554203987122,
-0.11050061136484146,
-0.038301680237054825,
-0.3220149874687195,
0.02493988536298275,
0.021774999797344208,
-0.7685338854789734,
0.5463113784790039,
0.43270158767700195,
-0.6633027791976929,
0.5774363279342651,
0.11380612850189209,
0.026390288025140762,
-1.2667434215545654,
0.3717300295829773,
0.27300846576690674,
-0.0004955438198521733,
-0.5807543992996216,
-0.12195784598588943,
-0.04600492864847183,
-0.02657829411327839,
-0.02120331861078739,
0.5619297623634338,
-0.3389020264148712,
0.21673566102981567,
0.16585992276668549,
0.10449576377868652,
0.16399554908275604,
0.3832069933414459,
-0.08489016443490982,
0.17872613668441772,
1.0139349699020386,
-0.36642393469810486,
0.6462865471839905,
0.6153568029403687,
-0.17397449910640717,
0.9281289577484131,
-0.774630606174469,
0.10350735485553741,
-0.30385535955429077,
0.4128963351249695,
-0.8504614233970642,
-0.5748600959777832,
0.7767705321311951,
-0.651861310005188,
0.5320637226104736,
-0.2962456941604614,
-0.6361790299415588,
-0.8066553473472595,
-0.6844200491905212,
0.17641982436180115,
0.5224026441574097,
-0.4068659543991089,
0.40541696548461914,
0.6006166934967041,
0.02616618573665619,
-0.3314984440803528,
-0.7598299384117126,
-0.178836390376091,
-0.4488271474838257,
-0.8365353345870972,
0.3795890510082245,
-0.41301700472831726,
-0.08891646564006805,
0.16961880028247833,
0.16946768760681152,
0.13749577105045319,
0.0412839874625206,
0.36101147532463074,
0.3233001232147217,
0.09705505520105362,
0.07258443534374237,
-0.08934596925973892,
-0.18650485575199127,
0.13460297882556915,
-0.21103528141975403,
0.18601663410663605,
-0.19526922702789307,
-0.16232796013355255,
-0.6253263354301453,
0.24883300065994263,
0.4495261609554291,
-0.19943547248840332,
0.6423642635345459,
0.8938218951225281,
-0.31492266058921814,
0.00441894493997097,
-0.4902828633785248,
-0.07572007924318314,
-0.3873935043811798,
0.0361812561750412,
-0.2863536477088928,
-0.5333102345466614,
0.915365993976593,
0.206513449549675,
0.12308157980442047,
0.6808240413665771,
0.47809264063835144,
-0.10153325647115707,
0.6333706974983215,
0.36894503235816956,
-0.28183987736701965,
0.5068886280059814,
-0.6346292495727539,
-0.2802869975566864,
-0.8754913806915283,
-0.337918221950531,
-0.4832134544849396,
-0.5400899052619934,
-0.9010239243507385,
-0.4361324608325958,
0.16113540530204773,
0.17185477912425995,
-0.21187692880630493,
0.42599859833717346,
-0.9798853993415833,
0.27741071581840515,
0.32457754015922546,
0.26403382420539856,
-0.13405458629131317,
0.10219258069992065,
0.04249131679534912,
0.1183914914727211,
-0.5557146668434143,
-0.26504307985305786,
1.2481019496917725,
0.5623156428337097,
0.5776064395904541,
-0.05784384161233902,
0.9196357131004333,
0.026076393201947212,
0.2441791146993637,
-0.4886111915111542,
0.4057985842227936,
0.06025862693786621,
-0.5247694253921509,
-0.21066337823867798,
-0.4812551736831665,
-0.8546591997146606,
-0.14692693948745728,
-0.40308332443237305,
-0.655890166759491,
0.45646747946739197,
0.04815139248967171,
-0.22438934445381165,
0.3935314118862152,
-0.6603000164031982,
0.7912412285804749,
-0.07534627616405487,
-0.49967989325523376,
0.31414464116096497,
-0.9977105259895325,
0.21306705474853516,
0.1640278846025467,
0.33242177963256836,
-0.39759305119514465,
0.01563429646193981,
1.0385586023330688,
-0.7833196520805359,
0.9211204648017883,
-0.42770639061927795,
0.112362802028656,
0.5466201305389404,
-0.3617025911808014,
0.4606574475765228,
0.0974806696176529,
-0.27318811416625977,
0.26098957657814026,
0.18770961463451385,
-0.5200394988059998,
-0.4534012973308563,
0.7064996361732483,
-0.7579848766326904,
0.07090380787849426,
-0.31328827142715454,
-0.4475216865539551,
0.09463851898908615,
0.10714809596538544,
0.2221561074256897,
0.38834723830223083,
-0.01462628971785307,
0.05518461391329765,
0.4044037461280823,
-0.09133902937173843,
0.23349633812904358,
-0.008425655774772167,
-0.20423832535743713,
-0.809805154800415,
0.8982958197593689,
0.26644715666770935,
0.006675821263343096,
-0.05155528709292412,
0.40643662214279175,
-0.40993788838386536,
-0.08814585953950882,
-0.6818549036979675,
0.48482370376586914,
-0.46329402923583984,
-0.3223437964916229,
-0.5342856645584106,
-0.11186819523572922,
-0.64588862657547,
-0.1229550689458847,
-0.14920829236507416,
-0.5839515328407288,
-0.3359740078449249,
-0.2604374587535858,
1.070202112197876,
0.5610904097557068,
-0.6988080143928528,
0.037716999650001526,
-0.5290724039077759,
0.2822304964065552,
-0.03870413452386856,
0.617014467716217,
-0.06557206809520721,
-0.31534507870674133,
-0.24185848236083984,
0.06585973501205444,
-0.20879660546779633,
-0.7344653606414795,
0.2497560977935791,
-0.03096855990588665,
0.3820357024669647,
0.1374070793390274,
0.162479430437088,
0.7051265835762024,
-0.01808961108326912,
0.6889958381652832,
0.3200879693031311,
-0.7422188520431519,
0.6800261735916138,
-0.4886154532432556,
0.09627419710159302,
0.7324929237365723,
0.3758501708507538,
-0.5594587326049805,
-0.039153970777988434,
-0.9844545125961304,
-0.8939923048019409,
0.7405179738998413,
0.4351986348628998,
0.021247748285531998,
0.22448332607746124,
0.6568083167076111,
-0.0818779394030571,
0.3045639395713806,
-0.6176683902740479,
-0.8761829733848572,
-0.41517874598503113,
-0.38888752460479736,
-0.0674000233411789,
-0.08529166877269745,
-0.30332663655281067,
-0.7435404062271118,
0.7581087946891785,
-0.19134169816970825,
0.30689698457717896,
0.4371972680091858,
0.3613094389438629,
-0.3531123399734497,
-0.025738749653100967,
0.2305690497159958,
0.35853463411331177,
-0.2546958327293396,
-0.34753674268722534,
-0.1572083681821823,
-0.5755904912948608,
-0.11226711422204971,
0.5442320704460144,
-0.3870408236980438,
-0.06977678835391998,
0.3344142735004425,
0.870704710483551,
0.03425735607743263,
-0.18903572857379913,
0.5234209895133972,
-0.11592326313257217,
-0.36453405022621155,
-0.4729623794555664,
-0.02140059322118759,
0.18975019454956055,
0.18462678790092468,
0.016645319759845734,
0.04869413748383522,
-0.10421030968427658,
-0.43389007449150085,
0.42554664611816406,
0.21551652252674103,
-0.31391793489456177,
-0.5432407855987549,
0.5992221832275391,
0.06211789697408676,
-0.11139202117919922,
0.4562004506587982,
-0.178350031375885,
-0.6333515644073486,
0.7670803666114807,
0.1393640786409378,
0.8110708594322205,
-0.1127689853310585,
0.32935741543769836,
0.7884031534194946,
0.15372119843959808,
-0.038715191185474396,
0.6476297378540039,
-0.22538109123706818,
-0.5894535183906555,
-0.0065622590482234955,
-0.6281410455703735,
-0.11774377524852753,
0.035386823117733,
-0.9242071509361267,
0.4465073049068451,
-0.46588629484176636,
-0.2659645080566406,
0.0016753098461776972,
0.46008747816085815,
-0.8607035279273987,
0.1867666244506836,
0.03462773561477661,
1.0150920152664185,
-1.0994805097579956,
0.42921191453933716,
0.7493053674697876,
-0.7106443643569946,
-1.173348307609558,
-0.08185116946697235,
0.22546133399009705,
-0.5351366400718689,
0.21382197737693787,
0.2159428596496582,
0.6042145490646362,
-0.09230653941631317,
-0.9230961203575134,
-0.6790996789932251,
1.2672827243804932,
0.050378669053316116,
-0.2777657210826874,
0.32770708203315735,
0.08704710751771927,
0.61567223072052,
-0.42188316583633423,
0.41333645582199097,
0.6510424017906189,
0.7385109663009644,
0.316480815410614,
-0.7455242872238159,
0.2856607735157013,
-0.646000325679779,
-0.22634348273277283,
0.042430002242326736,
-1.0523316860198975,
0.6704235672950745,
-0.22701793909072876,
-0.06136094033718109,
0.03742211312055588,
0.6480323672294617,
0.4831655025482178,
0.4750047028064728,
0.5325526595115662,
0.8623034954071045,
0.9846386909484863,
-0.2832335829734802,
1.2199738025665283,
-0.26700103282928467,
0.6116003394126892,
0.8264559507369995,
-0.0733279213309288,
0.588012158870697,
0.23846745491027832,
-0.4227893352508545,
0.5596947073936462,
0.7475152611732483,
-0.37142473459243774,
0.19899578392505646,
0.4486679434776306,
0.005469904281198978,
-0.07484866678714752,
-0.246389240026474,
-0.6219769716262817,
0.28155842423439026,
0.26466432213783264,
-0.342466801404953,
0.06982233375310898,
-0.07043638080358505,
0.3323117792606354,
-0.05317695811390877,
-0.26612916588783264,
0.6270503401756287,
0.07143513113260269,
-0.2867319583892822,
0.5393891930580139,
-0.25709015130996704,
0.6833212375640869,
-0.5165807604789734,
0.12185908854007721,
-0.03269292414188385,
0.03823330998420715,
-0.6436556577682495,
-1.0491132736206055,
0.3347507417201996,
-0.08252459019422531,
-0.31457841396331787,
-0.2717271149158478,
0.7339230179786682,
-0.5336663126945496,
-0.8548246026039124,
0.28308606147766113,
0.26699504256248474,
0.3633018434047699,
0.1944350153207779,
-1.3274577856063843,
0.550361692905426,
0.10391518473625183,
-0.44936680793762207,
0.17785927653312683,
0.551260232925415,
0.22380535304546356,
0.428390771150589,
0.7089250087738037,
0.2554725110530853,
-0.2330651730298996,
0.15461187064647675,
1.1230379343032837,
-0.5848396420478821,
-0.5046907663345337,
-0.6509305238723755,
0.8742081522941589,
-0.3492204248905182,
-0.349102646112442,
0.6593600511550903,
0.7903292775154114,
0.896210253238678,
0.03727526590228081,
0.8943297863006592,
-0.6077247858047485,
0.7358106374740601,
-0.25069671869277954,
0.9301126003265381,
-0.7382723689079285,
-0.09548021107912064,
-0.7283458709716797,
-0.5605457425117493,
-0.3432985246181488,
0.6466833353042603,
-0.17020437121391296,
0.24973276257514954,
0.24591948091983795,
0.9098509550094604,
0.028608692809939384,
0.19542713463306427,
-0.1917160451412201,
0.31412291526794434,
0.23433290421962738,
0.5148531794548035,
0.4327426552772522,
-0.9040014147758484,
0.2369319647550583,
-0.7437330484390259,
-0.3077852427959442,
0.060843575745821,
-0.8635317087173462,
-0.8894919157028198,
-0.9721173048019409,
-0.7469090819358826,
-0.7685196995735168,
-0.30899447202682495,
1.184930682182312,
0.7310532927513123,
-0.7608081102371216,
-0.1918056309223175,
0.16396017372608185,
0.29673317074775696,
-0.07624729722738266,
-0.32365015149116516,
0.6809138655662537,
0.3867008090019226,
-0.6340896487236023,
-0.2039852887392044,
-0.05495215952396393,
0.23022453486919403,
-0.048978324979543686,
-0.10378401726484299,
-0.11017607897520065,
-0.315426766872406,
0.3301096260547638,
0.4289085566997528,
-0.37648481130599976,
-0.09426809102296829,
-0.33630967140197754,
0.09868893772363663,
0.13339580595493317,
0.4934963285923004,
-0.49017035961151123,
0.24944257736206055,
0.6471421122550964,
0.24122636020183563,
0.4281211495399475,
0.21889857947826385,
0.01970565691590309,
-0.4883157014846802,
0.011100826784968376,
-0.0773940458893776,
0.3766106069087982,
0.4887297451496124,
-0.5384669899940491,
0.7921254634857178,
0.5937008261680603,
-0.5370036959648132,
-0.8658106923103333,
-0.1841004192829132,
-1.2524012327194214,
0.14478664100170135,
1.0817967653274536,
-0.0648430809378624,
-0.62640780210495,
0.023882197216153145,
-0.17653509974479675,
0.1975463628768921,
-0.5629290342330933,
0.42259481549263,
0.5681062936782837,
-0.08255887776613235,
0.1100974977016449,
-0.4057537615299225,
0.5881257057189941,
-0.062459465116262436,
-0.9117363095283508,
0.21962997317314148,
0.426445871591568,
0.5193610787391663,
0.3252798020839691,
0.7836257815361023,
-0.25036486983299255,
0.0005602407036349177,
0.02330969087779522,
0.3144046366214752,
-0.224565789103508,
0.037122488021850586,
-0.388716459274292,
-0.10037454962730408,
-0.4237615168094635,
-0.17770469188690186
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/dua-lipa | huggingartists | 2022-10-25T09:28:09Z | 293 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:28:09Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/dua-lipa"
## 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.691563 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/dd37b530cf20f2ce699f91e02a476a8a.847x847x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/dua-lipa">
<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">Dua Lipa</div>
<a href="https://genius.com/artists/dua-lipa">
<div style="text-align: center; font-size: 14px;">@dua-lipa</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/dua-lipa).
### 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/dua-lipa")
```
## 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|
|------:|---------:|---:|
|454| -| -|
'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/dua-lipa")
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.6339167356491089,
-0.5225088000297546,
0.07893524318933487,
0.25134027004241943,
-0.28347012400627136,
-0.0021938704885542393,
-0.21609392762184143,
-0.42412301898002625,
0.8550649285316467,
0.3944774866104126,
-0.8743923902511597,
-0.8535152077674866,
-0.5510269403457642,
0.13144588470458984,
-0.06776321679353714,
1.2961775064468384,
-0.18761837482452393,
-0.3495858311653137,
-0.26358160376548767,
-0.2761104106903076,
-0.3810882270336151,
-0.3169839680194855,
-0.29871949553489685,
-0.329645574092865,
0.3531050980091095,
0.5179111361503601,
0.7198219299316406,
0.8636577725410461,
0.4942375421524048,
0.3550378084182739,
-0.13310343027114868,
0.0025716028176248074,
-0.3524920642375946,
-0.12948742508888245,
0.17762580513954163,
-0.26000550389289856,
-0.7038253545761108,
0.2246878445148468,
0.5725504159927368,
0.4512530267238617,
-0.10847172141075134,
0.4575513005256653,
0.044852279126644135,
0.9615967273712158,
-0.28874316811561584,
0.4738617539405823,
-0.26108163595199585,
-0.1740112602710724,
-0.26803353428840637,
0.11944624036550522,
0.24328014254570007,
-0.6213602423667908,
-0.0029090128373354673,
-0.7408028841018677,
-0.018866216763854027,
-0.058897364884614944,
1.0013535022735596,
0.12424259632825851,
0.06458231061697006,
-0.20833483338356018,
-0.16774703562259674,
0.5331400036811829,
-0.5471360087394714,
-0.01919497922062874,
0.5858737826347351,
0.16180481016635895,
-0.007452376186847687,
-0.5570375323295593,
-0.6173152923583984,
0.07398509234189987,
-0.11809207499027252,
0.2863965332508087,
-0.18126878142356873,
-0.35193583369255066,
0.5372128486633301,
0.5842291712760925,
-0.4446995258331299,
-0.19287100434303284,
-0.4807816445827484,
-0.06394588947296143,
1.1360554695129395,
0.1362883746623993,
0.438922643661499,
-0.4928027093410492,
-0.2227616161108017,
-0.4067402184009552,
-0.32144734263420105,
0.3372102975845337,
0.5735547542572021,
0.43423882126808167,
-1.0558334589004517,
0.6562923192977905,
-0.1657705307006836,
0.5255846381187439,
0.13391418755054474,
-0.030479146167635918,
0.775503396987915,
-0.423988938331604,
-0.16443590819835663,
-0.11109627783298492,
1.0427844524383545,
0.6313406825065613,
0.17849253118038177,
0.1773863285779953,
-0.05550506338477135,
0.025956546887755394,
-0.2047578990459442,
-0.8496822118759155,
-0.3861238956451416,
0.6447235941886902,
-0.5606892108917236,
-0.5740891098976135,
0.08768261969089508,
-1.0430858135223389,
-0.2360658049583435,
-0.3141823709011078,
0.2102959305047989,
-0.38614606857299805,
-0.5111226439476013,
0.18396157026290894,
-0.23610562086105347,
0.15860196948051453,
0.03632732853293419,
-0.6136012077331543,
0.22629199922084808,
0.5444440841674805,
0.7638497948646545,
0.19603338837623596,
-0.2703326940536499,
-0.29108288884162903,
-0.12053482234477997,
-0.0980621948838234,
0.6548165082931519,
-0.33384713530540466,
-0.3908421993255615,
-0.12653692066669464,
0.2832038402557373,
-0.05987229570746422,
-0.30510616302490234,
0.8928865790367126,
0.024860095232725143,
0.15400777757167816,
-0.6407095789909363,
-0.4459823668003082,
-0.00870844442397356,
0.20679964125156403,
-0.8250418901443481,
1.043593406677246,
0.2779567837715149,
-1.0232934951782227,
0.17735378444194794,
-0.8126822710037231,
-0.30389174818992615,
-0.028223631903529167,
0.047073766589164734,
-0.7912782430648804,
-0.18101537227630615,
0.266604483127594,
0.6994589567184448,
-0.3574146032333374,
-0.01584046334028244,
-0.5822144150733948,
-0.10866659879684448,
0.4287533760070801,
0.25724098086357117,
1.1965055465698242,
0.12156472355127335,
-0.12347963452339172,
0.03844792768359184,
-0.9573758840560913,
0.10882280766963959,
0.4600626528263092,
-0.1751302182674408,
-0.11429351568222046,
-0.2898218333721161,
0.3559225797653198,
0.23028108477592468,
0.08437584340572357,
-0.5964576601982117,
0.46034982800483704,
-0.23986342549324036,
0.4542278051376343,
0.750975489616394,
0.00860655214637518,
0.30440983176231384,
-0.6819993257522583,
0.40431809425354004,
0.07179651409387589,
0.3212715983390808,
0.017190372571349144,
-0.5479909181594849,
-0.46531444787979126,
-0.30753660202026367,
0.3404678404331207,
0.46143656969070435,
-0.636794924736023,
1.0310357809066772,
-0.3157934844493866,
-0.8321301341056824,
-0.6122920513153076,
0.1515793651342392,
0.20133109390735626,
0.5029262900352478,
0.3715801239013672,
-0.4235433340072632,
-0.6142770648002625,
-0.6389894485473633,
0.08683303743600845,
-0.23366016149520874,
0.17825913429260254,
0.42607811093330383,
0.873285174369812,
-0.24979937076568604,
0.8176531791687012,
-0.6789646148681641,
-0.34403756260871887,
-0.2637549638748169,
-0.3242177367210388,
0.4057594835758209,
0.7965637445449829,
0.6789395213127136,
-0.837986171245575,
-0.49369069933891296,
-0.25434938073158264,
-0.6826690435409546,
-0.11030645668506622,
0.0011948973406106234,
-0.2483324110507965,
0.09756943583488464,
0.07467678934335709,
-0.7193725109100342,
0.5475546717643738,
0.5258538722991943,
-0.6339573264122009,
0.5477846264839172,
0.0816589966416359,
0.026147980242967606,
-1.2846404314041138,
0.39591020345687866,
0.19110551476478577,
0.07582688331604004,
-0.5526996850967407,
-0.25950729846954346,
-0.13855458796024323,
-0.06468751281499863,
-0.08768818527460098,
0.6180312037467957,
-0.3411463499069214,
0.2005521059036255,
0.08744211494922638,
0.06470400840044022,
0.09737635403871536,
0.4689426124095917,
-0.056534960865974426,
0.2777753174304962,
1.03727388381958,
-0.3963071405887604,
0.6344144940376282,
0.6310688257217407,
-0.2526796758174896,
0.8242504000663757,
-0.8392849564552307,
0.06967639923095703,
-0.20426322519779205,
0.409466952085495,
-0.8486899137496948,
-0.5086178779602051,
0.7997196912765503,
-0.6499674320220947,
0.3879074454307556,
-0.2761833667755127,
-0.5632726550102234,
-0.7761884331703186,
-0.6811901926994324,
0.17760694026947021,
0.6017045378684998,
-0.397704541683197,
0.45704421401023865,
0.6705919504165649,
0.11081341654062271,
-0.44651976227760315,
-0.7625429630279541,
-0.1866845041513443,
-0.371799111366272,
-0.8061468005180359,
0.4361484944820404,
-0.36358073353767395,
-0.09434600174427032,
0.12257051467895508,
0.052052948623895645,
0.057443197816610336,
0.013794784434139729,
0.44370442628860474,
0.32357272505760193,
0.11845608800649643,
0.0011636738199740648,
-0.09308513253927231,
-0.24250255525112152,
0.08034726977348328,
-0.13985858857631683,
0.2579966187477112,
-0.32152315974235535,
-0.12330985814332962,
-0.7367560267448425,
0.2022523283958435,
0.47182244062423706,
-0.20917078852653503,
0.6768799424171448,
0.7288306355476379,
-0.24040965735912323,
-0.01749432273209095,
-0.5212334394454956,
-0.1375505030155182,
-0.4130081534385681,
-0.01332984771579504,
-0.30139902234077454,
-0.5612567067146301,
0.9799326658248901,
0.2089288979768753,
0.03783062472939491,
0.6482055187225342,
0.4628218114376068,
-0.05370255559682846,
0.6394243836402893,
0.41861650347709656,
-0.265083372592926,
0.5010585188865662,
-0.7115679979324341,
-0.27432355284690857,
-0.8965121507644653,
-0.4205147922039032,
-0.5027183890342712,
-0.47112226486206055,
-0.865401029586792,
-0.452513188123703,
0.17402227222919464,
0.1607678085565567,
-0.24042169749736786,
0.4337861239910126,
-0.9621514081954956,
0.2940540909767151,
0.32250890135765076,
0.2579599916934967,
-0.045972585678100586,
0.11664298921823502,
0.04481232911348343,
0.15531803667545319,
-0.5522936582565308,
-0.2612054646015167,
1.1553031206130981,
0.5140730738639832,
0.5927895307540894,
-0.07351966202259064,
0.8138046860694885,
0.00787379126995802,
0.22453318536281586,
-0.4965097904205322,
0.5082191824913025,
-0.02366311103105545,
-0.4685463607311249,
-0.18238727748394012,
-0.47875434160232544,
-0.9152773022651672,
-0.1300470232963562,
-0.36215949058532715,
-0.6688901782035828,
0.5010802149772644,
0.09636436402797699,
-0.22655516862869263,
0.39352914690971375,
-0.5812670588493347,
0.8700432777404785,
-0.06479472666978836,
-0.4076383113861084,
0.2676926255226135,
-0.9680653810501099,
0.19846078753471375,
0.16107650101184845,
0.2442817986011505,
-0.4466450810432434,
-0.01892826147377491,
1.023353099822998,
-0.8441870212554932,
0.9833215475082397,
-0.3609344959259033,
0.07530302554368973,
0.5881136655807495,
-0.2957499921321869,
0.49232521653175354,
0.12403217703104019,
-0.25896763801574707,
0.38733556866645813,
0.04367195442318916,
-0.43961101770401,
-0.4143097400665283,
0.7218374013900757,
-0.7838548421859741,
0.008256114087998867,
-0.40086039900779724,
-0.4339348077774048,
0.05928350239992142,
0.15252192318439484,
0.2183680534362793,
0.3261640965938568,
-0.026384076103568077,
0.1101251095533371,
0.4190497100353241,
-0.1776086390018463,
0.24801181256771088,
0.13660600781440735,
-0.07773943245410919,
-0.7900782823562622,
0.8721094727516174,
0.20013809204101562,
0.011795783415436745,
0.0036539104767143726,
0.4479657709598541,
-0.39136895537376404,
-0.18171489238739014,
-0.5708605051040649,
0.5128732919692993,
-0.43023571372032166,
-0.3900965750217438,
-0.5007089376449585,
-0.16401033103466034,
-0.6399320960044861,
-0.15388938784599304,
-0.29018986225128174,
-0.5061147212982178,
-0.3333776593208313,
-0.20066319406032562,
1.076472282409668,
0.499306321144104,
-0.702464759349823,
0.12047705054283142,
-0.5281800627708435,
0.30953943729400635,
-0.02149851806461811,
0.6421654224395752,
-0.1327817440032959,
-0.3516368865966797,
-0.14824004471302032,
0.10118912905454636,
-0.16920271515846252,
-0.7134872078895569,
0.27198028564453125,
-0.06752020120620728,
0.34939560294151306,
0.027036577463150024,
0.10401740670204163,
0.6686679124832153,
-0.040699880570173264,
0.6199225783348083,
0.3086652457714081,
-0.8576493263244629,
0.7300809025764465,
-0.4774440824985504,
0.14903272688388824,
0.7168207764625549,
0.39528584480285645,
-0.5925902128219604,
-0.06331006437540054,
-0.8972351551055908,
-0.8080304861068726,
0.7792760729789734,
0.42825329303741455,
0.0567675456404686,
0.21859875321388245,
0.562307596206665,
-0.12414782494306564,
0.2458592653274536,
-0.6692292094230652,
-0.8858449459075928,
-0.45413005352020264,
-0.3265088200569153,
0.03078089840710163,
-0.13164909183979034,
-0.2518569827079773,
-0.6456734538078308,
0.7666547894477844,
-0.12996263802051544,
0.2515098750591278,
0.42177867889404297,
0.4286331534385681,
-0.2142103761434555,
0.010905163362622261,
0.2353389412164688,
0.38065698742866516,
-0.26380327343940735,
-0.33848920464515686,
-0.11632974445819855,
-0.6149647831916809,
-0.07791232317686081,
0.528482973575592,
-0.34285202622413635,
-0.12896151840686798,
0.25093188881874084,
0.8604273200035095,
-0.02136673405766487,
-0.2808564603328705,
0.5734112858772278,
-0.07994434237480164,
-0.35725051164627075,
-0.44437482953071594,
-0.01782773993909359,
0.13452330231666565,
0.16781587898731232,
0.06443490087985992,
0.02767336554825306,
-0.14862237870693207,
-0.4292503893375397,
0.40052056312561035,
0.26830437779426575,
-0.35313063859939575,
-0.49736127257347107,
0.5553812980651855,
0.13939723372459412,
-0.08549383282661438,
0.4599098563194275,
-0.1242007166147232,
-0.5483881235122681,
0.8087207078933716,
0.09770304709672928,
0.8203966021537781,
-0.18399356305599213,
0.3347080945968628,
0.7455198168754578,
0.17996461689472198,
-0.022081585600972176,
0.5500986576080322,
-0.16822929680347443,
-0.6668951511383057,
-0.08865942806005478,
-0.6006289720535278,
-0.09785918146371841,
0.1492326259613037,
-0.772651731967926,
0.4373182952404022,
-0.4880082607269287,
-0.21887323260307312,
0.07868488878011703,
0.46292397379875183,
-0.7470499873161316,
0.11741816997528076,
-0.05998574197292328,
1.0025221109390259,
-1.0229865312576294,
0.5224723815917969,
0.6691146492958069,
-0.7432939410209656,
-1.1638368368148804,
-0.17117157578468323,
0.16449137032032013,
-0.6304216980934143,
0.34967100620269775,
0.20197933912277222,
0.45576635003089905,
-0.09858400374650955,
-0.8454111218452454,
-0.7348416447639465,
1.1878308057785034,
0.06911687552928925,
-0.2640509009361267,
0.3474130928516388,
0.14168652892112732,
0.6130755543708801,
-0.39074844121932983,
0.28712841868400574,
0.6425678133964539,
0.6998700499534607,
0.3300471901893616,
-0.7335816025733948,
0.3565937876701355,
-0.55019211769104,
-0.21193096041679382,
0.032281503081321716,
-1.021159291267395,
0.6228112578392029,
-0.2251708060503006,
-0.11801669746637344,
0.08295407891273499,
0.6295382976531982,
0.4590464234352112,
0.35739666223526,
0.45467111468315125,
0.7996724247932434,
0.8145171403884888,
-0.28741809725761414,
1.2405056953430176,
-0.2419130653142929,
0.5413429141044617,
0.8181136846542358,
-0.05319159850478172,
0.47977983951568604,
0.2191018909215927,
-0.3494751751422882,
0.6054949164390564,
0.6051961779594421,
-0.4665449261665344,
0.2349400669336319,
0.4292573928833008,
-0.02362472005188465,
-0.06460960954427719,
-0.32917237281799316,
-0.6031378507614136,
0.3405818045139313,
0.23033028841018677,
-0.29505226016044617,
0.02604132704436779,
-0.019547896459698677,
0.3512989282608032,
-0.008920361287891865,
-0.24893948435783386,
0.6583816409111023,
0.06512097269296646,
-0.3800618052482605,
0.5859845280647278,
-0.2507675886154175,
0.6604799032211304,
-0.5744622945785522,
0.09900562465190887,
-0.13929271697998047,
0.12217067927122116,
-0.5587459206581116,
-1.1286394596099854,
0.35896751284599304,
-0.0690310075879097,
-0.24247358739376068,
-0.28898054361343384,
0.7292659282684326,
-0.4383067488670349,
-0.7508485317230225,
0.25792044401168823,
0.2540479302406311,
0.3622351586818695,
0.1479296088218689,
-1.3205257654190063,
0.6263342499732971,
0.14971566200256348,
-0.4559110105037689,
0.11882289499044418,
0.5089922547340393,
0.22061018645763397,
0.5729308724403381,
0.7351629734039307,
0.22161966562271118,
-0.30023306608200073,
0.11375411599874496,
1.1207414865493774,
-0.6103160381317139,
-0.43683719635009766,
-0.7426457405090332,
0.827537477016449,
-0.3596345782279968,
-0.39124906063079834,
0.7006493806838989,
0.7469562292098999,
0.8317707180976868,
0.028505461290478706,
0.7911736965179443,
-0.6101007461547852,
0.6873316168785095,
-0.27451276779174805,
0.8834100365638733,
-0.6707844734191895,
0.007451751735061407,
-0.6789405345916748,
-0.5281723141670227,
-0.36458542943000793,
0.6119037866592407,
-0.1957523226737976,
0.21798551082611084,
0.2975289225578308,
0.9019630551338196,
0.07478785514831543,
0.1023801863193512,
-0.22809378802776337,
0.3317575454711914,
0.2793036699295044,
0.5980561971664429,
0.4512684941291809,
-0.8947392702102661,
0.404787540435791,
-0.7693909406661987,
-0.27090519666671753,
0.049451109021902084,
-0.8765085339546204,
-0.9602161645889282,
-0.9544777870178223,
-0.7161986827850342,
-0.7346133589744568,
-0.29027971625328064,
0.9994905591011047,
0.7230485081672668,
-0.7024952173233032,
-0.256077378988266,
0.05805027112364769,
0.35098981857299805,
-0.07330887019634247,
-0.3143834173679352,
0.7180428504943848,
0.3800746202468872,
-0.657127320766449,
-0.12294770032167435,
-0.017741378396749496,
0.3425532579421997,
0.01923387311398983,
-0.0624978207051754,
-0.11729176342487335,
-0.2668251693248749,
0.3060976564884186,
0.5144806504249573,
-0.36414968967437744,
-0.09480559080839157,
-0.2920493483543396,
0.016118284314870834,
0.18021057546138763,
0.4909226596355438,
-0.5924717783927917,
0.14556610584259033,
0.650603175163269,
0.2936476767063141,
0.43690407276153564,
0.17788268625736237,
0.022801073268055916,
-0.4831344485282898,
0.06295836716890335,
-0.028375402092933655,
0.3320927321910858,
0.428568571805954,
-0.457745224237442,
0.8300699591636658,
0.5300399661064148,
-0.5454621911048889,
-0.8388673663139343,
-0.11406924575567245,
-1.383078932762146,
0.04639730975031853,
1.049296259880066,
0.01576312817633152,
-0.5778355598449707,
0.04662901535630226,
-0.23847047984600067,
0.14196741580963135,
-0.6283836960792542,
0.4905667006969452,
0.4833221137523651,
-0.1000179797410965,
0.17454303801059723,
-0.32393866777420044,
0.6971302628517151,
0.04017813503742218,
-1.0056532621383667,
0.27524909377098083,
0.42576271295547485,
0.48023879528045654,
0.3379949629306793,
0.826522946357727,
-0.2696002721786499,
0.043244507163763046,
-0.09623479098081589,
0.26719287037849426,
-0.2674364447593689,
0.06155483424663544,
-0.37151145935058594,
-0.14882254600524902,
-0.5331292748451233,
-0.23109765350818634
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/ed-sheeran | huggingartists | 2022-10-25T09:28:28Z | 293 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:28:28Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
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.6669626235961914,
-0.49844881892204285,
0.05875059589743614,
0.1618415266275406,
-0.19940908253192902,
0.0042938184924423695,
-0.34882447123527527,
-0.4428543150424957,
0.8938459753990173,
0.34147247672080994,
-0.9361005425453186,
-0.8576920032501221,
-0.5155853629112244,
0.1586107462644577,
-0.1178458034992218,
1.296980381011963,
-0.12708793580532074,
-0.4041491150856018,
-0.32750895619392395,
-0.2537437081336975,
-0.25918611884117126,
-0.29154613614082336,
-0.2762865424156189,
-0.27671757340431213,
0.46915194392204285,
0.46967262029647827,
0.6536088585853577,
0.9254841208457947,
0.5267773866653442,
0.35406580567359924,
-0.11929400265216827,
0.059647392481565475,
-0.3795890212059021,
-0.1149294525384903,
0.13536930084228516,
-0.23576228320598602,
-0.686743974685669,
0.25343558192253113,
0.5540350079536438,
0.3877626061439514,
-0.05914202332496643,
0.4432687759399414,
0.05780569836497307,
0.821790337562561,
-0.26210659742355347,
0.38030529022216797,
-0.30839142203330994,
-0.2010926604270935,
-0.23607319593429565,
0.021221650764346123,
0.27199214696884155,
-0.632762610912323,
-0.05878351628780365,
-0.7640930414199829,
0.04298647493124008,
-0.0026156166568398476,
0.9933536648750305,
0.1024717167019844,
0.036780379712581635,
-0.19542370736598969,
-0.20189021527767181,
0.5469645857810974,
-0.620928943157196,
0.006328571122139692,
0.588454008102417,
0.13418421149253845,
0.07867778092622757,
-0.5809941291809082,
-0.6577340960502625,
0.056517262011766434,
-0.1367926448583603,
0.28202491998672485,
-0.0900777131319046,
-0.2421645075082779,
0.5468091368675232,
0.5931040644645691,
-0.5298705697059631,
-0.1734059453010559,
-0.5494184494018555,
-0.06219781935214996,
1.222505807876587,
0.12743382155895233,
0.44020459055900574,
-0.4953344464302063,
-0.2431841492652893,
-0.39601314067840576,
-0.26884427666664124,
0.30577969551086426,
0.6077859401702881,
0.4254963994026184,
-0.9900693893432617,
0.6416857838630676,
-0.1394975632429123,
0.5609583854675293,
0.14651323854923248,
-0.03354698047041893,
0.814882755279541,
-0.3922065794467926,
-0.1147826761007309,
-0.17417806386947632,
1.0245823860168457,
0.7352924942970276,
0.12968924641609192,
0.14072391390800476,
-0.0845797210931778,
0.08570273220539093,
-0.2012544572353363,
-0.8208251595497131,
-0.4623104929924011,
0.7364194989204407,
-0.5457464456558228,
-0.5451375842094421,
0.16615253686904907,
-1.012714147567749,
-0.26475489139556885,
-0.3435239791870117,
0.2400362640619278,
-0.344097763299942,
-0.5157718062400818,
0.15091657638549805,
-0.2758385241031647,
0.09974385797977448,
-0.005720307119190693,
-0.5699533820152283,
0.140296071767807,
0.5720627903938293,
0.6967960596084595,
0.232376366853714,
-0.33572134375572205,
-0.2766472399234772,
-0.20934663712978363,
-0.10297306627035141,
0.685226321220398,
-0.2804248332977295,
-0.29133474826812744,
-0.1132274717092514,
0.3336220979690552,
-0.12242020666599274,
-0.2845967411994934,
0.9554286003112793,
0.038611117750406265,
0.22541017830371857,
-0.5735791325569153,
-0.4946434497833252,
0.004192647524178028,
0.316182017326355,
-0.7992004156112671,
1.0278552770614624,
0.2550906836986542,
-0.9589980244636536,
0.18099252879619598,
-0.841543436050415,
-0.2728883624076843,
0.07706733793020248,
0.02468457818031311,
-0.7393799424171448,
-0.225413978099823,
0.20317955315113068,
0.7571247220039368,
-0.23983697593212128,
-0.004665466956794262,
-0.5922263860702515,
-0.09688837826251984,
0.38187506794929504,
0.21135284006595612,
1.122070550918579,
0.10107888281345367,
-0.12339238822460175,
0.05741453543305397,
-1.0303577184677124,
0.2010377049446106,
0.3991805613040924,
-0.2408507764339447,
-0.10768771171569824,
-0.1973235160112381,
0.4527031481266022,
0.3280695676803589,
0.06919664144515991,
-0.6084659099578857,
0.38315606117248535,
-0.2329494208097458,
0.4708971381187439,
0.7513256072998047,
0.015060451813042164,
0.2568744421005249,
-0.6860265135765076,
0.3740015923976898,
-0.024851351976394653,
0.31640884280204773,
-0.04253453388810158,
-0.49760904908180237,
-0.3920111060142517,
-0.25690606236457825,
0.2829815447330475,
0.4759707450866699,
-0.6885019540786743,
1.0149805545806885,
-0.39984726905822754,
-0.7937231063842773,
-0.5885918140411377,
0.16590191423892975,
0.20633843541145325,
0.4517323076725006,
0.35411012172698975,
-0.3530760407447815,
-0.6097927093505859,
-0.661954402923584,
0.03910287842154503,
-0.2482537031173706,
0.07661601155996323,
0.5145447850227356,
0.8080273866653442,
-0.2719855010509491,
0.7676587700843811,
-0.6558448672294617,
-0.2696145176887512,
-0.2322843372821808,
-0.3272360861301422,
0.4051301181316376,
0.7904564738273621,
0.7298812866210938,
-0.9341133832931519,
-0.4773355722427368,
-0.16596776247024536,
-0.624607264995575,
-0.15793731808662415,
-0.07277113944292068,
-0.25148487091064453,
-0.02746475301682949,
0.12640929222106934,
-0.6348603367805481,
0.49487900733947754,
0.5386724472045898,
-0.7101755738258362,
0.5459787845611572,
0.06691563129425049,
0.11367524415254593,
-1.26051926612854,
0.36261090636253357,
0.26974353194236755,
0.045526087284088135,
-0.5899373888969421,
-0.27059245109558105,
-0.028700577095150948,
0.03540842980146408,
-0.1172550767660141,
0.5432109236717224,
-0.3324948251247406,
0.31959235668182373,
0.12318722158670425,
0.12211621552705765,
0.15194857120513916,
0.4941942095756531,
-0.19493108987808228,
0.2671591341495514,
0.965080976486206,
-0.44523850083351135,
0.7531099319458008,
0.5958660244941711,
-0.21468353271484375,
0.9336612820625305,
-0.8000849485397339,
0.04312184080481529,
-0.28243908286094666,
0.3306669592857361,
-0.8265401721000671,
-0.5680345296859741,
0.7504903078079224,
-0.6928251385688782,
0.4300634264945984,
-0.2516585886478424,
-0.4982553720474243,
-0.8596636652946472,
-0.6878895163536072,
0.12166252732276917,
0.48702341318130493,
-0.45155444741249084,
0.4196690022945404,
0.5837729573249817,
0.08263880759477615,
-0.36041057109832764,
-0.7622902989387512,
-0.10441549867391586,
-0.41921547055244446,
-0.8145267963409424,
0.48731425404548645,
-0.4353783428668976,
-0.13746939599514008,
0.15507791936397552,
0.08774948120117188,
0.09432119131088257,
-0.020526666194200516,
0.39712315797805786,
0.3165697455406189,
0.1266217678785324,
0.03366107866168022,
-0.13380089402198792,
-0.18126247823238373,
0.13879269361495972,
-0.2862708568572998,
0.19071784615516663,
-0.2753186821937561,
-0.1484888643026352,
-0.6946115493774414,
0.25228404998779297,
0.5064372420310974,
-0.1948631852865219,
0.6298064589500427,
0.7128785848617554,
-0.25971221923828125,
-0.08323085308074951,
-0.49293094873428345,
-0.14062069356441498,
-0.4107021391391754,
0.10287772119045258,
-0.2325165569782257,
-0.5394099950790405,
0.9481273889541626,
0.24557611346244812,
0.15747295320034027,
0.6919218897819519,
0.4620813727378845,
-0.13177365064620972,
0.6540603041648865,
0.3308771848678589,
-0.228078693151474,
0.5464968681335449,
-0.7052174806594849,
-0.22816284000873566,
-0.8722111582756042,
-0.4521045982837677,
-0.5100967884063721,
-0.6006395220756531,
-0.8629351258277893,
-0.4015432894229889,
0.18500202894210815,
0.0702640563249588,
-0.2173568308353424,
0.4832734763622284,
-0.9364556670188904,
0.37697461247444153,
0.3529123365879059,
0.31107577681541443,
-0.17023175954818726,
0.05077439174056053,
0.11713144183158875,
0.1639481484889984,
-0.5494169592857361,
-0.2218511700630188,
1.1802375316619873,
0.4285045862197876,
0.569381594657898,
-0.0875636413693428,
0.7369948625564575,
0.0860912874341011,
0.17472757399082184,
-0.5080486536026001,
0.4667418599128723,
0.010085562244057655,
-0.4941183626651764,
-0.15163257718086243,
-0.5154844522476196,
-0.854235827922821,
-0.1363256275653839,
-0.4006544351577759,
-0.6759499311447144,
0.500211238861084,
0.07996240258216858,
-0.2547547221183777,
0.46366649866104126,
-0.6242676973342896,
0.8121826648712158,
-0.10144639760255814,
-0.4368225336074829,
0.34383225440979004,
-1.0342481136322021,
0.13049575686454773,
0.208167165517807,
0.30247876048088074,
-0.3991503119468689,
0.022203177213668823,
1.0499567985534668,
-0.7679441571235657,
0.8906868696212769,
-0.31812795996665955,
0.08729713410139084,
0.5588507652282715,
-0.3728291690349579,
0.509274959564209,
0.08412874490022659,
-0.25031086802482605,
0.28596606850624084,
0.0012757268268615007,
-0.44630974531173706,
-0.4665645360946655,
0.7743164300918579,
-0.7159193754196167,
0.05172264575958252,
-0.25500261783599854,
-0.446990042924881,
0.06505830585956573,
0.0917699784040451,
0.3274020850658417,
0.421808123588562,
0.011049075052142143,
0.16508005559444427,
0.48902061581611633,
-0.10522759705781937,
0.3410581946372986,
-0.03163491562008858,
-0.04123953357338905,
-0.8426870703697205,
0.8614576458930969,
0.22651086747646332,
0.08054645359516144,
-0.021686561405658722,
0.40937042236328125,
-0.4118516743183136,
-0.1579255908727646,
-0.5756362676620483,
0.43744581937789917,
-0.4307014048099518,
-0.38658905029296875,
-0.5582091212272644,
-0.16656461358070374,
-0.6108183264732361,
-0.20781686902046204,
-0.22430051863193512,
-0.5173898935317993,
-0.318075567483902,
-0.2974042296409607,
1.0682320594787598,
0.4609270691871643,
-0.7059778571128845,
0.0826253592967987,
-0.4974110424518585,
0.306339293718338,
-0.004131753463298082,
0.6706985235214233,
-0.17664168775081635,
-0.3654838502407074,
-0.22373268008232117,
0.11371798068284988,
-0.16758640110492706,
-0.7091723084449768,
0.26950305700302124,
0.06803833693265915,
0.3746011257171631,
0.16931185126304626,
0.16457237303256989,
0.6363871693611145,
-0.020953314378857613,
0.6756017804145813,
0.28936463594436646,
-0.7348146438598633,
0.6983665823936462,
-0.5378137826919556,
0.053882449865341187,
0.7021003365516663,
0.3022710680961609,
-0.6295763850212097,
-0.09875832498073578,
-0.9553360342979431,
-0.8759398460388184,
0.7407768368721008,
0.43723824620246887,
0.10500113666057587,
0.23176449537277222,
0.48549774289131165,
-0.1516362428665161,
0.2629064619541168,
-0.6713451147079468,
-0.9244673252105713,
-0.37708258628845215,
-0.3389377295970917,
-0.057034675031900406,
-0.09443453699350357,
-0.2953726649284363,
-0.7006575465202332,
0.7795608639717102,
-0.1480211317539215,
0.2726539373397827,
0.4213401675224304,
0.4453001022338867,
-0.18066972494125366,
0.05665755644440651,
0.2821633219718933,
0.3700562119483948,
-0.2565062940120697,
-0.26070740818977356,
-0.1706879734992981,
-0.6574684977531433,
-0.14602889120578766,
0.5266367793083191,
-0.3152717351913452,
-0.08299847692251205,
0.26472437381744385,
0.854863703250885,
-0.02164071425795555,
-0.25550898909568787,
0.5867502689361572,
-0.03888753429055214,
-0.46163058280944824,
-0.3732317090034485,
0.008501840755343437,
0.09908437728881836,
0.21988216042518616,
0.09555412083864212,
0.08063825964927673,
-0.15054917335510254,
-0.3458244800567627,
0.44709011912345886,
0.19916605949401855,
-0.3746137320995331,
-0.5243485569953918,
0.6710643172264099,
0.13156373798847198,
-0.14034868776798248,
0.4035019278526306,
-0.1800236999988556,
-0.6600050330162048,
0.8621629476547241,
0.09547210484743118,
0.850848913192749,
-0.134400874376297,
0.3031921684741974,
0.7296091914176941,
0.2184692770242691,
0.028771834447979927,
0.5912787318229675,
-0.18559233844280243,
-0.606289803981781,
-0.06493345648050308,
-0.5277009606361389,
-0.061338234692811966,
0.10818251967430115,
-0.7909461259841919,
0.41706544160842896,
-0.4290992021560669,
-0.18439599871635437,
0.027538202702999115,
0.43882450461387634,
-0.7701935768127441,
0.2072274088859558,
-0.03942446410655975,
0.9645339250564575,
-1.0606026649475098,
0.40869563817977905,
0.7203395962715149,
-0.6074898838996887,
-1.2135963439941406,
-0.16660331189632416,
0.2228819727897644,
-0.5176937580108643,
0.1462160348892212,
0.19538629055023193,
0.555293083190918,
-0.01350894570350647,
-0.9393070936203003,
-0.6470766067504883,
1.2023173570632935,
-0.01647556573152542,
-0.2554730772972107,
0.3913274109363556,
0.04390117898583412,
0.5786431431770325,
-0.37434324622154236,
0.32907500863075256,
0.6333504915237427,
0.7031431794166565,
0.33793506026268005,
-0.6829723715782166,
0.24991287291049957,
-0.6648302674293518,
-0.23481035232543945,
0.08336326479911804,
-0.9253265261650085,
0.6776566505432129,
-0.21166443824768066,
-0.09786497056484222,
-0.03362617269158363,
0.5670234560966492,
0.38966649770736694,
0.5011605620384216,
0.4354981780052185,
0.7689363956451416,
0.8620824813842773,
-0.3042433261871338,
1.219650387763977,
-0.29199206829071045,
0.6377294063568115,
0.787024736404419,
0.00832483172416687,
0.4676104187965393,
0.23253312706947327,
-0.34529343247413635,
0.5244624018669128,
0.6425187587738037,
-0.4471072852611542,
0.2487333118915558,
0.4051494598388672,
-0.0838758647441864,
-0.03223789855837822,
-0.263196736574173,
-0.6229976415634155,
0.23948296904563904,
0.2052774280309677,
-0.3325823247432709,
0.04367969557642937,
0.015005973167717457,
0.33147597312927246,
0.0017426443519070745,
-0.3608067035675049,
0.6240705847740173,
-0.0030467126052826643,
-0.30671951174736023,
0.5587766766548157,
-0.2356092482805252,
0.743802547454834,
-0.5090894103050232,
0.15106365084648132,
-0.10315117239952087,
0.06667523086071014,
-0.6689614057540894,
-1.064782738685608,
0.3469499349594116,
-0.0532403327524662,
-0.2768801748752594,
-0.3368401825428009,
0.7405232787132263,
-0.4964991509914398,
-0.7628445029258728,
0.21425960958003998,
0.21944469213485718,
0.34192749857902527,
0.12126688659191132,
-1.2125407457351685,
0.5022096633911133,
0.16889461874961853,
-0.5206965208053589,
0.051094405353069305,
0.5413819551467896,
0.2541736364364624,
0.538409411907196,
0.7736095190048218,
0.25632748007774353,
-0.1819801777601242,
0.08752523362636566,
1.1263138055801392,
-0.5950063467025757,
-0.49510836601257324,
-0.7414857149124146,
0.9061092138290405,
-0.38699546456336975,
-0.421786367893219,
0.7027437090873718,
0.7739871144294739,
0.9066749215126038,
0.03715522214770317,
0.8088738918304443,
-0.6649568676948547,
0.6827988624572754,
-0.2064587026834488,
0.9538500905036926,
-0.7015253305435181,
0.022671351209282875,
-0.6892160177230835,
-0.5302497148513794,
-0.4102626144886017,
0.5614461302757263,
-0.18371513485908508,
0.24049901962280273,
0.29103535413742065,
0.9046939611434937,
0.04395728558301926,
0.10581393539905548,
-0.13739609718322754,
0.30741867423057556,
0.2693188786506653,
0.5890052914619446,
0.4271848797798157,
-0.9142540097236633,
0.3835904598236084,
-0.7330383062362671,
-0.2993300259113312,
0.0494583360850811,
-0.8316320776939392,
-0.8834615349769592,
-0.953953206539154,
-0.7362921237945557,
-0.7615817189216614,
-0.3219136893749237,
1.0952630043029785,
0.7060558199882507,
-0.6980159282684326,
-0.1290738582611084,
0.08168633282184601,
0.36146819591522217,
-0.10383901000022888,
-0.3149570822715759,
0.6813803911209106,
0.47246405482292175,
-0.6925972700119019,
-0.09221432358026505,
0.01441371999680996,
0.2660280168056488,
0.082318514585495,
-0.07004091143608093,
-0.11784336715936661,
-0.25723400712013245,
0.32176855206489563,
0.5213670134544373,
-0.3313491642475128,
-0.1291980743408203,
-0.22686989605426788,
0.005740296561270952,
0.2116180807352066,
0.4483846127986908,
-0.5687074065208435,
0.14340035617351532,
0.6508318781852722,
0.3246125280857086,
0.3190196752548218,
0.24846647679805756,
-0.04299765080213547,
-0.5053674578666687,
-0.03895217552781105,
0.0496494434773922,
0.26926738023757935,
0.4015907645225525,
-0.5205273628234863,
0.753311812877655,
0.5632279515266418,
-0.5768908262252808,
-0.8504137396812439,
-0.14218926429748535,
-1.2897953987121582,
0.14023765921592712,
1.0939040184020996,
0.03534144535660744,
-0.5545040369033813,
0.032484270632267,
-0.2098841667175293,
0.06827618926763535,
-0.5341798067092896,
0.4359934628009796,
0.48147493600845337,
-0.029451385140419006,
0.13670314848423004,
-0.355883926153183,
0.6165601015090942,
-0.09687656909227371,
-1.0019772052764893,
0.19372324645519257,
0.46966204047203064,
0.4383685886859894,
0.28416872024536133,
0.725752055644989,
-0.20628853142261505,
0.010449801571667194,
-0.028908589854836464,
0.2932053208351135,
-0.2990435063838959,
-0.0018936506239697337,
-0.36781543493270874,
-0.1313949078321457,
-0.6187170743942261,
-0.31668445467948914
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/grigory-leps | huggingartists | 2022-10-25T09:30:58Z | 293 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:30:58Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/grigory-leps"
## 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.066125 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/f30e8944a06a196868ee4b077a7926a6.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/grigory-leps">
<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">Григорий Лепс (Grigory Leps)</div>
<a href="https://genius.com/artists/grigory-leps">
<div style="text-align: center; font-size: 14px;">@grigory-leps</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/grigory-leps).
### 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/grigory-leps")
```
## 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|
|------:|---------:|---:|
|18| -| -|
'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/grigory-leps")
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.6548283696174622,
-0.5299526453018188,
0.09548855572938919,
0.25080764293670654,
-0.23406490683555603,
-0.02878979966044426,
-0.2907465398311615,
-0.45656147599220276,
0.8831020593643188,
0.3355468809604645,
-0.9109441637992859,
-0.8091040253639221,
-0.6088868975639343,
0.11527302861213684,
-0.060953911393880844,
1.3051708936691284,
-0.18695560097694397,
-0.36613672971725464,
-0.30346938967704773,
-0.2382573038339615,
-0.23528924584388733,
-0.3437395691871643,
-0.3222185969352722,
-0.38386404514312744,
0.36136797070503235,
0.4951222836971283,
0.7105136513710022,
0.8332349061965942,
0.5081794261932373,
0.35111042857170105,
-0.13961970806121826,
-0.001097191940061748,
-0.36374732851982117,
-0.1283678561449051,
0.17953087389469147,
-0.2688085734844208,
-0.7422993779182434,
0.2405858188867569,
0.5487441420555115,
0.4022831618785858,
-0.09366192668676376,
0.4762715697288513,
0.10645847022533417,
0.8434432148933411,
-0.2879217565059662,
0.4712477922439575,
-0.24358542263507843,
-0.15243840217590332,
-0.272353857755661,
0.027430538088083267,
0.18050016462802887,
-0.5811507105827332,
-0.007184862624853849,
-0.7339464426040649,
0.0906277596950531,
-0.06587880104780197,
1.0272256135940552,
0.032797493040561676,
0.15705548226833344,
-0.2286233752965927,
-0.11893277615308762,
0.5200037360191345,
-0.609379231929779,
-0.004768901038914919,
0.5868619084358215,
0.1378658413887024,
-0.02404038794338703,
-0.619084358215332,
-0.5934460163116455,
0.07158764451742172,
-0.19818605482578278,
0.29598820209503174,
-0.14602960646152496,
-0.30189019441604614,
0.5246745944023132,
0.5387585163116455,
-0.5356086492538452,
-0.255440890789032,
-0.5041576623916626,
-0.12744766473770142,
1.1704280376434326,
0.14083325862884521,
0.43748295307159424,
-0.45408061146736145,
-0.1869409680366516,
-0.38757312297821045,
-0.23845696449279785,
0.33415836095809937,
0.5872001051902771,
0.46130549907684326,
-1.019282579421997,
0.6394230127334595,
-0.19679789245128632,
0.553473949432373,
0.14924421906471252,
-0.06683408468961716,
0.8155832290649414,
-0.34381699562072754,
-0.11977078020572662,
-0.1518765091896057,
1.0518521070480347,
0.701153039932251,
0.2058362364768982,
0.10707633942365646,
-0.06718965619802475,
0.058044590055942535,
-0.21065621078014374,
-0.8532378673553467,
-0.41373002529144287,
0.6344987154006958,
-0.5695681571960449,
-0.5559402704238892,
0.13621576130390167,
-1.0199040174484253,
-0.21886391937732697,
-0.2825978398323059,
0.24836036562919617,
-0.373318612575531,
-0.5043736100196838,
0.19478021562099457,
-0.2863406538963318,
0.10637523233890533,
0.06547651439905167,
-0.6643754243850708,
0.2195393294095993,
0.5753862261772156,
0.7929511070251465,
0.23353511095046997,
-0.3189184367656708,
-0.3128829896450043,
-0.15877211093902588,
-0.06693114340305328,
0.6634721159934998,
-0.3231966197490692,
-0.37045761942863464,
-0.14985740184783936,
0.38877803087234497,
-0.10472201555967331,
-0.2623421549797058,
0.8801563382148743,
0.09178990870714188,
0.21027709543704987,
-0.5839482545852661,
-0.44695839285850525,
0.032909683883190155,
0.2697329521179199,
-0.7446129322052002,
1.0455392599105835,
0.30989184975624084,
-1.0224143266677856,
0.1801580786705017,
-0.795315146446228,
-0.28352949023246765,
0.05850731581449509,
0.039409030228853226,
-0.7656530737876892,
-0.16930563747882843,
0.224103644490242,
0.7698917388916016,
-0.30901503562927246,
-0.006723111029714346,
-0.5966602563858032,
-0.10904444754123688,
0.3184299170970917,
0.2574254274368286,
1.1454284191131592,
0.10785273462533951,
-0.13976231217384338,
0.024117615073919296,
-0.8937141299247742,
0.1262487769126892,
0.4639941155910492,
-0.15570709109306335,
-0.10289232432842255,
-0.2397622913122177,
0.3674614727497101,
0.26746684312820435,
0.08894336968660355,
-0.5955295562744141,
0.4449710249900818,
-0.17830102145671844,
0.4817846715450287,
0.7284286618232727,
0.002759137423709035,
0.3407633900642395,
-0.6633455753326416,
0.4137652516365051,
0.008888131938874722,
0.3896060585975647,
-0.0066797188483178616,
-0.5819780230522156,
-0.4459152817726135,
-0.287127286195755,
0.31020528078079224,
0.47371044754981995,
-0.6573492884635925,
0.9950181245803833,
-0.31249698996543884,
-0.8301475048065186,
-0.5938583612442017,
0.10997031629085541,
0.16791674494743347,
0.4998146891593933,
0.3778288662433624,
-0.44520628452301025,
-0.5542435646057129,
-0.6401378512382507,
0.06307822465896606,
-0.2560117542743683,
0.1749906837940216,
0.4330962598323822,
0.8403725028038025,
-0.27921414375305176,
0.8026701807975769,
-0.6822158694267273,
-0.283829927444458,
-0.2659918963909149,
-0.2898971438407898,
0.4004410207271576,
0.7965701222419739,
0.7239425778388977,
-0.83122318983078,
-0.4970978796482086,
-0.21911105513572693,
-0.696390688419342,
-0.14011724293231964,
-0.034191977232694626,
-0.24938999116420746,
0.050697702914476395,
0.1523958146572113,
-0.7184534072875977,
0.5504948496818542,
0.5518768429756165,
-0.69146329164505,
0.5620591640472412,
0.06983985751867294,
0.03075883351266384,
-1.2427176237106323,
0.3513769507408142,
0.25388866662979126,
0.033753976225852966,
-0.5983540415763855,
-0.19038404524326324,
-0.10330866277217865,
-0.0027466302271932364,
-0.10066419839859009,
0.653491735458374,
-0.3473130166530609,
0.26798367500305176,
0.15490315854549408,
0.09615156054496765,
0.08642223477363586,
0.4221433401107788,
-0.05295414850115776,
0.2772965729236603,
0.9954976439476013,
-0.37265631556510925,
0.6536020636558533,
0.5953336358070374,
-0.2063797414302826,
0.8475810885429382,
-0.827604353427887,
0.016526183113455772,
-0.264862060546875,
0.39237210154533386,
-0.8031381964683533,
-0.5660302639007568,
0.8275470733642578,
-0.6984270811080933,
0.3924139738082886,
-0.28552189469337463,
-0.5482413172721863,
-0.780331552028656,
-0.648490309715271,
0.13454976677894592,
0.5651271939277649,
-0.3751438558101654,
0.4454602599143982,
0.5889490246772766,
0.026395127177238464,
-0.38367345929145813,
-0.790168046951294,
-0.15748605132102966,
-0.3872421681880951,
-0.8211140036582947,
0.39903154969215393,
-0.3471387028694153,
-0.0976666733622551,
0.15839643776416779,
0.10982038825750351,
0.1279575228691101,
-0.001602552947588265,
0.38775351643562317,
0.2877240777015686,
0.14257819950580597,
-0.0008938861428759992,
-0.09337996691465378,
-0.26855847239494324,
0.07068533450365067,
-0.18879832327365875,
0.31606271862983704,
-0.320954829454422,
-0.1540992110967636,
-0.6476520299911499,
0.20107966661453247,
0.4345908761024475,
-0.22811438143253326,
0.6775906682014465,
0.8167245984077454,
-0.23951371014118195,
-0.0023974310606718063,
-0.504639208316803,
-0.15697334706783295,
-0.42046621441841125,
0.04720713570713997,
-0.23491275310516357,
-0.6532347202301025,
0.9789927005767822,
0.21051518619060516,
0.06519988179206848,
0.680046796798706,
0.4822899401187897,
-0.0638333186507225,
0.6646510362625122,
0.37580710649490356,
-0.28492727875709534,
0.5213813185691833,
-0.6896900534629822,
-0.24613437056541443,
-0.8515081405639648,
-0.45121246576309204,
-0.48824837803840637,
-0.49418485164642334,
-0.8533147573471069,
-0.44168809056282043,
0.1904151886701584,
0.18677176535129547,
-0.2124369889497757,
0.4442923665046692,
-0.9485556483268738,
0.2952626049518585,
0.3238682448863983,
0.25488337874412537,
-0.12427019327878952,
0.10966432094573975,
0.05932772159576416,
0.13998642563819885,
-0.5969205498695374,
-0.25880590081214905,
1.1069953441619873,
0.5226926207542419,
0.5865159034729004,
-0.11006062477827072,
0.8793890476226807,
0.04465288668870926,
0.21578575670719147,
-0.5024573802947998,
0.5233018398284912,
-0.016948090866208076,
-0.45164039731025696,
-0.1843794733285904,
-0.510729193687439,
-0.8842467069625854,
-0.11432699114084244,
-0.4145021140575409,
-0.7714865803718567,
0.48355573415756226,
0.10721754282712936,
-0.21381008625030518,
0.3989035487174988,
-0.6175938844680786,
0.8408145308494568,
-0.056889187544584274,
-0.44229963421821594,
0.30089083313941956,
-0.9969750642776489,
0.15428362786769867,
0.22874386608600616,
0.2809832990169525,
-0.40882980823516846,
0.042152319103479385,
0.9971974492073059,
-0.7923266291618347,
0.9308838248252869,
-0.3932318389415741,
0.10637927800416946,
0.5769396424293518,
-0.3011491596698761,
0.4942683279514313,
0.13350002467632294,
-0.2542263865470886,
0.34472978115081787,
0.05278511345386505,
-0.4645458161830902,
-0.44481024146080017,
0.6839272379875183,
-0.7227477431297302,
0.038823116570711136,
-0.3676731288433075,
-0.4728132486343384,
0.06442447751760483,
0.1501457542181015,
0.3116258680820465,
0.38700616359710693,
0.015333308838307858,
0.10769625753164291,
0.4297363758087158,
-0.1350296437740326,
0.3099439740180969,
0.026215258985757828,
-0.1169867068529129,
-0.8036700487136841,
0.9101917147636414,
0.18545909225940704,
0.0792626366019249,
-0.06782592833042145,
0.4112943410873413,
-0.3353334069252014,
-0.11992830038070679,
-0.5944550633430481,
0.5084894299507141,
-0.40227869153022766,
-0.353495329618454,
-0.5145107507705688,
-0.1670788675546646,
-0.6582735180854797,
-0.19509707391262054,
-0.22569851577281952,
-0.5117946267127991,
-0.3039840757846832,
-0.20223096013069153,
1.017837643623352,
0.4460546672344208,
-0.7144259214401245,
0.15607649087905884,
-0.5660385489463806,
0.2877993881702423,
-0.039411917328834534,
0.6246848106384277,
-0.1159091368317604,
-0.33691495656967163,
-0.20103411376476288,
0.10165885090827942,
-0.15151555836200714,
-0.6717321872711182,
0.2828218936920166,
-0.030177965760231018,
0.39565223455429077,
0.09056289494037628,
0.08618146926164627,
0.6783385872840881,
-0.08191103488206863,
0.6653571128845215,
0.30158889293670654,
-0.8149190545082092,
0.6635197997093201,
-0.5318992137908936,
0.15471866726875305,
0.7360333800315857,
0.3803825080394745,
-0.6318805813789368,
-0.11370783299207687,
-0.9804731011390686,
-0.8466777801513672,
0.7740089893341064,
0.4019891321659088,
0.053283534944057465,
0.20593194663524628,
0.5976910591125488,
-0.188490629196167,
0.2775903344154358,
-0.6531103849411011,
-0.8335028290748596,
-0.38122454285621643,
-0.32762306928634644,
-0.08929521590471268,
-0.11248256266117096,
-0.28136494755744934,
-0.6826238632202148,
0.7931578755378723,
-0.18039029836654663,
0.353307843208313,
0.43266671895980835,
0.424301415681839,
-0.21813678741455078,
-0.005593874026089907,
0.306556761264801,
0.34647703170776367,
-0.25081053376197815,
-0.31051212549209595,
-0.13590626418590546,
-0.6350491642951965,
-0.11225865036249161,
0.5133923888206482,
-0.3600100874900818,
-0.07861682027578354,
0.3439028561115265,
0.8719403743743896,
-0.08143261075019836,
-0.239531472325325,
0.6021221876144409,
-0.05909733846783638,
-0.45837533473968506,
-0.3715176582336426,
0.0017199096037074924,
0.14348235726356506,
0.26870113611221313,
0.050738364458084106,
0.06167615205049515,
-0.12623822689056396,
-0.4115351140499115,
0.41541606187820435,
0.28149962425231934,
-0.38652822375297546,
-0.5058590769767761,
0.5521684288978577,
0.05928888916969299,
-0.11028503626585007,
0.43702539801597595,
-0.19471129775047302,
-0.613917887210846,
0.7689790725708008,
0.13092578947544098,
0.830081582069397,
-0.18931031227111816,
0.3882083296775818,
0.7108427882194519,
0.24532157182693481,
-0.10063368082046509,
0.5659886002540588,
-0.16210035979747772,
-0.6477389931678772,
-0.08253860473632812,
-0.580544114112854,
-0.10047131031751633,
0.09449385106563568,
-0.839745819568634,
0.4232577383518219,
-0.4836031496524811,
-0.24283146858215332,
-0.02462032064795494,
0.3729288578033447,
-0.6972928643226624,
0.190496027469635,
-0.04823179915547371,
1.0253551006317139,
-1.1013507843017578,
0.43568503856658936,
0.7111004590988159,
-0.6271278858184814,
-1.1282953023910522,
-0.12298726290464401,
0.16864436864852905,
-0.5919817686080933,
0.21985402703285217,
0.19482135772705078,
0.48645612597465515,
-0.086610808968544,
-0.9203345775604248,
-0.6443725228309631,
1.2031141519546509,
0.07208655774593353,
-0.2480882704257965,
0.3204081654548645,
0.12668569386005402,
0.6235945224761963,
-0.3764672875404358,
0.33277246356010437,
0.6393740177154541,
0.6904426217079163,
0.3086237609386444,
-0.7339332699775696,
0.27778056263923645,
-0.6215746998786926,
-0.2629297375679016,
0.0894445851445198,
-1.04010009765625,
0.6862210035324097,
-0.1646268218755722,
-0.04211046174168587,
0.028729137033224106,
0.5871821045875549,
0.4404676556587219,
0.40722984075546265,
0.4460066556930542,
0.8063076734542847,
0.8118761777877808,
-0.32513105869293213,
1.200005292892456,
-0.2603404223918915,
0.6500523090362549,
0.7980015277862549,
0.015189697034657001,
0.4983716309070587,
0.2468019723892212,
-0.3183153569698334,
0.548311173915863,
0.6251478791236877,
-0.4286186099052429,
0.2551126778125763,
0.38695773482322693,
-0.057762593030929565,
-0.1083982065320015,
-0.28114280104637146,
-0.6135930418968201,
0.2710648477077484,
0.24816393852233887,
-0.31475287675857544,
-0.00182616850361228,
-0.052710916846990585,
0.35786017775535583,
-0.03889969363808632,
-0.2751689553260803,
0.6329901218414307,
0.050866007804870605,
-0.3067469000816345,
0.5282388925552368,
-0.21522554755210876,
0.68287193775177,
-0.6002141833305359,
0.1293136477470398,
-0.10653378069400787,
0.10251795500516891,
-0.6249627470970154,
-1.079633355140686,
0.3446248471736908,
-0.0966750979423523,
-0.22881408035755157,
-0.3123358488082886,
0.7537025213241577,
-0.45065006613731384,
-0.7790870666503906,
0.2689453363418579,
0.23791828751564026,
0.32569828629493713,
0.16842077672481537,
-1.2811918258666992,
0.5621168613433838,
0.14634226262569427,
-0.47974279522895813,
0.15077190101146698,
0.5211789011955261,
0.16989506781101227,
0.5443273782730103,
0.680237352848053,
0.276328980922699,
-0.26642343401908875,
0.09476996958255768,
1.121978998184204,
-0.5247078537940979,
-0.46980077028274536,
-0.7689408659934998,
0.8990649580955505,
-0.36601436138153076,
-0.3817591667175293,
0.6866056323051453,
0.7297993302345276,
0.8804323673248291,
0.01697249710559845,
0.8372980356216431,
-0.6525505185127258,
0.6469385623931885,
-0.2546215057373047,
0.9028367400169373,
-0.695045530796051,
-0.0770588219165802,
-0.758758544921875,
-0.5641784071922302,
-0.43157002329826355,
0.6673034429550171,
-0.22290030121803284,
0.20061805844306946,
0.2646918296813965,
0.9123181700706482,
0.039416227489709854,
0.11786126345396042,
-0.21933399140834808,
0.2702363133430481,
0.2766302824020386,
0.5692739486694336,
0.44863325357437134,
-0.8886323571205139,
0.3026922047138214,
-0.7283424735069275,
-0.3351908028125763,
0.03009769879281521,
-0.8799446225166321,
-0.9388765692710876,
-0.9376832246780396,
-0.6621779799461365,
-0.7730819582939148,
-0.2510443925857544,
1.0608270168304443,
0.6768131852149963,
-0.7049055695533752,
-0.24876253306865692,
0.05894174426794052,
0.2220650315284729,
-0.068137526512146,
-0.31499093770980835,
0.6464546918869019,
0.3560450077056885,
-0.6194641590118408,
-0.1541939079761505,
0.01058103982359171,
0.29703426361083984,
0.0838853195309639,
-0.13893915712833405,
-0.10771770030260086,
-0.29664894938468933,
0.3304145038127899,
0.485023558139801,
-0.3370733857154846,
-0.13191719353199005,
-0.25492462515830994,
0.04511464759707451,
0.12021323293447495,
0.4739685654640198,
-0.5130138993263245,
0.17105594277381897,
0.6713000535964966,
0.26781198382377625,
0.42740511894226074,
0.22518032789230347,
-0.00041146509465761483,
-0.4709456264972687,
0.12352320551872253,
-0.03146723285317421,
0.34212327003479004,
0.3830869197845459,
-0.4590091407299042,
0.8173089623451233,
0.5885162949562073,
-0.5509859323501587,
-0.8216378092765808,
-0.1211344450712204,
-1.2983373403549194,
0.106434665620327,
1.076124668121338,
-0.013962053693830967,
-0.5331287980079651,
0.09979648888111115,
-0.23287488520145416,
0.09798061847686768,
-0.592366099357605,
0.4253562092781067,
0.5277013182640076,
-0.1295434683561325,
0.1350681483745575,
-0.35984787344932556,
0.6440114974975586,
-0.006112097296863794,
-0.970520555973053,
0.19694390892982483,
0.42431655526161194,
0.4258206784725189,
0.3401932120323181,
0.8271357417106628,
-0.2642810344696045,
0.038036130368709564,
-0.06544921547174454,
0.3058943748474121,
-0.2593124210834503,
-0.0008875376079231501,
-0.36453500390052795,
-0.12924310564994812,
-0.5117629766464233,
-0.18699173629283905
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/justin-bieber | huggingartists | 2022-10-25T09:32:38Z | 293 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:32:38Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/justin-bieber"
## 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.248682 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/8c95afb142e16e2e053b4384514dc339.938x938x1.png')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/justin-bieber">
<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">Justin Bieber</div>
<a href="https://genius.com/artists/justin-bieber">
<div style="text-align: center; font-size: 14px;">@justin-bieber</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/justin-bieber).
### 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/justin-bieber")
```
## 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|
|------:|---------:|---:|
|752| -| -|
'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/justin-bieber")
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.6501973271369934,
-0.5667006969451904,
0.06294608116149902,
0.5113189220428467,
-0.21651701629161835,
0.05486427620053291,
-0.3511645793914795,
-0.4177486002445221,
0.8056979775428772,
0.35895493626594543,
-0.8944168090820312,
-0.8316735029220581,
-0.5571983456611633,
0.11942535638809204,
-0.1186879575252533,
1.2464239597320557,
-0.18064303696155548,
-0.3843878209590912,
-0.3149771988391876,
-0.22740387916564941,
-0.3291471600532532,
-0.3341689109802246,
-0.3187321722507477,
-0.3096338212490082,
0.4225667417049408,
0.46217891573905945,
0.7247369885444641,
0.8374550342559814,
0.6145884394645691,
0.31755489110946655,
-0.1460733562707901,
-0.007658518385142088,
-0.3547515571117401,
-0.11043374240398407,
0.08279581367969513,
-0.24845178425312042,
-0.6799107193946838,
0.1670752316713333,
0.5475654006004333,
0.453033983707428,
-0.05087069422006607,
0.4940543472766876,
0.06141673028469086,
0.7931922078132629,
-0.22639323770999908,
0.4962402582168579,
-0.2360774278640747,
-0.22248582541942596,
-0.27064087986946106,
-0.015009632334113121,
0.12386203557252884,
-0.5530449151992798,
0.010667643509805202,
-0.6532122492790222,
0.07531850785017014,
0.07044337689876556,
1.0691642761230469,
0.011392279528081417,
0.03270552307367325,
-0.23089158535003662,
-0.20780709385871887,
0.5254837870597839,
-0.5972170829772949,
0.06880062818527222,
0.5574245452880859,
0.08077659457921982,
0.022117797285318375,
-0.6260620355606079,
-0.6381013989448547,
0.14040255546569824,
-0.2227334976196289,
0.31426846981048584,
-0.1608666628599167,
-0.31009572744369507,
0.5408895015716553,
0.522090494632721,
-0.6151742935180664,
-0.28355351090431213,
-0.5362348556518555,
-0.09600716829299927,
1.1975603103637695,
0.1295839548110962,
0.4430108666419983,
-0.47809353470802307,
-0.19860504567623138,
-0.4303646683692932,
-0.29315635561943054,
0.40667614340782166,
0.52227383852005,
0.5036000609397888,
-1.0327693223953247,
0.553310751914978,
-0.11216859519481659,
0.5070536732673645,
0.15515756607055664,
-0.0027289430145174265,
0.8488187193870544,
-0.44231462478637695,
-0.11874515563249588,
-0.13886667788028717,
1.0978050231933594,
0.6537518501281738,
0.11541817337274551,
0.06331674754619598,
-0.058381956070661545,
0.009680015966296196,
-0.1745619922876358,
-0.8870002627372742,
-0.44227147102355957,
0.6544275879859924,
-0.5929076671600342,
-0.4959535300731659,
0.16799862682819366,
-0.9691570401191711,
-0.15054453909397125,
-0.2968941032886505,
0.2519605755805969,
-0.3900116980075836,
-0.5301095843315125,
0.1865796148777008,
-0.22489033639431,
0.10822620987892151,
-0.008263345807790756,
-0.6340464949607849,
0.15524451434612274,
0.5260211229324341,
0.7535262107849121,
0.2919251620769501,
-0.2663251757621765,
-0.2197646051645279,
-0.17240890860557556,
-0.14796169102191925,
0.6357519030570984,
-0.2764008939266205,
-0.3531643748283386,
-0.12750446796417236,
0.40809449553489685,
-0.007057552691549063,
-0.29346978664398193,
0.9174384474754333,
0.0030030382331460714,
0.14834554493427277,
-0.6415718197822571,
-0.3504278361797333,
-0.011716337874531746,
0.2500298023223877,
-0.739700198173523,
1.0530023574829102,
0.3503960371017456,
-0.9580360054969788,
0.22827742993831635,
-0.84024977684021,
-0.3564288914203644,
0.03203071653842926,
0.13690544664859772,
-0.8146370649337769,
-0.19385728240013123,
0.2345741242170334,
0.7280725240707397,
-0.33308568596839905,
0.04316192492842674,
-0.646062970161438,
-0.0786621943116188,
0.3203432857990265,
0.27342119812965393,
1.2663707733154297,
0.1007365882396698,
-0.07105952501296997,
-0.011838753707706928,
-0.8552513122558594,
0.1621812880039215,
0.44457051157951355,
-0.19463825225830078,
-0.1100713312625885,
-0.2510826885700226,
0.44340741634368896,
0.305264949798584,
0.03953959047794342,
-0.5758538842201233,
0.4155360162258148,
-0.21904125809669495,
0.41682207584381104,
0.6630041599273682,
0.05205753818154335,
0.32653915882110596,
-0.607559859752655,
0.3047011196613312,
0.14169129729270935,
0.3460947573184967,
-0.0618404783308506,
-0.5218800902366638,
-0.3921838104724884,
-0.2840406000614166,
0.38409122824668884,
0.4483145475387573,
-0.6179655194282532,
0.9741405248641968,
-0.3814082145690918,
-0.823036789894104,
-0.6068578958511353,
0.20596012473106384,
0.23093481361865997,
0.4655296802520752,
0.40389108657836914,
-0.46749550104141235,
-0.6380117535591125,
-0.7329788208007812,
0.07059334218502045,
-0.3020748198032379,
0.17520460486412048,
0.4022260904312134,
0.7997950911521912,
-0.23201116919517517,
0.8501895666122437,
-0.6162314414978027,
-0.22133022546768188,
-0.2862147092819214,
-0.23847781121730804,
0.4231587052345276,
0.817884087562561,
0.7944000363349915,
-0.9388339519500732,
-0.5609118938446045,
-0.2539893686771393,
-0.711697518825531,
-0.17609994113445282,
-0.0910872295498848,
-0.2862051725387573,
-0.03617041930556297,
0.10300209373235703,
-0.6809319853782654,
0.5735675692558289,
0.4986462891101837,
-0.6722974181175232,
0.495969295501709,
0.09061294049024582,
0.03865478187799454,
-1.232712745666504,
0.32214319705963135,
0.2750595808029175,
0.06257426738739014,
-0.6477028727531433,
-0.2950357496738434,
0.020157095044851303,
0.1076703891158104,
-0.08658195286989212,
0.6324869394302368,
-0.37383225560188293,
0.34077930450439453,
0.15047992765903473,
0.08182374387979507,
0.13194623589515686,
0.4605576694011688,
-0.03945087641477585,
0.18799741566181183,
1.0053794384002686,
-0.3986968398094177,
0.6586558818817139,
0.6710994243621826,
-0.21023626625537872,
0.848556637763977,
-0.7742242217063904,
0.018514733761548996,
-0.29777705669403076,
0.39604586362838745,
-0.8306307792663574,
-0.5686326026916504,
0.7990376353263855,
-0.7357710003852844,
0.4505526125431061,
-0.25499945878982544,
-0.6373440623283386,
-0.8398361206054688,
-0.5988336205482483,
0.14325082302093506,
0.5091855525970459,
-0.4067133069038391,
0.4066751301288605,
0.5582547783851624,
-0.012303176335990429,
-0.3219197988510132,
-0.8002474308013916,
-0.11209192872047424,
-0.34865325689315796,
-0.8637877702713013,
0.4631878137588501,
-0.3436180651187897,
-0.08845187723636627,
0.1589064598083496,
0.08741340041160583,
0.09503620117902756,
-0.045046117156744,
0.4283736050128937,
0.3736383020877838,
0.1029689684510231,
0.03374142199754715,
-0.024852147325873375,
-0.12471748888492584,
0.1594502031803131,
-0.1790759116411209,
0.27447646856307983,
-0.28969645500183105,
-0.1324131339788437,
-0.6209166049957275,
0.1911887377500534,
0.37614285945892334,
-0.24877990782260895,
0.675640881061554,
0.8055353164672852,
-0.2659640908241272,
-0.029273267835378647,
-0.45090559124946594,
-0.17428888380527496,
-0.40767720341682434,
0.0920560210943222,
-0.2147519588470459,
-0.554358720779419,
0.8991743326187134,
0.26141369342803955,
0.16222400963306427,
0.5507645010948181,
0.5292001962661743,
-0.10081411153078079,
0.7428575158119202,
0.3433202803134918,
-0.2132820188999176,
0.47404739260673523,
-0.6648414731025696,
-0.07666359096765518,
-0.867331862449646,
-0.46348655223846436,
-0.48857295513153076,
-0.5718861222267151,
-0.8355085253715515,
-0.4027904272079468,
0.1450372338294983,
0.1516430526971817,
-0.2935749888420105,
0.5477039217948914,
-0.902563214302063,
0.2688027024269104,
0.4040399193763733,
0.26820921897888184,
-0.13474677503108978,
0.06360193341970444,
0.12855269014835358,
0.1338195502758026,
-0.5193192362785339,
-0.2501062750816345,
1.1386312246322632,
0.4866958558559418,
0.5223000049591064,
-0.0177602581679821,
0.7425034642219543,
0.040941234678030014,
0.3348113000392914,
-0.44189175963401794,
0.45065805315971375,
0.08691258728504181,
-0.6806908845901489,
-0.10128907859325409,
-0.48854461312294006,
-0.8470056653022766,
-0.1412021368741989,
-0.44076862931251526,
-0.7991446256637573,
0.4795213043689728,
0.15447044372558594,
-0.24352851510047913,
0.3777913749217987,
-0.6685141324996948,
0.8829792141914368,
-0.17453335225582123,
-0.5464305281639099,
0.3822390139102936,
-1.0942474603652954,
0.18962067365646362,
0.1774318665266037,
0.2699306607246399,
-0.3342675566673279,
0.0860336646437645,
1.0097911357879639,
-0.6753631830215454,
0.8562785983085632,
-0.40396276116371155,
0.21122831106185913,
0.5685737133026123,
-0.29503971338272095,
0.4454309642314911,
0.1913605034351349,
-0.20941318571567535,
0.3413292169570923,
0.09617733955383301,
-0.49699321389198303,
-0.4672631621360779,
0.6505800485610962,
-0.64571213722229,
0.04753878712654114,
-0.3404425084590912,
-0.48561033606529236,
-0.08107973635196686,
0.16896173357963562,
0.26491299271583557,
0.33108749985694885,
0.06810038536787033,
0.21368366479873657,
0.41449421644210815,
-0.1922987848520279,
0.32489630579948425,
0.028023675084114075,
-0.19141453504562378,
-0.7557983994483948,
0.8758751153945923,
0.1296337991952896,
0.02226497419178486,
0.003343006130307913,
0.3499864637851715,
-0.43932241201400757,
-0.16294629871845245,
-0.5937807559967041,
0.5445747375488281,
-0.3388192057609558,
-0.403315007686615,
-0.5291575789451599,
-0.20625679194927216,
-0.6443086862564087,
-0.21010524034500122,
-0.22032970190048218,
-0.3930796682834625,
-0.23120412230491638,
-0.2606903910636902,
0.9192612171173096,
0.3572176992893219,
-0.6989936232566833,
0.21184217929840088,
-0.5459728240966797,
0.208253413438797,
-0.14947037398815155,
0.6375894546508789,
-0.10892234742641449,
-0.36775511503219604,
-0.2456556260585785,
0.1476203054189682,
-0.27734866738319397,
-0.665078341960907,
0.3225167691707611,
-0.06992769241333008,
0.2957782745361328,
0.15695717930793762,
0.12007934600114822,
0.7207179069519043,
0.04182678461074829,
0.6087591648101807,
0.3559991419315338,
-0.790907084941864,
0.6226143836975098,
-0.4943836033344269,
0.1231122761964798,
0.7346566319465637,
0.35280102491378784,
-0.6319978833198547,
-0.15027804672718048,
-0.9346625804901123,
-0.9003620743751526,
0.8659965395927429,
0.48548421263694763,
0.12384230643510818,
0.23277799785137177,
0.4494978189468384,
-0.2145284116268158,
0.3186720907688141,
-0.7023143172264099,
-0.843781590461731,
-0.40655726194381714,
-0.3757755756378174,
-0.024828573688864708,
-0.05563107132911682,
-0.21909430623054504,
-0.6742141246795654,
0.7675283551216125,
-0.058514609932899475,
0.3088039755821228,
0.3885757029056549,
0.4200257956981659,
-0.22191910445690155,
-0.01388219092041254,
0.2053610384464264,
0.34374162554740906,
-0.3616442382335663,
-0.3163219690322876,
-0.1714029312133789,
-0.5934464335441589,
-0.14349962770938873,
0.4565126895904541,
-0.39828798174858093,
-0.030435891821980476,
0.3385400176048279,
0.9009047746658325,
-0.03552056476473808,
-0.28538626432418823,
0.6135437488555908,
-0.07047032564878464,
-0.4757848083972931,
-0.36979547142982483,
-0.07537434250116348,
0.2642042934894562,
0.22648866474628448,
0.04083665832877159,
0.0928988829255104,
-0.17073875665664673,
-0.4641234576702118,
0.3886629045009613,
0.26597335934638977,
-0.4003981351852417,
-0.5966758131980896,
0.6181156039237976,
0.06360052525997162,
-0.15714840590953827,
0.4711352586746216,
-0.20376619696617126,
-0.6057916879653931,
0.7460552453994751,
0.1845962405204773,
0.746185839176178,
-0.1084497794508934,
0.2998800277709961,
0.7642847299575806,
0.24195367097854614,
-0.049677520990371704,
0.5458704233169556,
-0.18395578861236572,
-0.6287136077880859,
-0.03923296183347702,
-0.6182507872581482,
-0.033150527626276016,
0.13439930975437164,
-0.7991746664047241,
0.4704935550689697,
-0.5009269714355469,
-0.26437854766845703,
0.07844308763742447,
0.3201461136341095,
-0.7914801836013794,
0.21355339884757996,
-0.045897968113422394,
1.0408645868301392,
-1.0453555583953857,
0.40729713439941406,
0.7193782925605774,
-0.7186238169670105,
-1.2727490663528442,
-0.12911386787891388,
0.21032193303108215,
-0.466325968503952,
0.32253190875053406,
0.16302233934402466,
0.5871265530586243,
-0.09537377208471298,
-0.9236823916435242,
-0.6183444857597351,
1.1441103219985962,
-0.005611559841781855,
-0.2463686168193817,
0.28178665041923523,
0.140023872256279,
0.6705496311187744,
-0.37618041038513184,
0.3825562298297882,
0.606079638004303,
0.7513290643692017,
0.31099623441696167,
-0.7112113833427429,
0.25444209575653076,
-0.5940421223640442,
-0.24305717647075653,
0.10968481749296188,
-1.0239133834838867,
0.6076694130897522,
-0.17046624422073364,
-0.07690642029047012,
-0.07014205306768417,
0.582996666431427,
0.38365843892097473,
0.5335792303085327,
0.4508664906024933,
0.7330695986747742,
0.7178870439529419,
-0.40213698148727417,
1.1043452024459839,
-0.29518190026283264,
0.6971519589424133,
0.7770689725875854,
-0.03538040071725845,
0.46293026208877563,
0.29136422276496887,
-0.36811137199401855,
0.485004723072052,
0.674356997013092,
-0.44053372740745544,
0.29243817925453186,
0.3504225015640259,
-0.03727787360548973,
-0.08842422813177109,
-0.19227196276187897,
-0.5148516297340393,
0.2857171893119812,
0.21680642664432526,
-0.38863202929496765,
0.021219592541456223,
-0.06930222362279892,
0.4204840362071991,
-0.09697289019823074,
-0.2541194260120392,
0.581163227558136,
0.060327764600515366,
-0.39761561155319214,
0.489727646112442,
-0.2317548543214798,
0.6078293919563293,
-0.5380668044090271,
0.18001708388328552,
-0.10856978595256805,
0.10139551013708115,
-0.6451302766799927,
-1.1128021478652954,
0.40332671999931335,
-0.05196116492152214,
-0.26266244053840637,
-0.3927598297595978,
0.6599982976913452,
-0.4874987304210663,
-0.7992615699768066,
0.2886230945587158,
0.23365043103694916,
0.25891849398612976,
0.13955111801624298,
-1.2257287502288818,
0.531807541847229,
0.19344988465309143,
-0.508063554763794,
0.09963227063417435,
0.5188032984733582,
0.1363620162010193,
0.5472338199615479,
0.7515994310379028,
0.2896534502506256,
-0.2380925863981247,
0.012933384627103806,
1.0943111181259155,
-0.558481752872467,
-0.3831612467765808,
-0.7705941200256348,
0.9407868981361389,
-0.40595972537994385,
-0.3431604504585266,
0.6649301648139954,
0.8421964049339294,
0.9608762264251709,
0.0002027411392191425,
0.8669448494911194,
-0.7617692947387695,
0.7559497952461243,
-0.12243234366178513,
0.8956546783447266,
-0.7606910467147827,
-0.000923787709325552,
-0.7539358735084534,
-0.5410686135292053,
-0.4766431748867035,
0.5927551984786987,
-0.24843791127204895,
0.2123715728521347,
0.30010169744491577,
1.0107648372650146,
-0.06235959753394127,
0.11355933547019958,
-0.2799172103404999,
0.2918175458908081,
0.3188190758228302,
0.5223376750946045,
0.40131428837776184,
-0.8588328957557678,
0.41649630665779114,
-0.8187371492385864,
-0.3212035596370697,
-0.03273729607462883,
-0.7820672392845154,
-0.9160758852958679,
-0.9831667542457581,
-0.6373960375785828,
-0.8057591319084167,
-0.27748361229896545,
1.103285789489746,
0.7109270691871643,
-0.7267016172409058,
-0.2103653848171234,
0.10521852225065231,
0.2580240070819855,
-0.06652555614709854,
-0.32278352975845337,
0.6526548862457275,
0.4013824164867401,
-0.6619617342948914,
-0.23683245480060577,
0.1050349548459053,
0.17987960577011108,
0.1442594826221466,
-0.08696293085813522,
-0.11464818567037582,
-0.23071901500225067,
0.35683104395866394,
0.48084697127342224,
-0.2749457061290741,
-0.14917685091495514,
-0.14788727462291718,
0.023556571453809738,
0.20062044262886047,
0.43629080057144165,
-0.44547778367996216,
0.17908605933189392,
0.6627395749092102,
0.27873489260673523,
0.43959328532218933,
0.31199824810028076,
-0.059963151812553406,
-0.47561153769493103,
0.03421046584844589,
0.039346445351839066,
0.33709946274757385,
0.4029048681259155,
-0.3582933247089386,
0.7566316723823547,
0.5643172860145569,
-0.5646529197692871,
-0.9329781532287598,
-0.13104355335235596,
-1.4166566133499146,
0.17418219149112701,
1.0481376647949219,
-0.0017488973680883646,
-0.5695343613624573,
0.046104155480861664,
-0.23606717586517334,
0.11523955315351486,
-0.6016090512275696,
0.5013667941093445,
0.559240996837616,
-0.1389961689710617,
0.11925987899303436,
-0.3202345669269562,
0.549168586730957,
-0.038624051958322525,
-0.9275434017181396,
0.18793490529060364,
0.3817158639431,
0.46070054173469543,
0.3581602871417999,
0.7387036681175232,
-0.2733280062675476,
0.03207240626215935,
-0.03835161775350571,
0.31855878233909607,
-0.23680379986763,
0.03656825050711632,
-0.18808183073997498,
-0.1782313585281372,
-0.5109422206878662,
-0.16947661340236664
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/maroon-5 | huggingartists | 2022-10-25T09:37:35Z | 293 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:37:35Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/maroon-5"
## 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.409714 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/6780ce1add3af75c73929a8f6630e099.900x900x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/maroon-5">
<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">Maroon 5</div>
<a href="https://genius.com/artists/maroon-5">
<div style="text-align: center; font-size: 14px;">@maroon-5</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/maroon-5).
### 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/maroon-5")
```
## 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|
|------:|---------:|---:|
|232| -| -|
'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/maroon-5")
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.6397167444229126,
-0.45075559616088867,
0.06426907330751419,
0.42253589630126953,
-0.23492953181266785,
0.03716401755809784,
-0.291178822517395,
-0.44376909732818604,
0.8080191612243652,
0.3149290978908539,
-0.909608781337738,
-0.824909508228302,
-0.5511814951896667,
0.19942030310630798,
-0.11853007972240448,
1.2616777420043945,
-0.14707936346530914,
-0.3991304039955139,
-0.3231165409088135,
-0.26460209488868713,
-0.317205011844635,
-0.3564554750919342,
-0.24733062088489532,
-0.31512293219566345,
0.3895091116428375,
0.49726930260658264,
0.7247453331947327,
0.8977711200714111,
0.5697613954544067,
0.35076797008514404,
-0.15225031971931458,
-0.0858059972524643,
-0.3975498378276825,
-0.0931435152888298,
0.1803511679172516,
-0.31042298674583435,
-0.5893504619598389,
0.22086310386657715,
0.5867732167243958,
0.41778290271759033,
-0.07477819919586182,
0.48060792684555054,
0.04714915528893471,
0.8302596807479858,
-0.33676964044570923,
0.4859067499637604,
-0.2933900058269501,
-0.15548890829086304,
-0.2692956328392029,
0.03384334594011307,
0.16031454503536224,
-0.6261483430862427,
-0.04506824538111687,
-0.7334246635437012,
0.042240533977746964,
0.03869505226612091,
0.9936093091964722,
0.1278771460056305,
0.13772405683994293,
-0.14807327091693878,
-0.11589564383029938,
0.6362619996070862,
-0.5463719964027405,
-0.031384192407131195,
0.5836986303329468,
0.18772435188293457,
0.08096469938755035,
-0.6601426601409912,
-0.5890055894851685,
0.15209102630615234,
-0.23797740042209625,
0.2763018310070038,
-0.15896542370319366,
-0.33301475644111633,
0.57811039686203,
0.5099068880081177,
-0.5252731442451477,
-0.3003655672073364,
-0.5320873856544495,
-0.12625651061534882,
1.207556128501892,
0.17357103526592255,
0.39668360352516174,
-0.452361136674881,
-0.25508812069892883,
-0.3775956928730011,
-0.25216400623321533,
0.34795448184013367,
0.4746883809566498,
0.4660979211330414,
-1.041273593902588,
0.582390546798706,
-0.19739419221878052,
0.5184391140937805,
0.15829703211784363,
-0.06228828802704811,
0.8167637586593628,
-0.4568321704864502,
-0.17523059248924255,
-0.08410093933343887,
1.0710774660110474,
0.6476434469223022,
0.20255887508392334,
0.11080764979124069,
-0.05284379422664642,
0.03071456216275692,
-0.1943238079547882,
-0.8783085346221924,
-0.4132274091243744,
0.6862487196922302,
-0.6542810797691345,
-0.5789064764976501,
0.10102134197950363,
-0.9399286508560181,
-0.2684573531150818,
-0.3211916387081146,
0.1636376976966858,
-0.39159974455833435,
-0.5081928968429565,
0.10146584361791611,
-0.3398263156414032,
0.17122530937194824,
0.02275143936276436,
-0.6597257852554321,
0.17165037989616394,
0.5150768756866455,
0.7007841467857361,
0.21524189412593842,
-0.3224242925643921,
-0.2186345010995865,
-0.18039412796497345,
-0.13251987099647522,
0.6735188961029053,
-0.3469545543193817,
-0.37140369415283203,
-0.1688033491373062,
0.3670109510421753,
-0.09995584934949875,
-0.30822890996932983,
0.9312955737113953,
0.07429352402687073,
0.1838105320930481,
-0.6045564413070679,
-0.37685632705688477,
0.03804779797792435,
0.3135513663291931,
-0.7176229953765869,
1.0962066650390625,
0.3126876652240753,
-1.0181701183319092,
0.24086329340934753,
-0.8067664504051208,
-0.3023637533187866,
0.03243536874651909,
0.08095753937959671,
-0.8516660332679749,
-0.2089286744594574,
0.23516331613063812,
0.7642345428466797,
-0.28471335768699646,
0.0071013434790074825,
-0.6645281314849854,
-0.1771414577960968,
0.42218154668807983,
0.2615211009979248,
1.2702507972717285,
0.13061092793941498,
-0.1252368688583374,
0.08884432166814804,
-0.9697945713996887,
0.18527209758758545,
0.3857485055923462,
-0.1947617083787918,
-0.11076413840055466,
-0.2361999750137329,
0.40756478905677795,
0.269461065530777,
0.09057425707578659,
-0.5817265510559082,
0.38381606340408325,
-0.12870751321315765,
0.48321372270584106,
0.6875330209732056,
0.027905819937586784,
0.3410314619541168,
-0.657734215259552,
0.368680864572525,
0.10836268961429596,
0.4168521761894226,
-0.07032585144042969,
-0.5344804525375366,
-0.471078485250473,
-0.3345189094543457,
0.36092835664749146,
0.4389631748199463,
-0.6282030344009399,
0.9384903907775879,
-0.31390222907066345,
-0.8059642314910889,
-0.6066886186599731,
0.06189892441034317,
0.1658829003572464,
0.3954092264175415,
0.4490096867084503,
-0.37833234667778015,
-0.6970815062522888,
-0.6834861040115356,
0.03135140985250473,
-0.25084879994392395,
0.22199547290802002,
0.38177743554115295,
0.8355399370193481,
-0.27754542231559753,
0.904015302658081,
-0.6196824312210083,
-0.27367791533470154,
-0.2721880376338959,
-0.28314104676246643,
0.4014940857887268,
0.8096039891242981,
0.7307328581809998,
-0.8648302555084229,
-0.5567947030067444,
-0.2539154291152954,
-0.7398831248283386,
-0.1304474174976349,
-0.10092513263225555,
-0.2251731902360916,
0.027454951778054237,
0.13372765481472015,
-0.6647493839263916,
0.53671795129776,
0.47802838683128357,
-0.6665268540382385,
0.5595746040344238,
0.14665982127189636,
0.020703697577118874,
-1.213855266571045,
0.37718042731285095,
0.21923911571502686,
0.023951852694153786,
-0.6038651466369629,
-0.1889984905719757,
0.007762005086988211,
-0.04509216919541359,
-0.12860910594463348,
0.5862983465194702,
-0.4028206765651703,
0.2600358724594116,
0.22019928693771362,
-0.017646854743361473,
0.06609833985567093,
0.4811294674873352,
-0.03045179694890976,
0.2947176694869995,
0.9781360030174255,
-0.39200079441070557,
0.6403098106384277,
0.5900905132293701,
-0.20770998299121857,
0.8568630814552307,
-0.7774320244789124,
-0.02744932845234871,
-0.2814273238182068,
0.3903001546859741,
-0.820118248462677,
-0.5175064206123352,
0.7916868925094604,
-0.7419654130935669,
0.3461025059223175,
-0.2590816915035248,
-0.48916929960250854,
-0.7622471451759338,
-0.6947458982467651,
0.14331696927547455,
0.5624315738677979,
-0.38171494007110596,
0.39280200004577637,
0.5753081440925598,
0.02963830530643463,
-0.425376832485199,
-0.830878734588623,
-0.1251051276922226,
-0.44534948468208313,
-0.7664080262184143,
0.41822299361228943,
-0.3566230833530426,
-0.11313489824533463,
0.11634296178817749,
0.17558719217777252,
0.026425059884786606,
0.016263242810964584,
0.3812195360660553,
0.2601800262928009,
0.10078524053096771,
-0.026995602995157242,
-0.0829194039106369,
-0.18624606728553772,
0.1312357485294342,
-0.1685291826725006,
0.2132355272769928,
-0.2670978307723999,
-0.09298353642225266,
-0.6681861877441406,
0.18301817774772644,
0.5043468475341797,
-0.2611340284347534,
0.7132401466369629,
0.8273559212684631,
-0.21542693674564362,
-0.002529105404391885,
-0.47836199402809143,
-0.13638149201869965,
-0.40092146396636963,
-0.005854749120771885,
-0.25651782751083374,
-0.5850786566734314,
0.9338040947914124,
0.22783057391643524,
0.0959809422492981,
0.5973952412605286,
0.47628656029701233,
-0.1486496776342392,
0.7295125722885132,
0.3321838974952698,
-0.2787639796733856,
0.5118195414543152,
-0.6722803115844727,
-0.20268315076828003,
-0.8524492979049683,
-0.4537169337272644,
-0.577947199344635,
-0.5173720121383667,
-0.861507773399353,
-0.4535641074180603,
0.21064350008964539,
0.17376916110515594,
-0.2848834991455078,
0.4243983030319214,
-0.9408039450645447,
0.28304001688957214,
0.35336780548095703,
0.22968266904354095,
-0.09946361184120178,
0.11050216853618622,
0.03244152292609215,
0.08251673728227615,
-0.6454012393951416,
-0.20338410139083862,
1.1297379732131958,
0.5459219217300415,
0.5788822174072266,
-0.03323846310377121,
0.8475857973098755,
0.05264982581138611,
0.25828513503074646,
-0.49749255180358887,
0.4763530492782593,
0.06214357540011406,
-0.5205099582672119,
-0.18408674001693726,
-0.45503002405166626,
-0.8931755423545837,
-0.09744785726070404,
-0.47579702734947205,
-0.6454355716705322,
0.5633068084716797,
0.12499311566352844,
-0.2439178228378296,
0.27552473545074463,
-0.6361280083656311,
0.8325419425964355,
-0.05265574902296066,
-0.5375299453735352,
0.32651299238204956,
-1.0447964668273926,
0.23579376935958862,
0.2390637844800949,
0.322507381439209,
-0.37743017077445984,
0.04576756805181503,
0.9274371266365051,
-0.7773861885070801,
0.9845938682556152,
-0.3899451196193695,
0.21167506277561188,
0.5987294912338257,
-0.3687714636325836,
0.46431276202201843,
0.10642305761575699,
-0.2492312788963318,
0.31108471751213074,
0.09025654196739197,
-0.5036411285400391,
-0.4411229193210602,
0.634300947189331,
-0.7259602546691895,
0.10186147689819336,
-0.39698657393455505,
-0.4161243140697479,
0.07029294222593307,
0.17166690528392792,
0.22676759958267212,
0.36674413084983826,
0.009869519621133804,
0.23134386539459229,
0.44551119208335876,
-0.15218637883663177,
0.37561750411987305,
0.042611878365278244,
-0.09813957661390305,
-0.7909332513809204,
0.9516037106513977,
0.09574873745441437,
0.013303331099450588,
-0.004972819704562426,
0.39744794368743896,
-0.4690208435058594,
-0.1601429432630539,
-0.6334587335586548,
0.44728150963783264,
-0.3682856857776642,
-0.39243972301483154,
-0.4981868863105774,
-0.14732585847377777,
-0.6807642579078674,
-0.15358446538448334,
-0.20719026029109955,
-0.538830578327179,
-0.32017049193382263,
-0.1479032188653946,
0.9574666023254395,
0.4086458384990692,
-0.6870641112327576,
0.09652664512395859,
-0.5653125643730164,
0.22341062128543854,
-0.058576833456754684,
0.6294158697128296,
-0.14247314631938934,
-0.2626640200614929,
-0.22702786326408386,
0.08631767332553864,
-0.23061718046665192,
-0.6611890196800232,
0.2889121472835541,
-0.047556791454553604,
0.36831146478652954,
0.12032593786716461,
0.16754776239395142,
0.6998913288116455,
0.003365287324413657,
0.6875482201576233,
0.3450280725955963,
-0.8062447309494019,
0.6267654299736023,
-0.5557637810707092,
0.20849007368087769,
0.7086049318313599,
0.37757042050361633,
-0.6044318675994873,
-0.11588171124458313,
-0.9413864612579346,
-0.7902288436889648,
0.7640706896781921,
0.453474760055542,
0.0019469682592898607,
0.2090979665517807,
0.44425833225250244,
-0.26080015301704407,
0.29231753945350647,
-0.7092781662940979,
-0.8194145560264587,
-0.4756360948085785,
-0.36428171396255493,
-0.014984204433858395,
-0.11639118939638138,
-0.25110411643981934,
-0.6562608480453491,
0.7670586705207825,
-0.17057281732559204,
0.3736906945705414,
0.42570531368255615,
0.39183902740478516,
-0.16830892860889435,
0.058819446712732315,
0.3124178349971771,
0.3657870590686798,
-0.24171671271324158,
-0.32314833998680115,
-0.11785145103931427,
-0.5698837637901306,
-0.10614805668592453,
0.4813036024570465,
-0.36642903089523315,
-0.08911298215389252,
0.36056965589523315,
0.8987895846366882,
0.008709440939128399,
-0.2664082944393158,
0.590294599533081,
-0.14225399494171143,
-0.46515655517578125,
-0.4222310781478882,
-0.019977379590272903,
0.1501823365688324,
0.1961684376001358,
0.06196712329983711,
0.1107720136642456,
-0.11791493743658066,
-0.44885656237602234,
0.36567434668540955,
0.25074219703674316,
-0.4207744002342224,
-0.4262840747833252,
0.5880545377731323,
0.13541974127292633,
-0.08249065279960632,
0.44926905632019043,
-0.1348213255405426,
-0.638822078704834,
0.7825160622596741,
0.1327587366104126,
0.7313344478607178,
-0.1575523316860199,
0.304921954870224,
0.7886177897453308,
0.22168052196502686,
-0.06323302537202835,
0.5375238656997681,
-0.23373998701572418,
-0.6514346599578857,
-0.08693418651819229,
-0.5859696269035339,
-0.10348748415708542,
0.06975321471691132,
-0.840293824672699,
0.44513291120529175,
-0.5002821087837219,
-0.2106437385082245,
-0.03139888867735863,
0.35930946469306946,
-0.6925167441368103,
0.24800239503383636,
-0.07659177482128143,
1.0380653142929077,
-1.0254764556884766,
0.4388752579689026,
0.7220326066017151,
-0.6618050932884216,
-1.2040406465530396,
-0.1808677464723587,
0.1447276622056961,
-0.5619167685508728,
0.22732654213905334,
0.1502722203731537,
0.5467541217803955,
-0.049665797501802444,
-0.8953911066055298,
-0.6753261089324951,
1.1806995868682861,
-0.013953931629657745,
-0.26457783579826355,
0.383513480424881,
0.14799539744853973,
0.6061661243438721,
-0.3492102324962616,
0.42410773038864136,
0.7170363068580627,
0.7315527200698853,
0.29452723264694214,
-0.7157222628593445,
0.2602514922618866,
-0.580263078212738,
-0.2155749648809433,
0.050222769379615784,
-1.047002911567688,
0.6120705604553223,
-0.217886820435524,
-0.055145081132650375,
0.03449326381087303,
0.6172352433204651,
0.4850461483001709,
0.39643368124961853,
0.4263313114643097,
0.7410918474197388,
0.8097020387649536,
-0.327035516500473,
1.208659052848816,
-0.2880854904651642,
0.6517259478569031,
0.7525319457054138,
0.05342257395386696,
0.5037374496459961,
0.26568669080734253,
-0.37551066279411316,
0.5452756881713867,
0.6945730447769165,
-0.40239617228507996,
0.2582334876060486,
0.381881982088089,
-0.08501043170690536,
-0.08104199171066284,
-0.24865472316741943,
-0.5998339056968689,
0.3092477023601532,
0.23506826162338257,
-0.40360358357429504,
0.08038854598999023,
-0.10681258887052536,
0.34858280420303345,
-0.02410135045647621,
-0.3058358132839203,
0.6538914442062378,
0.029226673766970634,
-0.40144574642181396,
0.6393764615058899,
-0.20842918753623962,
0.6735628247261047,
-0.5362150073051453,
0.11785563081502914,
-0.15030409395694733,
0.12104152888059616,
-0.6692247986793518,
-1.0526150465011597,
0.4260895252227783,
-0.062186188995838165,
-0.2863043546676636,
-0.39835426211357117,
0.7464976906776428,
-0.4908364415168762,
-0.7993863821029663,
0.20622868835926056,
0.19233010709285736,
0.3290921449661255,
0.1797952800989151,
-1.3031913042068481,
0.6487743854522705,
0.209416002035141,
-0.38995254039764404,
0.1598537564277649,
0.4835132956504822,
0.1429377794265747,
0.5504665970802307,
0.7157790064811707,
0.22259879112243652,
-0.21715466678142548,
0.07674448192119598,
1.0842050313949585,
-0.5719038248062134,
-0.4842434227466583,
-0.7462500929832458,
0.9627358317375183,
-0.43112677335739136,
-0.3895494341850281,
0.6423624157905579,
0.7918066382408142,
0.8511136174201965,
-0.007600320503115654,
0.923925518989563,
-0.6503235101699829,
0.770618200302124,
-0.2012784630060196,
0.9484955668449402,
-0.6728121042251587,
-0.0377628467977047,
-0.7062491178512573,
-0.5291852951049805,
-0.4497354030609131,
0.7054072022438049,
-0.1804439276456833,
0.17641909420490265,
0.35956019163131714,
0.9400842189788818,
0.04035535827279091,
0.18544965982437134,
-0.21897630393505096,
0.335610568523407,
0.25087109208106995,
0.5230933427810669,
0.5032013654708862,
-0.88481205701828,
0.41387930512428284,
-0.7748016715049744,
-0.306092232465744,
0.061727557331323624,
-0.8712937235832214,
-0.9543589353561401,
-0.9274826049804688,
-0.6393676996231079,
-0.7220999002456665,
-0.2427772730588913,
1.0350875854492188,
0.7555443644523621,
-0.710706889629364,
-0.26845139265060425,
0.05888286978006363,
0.2970777750015259,
-0.07789728045463562,
-0.32867327332496643,
0.5809569954872131,
0.3098761737346649,
-0.6061071157455444,
-0.1405418962240219,
-0.005206964910030365,
0.2271229326725006,
0.07299133390188217,
-0.08212756365537643,
-0.08156518638134003,
-0.3428918421268463,
0.38984790444374084,
0.48796364665031433,
-0.3190314769744873,
-0.09637390822172165,
-0.23960819840431213,
0.0365276075899601,
0.13857288658618927,
0.5018298625946045,
-0.5964582562446594,
0.10591787844896317,
0.6246342062950134,
0.32025039196014404,
0.4476985037326813,
0.25336673855781555,
0.024413814768195152,
-0.4905607998371124,
0.07218367606401443,
-0.003345607314258814,
0.29636281728744507,
0.42165735363960266,
-0.42842039465904236,
0.791858434677124,
0.5972838401794434,
-0.5243682265281677,
-0.8311553001403809,
-0.17029938101768494,
-1.2664474248886108,
0.07395777106285095,
1.0301607847213745,
0.001221082522533834,
-0.547504723072052,
-0.0010635136859491467,
-0.23437120020389557,
0.05716476961970329,
-0.6071857213973999,
0.4586573541164398,
0.4935576021671295,
-0.16434791684150696,
0.045999687165021896,
-0.259622186422348,
0.6710783243179321,
0.007014583796262741,
-0.9724518656730652,
0.17076410353183746,
0.413619726896286,
0.4679730534553528,
0.2968906760215759,
0.8289289474487305,
-0.23486846685409546,
0.08452504128217697,
-0.034381866455078125,
0.30306369066238403,
-0.23061437904834747,
0.03922240063548088,
-0.3422490060329437,
-0.08050894737243652,
-0.47968634963035583,
-0.21289944648742676
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/our-last-night | huggingartists | 2022-10-25T09:40:47Z | 293 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:40:47Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/our-last-night"
## 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.287611 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/03627944481dcdb782595e9d3e351853.959x959x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/our-last-night">
<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">Our Last Night</div>
<a href="https://genius.com/artists/our-last-night">
<div style="text-align: center; font-size: 14px;">@our-last-night</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/our-last-night).
### 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/our-last-night")
```
## 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|
|------:|---------:|---:|
|179| -| -|
'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/our-last-night")
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.5835414528846741,
-0.5346035957336426,
0.14536643028259277,
0.19934342801570892,
-0.2539854347705841,
0.014959648251533508,
-0.3273714482784271,
-0.4621100127696991,
0.8454306721687317,
0.4366481304168701,
-0.8637785911560059,
-0.8624162077903748,
-0.4907689094543457,
0.16763214766979218,
-0.10610610246658325,
1.2595993280410767,
-0.17606611549854279,
-0.38797256350517273,
-0.29252973198890686,
-0.22628068923950195,
-0.2638598680496216,
-0.34658128023147583,
-0.3152237832546234,
-0.37337297201156616,
0.3936278223991394,
0.49696630239486694,
0.7377960085868835,
0.8112581372261047,
0.5705416798591614,
0.34234437346458435,
-0.0823054388165474,
-0.03488708660006523,
-0.41858941316604614,
-0.18419000506401062,
0.22800599038600922,
-0.31794071197509766,
-0.630979061126709,
0.22907254099845886,
0.5353375673294067,
0.47524768114089966,
-0.14525701105594635,
0.4811299443244934,
0.02958226017653942,
0.8932284712791443,
-0.32918423414230347,
0.4412122964859009,
-0.26870158314704895,
-0.13360752165317535,
-0.3122999370098114,
0.04060265049338341,
0.15031997859477997,
-0.6230329275131226,
-0.029992157593369484,
-0.7210514545440674,
0.031535010784864426,
0.02504892647266388,
1.0698837041854858,
0.08872053772211075,
0.0938728079199791,
-0.16697128117084503,
-0.15505293011665344,
0.5323686599731445,
-0.6083515882492065,
-0.009172697551548481,
0.6430714130401611,
0.1897614598274231,
-0.02582036703824997,
-0.636513888835907,
-0.6360883116722107,
-0.004167492035776377,
-0.16702419519424438,
0.2999761402606964,
-0.19345855712890625,
-0.30411818623542786,
0.49534451961517334,
0.4606536328792572,
-0.5367368459701538,
-0.2573280334472656,
-0.5308666229248047,
-0.06493338942527771,
1.2277531623840332,
0.2068493366241455,
0.3367713987827301,
-0.5017030835151672,
-0.20799989998340607,
-0.3464621901512146,
-0.27586790919303894,
0.32048726081848145,
0.5896406769752502,
0.4037810266017914,
-1.0347552299499512,
0.6538537740707397,
-0.16989651322364807,
0.5508497953414917,
0.14348053932189941,
0.02972124144434929,
0.8248193860054016,
-0.41174301505088806,
-0.09892262518405914,
-0.11005717515945435,
1.0596338510513306,
0.7806957364082336,
0.1122196689248085,
0.0998518317937851,
-0.05264456197619438,
0.13717323541641235,
-0.16413933038711548,
-0.8169735074043274,
-0.4364960789680481,
0.6606423854827881,
-0.5970238447189331,
-0.632179319858551,
0.009906456805765629,
-0.9267668724060059,
-0.2311192750930786,
-0.3667672276496887,
0.26775872707366943,
-0.34189778566360474,
-0.5366629958152771,
0.1909877061843872,
-0.28092533349990845,
0.13922806084156036,
0.01732022874057293,
-0.5819119811058044,
0.22486668825149536,
0.595421314239502,
0.7630067467689514,
0.1290089190006256,
-0.2760999798774719,
-0.25703972578048706,
-0.20696765184402466,
-0.15105439722537994,
0.580891489982605,
-0.2990063428878784,
-0.357350617647171,
-0.1645050346851349,
0.3317124545574188,
-0.030751246958971024,
-0.24253301322460175,
0.9244591593742371,
0.06854542344808578,
0.21165812015533447,
-0.5993157625198364,
-0.46774399280548096,
0.010127252899110317,
0.22194038331508636,
-0.6780564188957214,
1.0610077381134033,
0.34677138924598694,
-0.9574713110923767,
0.1670845001935959,
-0.7964344024658203,
-0.27020782232284546,
0.0838736817240715,
0.07703050971031189,
-0.7913879156112671,
-0.11311611533164978,
0.1815340667963028,
0.7723767161369324,
-0.23156051337718964,
0.038521088659763336,
-0.5451833605766296,
-0.17425291240215302,
0.40072008967399597,
0.25702059268951416,
1.1755976676940918,
0.12831050157546997,
-0.12995794415473938,
0.07276199012994766,
-1.0120421648025513,
0.08359906822443008,
0.4518704116344452,
-0.10565251111984253,
-0.11871322989463806,
-0.24245423078536987,
0.4620003402233124,
0.22200606763362885,
0.08278898894786835,
-0.6461837291717529,
0.35732778906822205,
-0.20504890382289886,
0.4852580726146698,
0.7175165414810181,
-0.02473798394203186,
0.3591853082180023,
-0.6791964173316956,
0.38784167170524597,
0.036383550614118576,
0.3735432028770447,
0.06010615453124046,
-0.558611273765564,
-0.43923577666282654,
-0.23202484846115112,
0.2238490730524063,
0.4670252501964569,
-0.6770458817481995,
1.0044453144073486,
-0.3137872517108917,
-0.8498625755310059,
-0.5544204711914062,
0.10597150772809982,
0.2137567102909088,
0.5016287565231323,
0.37829044461250305,
-0.43649786710739136,
-0.6719014048576355,
-0.5926377177238464,
0.1476103812456131,
-0.2290339320898056,
0.18762269616127014,
0.4449726343154907,
0.8303213119506836,
-0.3569457530975342,
0.8199354410171509,
-0.7414785623550415,
-0.2766914367675781,
-0.3230392336845398,
-0.34432095289230347,
0.46951520442962646,
0.7735231518745422,
0.6881659030914307,
-0.8024324774742126,
-0.4846755266189575,
-0.2584407925605774,
-0.7127125859260559,
-0.12290015816688538,
-0.0910957008600235,
-0.2916828393936157,
0.06289967149496078,
0.11681598424911499,
-0.7127809524536133,
0.5206953883171082,
0.5405424237251282,
-0.6734169721603394,
0.6071825623512268,
0.1325584053993225,
-0.03168461099267006,
-1.2339682579040527,
0.2531585991382599,
0.21483130753040314,
-0.01025312952697277,
-0.6182088851928711,
-0.22340203821659088,
-0.11670668423175812,
-0.0377921387553215,
-0.0889560654759407,
0.6329216957092285,
-0.30735862255096436,
0.27498048543930054,
0.10994724929332733,
0.10609083622694016,
0.09201277792453766,
0.5289817452430725,
-0.0861087366938591,
0.19352570176124573,
1.005990982055664,
-0.33409860730171204,
0.6686984300613403,
0.5321369767189026,
-0.22665442526340485,
0.8378325700759888,
-0.7616855502128601,
0.06645872443914413,
-0.23650893568992615,
0.39215925335884094,
-0.8568540215492249,
-0.5646411180496216,
0.811996579170227,
-0.6680603623390198,
0.3786145746707916,
-0.28385576605796814,
-0.45832616090774536,
-0.7550725340843201,
-0.6591475605964661,
0.13667166233062744,
0.5519764423370361,
-0.3650972545146942,
0.41849714517593384,
0.5737576484680176,
0.063419871032238,
-0.35734498500823975,
-0.778526782989502,
-0.056712061166763306,
-0.34206336736679077,
-0.8272171020507812,
0.45548906922340393,
-0.35139065980911255,
-0.15846870839595795,
0.1591542512178421,
0.1286623477935791,
0.09768493473529816,
-0.06026807054877281,
0.4155014753341675,
0.3208734095096588,
0.06272267550230026,
-0.03569700941443443,
-0.11663810908794403,
-0.27063456177711487,
0.09395895153284073,
-0.1629895567893982,
0.28760257363319397,
-0.35354045033454895,
-0.09872768819332123,
-0.7150303721427917,
0.20851510763168335,
0.35758164525032043,
-0.14058440923690796,
0.6407169103622437,
0.8314504623413086,
-0.2382386028766632,
0.01419491320848465,
-0.5755329132080078,
-0.1522725522518158,
-0.4301196038722992,
0.012533429078757763,
-0.194046750664711,
-0.6438746452331543,
0.9708734750747681,
0.31302526593208313,
0.08901950716972351,
0.6029772758483887,
0.4665087163448334,
-0.17083337903022766,
0.6418372392654419,
0.34019795060157776,
-0.21071605384349823,
0.5419645309448242,
-0.7385304570198059,
-0.23567433655261993,
-0.852845311164856,
-0.39101678133010864,
-0.433436781167984,
-0.5284849405288696,
-0.8907379508018494,
-0.4066680371761322,
0.17637696862220764,
0.10737902671098709,
-0.1753370612859726,
0.49609023332595825,
-0.9768889546394348,
0.32132571935653687,
0.3048935532569885,
0.32652169466018677,
-0.1305447518825531,
0.030827905982732773,
0.11756627261638641,
0.14236332476139069,
-0.49850818514823914,
-0.1970449984073639,
1.197978138923645,
0.443081259727478,
0.5212130546569824,
-0.1466568559408188,
0.9232937097549438,
0.04550958797335625,
0.18558192253112793,
-0.4749239683151245,
0.5261719226837158,
0.051701877266168594,
-0.4277593493461609,
-0.1712658405303955,
-0.5611267685890198,
-0.8828290700912476,
-0.07955581694841385,
-0.37654629349708557,
-0.6686018109321594,
0.5357654690742493,
0.04153662174940109,
-0.22185902297496796,
0.3409671187400818,
-0.647319495677948,
0.8269182443618774,
-0.09912468492984772,
-0.4499024450778961,
0.27964192628860474,
-0.9926373958587646,
0.16894416511058807,
0.235235333442688,
0.28672248125076294,
-0.45750048756599426,
0.004488607868552208,
1.0368356704711914,
-0.8072729110717773,
0.9542684555053711,
-0.34926849603652954,
0.19414402544498444,
0.5820264220237732,
-0.3425554037094116,
0.5157479047775269,
0.13666732609272003,
-0.22250866889953613,
0.40796464681625366,
0.03663870319724083,
-0.45704370737075806,
-0.4351603090763092,
0.6710042357444763,
-0.7264315485954285,
0.06673470884561539,
-0.37659281492233276,
-0.39492160081863403,
0.12237484008073807,
0.11682315170764923,
0.30707964301109314,
0.4360860288143158,
0.05208149179816246,
0.15465660393238068,
0.37428852915763855,
-0.048016324639320374,
0.384004145860672,
0.05492780730128288,
-0.16639792919158936,
-0.8089342713356018,
0.9188084006309509,
0.15820132195949554,
-0.009740706533193588,
-0.025162668898701668,
0.4648190140724182,
-0.3251661956310272,
-0.22945766150951385,
-0.5030723214149475,
0.42996397614479065,
-0.4037117660045624,
-0.3770522177219391,
-0.5334386825561523,
-0.14341555535793304,
-0.527107834815979,
-0.3007071018218994,
-0.2574426829814911,
-0.5640777349472046,
-0.31845390796661377,
-0.28562140464782715,
1.04765784740448,
0.40226808190345764,
-0.7015007138252258,
0.16701196134090424,
-0.5402461290359497,
0.27727729082107544,
-0.11786560714244843,
0.5899884104728699,
-0.21805299818515778,
-0.2902904152870178,
-0.23202936351299286,
0.0605531670153141,
-0.16655094921588898,
-0.6575570702552795,
0.30093491077423096,
-0.04812439903616905,
0.33530086278915405,
0.043376024812459946,
0.11936895549297333,
0.6268752217292786,
-0.055992964655160904,
0.7170325517654419,
0.35809049010276794,
-0.8019184470176697,
0.6288065314292908,
-0.5075685381889343,
0.18897321820259094,
0.7299376726150513,
0.3341321647167206,
-0.5934396982192993,
-0.1454106718301773,
-0.9621999859809875,
-0.8562719821929932,
0.7350450754165649,
0.5325881242752075,
0.10485632717609406,
0.2427712231874466,
0.6079962253570557,
-0.1621326208114624,
0.3127043545246124,
-0.7000124454498291,
-0.8564737439155579,
-0.4334285855293274,
-0.3402771055698395,
-0.08877799659967422,
-0.08551221340894699,
-0.2258732169866562,
-0.6803934574127197,
0.7113739848136902,
-0.12812073528766632,
0.31182244420051575,
0.40443193912506104,
0.4093235731124878,
-0.24452582001686096,
0.014968283474445343,
0.2962798774242401,
0.4448927640914917,
-0.3138280510902405,
-0.3292839527130127,
-0.08059529215097427,
-0.6752583980560303,
-0.11514337360858917,
0.49899208545684814,
-0.37650740146636963,
-0.004345819354057312,
0.34954509139060974,
0.9015613794326782,
0.0204343069344759,
-0.2143099457025528,
0.5975340008735657,
-0.10775789618492126,
-0.36796656250953674,
-0.47889190912246704,
0.040048107504844666,
0.08391661942005157,
0.25768065452575684,
0.12954314053058624,
0.168071448802948,
-0.11656144261360168,
-0.386266827583313,
0.42768406867980957,
0.21313899755477905,
-0.4137580692768097,
-0.533866286277771,
0.5523492097854614,
0.05512712523341179,
-0.12729690968990326,
0.38929373025894165,
-0.2242339551448822,
-0.6040903925895691,
0.769957959651947,
0.04447638615965843,
0.8925204873085022,
-0.13415975868701935,
0.32943275570869446,
0.7223953604698181,
0.1928381472826004,
0.0017553041689097881,
0.6253464221954346,
-0.22172731161117554,
-0.6557486057281494,
-0.08960966765880585,
-0.5987881422042847,
-0.1258554458618164,
0.06306727230548859,
-0.790079653263092,
0.42863011360168457,
-0.482524037361145,
-0.2838302254676819,
-0.01872452162206173,
0.4202115833759308,
-0.7121448516845703,
0.15043199062347412,
-0.05696745589375496,
0.9398936033248901,
-1.0054657459259033,
0.39152300357818604,
0.6207702159881592,
-0.6494737863540649,
-1.0921003818511963,
-0.22172243893146515,
0.1792958825826645,
-0.5564166307449341,
0.1756959706544876,
0.165117546916008,
0.4854235351085663,
-0.09469147771596909,
-1.0049740076065063,
-0.6795580983161926,
1.1333813667297363,
-0.018330033868551254,
-0.32980039715766907,
0.2961204946041107,
0.10773824900388718,
0.6636818051338196,
-0.39273691177368164,
0.33290261030197144,
0.6511344909667969,
0.6309769153594971,
0.3555091619491577,
-0.6773095726966858,
0.2800035774707794,
-0.5483182072639465,
-0.23978884518146515,
0.09159976989030838,
-0.9490014910697937,
0.5726300477981567,
-0.21383585035800934,
0.012410640716552734,
-0.024202145636081696,
0.6421492695808411,
0.39893990755081177,
0.4735950827598572,
0.4195823073387146,
0.7737922668457031,
0.8023347854614258,
-0.36171454191207886,
1.227516531944275,
-0.19501739740371704,
0.630152702331543,
0.8181951642036438,
-0.04142998158931732,
0.5833187699317932,
0.18734599649906158,
-0.34722501039505005,
0.5301371812820435,
0.6253530979156494,
-0.4333053529262543,
0.33712875843048096,
0.43064069747924805,
-0.00939144752919674,
-0.08597445487976074,
-0.2427927702665329,
-0.617641031742096,
0.3383341431617737,
0.27247676253318787,
-0.24693626165390015,
0.03725219890475273,
0.02249721810221672,
0.4089769423007965,
-0.1126779094338417,
-0.2584426701068878,
0.6636391878128052,
0.11513632535934448,
-0.31904080510139465,
0.6132493019104004,
-0.24035391211509705,
0.6920334696769714,
-0.5759726166725159,
0.1413951814174652,
-0.1292613297700882,
0.11569352447986603,
-0.6700341105461121,
-1.0803223848342896,
0.3741558790206909,
-0.08382857590913773,
-0.20908594131469727,
-0.32655200362205505,
0.7038298845291138,
-0.45855993032455444,
-0.8190153241157532,
0.22940902411937714,
0.12171299755573273,
0.29748159646987915,
0.16990475356578827,
-1.22911536693573,
0.6234949231147766,
0.19453130662441254,
-0.4596385955810547,
0.08959434181451797,
0.44692906737327576,
0.21515561640262604,
0.5494800209999084,
0.7920186519622803,
0.2442488968372345,
-0.19874586164951324,
0.14115534722805023,
1.0922248363494873,
-0.5835312604904175,
-0.457974910736084,
-0.7474852204322815,
0.9153944849967957,
-0.33977675437927246,
-0.43759486079216003,
0.6494855284690857,
0.7525151371955872,
0.8827893137931824,
0.0641242042183876,
0.7458457350730896,
-0.589712381362915,
0.6393280625343323,
-0.2662721276283264,
0.9311308264732361,
-0.7188273668289185,
-0.00763659318909049,
-0.756557047367096,
-0.5998653173446655,
-0.4393225312232971,
0.6013190150260925,
-0.18693873286247253,
0.1572074443101883,
0.29056015610694885,
0.9256343245506287,
0.07567497342824936,
0.16876110434532166,
-0.16019977629184723,
0.35224735736846924,
0.2654648721218109,
0.5864898562431335,
0.5211926102638245,
-0.9001128673553467,
0.3862864077091217,
-0.8411852121353149,
-0.28248360753059387,
-0.042603276669979095,
-0.8442009091377258,
-0.9352545142173767,
-0.9678187966346741,
-0.7460814118385315,
-0.7633187174797058,
-0.23070524632930756,
1.0716824531555176,
0.6589074730873108,
-0.7552847266197205,
-0.2613380253314972,
0.07068011164665222,
0.252826064825058,
-0.09310219436883926,
-0.32195591926574707,
0.7087681889533997,
0.3318238854408264,
-0.5195404291152954,
-0.08729160577058792,
0.02740640938282013,
0.18171636760234833,
0.10593435168266296,
-0.07870722562074661,
-0.08576495200395584,
-0.2980861961841583,
0.365810751914978,
0.3996298015117645,
-0.33669987320899963,
-0.10358142852783203,
-0.23538589477539062,
-0.030271388590335846,
0.18183284997940063,
0.41718584299087524,
-0.5022438764572144,
0.19010739028453827,
0.6878421306610107,
0.2349611073732376,
0.5169020295143127,
0.14800935983657837,
0.017574947327375412,
-0.5106514692306519,
0.04087534919381142,
0.034443072974681854,
0.37002402544021606,
0.4257432222366333,
-0.515485942363739,
0.8339857459068298,
0.5636692643165588,
-0.5674735903739929,
-0.8788712024688721,
-0.15506300330162048,
-1.3426765203475952,
0.15548363327980042,
1.0361632108688354,
0.05868310108780861,
-0.5373788475990295,
0.026112709194421768,
-0.23988766968250275,
0.08163773268461227,
-0.6187131404876709,
0.4468204379081726,
0.49168094992637634,
-0.13604633510112762,
0.07339677214622498,
-0.364956259727478,
0.7027102708816528,
-0.05243881046772003,
-0.9462372660636902,
0.13697180151939392,
0.4388749599456787,
0.38286468386650085,
0.35993635654449463,
0.7862749695777893,
-0.1764286309480667,
0.10080013424158096,
-0.04870946332812309,
0.22203218936920166,
-0.26877400279045105,
0.023191211745142937,
-0.3606170415878296,
-0.15853697061538696,
-0.6103389263153076,
-0.255624383687973
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/ramil | huggingartists | 2022-10-25T09:42:31Z | 293 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:42:31Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/ramil"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 0.158728 MB
<div class="inline-flex flex-col" style="line-height: 1.5;">
<div class="flex">
<div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('https://images.genius.com/0debcd46861577e3776b41aa3e3d7164.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/ramil">
<div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div>
</a>
<div style="text-align: center; font-size: 16px; font-weight: 800">Ramil’</div>
<a href="https://genius.com/artists/ramil">
<div style="text-align: center; font-size: 14px;">@ramil</div>
</a>
</div>
### Dataset Summary
The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists.
Model is available [here](https://huggingface.co/huggingartists/ramil).
### Supported Tasks and Leaderboards
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Languages
en
## How to use
How to load this dataset directly with the datasets library:
```python
from datasets import load_dataset
dataset = load_dataset("huggingartists/ramil")
```
## Dataset Structure
An example of 'train' looks as follows.
```
This example was too long and was cropped:
{
"text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..."
}
```
### Data Fields
The data fields are the same among all splits.
- `text`: a `string` feature.
### Data Splits
| train |validation|test|
|------:|---------:|---:|
|54| -| -|
'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code:
```python
from datasets import load_dataset, Dataset, DatasetDict
import numpy as np
datasets = load_dataset("huggingartists/ramil")
train_percentage = 0.9
validation_percentage = 0.07
test_percentage = 0.03
train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))])
datasets = DatasetDict(
{
'train': Dataset.from_dict({'text': list(train)}),
'validation': Dataset.from_dict({'text': list(validation)}),
'test': Dataset.from_dict({'text': list(test)})
}
)
```
## Dataset Creation
### Curation Rationale
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the source language producers?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Annotations
#### Annotation process
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the annotators?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Personal and Sensitive Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Discussion of Biases
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Other Known Limitations
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Additional Information
### Dataset Curators
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Licensing Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Citation Information
```
@InProceedings{huggingartists,
author={Aleksey Korshuk}
year=2021
}
```
## About
*Built by Aleksey Korshuk*
[](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.6436223983764648,
-0.4901158809661865,
0.05442553386092186,
0.30664125084877014,
-0.23864701390266418,
-0.002084913896396756,
-0.30056264996528625,
-0.4285181760787964,
0.8396720886230469,
0.33907216787338257,
-0.9106885194778442,
-0.8257585763931274,
-0.5901824235916138,
0.10324405133724213,
-0.09247228503227234,
1.322485089302063,
-0.20266075432300568,
-0.35856392979621887,
-0.2876337468624115,
-0.2823932468891144,
-0.331874817609787,
-0.27385905385017395,
-0.32675471901893616,
-0.3299047648906708,
0.36000072956085205,
0.5081766843795776,
0.6980733275413513,
0.8715506792068481,
0.5195508003234863,
0.34660762548446655,
-0.10748281329870224,
0.034849245101213455,
-0.39478468894958496,
-0.09616895765066147,
0.1845407336950302,
-0.26017239689826965,
-0.690013587474823,
0.25193196535110474,
0.5786221027374268,
0.38057941198349,
-0.10564404726028442,
0.4931981563568115,
0.07162706553936005,
0.8804013729095459,
-0.29537346959114075,
0.48895806074142456,
-0.23302532732486725,
-0.182394877076149,
-0.2859242260456085,
0.06034645438194275,
0.18732035160064697,
-0.6070758700370789,
-0.024389034137129784,
-0.7191261649131775,
0.05309637263417244,
0.020232802256941795,
1.0331957340240479,
0.06588222831487656,
0.1285915970802307,
-0.17774732410907745,
-0.16031363606452942,
0.5561704039573669,
-0.5756437182426453,
-0.008769703097641468,
0.5806217193603516,
0.16273432970046997,
0.04772348701953888,
-0.6059871912002563,
-0.6110915541648865,
0.09523423761129379,
-0.17886945605278015,
0.28373420238494873,
-0.13994401693344116,
-0.33390870690345764,
0.5265665650367737,
0.5413364768028259,
-0.5258258581161499,
-0.2550012469291687,
-0.5433143973350525,
-0.11371425539255142,
1.1699415445327759,
0.17342817783355713,
0.4151247441768646,
-0.47926563024520874,
-0.2294759750366211,
-0.4049963057041168,
-0.25579187273979187,
0.3437526524066925,
0.5500695109367371,
0.40856117010116577,
-1.0326799154281616,
0.6219663619995117,
-0.1493685245513916,
0.5655922293663025,
0.12227319180965424,
-0.03592606633901596,
0.785081684589386,
-0.3961583375930786,
-0.11986946314573288,
-0.1374215930700302,
1.0710406303405762,
0.676406979560852,
0.20490646362304688,
0.12167341262102127,
-0.08846639096736908,
0.03583730757236481,
-0.16373711824417114,
-0.8633455038070679,
-0.39079660177230835,
0.6318597793579102,
-0.5925467014312744,
-0.5872185230255127,
0.13587023317813873,
-0.9914078116416931,
-0.22913306951522827,
-0.27810221910476685,
0.255031943321228,
-0.39907515048980713,
-0.5317621231079102,
0.17127758264541626,
-0.27544358372688293,
0.15792016685009003,
0.06559039652347565,
-0.6080916523933411,
0.22260761260986328,
0.5737658739089966,
0.7719399929046631,
0.2009500116109848,
-0.3069131076335907,
-0.2607511878013611,
-0.1552560180425644,
-0.10549043864011765,
0.6741220951080322,
-0.2859075665473938,
-0.3669922351837158,
-0.179379403591156,
0.30187734961509705,
-0.10431607067584991,
-0.2987062335014343,
0.8967082500457764,
0.03616923838853836,
0.17311961948871613,
-0.5559553503990173,
-0.423885703086853,
0.006411080714315176,
0.2818548381328583,
-0.7760069370269775,
1.0521987676620483,
0.32336997985839844,
-1.0221055746078491,
0.1881287544965744,
-0.8084732294082642,
-0.29768499732017517,
0.006009282078593969,
0.046851783990859985,
-0.8040300607681274,
-0.1998731940984726,
0.21176311373710632,
0.7369146347045898,
-0.3633906841278076,
0.004883963614702225,
-0.5797111392021179,
-0.11941338330507278,
0.39522799849510193,
0.24289511144161224,
1.1882144212722778,
0.1320316642522812,
-0.10410835593938828,
0.08272688090801239,
-0.9324432015419006,
0.13019360601902008,
0.42808997631073,
-0.15347450971603394,
-0.07320662587881088,
-0.22842983901500702,
0.4261923134326935,
0.2839969992637634,
0.06648923456668854,
-0.6048615574836731,
0.3867753744125366,
-0.19159065186977386,
0.4537736773490906,
0.7566658854484558,
0.004262715112417936,
0.30386802554130554,
-0.6866939663887024,
0.39795851707458496,
0.08493602275848389,
0.3660750389099121,
-0.0001521242957096547,
-0.5769863128662109,
-0.45221760869026184,
-0.3307085335254669,
0.30365803837776184,
0.47325098514556885,
-0.6167032718658447,
0.9613415598869324,
-0.33440595865249634,
-0.8318496942520142,
-0.650658130645752,
0.16468842327594757,
0.190787211060524,
0.525764524936676,
0.356667697429657,
-0.42431437969207764,
-0.5940414667129517,
-0.6863626837730408,
0.0816931501030922,
-0.2641814649105072,
0.20996332168579102,
0.4121040105819702,
0.818091630935669,
-0.25272345542907715,
0.8386614322662354,
-0.7132505178451538,
-0.2842343747615814,
-0.2952258586883545,
-0.29741621017456055,
0.3916538655757904,
0.8155370950698853,
0.683299720287323,
-0.8654931783676147,
-0.5106441378593445,
-0.2468254417181015,
-0.7051692008972168,
-0.10848449170589447,
-0.011898230761289597,
-0.2795857787132263,
0.02725461684167385,
0.11234681308269501,
-0.7427016496658325,
0.555881679058075,
0.4788300693035126,
-0.6474760174751282,
0.5737519264221191,
0.11497022956609726,
0.031757380813360214,
-1.2897943258285522,
0.36386638879776,
0.25834164023399353,
0.034768298268318176,
-0.5855368375778198,
-0.22351059317588806,
-0.05884387716650963,
-0.04742441326379776,
-0.10939432680606842,
0.6462173461914062,
-0.3250913619995117,
0.3157899081707001,
0.12889136373996735,
0.04425482824444771,
0.09313210844993591,
0.439442902803421,
-0.08821769058704376,
0.3002532720565796,
1.0105693340301514,
-0.3611910045146942,
0.665600597858429,
0.6161718368530273,
-0.23570731282234192,
0.8402088284492493,
-0.8096626400947571,
-0.010033016093075275,
-0.27940747141838074,
0.40343576669692993,
-0.8496204018592834,
-0.5369176864624023,
0.8165035843849182,
-0.7152193188667297,
0.41746294498443604,
-0.2347845435142517,
-0.5707883238792419,
-0.7737718224525452,
-0.6952419877052307,
0.17000260949134827,
0.5737706422805786,
-0.34435275197029114,
0.39444583654403687,
0.5941085815429688,
0.10215973854064941,
-0.39221084117889404,
-0.7754700183868408,
-0.1745501309633255,
-0.3867747485637665,
-0.8360282778739929,
0.38995158672332764,
-0.35228201746940613,
-0.11156643182039261,
0.15046747028827667,
0.08611124753952026,
0.06960191577672958,
-0.003162017557770014,
0.40616846084594727,
0.3249850571155548,
0.08374055474996567,
-0.011638803407549858,
-0.10689790546894073,
-0.2554081678390503,
0.10975781083106995,
-0.1938883364200592,
0.23812814056873322,
-0.30657750368118286,
-0.12421292811632156,
-0.6725757122039795,
0.2233719527721405,
0.46109169721603394,
-0.2623460590839386,
0.7086958289146423,
0.8329629302024841,
-0.25326114892959595,
-0.03182185813784599,
-0.5360235571861267,
-0.15569926798343658,
-0.4118710160255432,
0.04110175371170044,
-0.2172703742980957,
-0.6204493641853333,
0.9509074091911316,
0.2211211919784546,
0.07146549969911575,
0.6568493843078613,
0.4814929664134979,
-0.08447718620300293,
0.6890761852264404,
0.3758113980293274,
-0.2917131781578064,
0.4845202565193176,
-0.6956977248191833,
-0.2289498746395111,
-0.8868610858917236,
-0.45374172925949097,
-0.48812317848205566,
-0.5276424884796143,
-0.8527266383171082,
-0.46722301840782166,
0.1911415308713913,
0.13332214951515198,
-0.22542044520378113,
0.4408824145793915,
-0.9227348566055298,
0.26096197962760925,
0.3041578531265259,
0.28572726249694824,
-0.14338015019893646,
0.08732540160417557,
0.09633636474609375,
0.11713486164808273,
-0.5705844163894653,
-0.23901185393333435,
1.1328282356262207,
0.4818582832813263,
0.5914014577865601,
-0.08307874947786331,
0.8256584405899048,
0.043260786682367325,
0.2417878359556198,
-0.5072042346000671,
0.517415463924408,
0.03077627718448639,
-0.5200283527374268,
-0.1325926035642624,
-0.4923590421676636,
-0.8892486691474915,
-0.1342928111553192,
-0.41096723079681396,
-0.7153869867324829,
0.47697964310646057,
0.07814689725637436,
-0.219458669424057,
0.3893624544143677,
-0.6254984736442566,
0.8501014709472656,
-0.03920508176088333,
-0.4643695056438446,
0.2491467297077179,
-1.0346847772598267,
0.2045786827802658,
0.18736357986927032,
0.25859197974205017,
-0.4322223365306854,
0.015897391363978386,
1.0189926624298096,
-0.8049852252006531,
0.923507034778595,
-0.356444776058197,
0.18032345175743103,
0.6002385020256042,
-0.3131312429904938,
0.44475457072257996,
0.14041703939437866,
-0.29348069429397583,
0.3048950433731079,
0.008512628264725208,
-0.48585158586502075,
-0.47450360655784607,
0.704387366771698,
-0.7521271109580994,
0.01644178107380867,
-0.36031830310821533,
-0.49633464217185974,
0.044910963624715805,
0.14950768649578094,
0.23073497414588928,
0.38211676478385925,
0.01277876179665327,
0.1096249595284462,
0.4808255732059479,
-0.13410787284374237,
0.2743121087551117,
0.04340983182191849,
-0.08522489666938782,
-0.7814213037490845,
0.9293944239616394,
0.16389426589012146,
0.04087156429886818,
-0.03662313148379326,
0.4151686429977417,
-0.3463842272758484,
-0.12683308124542236,
-0.6327745914459229,
0.4958772659301758,
-0.39693447947502136,
-0.39020779728889465,
-0.5057382583618164,
-0.21628113090991974,
-0.6326380372047424,
-0.16763243079185486,
-0.24130238592624664,
-0.5215461850166321,
-0.310939222574234,
-0.2028050273656845,
1.0743975639343262,
0.47287964820861816,
-0.6809809803962708,
0.12914448976516724,
-0.5338820219039917,
0.2685127854347229,
-0.062705397605896,
0.6453550457954407,
-0.0844084694981575,
-0.3267083168029785,
-0.22846883535385132,
0.063584104180336,
-0.18341976404190063,
-0.695265531539917,
0.28026875853538513,
-0.03933342918753624,
0.3693249225616455,
0.10490532219409943,
0.09371224790811539,
0.6758865118026733,
-0.05642054229974747,
0.6138416528701782,
0.2815166115760803,
-0.7624199986457825,
0.6841658353805542,
-0.513138473033905,
0.15630555152893066,
0.7253859639167786,
0.39635398983955383,
-0.6002146005630493,
-0.11816233396530151,
-0.9423973560333252,
-0.8534484505653381,
0.8193008899688721,
0.4229460656642914,
0.05397147312760353,
0.22630658745765686,
0.5424521565437317,
-0.17696869373321533,
0.2855599820613861,
-0.6253437995910645,
-0.8596646189689636,
-0.39018091559410095,
-0.35484743118286133,
-0.029065487906336784,
-0.09022879600524902,
-0.26481401920318604,
-0.6917685270309448,
0.7694148421287537,
-0.0923456996679306,
0.3348318040370941,
0.39276158809661865,
0.40728437900543213,
-0.19291484355926514,
-0.02055012807250023,
0.28852126002311707,
0.37556737661361694,
-0.26756325364112854,
-0.31061050295829773,
-0.15601900219917297,
-0.6330040693283081,
-0.08708573132753372,
0.5062592625617981,
-0.3472004532814026,
-0.11060275137424469,
0.2875712811946869,
0.898030161857605,
-0.030199749395251274,
-0.2606752812862396,
0.5937401056289673,
-0.0593111515045166,
-0.39414462447166443,
-0.36609235405921936,
0.004432917572557926,
0.14988704025745392,
0.2273518592119217,
0.04158950597047806,
0.13085868954658508,
-0.12643496692180634,
-0.3608538508415222,
0.41906872391700745,
0.2493486851453781,
-0.38284122943878174,
-0.4881088435649872,
0.5847702622413635,
0.058901380747556686,
-0.11404470354318619,
0.48199665546417236,
-0.1489257514476776,
-0.5935682654380798,
0.7753239870071411,
0.12388035655021667,
0.8163304924964905,
-0.14719630777835846,
0.3399721086025238,
0.7365590929985046,
0.2192816138267517,
-0.06608060002326965,
0.5394059419631958,
-0.19819797575473785,
-0.6344481706619263,
-0.08213744312524796,
-0.5867398977279663,
-0.08623285591602325,
0.0688071995973587,
-0.8165470957756042,
0.45788270235061646,
-0.5094338655471802,
-0.21111246943473816,
0.021096905693411827,
0.37998223304748535,
-0.715042233467102,
0.1859559714794159,
-0.05354757979512215,
1.0585683584213257,
-1.057739019393921,
0.47690317034721375,
0.7206295132637024,
-0.683845043182373,
-1.182755708694458,
-0.14680548012256622,
0.19754217565059662,
-0.6098726391792297,
0.26532843708992004,
0.20686236023902893,
0.48281437158584595,
-0.04964800924062729,
-0.899099588394165,
-0.652833104133606,
1.1834157705307007,
0.02905743196606636,
-0.15397198498249054,
0.37344890832901,
0.11648303270339966,
0.6145635843276978,
-0.3458637595176697,
0.34222233295440674,
0.6147925853729248,
0.694594144821167,
0.30679866671562195,
-0.6945486664772034,
0.3001960515975952,
-0.6444454789161682,
-0.2257840782403946,
0.0884537324309349,
-1.0351550579071045,
0.6399821639060974,
-0.17234206199645996,
-0.02061820961534977,
0.009842601604759693,
0.6412056088447571,
0.4509195387363434,
0.3876988887786865,
0.42442232370376587,
0.8122392296791077,
0.7738205790519714,
-0.2997889816761017,
1.2074055671691895,
-0.25517114996910095,
0.6047073602676392,
0.7375829219818115,
0.0022814448457211256,
0.5012431144714355,
0.23551124334335327,
-0.3300744891166687,
0.5416282415390015,
0.631908118724823,
-0.43936505913734436,
0.23893959820270538,
0.3991524279117584,
-0.0848870575428009,
-0.07413290441036224,
-0.2684639096260071,
-0.5707489848136902,
0.27788046002388,
0.2558212876319885,
-0.3003958463668823,
-0.010810947977006435,
-0.022192930802702904,
0.3693676292896271,
-0.03427709639072418,
-0.26595738530158997,
0.6191865801811218,
0.04318777844309807,
-0.3554951846599579,
0.5541772246360779,
-0.18131332099437714,
0.6800874471664429,
-0.6041280031204224,
0.13692042231559753,
-0.10907694697380066,
0.13361506164073944,
-0.6234513521194458,
-1.1092647314071655,
0.39667758345603943,
-0.07015527784824371,
-0.27918851375579834,
-0.3573976457118988,
0.7653882503509521,
-0.44005462527275085,
-0.7817699313163757,
0.21771474182605743,
0.2396872192621231,
0.3374309837818146,
0.1840217113494873,
-1.29360830783844,
0.5863383412361145,
0.14054274559020996,
-0.47032487392425537,
0.147047758102417,
0.509546160697937,
0.13536259531974792,
0.5558021068572998,
0.6752564907073975,
0.2586362063884735,
-0.2473040670156479,
0.04773174971342087,
1.1205029487609863,
-0.5432108640670776,
-0.4220882058143616,
-0.7681668400764465,
0.8956655859947205,
-0.37597936391830444,
-0.40235376358032227,
0.6983523368835449,
0.7751947045326233,
0.8537551760673523,
0.004021578934043646,
0.8060606122016907,
-0.6588808298110962,
0.677667498588562,
-0.1922585368156433,
0.9707349538803101,
-0.6956117749214172,
-0.0534961000084877,
-0.6986343860626221,
-0.515884518623352,
-0.41669490933418274,
0.647490918636322,
-0.19382897019386292,
0.21035507321357727,
0.2859005033969879,
0.964050829410553,
0.010863128118216991,
0.12755094468593597,
-0.24380168318748474,
0.29608240723609924,
0.24550677835941315,
0.5398325324058533,
0.4270991086959839,
-0.8910936117172241,
0.35802972316741943,
-0.744407057762146,
-0.31812602281570435,
0.044127482920885086,
-0.8147323131561279,
-0.9055982232093811,
-0.9630624651908875,
-0.6838154196739197,
-0.7866613268852234,
-0.2568565309047699,
1.0705479383468628,
0.7268988490104675,
-0.7086854577064514,
-0.30741190910339355,
0.09353012591600418,
0.3026231825351715,
-0.07064419239759445,
-0.3182799518108368,
0.6622114777565002,
0.3544903099536896,
-0.594904363155365,
-0.16937850415706635,
0.023134076967835426,
0.22899648547172546,
0.05588366091251373,
-0.10188671201467514,
-0.15459799766540527,
-0.27895838022232056,
0.33006298542022705,
0.48751187324523926,
-0.3045644760131836,
-0.07228117436170578,
-0.2582744061946869,
0.012680655345320702,
0.17367389798164368,
0.4801710546016693,
-0.5507210493087769,
0.16745859384536743,
0.6669201850891113,
0.31973305344581604,
0.4444390833377838,
0.18781472742557526,
0.012456446886062622,
-0.4891197681427002,
0.10621964186429977,
-0.01066487468779087,
0.29009777307510376,
0.3994082808494568,
-0.4290544092655182,
0.7893152832984924,
0.5799264311790466,
-0.5331459641456604,
-0.8304517269134521,
-0.12756626307964325,
-1.335066795349121,
0.12130390107631683,
1.0480505228042603,
-0.0031041246838867664,
-0.5899006724357605,
0.0856642797589302,
-0.2430557757616043,
0.1381034553050995,
-0.5822581052780151,
0.44929003715515137,
0.5336424708366394,
-0.1049303412437439,
0.1170765832066536,
-0.37428921461105347,
0.6337597370147705,
0.015950197353959084,
-0.9609422087669373,
0.17306242883205414,
0.4287588894367218,
0.44971534609794617,
0.2874687612056732,
0.799532413482666,
-0.290605753660202,
0.06303688138723373,
-0.08419277518987656,
0.2811529338359833,
-0.26404905319213867,
0.04858371615409851,
-0.3317180573940277,
-0.1461775302886963,
-0.4825506806373596,
-0.2231748104095459
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/system-of-a-down | huggingartists | 2022-10-25T09:45:46Z | 293 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:45:46Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/system-of-a-down"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 0.178799 MB
<div class="inline-flex flex-col" style="line-height: 1.5;">
<div class="flex">
<div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('https://images.genius.com/5688d59e74bfc07b0531636114f56c1e.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/system-of-a-down">
<div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div>
</a>
<div style="text-align: center; font-size: 16px; font-weight: 800">System of a Down</div>
<a href="https://genius.com/artists/system-of-a-down">
<div style="text-align: center; font-size: 14px;">@system-of-a-down</div>
</a>
</div>
### Dataset Summary
The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists.
Model is available [here](https://huggingface.co/huggingartists/system-of-a-down).
### Supported Tasks and Leaderboards
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Languages
en
## How to use
How to load this dataset directly with the datasets library:
```python
from datasets import load_dataset
dataset = load_dataset("huggingartists/system-of-a-down")
```
## Dataset Structure
An example of 'train' looks as follows.
```
This example was too long and was cropped:
{
"text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..."
}
```
### Data Fields
The data fields are the same among all splits.
- `text`: a `string` feature.
### Data Splits
| train |validation|test|
|------:|---------:|---:|
|129| -| -|
'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code:
```python
from datasets import load_dataset, Dataset, DatasetDict
import numpy as np
datasets = load_dataset("huggingartists/system-of-a-down")
train_percentage = 0.9
validation_percentage = 0.07
test_percentage = 0.03
train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))])
datasets = DatasetDict(
{
'train': Dataset.from_dict({'text': list(train)}),
'validation': Dataset.from_dict({'text': list(validation)}),
'test': Dataset.from_dict({'text': list(test)})
}
)
```
## Dataset Creation
### Curation Rationale
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the source language producers?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Annotations
#### Annotation process
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the annotators?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Personal and Sensitive Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Discussion of Biases
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Other Known Limitations
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Additional Information
### Dataset Curators
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Licensing Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Citation Information
```
@InProceedings{huggingartists,
author={Aleksey Korshuk}
year=2021
}
```
## About
*Built by Aleksey Korshuk*
[](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.6167712807655334,
-0.4827765226364136,
0.08224035799503326,
0.3032757341861725,
-0.19379881024360657,
0.05875731632113457,
-0.2652719020843506,
-0.4105587899684906,
0.9038697481155396,
0.35996511578559875,
-0.937277615070343,
-0.8381332159042358,
-0.5927075147628784,
0.16005977988243103,
-0.11719708144664764,
1.2306605577468872,
-0.19553357362747192,
-0.41824430227279663,
-0.29172268509864807,
-0.19903607666492462,
-0.31982555985450745,
-0.3551078736782074,
-0.3409879505634308,
-0.38316264748573303,
0.3045213520526886,
0.5341007113456726,
0.7299516201019287,
0.9257249236106873,
0.5564017295837402,
0.3510308861732483,
-0.12466255575418472,
-0.03851819783449173,
-0.3785246014595032,
-0.08808042109012604,
0.1776210069656372,
-0.2547958791255951,
-0.7281333208084106,
0.22740954160690308,
0.5731449127197266,
0.38968268036842346,
-0.11267393082380295,
0.4576582908630371,
0.07037853449583054,
0.8364427089691162,
-0.28807929158210754,
0.4466087818145752,
-0.237238809466362,
-0.16117319464683533,
-0.25935253500938416,
0.05705949664115906,
0.1877172291278839,
-0.6066751480102539,
-0.00380477262660861,
-0.7801671624183655,
0.03342454507946968,
-0.01978776417672634,
1.0227326154708862,
0.11115898936986923,
0.15060602128505707,
-0.20941604673862457,
-0.1210271418094635,
0.5521558523178101,
-0.5855088233947754,
-0.039214979857206345,
0.574581503868103,
0.1418987363576889,
0.011352471075952053,
-0.561678946018219,
-0.6163493394851685,
0.05348576232790947,
-0.18985585868358612,
0.27962303161621094,
-0.1643848568201065,
-0.29404589533805847,
0.5344865322113037,
0.5236754417419434,
-0.4985150396823883,
-0.21750928461551666,
-0.5137357115745544,
-0.11975423246622086,
1.2061946392059326,
0.17142489552497864,
0.4369570314884186,
-0.5513112545013428,
-0.26573705673217773,
-0.3866880536079407,
-0.29983624815940857,
0.32709234952926636,
0.5264452695846558,
0.4660910665988922,
-1.0514644384384155,
0.6119219064712524,
-0.17210032045841217,
0.4907556176185608,
0.18825197219848633,
-0.057511258870363235,
0.7442008852958679,
-0.3913011848926544,
-0.14801914989948273,
-0.0790073499083519,
1.0183417797088623,
0.6586124300956726,
0.13744772970676422,
0.11124327033758163,
-0.08099677413702011,
0.08460990339517593,
-0.16609050333499908,
-0.8226381540298462,
-0.4056456387042999,
0.6002344489097595,
-0.595609724521637,
-0.6184837818145752,
0.1345563530921936,
-0.9617369771003723,
-0.24274605512619019,
-0.3091749846935272,
0.25093960762023926,
-0.4128345251083374,
-0.5246914029121399,
0.19812393188476562,
-0.32967740297317505,
0.10699208825826645,
0.05639929696917534,
-0.6014494895935059,
0.22907087206840515,
0.5624666213989258,
0.7743843793869019,
0.18828622996807098,
-0.281484991312027,
-0.2534123659133911,
-0.16243988275527954,
-0.0795305147767067,
0.6396529078483582,
-0.35288897156715393,
-0.3705120384693146,
-0.1882491409778595,
0.33461272716522217,
-0.10459066927433014,
-0.2895067632198334,
0.8093010187149048,
0.04567417502403259,
0.12724801898002625,
-0.5630244016647339,
-0.4330079257488251,
0.0013022628845646977,
0.2992888391017914,
-0.7047900557518005,
1.0820832252502441,
0.2798024117946625,
-0.9990842342376709,
0.1410217136144638,
-0.8358009457588196,
-0.2907635569572449,
0.026239050552248955,
0.030104901641607285,
-0.7395212054252625,
-0.1915598213672638,
0.18662209808826447,
0.7156435251235962,
-0.28854823112487793,
-0.018035084009170532,
-0.6377270221710205,
-0.14991329610347748,
0.3445916175842285,
0.2675374448299408,
1.226951241493225,
0.09489821642637253,
-0.16587422788143158,
0.04876071959733963,
-0.9534090757369995,
0.09881220757961273,
0.4314013123512268,
-0.2234676331281662,
-0.1490769237279892,
-0.22551517188549042,
0.3377337157726288,
0.25999364256858826,
0.06226015463471413,
-0.6144403219223022,
0.47741860151290894,
-0.17530067265033722,
0.4896745979785919,
0.736930787563324,
-0.0028217907529324293,
0.30151933431625366,
-0.6429715752601624,
0.4402165114879608,
0.036134958267211914,
0.3551888167858124,
-0.009112722240388393,
-0.5028271675109863,
-0.48904019594192505,
-0.30430787801742554,
0.3123858571052551,
0.4826461672782898,
-0.706031084060669,
1.0143364667892456,
-0.3151025176048279,
-0.8378354907035828,
-0.5983604192733765,
0.06924772262573242,
0.24355436861515045,
0.5193396210670471,
0.37637633085250854,
-0.4432216286659241,
-0.5957934260368347,
-0.6033104062080383,
0.14302150905132294,
-0.28296715021133423,
0.15563571453094482,
0.39719295501708984,
0.8280826210975647,
-0.227824404835701,
0.7985565066337585,
-0.7116538286209106,
-0.25900617241859436,
-0.24101392924785614,
-0.3204009234905243,
0.37100350856781006,
0.799328088760376,
0.6452826857566833,
-0.7998499870300293,
-0.45308488607406616,
-0.2752244174480438,
-0.7371270060539246,
-0.08897489309310913,
-0.02412288449704647,
-0.2696017324924469,
0.04451657086610794,
0.18199311196804047,
-0.7407995462417603,
0.6089377403259277,
0.4872541129589081,
-0.7048876285552979,
0.6127645969390869,
0.04517905041575432,
0.03875774145126343,
-1.2513916492462158,
0.38411474227905273,
0.24433575570583344,
0.06599925458431244,
-0.5899574756622314,
-0.18705852329730988,
-0.09118382632732391,
-0.045601632446050644,
-0.10880795121192932,
0.5501458644866943,
-0.3480496108531952,
0.2868555188179016,
0.1646280735731125,
0.08956960588693619,
0.13784466683864594,
0.4248718321323395,
-0.07706804573535919,
0.2527149021625519,
1.032711386680603,
-0.43164005875587463,
0.7093394994735718,
0.6561052203178406,
-0.20847412943840027,
0.8539169430732727,
-0.8171544671058655,
0.03502265736460686,
-0.26265114545822144,
0.41156911849975586,
-0.8379199504852295,
-0.558888852596283,
0.8130939602851868,
-0.6688628792762756,
0.40528881549835205,
-0.22288751602172852,
-0.5292302370071411,
-0.8063029050827026,
-0.6570083498954773,
0.17173707485198975,
0.5142809152603149,
-0.36923879384994507,
0.3800313472747803,
0.626966118812561,
0.050419460982084274,
-0.38160446286201477,
-0.7909729480743408,
-0.13549603521823883,
-0.4169120788574219,
-0.80832439661026,
0.43638408184051514,
-0.2996276021003723,
-0.11954982578754425,
0.1213410347700119,
0.11179902404546738,
0.1281737983226776,
0.048827845603227615,
0.3752026855945587,
0.31817930936813354,
0.09050963073968887,
0.10627910494804382,
-0.07135026156902313,
-0.22968997061252594,
0.10306671261787415,
-0.1905767023563385,
0.284345418214798,
-0.2848738729953766,
-0.14417725801467896,
-0.6788247227668762,
0.19687579572200775,
0.4314865171909332,
-0.22073467075824738,
0.5680838227272034,
0.6881535649299622,
-0.25363680720329285,
0.009759847074747086,
-0.463500052690506,
-0.17816957831382751,
-0.41633379459381104,
0.0262636486440897,
-0.2450936734676361,
-0.5800203680992126,
0.9670791625976562,
0.25492429733276367,
0.030721984803676605,
0.6589229702949524,
0.42988121509552,
-0.08322664350271225,
0.6833124160766602,
0.4057254493236542,
-0.28978368639945984,
0.4913109838962555,
-0.7088773250579834,
-0.29250165820121765,
-0.8358482718467712,
-0.39511939883232117,
-0.5145498514175415,
-0.5381526350975037,
-0.9059189558029175,
-0.41016557812690735,
0.21053636074066162,
0.17884379625320435,
-0.27854326367378235,
0.5055883526802063,
-0.9913080930709839,
0.27522170543670654,
0.3102053999900818,
0.2953355610370636,
-0.028258252888917923,
0.07226693630218506,
0.07700948417186737,
0.22119896113872528,
-0.5819745659828186,
-0.24575155973434448,
1.1277748346328735,
0.5201252698898315,
0.6388821005821228,
-0.11146005243062973,
0.9022440910339355,
0.04439879208803177,
0.22044703364372253,
-0.5363255739212036,
0.5150479674339294,
0.003950796090066433,
-0.5480597019195557,
-0.24023596942424774,
-0.47858378291130066,
-0.9079069495201111,
-0.14724868535995483,
-0.4121360778808594,
-0.7466644048690796,
0.5355481505393982,
0.10498541593551636,
-0.2907732129096985,
0.3930240869522095,
-0.5843014121055603,
0.7992876768112183,
-0.044144049286842346,
-0.36768966913223267,
0.27144622802734375,
-1.0439379215240479,
0.14704281091690063,
0.21422038972377777,
0.25000473856925964,
-0.4247836768627167,
0.0013966471888124943,
0.9773414731025696,
-0.8062451481819153,
0.9489642381668091,
-0.3699378967285156,
0.12920688092708588,
0.5991517901420593,
-0.3026139438152313,
0.42210108041763306,
0.11452820152044296,
-0.30787360668182373,
0.3471824526786804,
0.0770299956202507,
-0.4576927423477173,
-0.43704530596733093,
0.6522114276885986,
-0.7244499325752258,
-0.0020182901062071323,
-0.342952162027359,
-0.45346304774284363,
0.11491858214139938,
0.17482249438762665,
0.2680074870586395,
0.4198630750179291,
0.03771967440843582,
0.11195535212755203,
0.422036737203598,
-0.14566461741924286,
0.31382986903190613,
0.04017753526568413,
-0.13875851035118103,
-0.7681127190589905,
0.9101359248161316,
0.1889607012271881,
0.061155956238508224,
-0.04274061694741249,
0.429720014333725,
-0.35718581080436707,
-0.1043972596526146,
-0.6482338905334473,
0.465178519487381,
-0.4065015912055969,
-0.4028657078742981,
-0.4699973165988922,
-0.15739886462688446,
-0.6726422309875488,
-0.16165319085121155,
-0.22849445044994354,
-0.5430851578712463,
-0.34447723627090454,
-0.2072654664516449,
1.0329163074493408,
0.5169252157211304,
-0.6870205402374268,
0.1247989684343338,
-0.5428661108016968,
0.2774122953414917,
-0.1022062599658966,
0.6512787342071533,
-0.09168370813131332,
-0.32603710889816284,
-0.18902559578418732,
0.08771659433841705,
-0.27011674642562866,
-0.7028511762619019,
0.26800936460494995,
-0.04384676739573479,
0.33779802918434143,
0.08557357639074326,
0.1699625700712204,
0.6928253173828125,
-0.005765169393271208,
0.6100906133651733,
0.3223341107368469,
-0.8243725299835205,
0.7095239162445068,
-0.5192410349845886,
0.17453622817993164,
0.7326278686523438,
0.40186357498168945,
-0.5978720188140869,
-0.17830385267734528,
-0.9640220403671265,
-0.8072665929794312,
0.805783212184906,
0.39563703536987305,
0.05398080497980118,
0.2134169340133667,
0.5716677308082581,
-0.1578426957130432,
0.28004562854766846,
-0.5934555530548096,
-0.8441722989082336,
-0.368572473526001,
-0.30523931980133057,
-0.07153686881065369,
-0.022883210331201553,
-0.2494356632232666,
-0.6981019973754883,
0.7764891982078552,
-0.13315337896347046,
0.314606636762619,
0.46803683042526245,
0.4282234311103821,
-0.21526874601840973,
0.021282754838466644,
0.21277430653572083,
0.3709404468536377,
-0.2655140459537506,
-0.3102109134197235,
-0.12956203520298004,
-0.6114832162857056,
-0.05083208158612251,
0.5131073594093323,
-0.4016432464122772,
-0.09682445973157883,
0.27523455023765564,
0.8803049325942993,
-0.020154407247900963,
-0.19156253337860107,
0.5615463852882385,
-0.0524955689907074,
-0.4287598133087158,
-0.3588046729564667,
-0.00008467828592984006,
0.13763727247714996,
0.24301645159721375,
0.06012437120079994,
0.10359957069158554,
-0.08815023303031921,
-0.4137931168079376,
0.40339645743370056,
0.231563001871109,
-0.42564770579338074,
-0.4848504662513733,
0.5118833780288696,
0.11742956191301346,
-0.1609591543674469,
0.46828708052635193,
-0.18790189921855927,
-0.6085287928581238,
0.8106235265731812,
0.11569578945636749,
0.8107855319976807,
-0.1432582139968872,
0.3661726117134094,
0.6537566184997559,
0.1945236325263977,
-0.07532382011413574,
0.5858751535415649,
-0.2036762237548828,
-0.6449952721595764,
-0.09909850358963013,
-0.5695579648017883,
-0.15736228227615356,
0.08632383495569229,
-0.8610614538192749,
0.48417866230010986,
-0.46663111448287964,
-0.2660556137561798,
0.01311192661523819,
0.3935564160346985,
-0.7150406837463379,
0.20746582746505737,
-0.022897163406014442,
1.0733237266540527,
-1.0304745435714722,
0.44542357325553894,
0.7357637882232666,
-0.6691464185714722,
-1.211955189704895,
-0.11345702409744263,
0.16327671706676483,
-0.5831727385520935,
0.24649107456207275,
0.22303247451782227,
0.4454634189605713,
-0.023325737565755844,
-0.8951348066329956,
-0.7164582014083862,
1.1987488269805908,
0.07767102867364883,
-0.20016571879386902,
0.27249273657798767,
0.10042797029018402,
0.6218968033790588,
-0.39223217964172363,
0.33268123865127563,
0.6944050192832947,
0.7106640338897705,
0.2850622832775116,
-0.7598309516906738,
0.37653839588165283,
-0.5722747445106506,
-0.2039583921432495,
0.06282027810811996,
-1.0475331544876099,
0.6361148357391357,
-0.19252915680408478,
-0.11892306804656982,
0.02425236441195011,
0.5663831233978271,
0.4837794005870819,
0.43126264214515686,
0.457023024559021,
0.8041324615478516,
0.7922065258026123,
-0.31536808609962463,
1.2052956819534302,
-0.23445232212543488,
0.6250254511833191,
0.7470631003379822,
0.03667306900024414,
0.5311381220817566,
0.24166549742221832,
-0.34058958292007446,
0.5943769216537476,
0.6536772847175598,
-0.41843360662460327,
0.1987942010164261,
0.44665318727493286,
-0.0060284435749053955,
-0.12557357549667358,
-0.245182603597641,
-0.6075257062911987,
0.39195749163627625,
0.21120336651802063,
-0.3168390393257141,
0.008736766874790192,
-0.029187289997935295,
0.3410087525844574,
-0.029753277078270912,
-0.31448298692703247,
0.6582096815109253,
0.05069602280855179,
-0.3845132291316986,
0.6027688980102539,
-0.25817906856536865,
0.7174507975578308,
-0.5119337439537048,
0.15358655154705048,
-0.10348807275295258,
0.13946975767612457,
-0.6164100766181946,
-1.0681586265563965,
0.3885858952999115,
-0.09671515971422195,
-0.25719794631004333,
-0.33557066321372986,
0.7807167172431946,
-0.42215436697006226,
-0.8023037910461426,
0.27889737486839294,
0.22127921879291534,
0.3527132570743561,
0.16290557384490967,
-1.2666475772857666,
0.5851563215255737,
0.09928759187459946,
-0.47295480966567993,
0.12959733605384827,
0.5012210011482239,
0.18251097202301025,
0.5762553215026855,
0.64725261926651,
0.26881736516952515,
-0.28948456048965454,
0.03823764622211456,
1.1561253070831299,
-0.5888805985450745,
-0.4859001636505127,
-0.7608520984649658,
0.8992228507995605,
-0.3857254385948181,
-0.4010752737522125,
0.6778849363327026,
0.7204828858375549,
0.9003417491912842,
0.02194272167980671,
0.8595355153083801,
-0.6408882141113281,
0.7035848498344421,
-0.1950564831495285,
0.9821280837059021,
-0.7280043363571167,
-0.040160998702049255,
-0.7097977995872498,
-0.4934757351875305,
-0.42564520239830017,
0.6149924397468567,
-0.2327614575624466,
0.15996097028255463,
0.26086461544036865,
0.9363603591918945,
0.04295942932367325,
0.14468258619308472,
-0.23426638543605804,
0.2615143954753876,
0.24983878433704376,
0.5205750465393066,
0.4844953715801239,
-0.9112696647644043,
0.4005926847457886,
-0.7245305180549622,
-0.36481407284736633,
0.015200442634522915,
-0.8733943700790405,
-0.8570647239685059,
-0.860567033290863,
-0.6815364956855774,
-0.8095918893814087,
-0.26976698637008667,
1.045176386833191,
0.7271332144737244,
-0.7272435426712036,
-0.32725790143013,
0.07611613720655441,
0.3088146150112152,
-0.09111974388360977,
-0.32425692677497864,
0.6257558465003967,
0.3425557315349579,
-0.5482852458953857,
-0.13675257563591003,
0.05561629682779312,
0.23925897479057312,
0.026618171483278275,
-0.11242737621068954,
-0.13941796123981476,
-0.24810437858104706,
0.33416998386383057,
0.486872136592865,
-0.31877872347831726,
-0.17454224824905396,
-0.23966531455516815,
0.011994353495538235,
0.17050737142562866,
0.48179885745048523,
-0.5262293219566345,
0.17224626243114471,
0.6831163167953491,
0.23935912549495697,
0.4239928722381592,
0.2237066626548767,
0.00013936327013652772,
-0.49931421875953674,
0.03587177395820618,
-0.030218804255127907,
0.29259660840034485,
0.39572516083717346,
-0.4484105110168457,
0.7468746304512024,
0.5714332461357117,
-0.5440890789031982,
-0.8425991535186768,
-0.09388115257024765,
-1.2761443853378296,
0.11249405890703201,
1.0545780658721924,
-0.05053276941180229,
-0.5549601316452026,
0.04487081244587898,
-0.20771610736846924,
0.147889643907547,
-0.6209463477134705,
0.5345633625984192,
0.5058714747428894,
-0.16801445186138153,
0.19525040686130524,
-0.24025554955005646,
0.6321595907211304,
-0.04100554436445236,
-0.9722978472709656,
0.2195887714624405,
0.4196052551269531,
0.43372398614883423,
0.38950619101524353,
0.83113694190979,
-0.257488876581192,
0.005783596076071262,
-0.046603135764598846,
0.29584696888923645,
-0.2503955662250519,
0.017716607078909874,
-0.38349711894989014,
-0.11261141300201416,
-0.5488764047622681,
-0.2292281687259674
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/the-69-eyes | huggingartists | 2022-10-25T09:46:18Z | 293 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:46:18Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/the-69-eyes"
## 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.162381 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/9e0451fa9d3f8cf38aa11994dbd934a8.600x600x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/the-69-eyes">
<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 69 Eyes</div>
<a href="https://genius.com/artists/the-69-eyes">
<div style="text-align: center; font-size: 14px;">@the-69-eyes</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-69-eyes).
### 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-69-eyes")
```
## 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|
|------:|---------:|---:|
|168| -| -|
'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-69-eyes")
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.6263338923454285,
-0.5132879018783569,
0.13208593428134918,
0.22533021867275238,
-0.26355642080307007,
-0.022200962528586388,
-0.28993189334869385,
-0.48748645186424255,
0.8686235547065735,
0.3691750764846802,
-0.8848008513450623,
-0.8336992859840393,
-0.5395700335502625,
0.18104711174964905,
-0.09582161903381348,
1.1956844329833984,
-0.1594148576259613,
-0.3768101930618286,
-0.28380087018013,
-0.184767484664917,
-0.2359543740749359,
-0.2965838611125946,
-0.3042387366294861,
-0.3335587978363037,
0.35878732800483704,
0.5164830684661865,
0.7274004220962524,
0.8839190602302551,
0.5464272499084473,
0.35930994153022766,
-0.11937588453292847,
-0.028144991025328636,
-0.3898719549179077,
-0.1580895483493805,
0.1764475554227829,
-0.32122617959976196,
-0.6915234327316284,
0.22751986980438232,
0.5498313903808594,
0.37741032242774963,
-0.06286440789699554,
0.43844181299209595,
0.035908013582229614,
0.9041322469711304,
-0.27162209153175354,
0.5104693174362183,
-0.2807120084762573,
-0.11460363864898682,
-0.3263970613479614,
0.08778761327266693,
0.17158296704292297,
-0.6027495265007019,
0.04065142571926117,
-0.7682238817214966,
0.09269952028989792,
-0.0033968642819672823,
0.9950035214424133,
0.053985077887773514,
0.14934495091438293,
-0.13848502933979034,
-0.07294345647096634,
0.5482665300369263,
-0.6337018013000488,
-0.03690674155950546,
0.5736186504364014,
0.1270209699869156,
0.0512784942984581,
-0.5836145877838135,
-0.6202458143234253,
0.07677030563354492,
-0.1507367491722107,
0.2976796329021454,
-0.16996222734451294,
-0.3053840696811676,
0.5378032922744751,
0.5581663250923157,
-0.526059091091156,
-0.28322136402130127,
-0.5667135119438171,
-0.122184157371521,
1.2067829370498657,
0.132740318775177,
0.4072057902812958,
-0.5354277491569519,
-0.2102780044078827,
-0.4114600419998169,
-0.2110322266817093,
0.3386920392513275,
0.5426954030990601,
0.406080037355423,
-1.0367348194122314,
0.6247565746307373,
-0.24708272516727448,
0.5601442456245422,
0.20099219679832458,
-0.006542710587382317,
0.8195688128471375,
-0.3602842688560486,
-0.11467930674552917,
-0.09319077432155609,
1.0820705890655518,
0.7139678001403809,
0.24577410519123077,
0.09709813445806503,
-0.04155566170811653,
0.09810317307710648,
-0.1158704161643982,
-0.7778513431549072,
-0.4025422930717468,
0.6436285376548767,
-0.5954838991165161,
-0.6318352818489075,
0.14766643941402435,
-1.009087324142456,
-0.1922769993543625,
-0.30233094096183777,
0.2622799873352051,
-0.4263603091239929,
-0.541368842124939,
0.20767351984977722,
-0.30234017968177795,
0.11534377187490463,
0.08872337639331818,
-0.573319137096405,
0.11922213435173035,
0.5892819762229919,
0.7616961598396301,
0.18630121648311615,
-0.31814607977867126,
-0.23811349272727966,
-0.1659366339445114,
-0.13408270478248596,
0.6593071818351746,
-0.30837371945381165,
-0.35427621006965637,
-0.13431186974048615,
0.35595831274986267,
-0.07647862285375595,
-0.28477510809898376,
0.8822051882743835,
0.07259423285722733,
0.1663607507944107,
-0.5579099059104919,
-0.399677574634552,
-0.05900142714381218,
0.2717578113079071,
-0.766887366771698,
1.0753449201583862,
0.3229539692401886,
-0.9915369153022766,
0.1168532520532608,
-0.7972908616065979,
-0.2859470546245575,
0.05956689640879631,
0.07006847858428955,
-0.7711087465286255,
-0.10609015822410583,
0.15664847195148468,
0.7137490510940552,
-0.29758960008621216,
0.018007470294833183,
-0.6333631277084351,
-0.1341506987810135,
0.35358262062072754,
0.2613101601600647,
1.2063411474227905,
0.08427479863166809,
-0.21153339743614197,
0.08761652559041977,
-0.9453240036964417,
0.16367533802986145,
0.46100151538848877,
-0.10793336480855942,
-0.11330146342515945,
-0.24194978177547455,
0.3901636600494385,
0.2768453359603882,
0.0703740119934082,
-0.5864346623420715,
0.35152772068977356,
-0.19627566635608673,
0.46298131346702576,
0.7456860542297363,
-0.027126267552375793,
0.32174310088157654,
-0.63725346326828,
0.40202295780181885,
0.07412639260292053,
0.44199228286743164,
0.007985061034560204,
-0.5886447429656982,
-0.5179932117462158,
-0.1867731213569641,
0.24001957476139069,
0.42751583456993103,
-0.7376402020454407,
0.9996421337127686,
-0.3134757876396179,
-0.8709695935249329,
-0.6081275343894958,
0.11939922720193863,
0.20063841342926025,
0.5236781239509583,
0.3757024109363556,
-0.538417637348175,
-0.5226065516471863,
-0.7068437933921814,
0.09704180061817169,
-0.2924635410308838,
0.22159576416015625,
0.41613906621932983,
0.7834730744361877,
-0.2512758672237396,
0.8019682168960571,
-0.6767850518226624,
-0.2905912697315216,
-0.22996249794960022,
-0.35302528738975525,
0.36463654041290283,
0.7894856333732605,
0.7056965231895447,
-0.8769826292991638,
-0.5074955821037292,
-0.2563350200653076,
-0.7612574100494385,
-0.10156901925802231,
-0.004341462627053261,
-0.31957727670669556,
-0.0007142978138290346,
0.12219544500112534,
-0.7298418879508972,
0.5708250999450684,
0.49415814876556396,
-0.657345175743103,
0.5725110769271851,
0.1311555802822113,
0.01095469482243061,
-1.230115294456482,
0.33010268211364746,
0.2702825367450714,
0.03738682344555855,
-0.6066662073135376,
-0.19599302113056183,
-0.037427667528390884,
-0.06666915863752365,
-0.15078216791152954,
0.5774317979812622,
-0.3674493134021759,
0.3235887587070465,
0.17029301822185516,
0.08475716412067413,
0.106499582529068,
0.44725239276885986,
-0.036242224276065826,
0.23046348989009857,
1.0481746196746826,
-0.3416122794151306,
0.6689377427101135,
0.5982369780540466,
-0.23365941643714905,
0.8554479479789734,
-0.8079236149787903,
0.07748299837112427,
-0.2816563546657562,
0.3860900104045868,
-0.7942909598350525,
-0.5581170320510864,
0.8517167568206787,
-0.6778864860534668,
0.35504209995269775,
-0.2052958458662033,
-0.48864760994911194,
-0.7857728004455566,
-0.7172572016716003,
0.17031559348106384,
0.5286211967468262,
-0.33216938376426697,
0.470213919878006,
0.5734574198722839,
0.08721500635147095,
-0.37939828634262085,
-0.7551947832107544,
-0.11240813881158829,
-0.39012089371681213,
-0.8356007933616638,
0.40670931339263916,
-0.33058446645736694,
-0.12051653116941452,
0.17625422775745392,
0.13296492397785187,
0.12299688160419464,
-0.012316761538386345,
0.3996703624725342,
0.3080942928791046,
0.05357550084590912,
-0.0038900345098227262,
-0.12386512011289597,
-0.24499118328094482,
0.14592793583869934,
-0.1822277009487152,
0.2226688265800476,
-0.3072359263896942,
-0.14711931347846985,
-0.6865029335021973,
0.25174981355667114,
0.4658212959766388,
-0.27624619007110596,
0.6023475527763367,
0.7801944017410278,
-0.2391243278980255,
-0.033213164657354355,
-0.5426337122917175,
-0.16444046795368195,
-0.4205232262611389,
0.06827642023563385,
-0.22573769092559814,
-0.5990137457847595,
0.906424343585968,
0.2561587989330292,
0.05573359504342079,
0.7039263844490051,
0.46191319823265076,
-0.04314820468425751,
0.6518464088439941,
0.3773975670337677,
-0.2584196627140045,
0.5549985766410828,
-0.6890708804130554,
-0.2340259701013565,
-0.8620880842208862,
-0.42912858724594116,
-0.4559246301651001,
-0.5049077272415161,
-0.8178648948669434,
-0.4872402846813202,
0.2116450071334839,
0.12422899901866913,
-0.18631714582443237,
0.43020886182785034,
-0.9763978719711304,
0.28286212682724,
0.3624010682106018,
0.33949223160743713,
-0.09765249490737915,
0.09663762897253036,
0.11696070432662964,
0.12938672304153442,
-0.5736148953437805,
-0.22628575563430786,
1.112774133682251,
0.4927637577056885,
0.5744158625602722,
-0.07697746902704239,
0.8523973822593689,
0.03340271860361099,
0.22958949208259583,
-0.5438538193702698,
0.5504159927368164,
-0.01918984018266201,
-0.5118995904922485,
-0.14232109487056732,
-0.4866468012332916,
-0.8081268072128296,
-0.1247749775648117,
-0.41350001096725464,
-0.7005121111869812,
0.5559465885162354,
0.1034732460975647,
-0.21788762509822845,
0.3767373859882355,
-0.6619702577590942,
0.8257170915603638,
-0.11577775329351425,
-0.4489704370498657,
0.25883743166923523,
-1.044898509979248,
0.18342606723308563,
0.15849807858467102,
0.23356926441192627,
-0.458102285861969,
0.06054534390568733,
1.0051960945129395,
-0.7651825547218323,
0.9736893177032471,
-0.353029727935791,
0.15640486776828766,
0.5854904651641846,
-0.3422240614891052,
0.4697321951389313,
0.11074100434780121,
-0.29251813888549805,
0.40065333247184753,
0.0042488775216042995,
-0.43849894404411316,
-0.3987256586551666,
0.6734382510185242,
-0.7097616791725159,
-0.004570463672280312,
-0.39874032139778137,
-0.4665977954864502,
0.05777083337306976,
0.19760465621948242,
0.2871672213077545,
0.4047262668609619,
0.050452690571546555,
0.14949089288711548,
0.4590335190296173,
-0.12688854336738586,
0.2879965007305145,
0.04872153699398041,
-0.09288208931684494,
-0.7768240571022034,
0.8766545057296753,
0.16039405763149261,
0.10028722137212753,
-0.06185947731137276,
0.41520413756370544,
-0.3539399206638336,
-0.13227367401123047,
-0.5980480313301086,
0.5015195608139038,
-0.4116596281528473,
-0.37794870138168335,
-0.5137680172920227,
-0.1514536440372467,
-0.6462805271148682,
-0.17807403206825256,
-0.22650307416915894,
-0.48069050908088684,
-0.32902494072914124,
-0.1854953169822693,
1.0887887477874756,
0.44809967279434204,
-0.6878854036331177,
0.10820645093917847,
-0.5469816327095032,
0.29830899834632874,
-0.045934032648801804,
0.6554300785064697,
-0.046668294817209244,
-0.27126315236091614,
-0.21578411757946014,
0.0676729753613472,
-0.18251235783100128,
-0.7299867868423462,
0.26181408762931824,
-0.004583617672324181,
0.34040358662605286,
0.14271484315395355,
0.16063572466373444,
0.6583030819892883,
-0.08211540430784225,
0.6397413015365601,
0.3235167860984802,
-0.8089556097984314,
0.6617082953453064,
-0.5190972089767456,
0.18517592549324036,
0.7606440186500549,
0.3488694131374359,
-0.5852539539337158,
-0.1712164431810379,
-0.9655235409736633,
-0.8488470911979675,
0.8095172643661499,
0.40052416920661926,
0.06705266982316971,
0.2353854924440384,
0.5827381610870361,
-0.2298250049352646,
0.26000770926475525,
-0.6210739016532898,
-0.8589426875114441,
-0.4100901782512665,
-0.397866815328598,
-0.08174986392259598,
-0.08337926119565964,
-0.24375967681407928,
-0.6760538816452026,
0.7630538940429688,
-0.15694403648376465,
0.31261536478996277,
0.45898452401161194,
0.41699889302253723,
-0.23205886781215668,
-0.03045102022588253,
0.2241256982088089,
0.40176132321357727,
-0.26928624510765076,
-0.28350895643234253,
-0.19238317012786865,
-0.6501559019088745,
-0.1183505728840828,
0.5101490020751953,
-0.4066765606403351,
-0.03878122568130493,
0.29843470454216003,
0.8877697587013245,
0.016076665371656418,
-0.2640790641307831,
0.5480647683143616,
-0.07555903494358063,
-0.39290735125541687,
-0.40146178007125854,
0.05395990610122681,
0.12849469482898712,
0.2578796446323395,
0.09559530764818192,
0.0863812267780304,
-0.0707545280456543,
-0.39887556433677673,
0.42133164405822754,
0.2351263016462326,
-0.4608439803123474,
-0.5043690204620361,
0.598064124584198,
0.09206682443618774,
-0.15886448323726654,
0.4450586140155792,
-0.12796838581562042,
-0.6664608716964722,
0.8019911646842957,
0.07504113018512726,
0.8738138675689697,
-0.13838262856006622,
0.3777365982532501,
0.7098143696784973,
0.23040232062339783,
-0.07914150506258011,
0.5495845675468445,
-0.17150430381298065,
-0.6200762987136841,
-0.060033757239580154,
-0.5628464818000793,
-0.13035309314727783,
0.04400221258401871,
-0.8753275275230408,
0.3987177014350891,
-0.4732118248939514,
-0.2881920635700226,
0.06542222201824188,
0.33814942836761475,
-0.7048161029815674,
0.20407003164291382,
-0.04351649060845375,
1.0297322273254395,
-1.0343756675720215,
0.45745816826820374,
0.7151668667793274,
-0.628553032875061,
-1.1879589557647705,
-0.13789606094360352,
0.23573873937129974,
-0.5913615226745605,
0.17008726298809052,
0.2141161412000656,
0.47831225395202637,
-0.04436754807829857,
-0.9214342832565308,
-0.6460958123207092,
1.118417739868164,
0.03604117035865784,
-0.28380531072616577,
0.31900882720947266,
0.09260765463113785,
0.6077130436897278,
-0.3585047721862793,
0.29009777307510376,
0.6068210005760193,
0.6852942705154419,
0.24357862770557404,
-0.7248721122741699,
0.27835217118263245,
-0.6599344611167908,
-0.21957534551620483,
0.0604114904999733,
-1.0526963472366333,
0.6506879329681396,
-0.20312434434890747,
-0.013816905207931995,
-0.010554727166891098,
0.5834117531776428,
0.4288676083087921,
0.4166119694709778,
0.49414241313934326,
0.7857379913330078,
0.7459145188331604,
-0.3359566330909729,
1.235130786895752,
-0.25389373302459717,
0.6548390984535217,
0.752105712890625,
0.019160840660333633,
0.5393003821372986,
0.2342301309108734,
-0.32738035917282104,
0.5112096071243286,
0.6406975984573364,
-0.4439848065376282,
0.24265415966510773,
0.3377035856246948,
-0.047336529940366745,
-0.11792928725481033,
-0.2875782251358032,
-0.6297308206558228,
0.30384886264801025,
0.1891704499721527,
-0.32100775837898254,
0.04158741235733032,
-0.06660310924053192,
0.3358568549156189,
-0.06879774481058121,
-0.27178525924682617,
0.6449531316757202,
0.08995059132575989,
-0.3400857746601105,
0.5367486476898193,
-0.24725621938705444,
0.6990565657615662,
-0.5960797667503357,
0.1279735267162323,
-0.08180970698595047,
0.154362291097641,
-0.6183834671974182,
-1.0931980609893799,
0.34421804547309875,
-0.06824211776256561,
-0.2756006121635437,
-0.30764639377593994,
0.7349388599395752,
-0.47431814670562744,
-0.8272811770439148,
0.2662431299686432,
0.1857263147830963,
0.3100469410419464,
0.124391108751297,
-1.3094546794891357,
0.6081757545471191,
0.2007986158132553,
-0.43781596422195435,
0.11165570467710495,
0.531255304813385,
0.16386453807353973,
0.5026641488075256,
0.6913670301437378,
0.2671464681625366,
-0.23427358269691467,
0.07271622121334076,
1.0897988080978394,
-0.582669198513031,
-0.4679718017578125,
-0.7359254956245422,
0.8987084031105042,
-0.3929923474788666,
-0.41719895601272583,
0.7155221700668335,
0.7196307182312012,
0.8745939135551453,
-0.029636500403285027,
0.8059870004653931,
-0.649344801902771,
0.6655052304267883,
-0.21184717118740082,
0.9467458128929138,
-0.7396923899650574,
-0.11718090623617172,
-0.7510997653007507,
-0.5609214305877686,
-0.3853597640991211,
0.6798533797264099,
-0.18925043940544128,
0.18292444944381714,
0.2832665741443634,
0.9108137488365173,
0.04096561670303345,
0.13986824452877045,
-0.24217753112316132,
0.3092772662639618,
0.26530349254608154,
0.5920761227607727,
0.4333536922931671,
-0.9037585854530334,
0.31648415327072144,
-0.8440043330192566,
-0.32917124032974243,
0.010004094801843166,
-0.8184119462966919,
-0.8812275528907776,
-0.9124765396118164,
-0.7026150822639465,
-0.7789914608001709,
-0.2855132520198822,
1.0005580186843872,
0.7003740072250366,
-0.7087404727935791,
-0.2592756748199463,
0.14082495868206024,
0.24895848333835602,
-0.0693308636546135,
-0.32591310143470764,
0.6723353266716003,
0.40807676315307617,
-0.6225324869155884,
-0.151804581284523,
0.06623491644859314,
0.22123755514621735,
0.02024395950138569,
-0.07205786556005478,
-0.0920824185013771,
-0.32133749127388,
0.36336761713027954,
0.4517832398414612,
-0.372084379196167,
-0.11303973942995071,
-0.21803022921085358,
0.0423661507666111,
0.1681276559829712,
0.45672503113746643,
-0.4997994899749756,
0.26118791103363037,
0.6604325771331787,
0.26800215244293213,
0.41624632477760315,
0.23211655020713806,
0.027818700298666954,
-0.4205411374568939,
0.11901882290840149,
0.0009371269843541086,
0.30140775442123413,
0.40848657488822937,
-0.4609503448009491,
0.804151177406311,
0.5797083377838135,
-0.4795805811882019,
-0.8399008512496948,
-0.15129464864730835,
-1.3696110248565674,
0.1463560312986374,
1.0489497184753418,
0.015258770436048508,
-0.5893511772155762,
0.04928958788514137,
-0.22068077325820923,
0.07802733778953552,
-0.6098381280899048,
0.5016075968742371,
0.5069488286972046,
-0.11407770216464996,
0.10941404104232788,
-0.3554951548576355,
0.6351739764213562,
-0.0008011084864847362,
-0.9777136445045471,
0.15928739309310913,
0.4631723165512085,
0.4269559681415558,
0.3907988965511322,
0.7836576700210571,
-0.286398321390152,
0.09110454469919205,
-0.07641200721263885,
0.28198567032814026,
-0.23776693642139435,
0.05656978115439415,
-0.365096777677536,
-0.12797904014587402,
-0.5126675963401794,
-0.18827244639396667
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/the-avalanches | huggingartists | 2022-10-25T09:46:25Z | 293 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:46:25Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/the-avalanches"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 0.123553 MB
<div class="inline-flex flex-col" style="line-height: 1.5;">
<div class="flex">
<div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('https://images.genius.com/e22f7806a402c82b09336cb5cf79a618.1000x1000x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/the-avalanches">
<div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div>
</a>
<div style="text-align: center; font-size: 16px; font-weight: 800">The Avalanches</div>
<a href="https://genius.com/artists/the-avalanches">
<div style="text-align: center; font-size: 14px;">@the-avalanches</div>
</a>
</div>
### Dataset Summary
The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists.
Model is available [here](https://huggingface.co/huggingartists/the-avalanches).
### Supported Tasks and Leaderboards
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Languages
en
## How to use
How to load this dataset directly with the datasets library:
```python
from datasets import load_dataset
dataset = load_dataset("huggingartists/the-avalanches")
```
## Dataset Structure
An example of 'train' looks as follows.
```
This example was too long and was cropped:
{
"text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..."
}
```
### Data Fields
The data fields are the same among all splits.
- `text`: a `string` feature.
### Data Splits
| train |validation|test|
|------:|---------:|---:|
|111| -| -|
'Train' can be easily divided into 'train' & 'validation' & 'test' with few lines of code:
```python
from datasets import load_dataset, Dataset, DatasetDict
import numpy as np
datasets = load_dataset("huggingartists/the-avalanches")
train_percentage = 0.9
validation_percentage = 0.07
test_percentage = 0.03
train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))])
datasets = DatasetDict(
{
'train': Dataset.from_dict({'text': list(train)}),
'validation': Dataset.from_dict({'text': list(validation)}),
'test': Dataset.from_dict({'text': list(test)})
}
)
```
## Dataset Creation
### Curation Rationale
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the source language producers?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Annotations
#### Annotation process
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the annotators?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Personal and Sensitive Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Discussion of Biases
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Other Known Limitations
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Additional Information
### Dataset Curators
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Licensing Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Citation Information
```
@InProceedings{huggingartists,
author={Aleksey Korshuk}
year=2021
}
```
## About
*Built by Aleksey Korshuk*
[](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.6207773685455322,
-0.5002017617225647,
0.03654437139630318,
0.2965296506881714,
-0.25488999485969543,
0.041498322039842606,
-0.2356647104024887,
-0.4516504108905792,
0.8703356981277466,
0.3213970363140106,
-0.9011582732200623,
-0.8233609199523926,
-0.5651785731315613,
0.14388692378997803,
-0.16388392448425293,
1.2499445676803589,
-0.19987404346466064,
-0.44031935930252075,
-0.34336763620376587,
-0.19812187552452087,
-0.29959937930107117,
-0.3115155100822449,
-0.3544315993785858,
-0.363894522190094,
0.3447134792804718,
0.43354400992393494,
0.7634574770927429,
0.9067150950431824,
0.44774824380874634,
0.3548968434333801,
-0.13637135922908783,
-0.015959644690155983,
-0.4015324115753174,
-0.11398100852966309,
0.1948859840631485,
-0.20108620822429657,
-0.6269077062606812,
0.13759541511535645,
0.5908384323120117,
0.35610851645469666,
-0.158352330327034,
0.415210485458374,
0.08779076486825943,
0.7550247311592102,
-0.3001534938812256,
0.4177000820636749,
-0.2705620527267456,
-0.16511809825897217,
-0.26200979948043823,
-0.009974482469260693,
0.17159298062324524,
-0.5404096245765686,
0.035236652940511703,
-0.7679406404495239,
0.0647493377327919,
0.050333257764577866,
1.0046639442443848,
0.0298658087849617,
0.09609304368495941,
-0.19750313460826874,
-0.1415192186832428,
0.5773570537567139,
-0.5717756152153015,
-0.04335802420973778,
0.6125998497009277,
0.09088552743196487,
0.06650605797767639,
-0.6289883852005005,
-0.5384693741798401,
0.16850003600120544,
-0.16361388564109802,
0.2526204586029053,
-0.23352335393428802,
-0.3146287202835083,
0.44870105385780334,
0.5344558954238892,
-0.5332303643226624,
-0.16805195808410645,
-0.5148061513900757,
-0.2198960930109024,
1.213092565536499,
0.20577143132686615,
0.38717883825302124,
-0.5081751346588135,
-0.23098817467689514,
-0.3829328715801239,
-0.2874492406845093,
0.32466718554496765,
0.5573802590370178,
0.4236137270927429,
-1.0153837203979492,
0.5754682421684265,
-0.17847974598407745,
0.5934868454933167,
0.0719635859131813,
0.0013425364159047604,
0.8534871339797974,
-0.4135885536670685,
-0.14242127537727356,
-0.10441281646490097,
1.0887361764907837,
0.6591325998306274,
0.12444089353084564,
0.07998969405889511,
-0.1439513862133026,
-0.02829933911561966,
-0.1887322962284088,
-0.8472994565963745,
-0.3732319176197052,
0.677283525466919,
-0.5746800899505615,
-0.6319358944892883,
0.045593008399009705,
-0.9596777558326721,
-0.20948787033557892,
-0.27217796444892883,
0.2904447317123413,
-0.4465603232383728,
-0.550650954246521,
0.1783253699541092,
-0.3323967158794403,
0.13370929658412933,
0.06795529276132584,
-0.6117722988128662,
0.22586797177791595,
0.6327688097953796,
0.8233742713928223,
0.2412651628255844,
-0.35689038038253784,
-0.3189445436000824,
-0.23363235592842102,
-0.09741465747356415,
0.7360122203826904,
-0.2942412197589874,
-0.3864792585372925,
-0.07854603976011276,
0.2761673033237457,
-0.061012983322143555,
-0.2509996294975281,
0.8213245868682861,
0.024374494329094887,
0.17489175498485565,
-0.5260258913040161,
-0.40769654512405396,
0.006977398414164782,
0.2921517491340637,
-0.6952518224716187,
1.072222352027893,
0.3094926178455353,
-0.9956494569778442,
0.11641094088554382,
-0.7168827056884766,
-0.322914719581604,
0.06243661046028137,
0.11075147241353989,
-0.7553699016571045,
-0.20443695783615112,
0.19680704176425934,
0.6879063248634338,
-0.32497161626815796,
0.003259117715060711,
-0.5403872728347778,
-0.0878378227353096,
0.34003952145576477,
0.200191468000412,
1.2219444513320923,
0.08714932948350906,
-0.06798640638589859,
0.07606572657823563,
-0.9300847053527832,
0.11109893023967743,
0.4053351581096649,
-0.15892118215560913,
-0.13634911179542542,
-0.15940900146961212,
0.40978971123695374,
0.27390867471694946,
0.07872908562421799,
-0.5589039921760559,
0.3774193227291107,
-0.21928353607654572,
0.49749118089675903,
0.8021886944770813,
0.01846897602081299,
0.2878211736679077,
-0.6883174777030945,
0.4417068064212799,
0.09666772931814194,
0.37682193517684937,
-0.04495323821902275,
-0.581561803817749,
-0.4144887924194336,
-0.26819631457328796,
0.3304770290851593,
0.45287734270095825,
-0.7390803694725037,
0.9886831045150757,
-0.32838475704193115,
-0.8459336161613464,
-0.6337992548942566,
0.10554333031177521,
0.18832655251026154,
0.5374580025672913,
0.40056103467941284,
-0.45787930488586426,
-0.5927541255950928,
-0.6285704970359802,
0.0886668935418129,
-0.22408978641033173,
0.18507759273052216,
0.4097752571105957,
0.8217760920524597,
-0.2475815713405609,
0.8422871232032776,
-0.6791480779647827,
-0.2623980641365051,
-0.1822667121887207,
-0.268070787191391,
0.35347554087638855,
0.7763277888298035,
0.6686814427375793,
-0.858993411064148,
-0.5010228157043457,
-0.2599843144416809,
-0.6561521887779236,
-0.09291402995586395,
-0.007898896932601929,
-0.22789312899112701,
-0.014570623636245728,
0.0936499834060669,
-0.6594716906547546,
0.5087727308273315,
0.5429168343544006,
-0.7151731252670288,
0.5511906743049622,
0.0827254131436348,
-0.03604549542069435,
-1.2558224201202393,
0.3207615315914154,
0.2550048232078552,
-0.010164032690227032,
-0.6172471046447754,
-0.2806738018989563,
-0.10409582406282425,
-0.00612956378608942,
-0.19356833398342133,
0.604920506477356,
-0.3443427085876465,
0.3083038032054901,
0.20437262952327728,
0.0838375985622406,
0.08540334552526474,
0.39131656289100647,
-0.06604223698377609,
0.2695631980895996,
1.1650727987289429,
-0.4056977331638336,
0.6954395771026611,
0.5962997674942017,
-0.2511480450630188,
0.8306716680526733,
-0.8266296982765198,
0.003028140403330326,
-0.31549474596977234,
0.36200401186943054,
-0.8273229598999023,
-0.5098439455032349,
0.7832099795341492,
-0.6666533946990967,
0.37568068504333496,
-0.23100361227989197,
-0.5864882469177246,
-0.7451716065406799,
-0.7165876626968384,
0.2078317552804947,
0.6171447038650513,
-0.3489055931568146,
0.42885899543762207,
0.6089755296707153,
0.09633209556341171,
-0.41515806317329407,
-0.766121506690979,
-0.12840363383293152,
-0.3750360906124115,
-0.8426310420036316,
0.42349013686180115,
-0.3405832350254059,
-0.11516755074262619,
0.19508208334445953,
0.1650562286376953,
0.06806176155805588,
0.020137755200266838,
0.36340203881263733,
0.2821493148803711,
0.0784028172492981,
0.0331195704638958,
-0.08052361756563187,
-0.23408420383930206,
0.0875348448753357,
-0.21126332879066467,
0.28820526599884033,
-0.2846071720123291,
-0.0752318799495697,
-0.6410119533538818,
0.18870946764945984,
0.4055367112159729,
-0.28430235385894775,
0.6918880343437195,
0.7161094546318054,
-0.2489771991968155,
-0.039328865706920624,
-0.45534947514533997,
-0.13070720434188843,
-0.42618033289909363,
0.04650070518255234,
-0.17431604862213135,
-0.6016523838043213,
0.9553338885307312,
0.24052709341049194,
0.11584357172250748,
0.7259519696235657,
0.4444131851196289,
-0.04004284739494324,
0.7207353115081787,
0.30186009407043457,
-0.2575224041938782,
0.5096868872642517,
-0.7152272462844849,
-0.29450610280036926,
-0.9260371923446655,
-0.45690834522247314,
-0.5281352996826172,
-0.489457368850708,
-0.7994287014007568,
-0.4149484634399414,
0.1950487494468689,
0.08028890937566757,
-0.19263343513011932,
0.4505635201931,
-0.969687283039093,
0.3034933805465698,
0.2731103003025055,
0.238186314702034,
-0.11251217871904373,
0.08820810168981552,
0.13334567844867706,
0.2022310495376587,
-0.6228386163711548,
-0.18403349816799164,
1.1282988786697388,
0.5140813589096069,
0.5521214604377747,
-0.07104325294494629,
0.859508752822876,
0.05206618085503578,
0.25280189514160156,
-0.5366660356521606,
0.4601137936115265,
0.038801632821559906,
-0.4788053631782532,
-0.16308055818080902,
-0.502754807472229,
-0.973479688167572,
-0.05156976729631424,
-0.4521356225013733,
-0.7175687551498413,
0.5023142695426941,
0.12936802208423615,
-0.27100643515586853,
0.36210358142852783,
-0.6040217280387878,
0.8243251442909241,
-0.060817837715148926,
-0.4289429783821106,
0.2611727714538574,
-1.0121687650680542,
0.1484076976776123,
0.1749437004327774,
0.3668440282344818,
-0.4054669141769409,
-0.0005089946207590401,
1.0308129787445068,
-0.8242654800415039,
0.971477210521698,
-0.3061659038066864,
0.14248259365558624,
0.6382001042366028,
-0.29829564690589905,
0.49366843700408936,
0.10084044188261032,
-0.330122709274292,
0.3948623239994049,
0.027563421055674553,
-0.4351923167705536,
-0.36736953258514404,
0.7118958234786987,
-0.7564857602119446,
0.03798471763730049,
-0.4122217297554016,
-0.4561501741409302,
0.14014330506324768,
0.22672241926193237,
0.32566744089126587,
0.49666526913642883,
-0.01996893808245659,
0.13399283587932587,
0.440434992313385,
-0.0791248306632042,
0.30372804403305054,
0.03463416174054146,
-0.11781203001737595,
-0.7963230013847351,
0.9352014064788818,
0.19900764524936676,
0.05911785736680031,
-0.01811346597969532,
0.4640679359436035,
-0.36587363481521606,
-0.18109576404094696,
-0.5703566074371338,
0.46717044711112976,
-0.4248413145542145,
-0.425310343503952,
-0.4916691780090332,
-0.16234704852104187,
-0.6683603525161743,
-0.1910826861858368,
-0.21747174859046936,
-0.4870665967464447,
-0.38860028982162476,
-0.1699076145887375,
1.0487785339355469,
0.4873100519180298,
-0.6847777962684631,
0.15453165769577026,
-0.54857337474823,
0.21453984081745148,
-0.06428908556699753,
0.6220321655273438,
-0.04425441846251488,
-0.3356240689754486,
-0.2160358726978302,
0.1007140576839447,
-0.24856188893318176,
-0.6604561805725098,
0.3332987129688263,
-0.029839470982551575,
0.33605265617370605,
0.11341270804405212,
0.10170205682516098,
0.6521999835968018,
-0.10348809510469437,
0.7040284872055054,
0.3260520398616791,
-0.8336947560310364,
0.6503593325614929,
-0.47801050543785095,
0.13504351675510406,
0.668675422668457,
0.35869938135147095,
-0.6229190826416016,
-0.1261991411447525,
-1.0347442626953125,
-0.8899102210998535,
0.8236647248268127,
0.46449729800224304,
0.08861801028251648,
0.18261440098285675,
0.4899252653121948,
-0.2098991423845291,
0.28531500697135925,
-0.5871629118919373,
-0.8620073795318604,
-0.43864941596984863,
-0.327409952878952,
-0.11012925952672958,
-0.07338225096464157,
-0.2833596169948578,
-0.6445378661155701,
0.7750681042671204,
-0.09900792688131332,
0.26577556133270264,
0.43230584263801575,
0.4527214765548706,
-0.2596111595630646,
-0.05553101748228073,
0.3022248446941376,
0.39135482907295227,
-0.212096706032753,
-0.21246886253356934,
-0.12248288094997406,
-0.5823134183883667,
-0.1453799158334732,
0.4653248190879822,
-0.37274032831192017,
-0.04639321193099022,
0.35462236404418945,
0.9268938899040222,
-0.00033506850013509393,
-0.2661033272743225,
0.6175590753555298,
-0.06935906410217285,
-0.40837863087654114,
-0.3921506106853485,
-0.011018394492566586,
0.12862184643745422,
0.16320878267288208,
0.05586380884051323,
0.15258322656154633,
-0.11001726984977722,
-0.4018923342227936,
0.37428197264671326,
0.29063254594802856,
-0.38354361057281494,
-0.5357614159584045,
0.5349284410476685,
0.11219918727874756,
-0.2509789764881134,
0.4940786361694336,
-0.13711611926555634,
-0.596419632434845,
0.7943750023841858,
0.1589706838130951,
0.8274182081222534,
-0.2064974159002304,
0.33738940954208374,
0.7058880925178528,
0.22118037939071655,
-0.10185957700014114,
0.4866259694099426,
-0.21005955338478088,
-0.6543754935264587,
-0.055610500276088715,
-0.5417344570159912,
-0.06941628456115723,
0.031822532415390015,
-0.8002856373786926,
0.47877028584480286,
-0.4631419777870178,
-0.199605792760849,
0.027585068717598915,
0.2718684673309326,
-0.7210982441902161,
0.17650741338729858,
-0.054481253027915955,
1.083126425743103,
-1.0845282077789307,
0.41753441095352173,
0.6536840796470642,
-0.6161655783653259,
-1.1118614673614502,
-0.17784444987773895,
0.19286659359931946,
-0.6544451117515564,
0.16595588624477386,
0.15317638218402863,
0.49315333366394043,
0.004617682658135891,
-0.9330477118492126,
-0.7075430154800415,
1.2060104608535767,
-0.027525054290890694,
-0.20453999936580658,
0.3363450765609741,
0.04860405623912811,
0.6156308054924011,
-0.382203608751297,
0.34094151854515076,
0.6150407791137695,
0.6430625319480896,
0.3523402214050293,
-0.7208025455474854,
0.26674386858940125,
-0.5596329569816589,
-0.210934579372406,
0.1277085244655609,
-1.0282635688781738,
0.651972770690918,
-0.13401009142398834,
-0.03202301636338234,
-0.04367617145180702,
0.5852680802345276,
0.4010549783706665,
0.40509578585624695,
0.4703441262245178,
0.776387095451355,
0.8269752860069275,
-0.27547237277030945,
1.302769660949707,
-0.22794048488140106,
0.6915032863616943,
0.7026194334030151,
0.0609016977250576,
0.5358670949935913,
0.2630074918270111,
-0.2998880445957184,
0.5687795877456665,
0.6582310795783997,
-0.38739141821861267,
0.30801254510879517,
0.37492695450782776,
-0.08220826834440231,
-0.11369895935058594,
-0.25291699171066284,
-0.5818948745727539,
0.238294318318367,
0.2670302391052246,
-0.30611926317214966,
-0.03840895742177963,
-0.06370361149311066,
0.36265236139297485,
-0.12926726043224335,
-0.3281031847000122,
0.6608158946037292,
0.06642185896635056,
-0.3806932270526886,
0.6070351600646973,
-0.20659759640693665,
0.6988901495933533,
-0.6154903769493103,
0.15667560696601868,
-0.040120527148246765,
0.07916191965341568,
-0.6575483679771423,
-1.1611270904541016,
0.4108421504497528,
-0.08486981689929962,
-0.1912529021501541,
-0.35109278559684753,
0.7304794788360596,
-0.4421754479408264,
-0.7650564908981323,
0.19807466864585876,
0.12764903903007507,
0.3326275944709778,
0.1890830546617508,
-1.2453980445861816,
0.6093361973762512,
0.15935982763767242,
-0.4739236831665039,
0.12855954468250275,
0.5290937423706055,
0.20345380902290344,
0.5392005443572998,
0.6889652609825134,
0.2870812714099884,
-0.2439637929201126,
0.0005112187936902046,
1.1316087245941162,
-0.49666962027549744,
-0.4761151969432831,
-0.7943578958511353,
0.9650472402572632,
-0.37899836897850037,
-0.4512689709663391,
0.6896477341651917,
0.797886312007904,
0.823114812374115,
0.04639569669961929,
0.8424390554428101,
-0.6394912004470825,
0.6197280883789062,
-0.2223709523677826,
0.8795213103294373,
-0.7137683033943176,
-0.04607035964727402,
-0.6523445248603821,
-0.4995249807834625,
-0.44602981209754944,
0.6334685683250427,
-0.1946897953748703,
0.13081994652748108,
0.28598669171333313,
0.9066933393478394,
0.007054425310343504,
0.09086120128631592,
-0.24894320964813232,
0.32787156105041504,
0.29862797260284424,
0.5652275085449219,
0.4471442401409149,
-0.934119462966919,
0.37148553133010864,
-0.7658096551895142,
-0.33649104833602905,
0.002151512075215578,
-0.8921082019805908,
-0.8765633702278137,
-0.959850549697876,
-0.715586245059967,
-0.8466559052467346,
-0.3266630470752716,
1.045591950416565,
0.6881263256072998,
-0.6707937717437744,
-0.26386523246765137,
0.06182490661740303,
0.3503287732601166,
-0.08945620805025101,
-0.3113340735435486,
0.6465293169021606,
0.37309399247169495,
-0.5419433116912842,
-0.13415656983852386,
0.011686808429658413,
0.23206673562526703,
0.051710888743400574,
-0.12874682247638702,
-0.09079481661319733,
-0.24717296659946442,
0.3712542951107025,
0.513089656829834,
-0.314980149269104,
-0.12881839275360107,
-0.25116100907325745,
0.07537444680929184,
0.19237954914569855,
0.4508284330368042,
-0.5608738660812378,
0.23329943418502808,
0.7051218152046204,
0.23721370100975037,
0.43184584379196167,
0.2064557671546936,
-0.03790861368179321,
-0.5471426248550415,
0.10221413522958755,
0.036755774170160294,
0.3085825443267822,
0.39946678280830383,
-0.4675244092941284,
0.6778606176376343,
0.5763592720031738,
-0.5439077019691467,
-0.8828399181365967,
-0.15144799649715424,
-1.2691588401794434,
0.12203355133533478,
1.1072214841842651,
0.06994874775409698,
-0.5767942070960999,
0.023570721969008446,
-0.21214430034160614,
0.04954107478260994,
-0.5999562740325928,
0.44941699504852295,
0.5195688009262085,
-0.12314917147159576,
0.14267601072788239,
-0.2733192443847656,
0.6543983221054077,
-0.06648202240467072,
-0.9217790365219116,
0.2025199830532074,
0.42656296491622925,
0.47323113679885864,
0.3637327253818512,
0.8520632386207581,
-0.22427432239055634,
0.03690135478973389,
-0.041237786412239075,
0.269631028175354,
-0.2540597915649414,
0.04824341461062431,
-0.4337494373321533,
-0.1084766611456871,
-0.471438467502594,
-0.19576530158519745
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/the-gazette | huggingartists | 2022-10-25T09:47:15Z | 293 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:47:15Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/the-gazette"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 0.121064 MB
<div class="inline-flex flex-col" style="line-height: 1.5;">
<div class="flex">
<div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('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.6479214429855347,
-0.5560068488121033,
0.10612694919109344,
0.27652043104171753,
-0.2684948444366455,
-0.013533364981412888,
-0.32905080914497375,
-0.45513612031936646,
0.911345899105072,
0.3260601758956909,
-0.8849647641181946,
-0.813156008720398,
-0.6006085276603699,
0.15599645674228668,
-0.10556946694850922,
1.2433044910430908,
-0.18531808257102966,
-0.4075476825237274,
-0.3153931200504303,
-0.18758931756019592,
-0.26753583550453186,
-0.3176592290401459,
-0.3048817217350006,
-0.29704374074935913,
0.3588716387748718,
0.4837663173675537,
0.7152916789054871,
0.883094847202301,
0.4918869733810425,
0.34505248069763184,
-0.09204266220331192,
0.014407198876142502,
-0.34313827753067017,
-0.16023750603199005,
0.17690695822238922,
-0.25301703810691833,
-0.642525851726532,
0.2710573375225067,
0.5332071781158447,
0.39160558581352234,
-0.0858963131904602,
0.4470760226249695,
0.06181948632001877,
0.854109525680542,
-0.30787497758865356,
0.46626704931259155,
-0.2522052824497223,
-0.21528200805187225,
-0.3126436173915863,
0.04739229381084442,
0.1841149479150772,
-0.6190910935401917,
-0.040888525545597076,
-0.7287617325782776,
0.0591205395758152,
-0.01079168263822794,
1.0493687391281128,
0.028524000197649002,
0.06265182048082352,
-0.21218718588352203,
-0.1287248134613037,
0.4979501962661743,
-0.5829400420188904,
-0.03080662712454796,
0.6067352294921875,
0.11734247207641602,
0.03380046412348747,
-0.6236363649368286,
-0.611970067024231,
0.09985999763011932,
-0.18753045797348022,
0.3029683232307434,
-0.20014381408691406,
-0.34448865056037903,
0.4754766523838043,
0.560725212097168,
-0.520422637462616,
-0.2680971324443817,
-0.5233336091041565,
-0.13348962366580963,
1.1799731254577637,
0.12602077424526215,
0.39073869585990906,
-0.5314600467681885,
-0.19945234060287476,
-0.3769005537033081,
-0.22272394597530365,
0.33125826716423035,
0.5908221006393433,
0.46513041853904724,
-1.0155807733535767,
0.6515064239501953,
-0.19642607867717743,
0.5913387537002563,
0.1294998973608017,
-0.006405807100236416,
0.7864190340042114,
-0.3854805827140808,
-0.11863213032484055,
-0.1020677238702774,
1.0702956914901733,
0.6791478395462036,
0.20685268938541412,
0.09547814726829529,
-0.0807676836848259,
0.09479747712612152,
-0.12047680467367172,
-0.7694802284240723,
-0.41878750920295715,
0.6270125508308411,
-0.5661187171936035,
-0.6159591674804688,
0.14372023940086365,
-0.9556472897529602,
-0.20364639163017273,
-0.3010368049144745,
0.24169597029685974,
-0.3750014305114746,
-0.5301582217216492,
0.16666221618652344,
-0.30391377210617065,
0.09936339408159256,
0.05880845710635185,
-0.5867876410484314,
0.18576881289482117,
0.6041960716247559,
0.757138729095459,
0.22843287885189056,
-0.2790272831916809,
-0.2610805034637451,
-0.22659309208393097,
-0.13407425582408905,
0.7178531289100647,
-0.28584691882133484,
-0.322861909866333,
-0.1231326311826706,
0.33797696232795715,
-0.08681385964155197,
-0.23863135278224945,
0.9262540936470032,
0.012935439124703407,
0.1936846226453781,
-0.5876920819282532,
-0.4190545678138733,
0.02076799049973488,
0.3296012282371521,
-0.7783806920051575,
1.0698299407958984,
0.3508876860141754,
-1.0272060632705688,
0.15939225256443024,
-0.721437394618988,
-0.3443136215209961,
-0.029727306216955185,
0.11739180237054825,
-0.7887524366378784,
-0.1502920538187027,
0.23757919669151306,
0.6988130807876587,
-0.2976103127002716,
-0.009268666617572308,
-0.5699378848075867,
-0.10400710254907608,
0.3621952533721924,
0.20138096809387207,
1.2027592658996582,
0.08497519046068192,
-0.08681633323431015,
0.050695452839136124,
-0.9289762377738953,
0.09844736009836197,
0.4541482925415039,
-0.1927281767129898,
-0.14459183812141418,
-0.26296186447143555,
0.4322138726711273,
0.2966199517250061,
0.10492266714572906,
-0.6213499903678894,
0.4520697295665741,
-0.1954898238182068,
0.4342159032821655,
0.7371461987495422,
0.01966080442070961,
0.3169522285461426,
-0.6740872263908386,
0.40464213490486145,
0.06914888322353363,
0.36704587936401367,
-0.01703825034201145,
-0.5827993154525757,
-0.4381234645843506,
-0.26667746901512146,
0.3301093876361847,
0.45682480931282043,
-0.7093519568443298,
0.9824081659317017,
-0.33909428119659424,
-0.8354347348213196,
-0.5887083411216736,
0.09351395815610886,
0.18222454190254211,
0.5389789342880249,
0.36664992570877075,
-0.4688035547733307,
-0.5953788161277771,
-0.6336284875869751,
0.008085529319941998,
-0.24584610760211945,
0.21119432151317596,
0.38884997367858887,
0.7585694193840027,
-0.23969244956970215,
0.8462971448898315,
-0.6885519623756409,
-0.27961158752441406,
-0.2528171241283417,
-0.31145867705345154,
0.39664044976234436,
0.728468120098114,
0.6508855819702148,
-0.8841947317123413,
-0.47873204946517944,
-0.3001522123813629,
-0.6772500872612,
-0.11722917854785919,
-0.04739411547780037,
-0.26415884494781494,
0.05299047753214836,
0.1187291145324707,
-0.7481756806373596,
0.5757191181182861,
0.5156841278076172,
-0.7062078714370728,
0.5822360515594482,
0.09155575931072235,
-0.005506611429154873,
-1.254355788230896,
0.30552393198013306,
0.3085513114929199,
-0.015738537535071373,
-0.5796485543251038,
-0.22547820210456848,
-0.04439020901918411,
-0.029910940676927567,
-0.10414545983076096,
0.6167882084846497,
-0.3704535961151123,
0.2949886620044708,
0.1604693979024887,
0.10739941149950027,
0.12443465739488602,
0.40937501192092896,
-0.05546874552965164,
0.2618829011917114,
0.9911150932312012,
-0.37608885765075684,
0.6603401303291321,
0.6124169826507568,
-0.21085795760154724,
0.7962062954902649,
-0.7530109882354736,
0.009349633939564228,
-0.26731401681900024,
0.4092767834663391,
-0.8407700061798096,
-0.5441187620162964,
0.8363351225852966,
-0.687889814376831,
0.41257455945014954,
-0.21289145946502686,
-0.554746150970459,
-0.8216285705566406,
-0.677461564540863,
0.13449996709823608,
0.5212531685829163,
-0.3487612009048462,
0.4148343801498413,
0.5913110375404358,
0.08113568276166916,
-0.3767353892326355,
-0.8088280558586121,
-0.08766233921051025,
-0.3208661675453186,
-0.7952191829681396,
0.3663448989391327,
-0.2933677136898041,
-0.09575024992227554,
0.1950756460428238,
0.10293160378932953,
0.07380201667547226,
-0.017813561484217644,
0.3610447943210602,
0.32158976793289185,
0.11373425275087357,
0.011161137372255325,
-0.11010328680276871,
-0.22302961349487305,
0.1287580281496048,
-0.21324753761291504,
0.2551307678222656,
-0.27127882838249207,
-0.13659389317035675,
-0.6429583430290222,
0.18658173084259033,
0.4073129892349243,
-0.27389878034591675,
0.6841841340065002,
0.7668001055717468,
-0.22863350808620453,
0.002647208049893379,
-0.509864091873169,
-0.14182595908641815,
-0.40558621287345886,
0.020464111119508743,
-0.19036148488521576,
-0.5919605493545532,
0.8933506608009338,
0.22307248413562775,
0.05341215059161186,
0.6912588477134705,
0.4789058268070221,
-0.07894808053970337,
0.6000123023986816,
0.35911545157432556,
-0.30803439021110535,
0.5109317898750305,
-0.6489766240119934,
-0.22133579850196838,
-0.8352800607681274,
-0.42743468284606934,
-0.5029807090759277,
-0.5025902986526489,
-0.8584103584289551,
-0.44154536724090576,
0.19590772688388824,
0.10500770807266235,
-0.17316369712352753,
0.4749157130718231,
-0.9963729381561279,
0.24615836143493652,
0.32649457454681396,
0.31809002161026,
-0.07523311674594879,
0.10014274716377258,
0.1367127001285553,
0.1546963006258011,
-0.5955705046653748,
-0.22982193529605865,
1.1565406322479248,
0.4924875795841217,
0.5907269716262817,
-0.09159690886735916,
0.868567168712616,
0.05251814052462578,
0.23720429837703705,
-0.5279027819633484,
0.47279369831085205,
-0.005256734322756529,
-0.49801164865493774,
-0.1503082811832428,
-0.5051963329315186,
-0.914775550365448,
-0.1579395830631256,
-0.4298488199710846,
-0.688714325428009,
0.5168668627738953,
0.08657259494066238,
-0.1989949494600296,
0.39264389872550964,
-0.6017424464225769,
0.8179898858070374,
-0.05899300426244736,
-0.4340834617614746,
0.29062744975090027,
-1.0001450777053833,
0.21864397823810577,
0.18916751444339752,
0.3112865686416626,
-0.40745866298675537,
-0.012783939950168133,
0.962863028049469,
-0.7977842688560486,
0.9273233413696289,
-0.3231140971183777,
0.11589593440294266,
0.593840479850769,
-0.333347886800766,
0.4702889025211334,
0.09562727808952332,
-0.2829286456108093,
0.356760174036026,
-0.005578181240707636,
-0.4479879140853882,
-0.40434619784355164,
0.6738153696060181,
-0.7189909815788269,
0.055274613201618195,
-0.40309950709342957,
-0.464557021856308,
0.0679369792342186,
0.19580014050006866,
0.30094003677368164,
0.4603031277656555,
0.004306463990360498,
0.08543921262025833,
0.4355131983757019,
-0.08531754463911057,
0.31635916233062744,
-0.0058766924776136875,
-0.09841949492692947,
-0.758051335811615,
0.8876162171363831,
0.18911150097846985,
0.03460655361413956,
-0.02228653058409691,
0.4234447777271271,
-0.4081454575061798,
-0.09175879508256912,
-0.5917778611183167,
0.46293389797210693,
-0.4088110625743866,
-0.4022364020347595,
-0.5129691362380981,
-0.16671980917453766,
-0.6571299433708191,
-0.17410890758037567,
-0.23413841426372528,
-0.5433907508850098,
-0.3482339084148407,
-0.15835244953632355,
1.0440353155136108,
0.4722122251987457,
-0.6777869462966919,
0.1089109480381012,
-0.5343054533004761,
0.31975603103637695,
-0.08319242298603058,
0.6436101794242859,
-0.1171393096446991,
-0.3057102560997009,
-0.22842265665531158,
0.07927598059177399,
-0.21096980571746826,
-0.7167816758155823,
0.2753092348575592,
-0.06470778584480286,
0.3236868679523468,
0.07634037733078003,
0.18419207632541656,
0.6260825395584106,
-0.05459011718630791,
0.6608376502990723,
0.2867080271244049,
-0.7978907227516174,
0.6507896184921265,
-0.5336396098136902,
0.18477438390254974,
0.7155144214630127,
0.3600674867630005,
-0.5844166874885559,
-0.16124935448169708,
-0.9955289363861084,
-0.8443019390106201,
0.7609971165657043,
0.4252552390098572,
0.09743859618902206,
0.16807648539543152,
0.5512053966522217,
-0.2628987729549408,
0.2939831614494324,
-0.6175718903541565,
-0.8538835048675537,
-0.4169269800186157,
-0.3601325750350952,
-0.04658111184835434,
-0.10864873230457306,
-0.268772155046463,
-0.6578453183174133,
0.778958261013031,
-0.11948864907026291,
0.3442836105823517,
0.4684813320636749,
0.4086773693561554,
-0.22888770699501038,
0.01003112643957138,
0.27311810851097107,
0.4172191917896271,
-0.20926620066165924,
-0.2690667510032654,
-0.18485157191753387,
-0.6329283714294434,
-0.1055428683757782,
0.5191177725791931,
-0.3475743234157562,
-0.031209271401166916,
0.3447716534137726,
0.8715348243713379,
0.001409078249707818,
-0.21830476820468903,
0.6455556154251099,
-0.10082221031188965,
-0.4023628234863281,
-0.4126797914505005,
-0.02876361645758152,
0.15564408898353577,
0.20461449027061462,
0.08059696853160858,
0.1278320997953415,
-0.11631976813077927,
-0.418631911277771,
0.41845381259918213,
0.2665413022041321,
-0.37579649686813354,
-0.437002569437027,
0.5764742493629456,
0.05182860046625137,
-0.1401875615119934,
0.48033371567726135,
-0.1942114382982254,
-0.6098567247390747,
0.7869391441345215,
0.11905068904161453,
0.8126732110977173,
-0.11923784017562866,
0.3223438262939453,
0.7224844694137573,
0.2648135721683502,
-0.08094286173582077,
0.538131594657898,
-0.16772490739822388,
-0.6415493488311768,
-0.07566031068563461,
-0.5691583752632141,
-0.08536869287490845,
0.03975871577858925,
-0.8541945815086365,
0.4398672878742218,
-0.49307599663734436,
-0.25893712043762207,
-0.0033900109119713306,
0.38448017835617065,
-0.7165402770042419,
0.2251155972480774,
-0.025427408516407013,
1.1271164417266846,
-1.0851768255233765,
0.46010175347328186,
0.7113903164863586,
-0.6485873460769653,
-1.223642110824585,
-0.08679331094026566,
0.19534926116466522,
-0.5680438280105591,
0.1628267765045166,
0.1781299114227295,
0.5156823396682739,
-0.06938724219799042,
-0.8901798725128174,
-0.6301156878471375,
1.1163851022720337,
0.019620684906840324,
-0.25599971413612366,
0.3342534899711609,
0.06910453736782074,
0.585387647151947,
-0.3327753245830536,
0.3400600254535675,
0.6535392999649048,
0.710252583026886,
0.2585977017879486,
-0.7307567596435547,
0.2985885441303253,
-0.6005975604057312,
-0.22184257209300995,
0.07823918014764786,
-1.0237877368927002,
0.6551546454429626,
-0.14174464344978333,
-0.028106341138482094,
-0.008436689153313637,
0.625560998916626,
0.38041844964027405,
0.43401381373405457,
0.43139585852622986,
0.8219552040100098,
0.7919630408287048,
-0.35180655121803284,
1.3039852380752563,
-0.2331329584121704,
0.6617531776428223,
0.7677667737007141,
0.09450539201498032,
0.5104743838310242,
0.22647804021835327,
-0.3237597346305847,
0.5865821838378906,
0.6323182582855225,
-0.4129561483860016,
0.240130215883255,
0.33175206184387207,
-0.06301771849393845,
-0.0699906125664711,
-0.24686487019062042,
-0.5544919371604919,
0.32248005270957947,
0.20179492235183716,
-0.31170448660850525,
-0.03828056529164314,
-0.04422018304467201,
0.38446706533432007,
-0.011805308982729912,
-0.3187044560909271,
0.6646577715873718,
0.05765979364514351,
-0.3441915810108185,
0.5487641096115112,
-0.18337038159370422,
0.6862120628356934,
-0.5965166687965393,
0.16815350949764252,
-0.06038147583603859,
0.11080270260572433,
-0.6336795091629028,
-1.1274675130844116,
0.4202951192855835,
-0.08969757705926895,
-0.28239840269088745,
-0.327748566865921,
0.794395923614502,
-0.4757058620452881,
-0.8127997517585754,
0.20302364230155945,
0.20126740634441376,
0.2932601571083069,
0.12302612513303757,
-1.257736086845398,
0.6308510303497314,
0.14330433309078217,
-0.5126466751098633,
0.11409943550825119,
0.5232164859771729,
0.1580500453710556,
0.5072133541107178,
0.706572413444519,
0.2985902428627014,
-0.2613967955112457,
0.050701841711997986,
1.1568530797958374,
-0.5299577116966248,
-0.5083178877830505,
-0.7643296718597412,
0.8899118900299072,
-0.40265318751335144,
-0.40529924631118774,
0.7344121932983398,
0.7724646329879761,
0.8479700684547424,
0.00958931539207697,
0.8528329133987427,
-0.6645082235336304,
0.6824442744255066,
-0.2108968198299408,
0.9547225832939148,
-0.7054652571678162,
-0.09237821400165558,
-0.7372691035270691,
-0.5412300825119019,
-0.4173012375831604,
0.637708306312561,
-0.2357977032661438,
0.1944078952074051,
0.28371214866638184,
0.916939914226532,
-0.0020236761774867773,
0.12434787303209305,
-0.2670656144618988,
0.28583604097366333,
0.2418079525232315,
0.5281039476394653,
0.41576144099235535,
-0.9178621172904968,
0.3464833199977875,
-0.7842865586280823,
-0.3109784424304962,
0.03190546855330467,
-0.8887003660202026,
-0.8834225535392761,
-0.9340794682502747,
-0.6641277074813843,
-0.8227276802062988,
-0.27810800075531006,
1.0383563041687012,
0.7053773999214172,
-0.656645655632019,
-0.22019575536251068,
0.08338281512260437,
0.2659161686897278,
-0.06062208116054535,
-0.3238708972930908,
0.6752046942710876,
0.3615611791610718,
-0.5759229063987732,
-0.16291378438472748,
0.008550506085157394,
0.1876869648694992,
0.08030887693166733,
-0.04638933390378952,
-0.14596402645111084,
-0.26269546151161194,
0.3331510126590729,
0.5018565654754639,
-0.31654754281044006,
-0.08941154927015305,
-0.2836029529571533,
-0.015844814479351044,
0.15812884271144867,
0.49624764919281006,
-0.5644387602806091,
0.21617935597896576,
0.6460692882537842,
0.3257591724395752,
0.4388829171657562,
0.25813308358192444,
-0.03712167218327522,
-0.5367416143417358,
0.12383945286273956,
-0.023439893499016762,
0.2987133860588074,
0.4394131302833557,
-0.5270772576332092,
0.7387736439704895,
0.5977718830108643,
-0.5175815224647522,
-0.778794527053833,
-0.15983614325523376,
-1.3148902654647827,
0.08497998863458633,
1.0591953992843628,
0.03955068811774254,
-0.5998313426971436,
0.0547262541949749,
-0.21376219391822815,
0.1567404419183731,
-0.6003603935241699,
0.465609073638916,
0.5148206949234009,
-0.1059853583574295,
0.08130272477865219,
-0.33120590448379517,
0.6161246299743652,
-0.08484654873609543,
-0.9823318123817444,
0.1715058535337448,
0.44328635931015015,
0.46055179834365845,
0.3187025487422943,
0.8475896716117859,
-0.24696367979049683,
0.05476173758506775,
-0.04472743347287178,
0.2641621530056,
-0.29545140266418457,
0.036799583584070206,
-0.3825603425502777,
-0.14414900541305542,
-0.513314425945282,
-0.2067514955997467
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/the-grateful-dead | huggingartists | 2022-10-25T09:47:22Z | 293 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:47:22Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/the-grateful-dead"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 2.732505 MB
<div class="inline-flex flex-col" style="line-height: 1.5;">
<div class="flex">
<div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('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.6826524138450623,
-0.5022618174552917,
0.09842022508382797,
0.2231265902519226,
-0.35997864603996277,
-0.007708406541496515,
-0.3388671278953552,
-0.45978841185569763,
0.8655935525894165,
0.3355313241481781,
-0.8831480145454407,
-0.8594452142715454,
-0.5181487798690796,
0.18090017139911652,
-0.05759618058800697,
1.3105756044387817,
-0.08274882286787033,
-0.3173150420188904,
-0.32042956352233887,
-0.31651219725608826,
-0.2990049719810486,
-0.32393115758895874,
-0.3295283615589142,
-0.29981863498687744,
0.3800164461135864,
0.4379104971885681,
0.787878155708313,
0.8676689863204956,
0.5423562526702881,
0.31256017088890076,
-0.0547172948718071,
-0.07677973806858063,
-0.41181665658950806,
-0.10732676088809967,
0.20824098587036133,
-0.23853406310081482,
-0.64454185962677,
0.21721437573432922,
0.5404435992240906,
0.41676583886146545,
-0.0692998468875885,
0.4652215838432312,
-0.034951500594615936,
0.7424206137657166,
-0.2711511254310608,
0.423128217458725,
-0.2379266768693924,
-0.1922701746225357,
-0.2893959581851959,
-0.020299378782510757,
0.21356508135795593,
-0.7195673584938049,
-0.08446266502141953,
-0.7422585487365723,
0.07965514808893204,
-0.12001705169677734,
0.9602798223495483,
0.10019344836473465,
0.1925051361322403,
-0.12964220345020294,
-0.14980605244636536,
0.5427321791648865,
-0.7103360891342163,
0.008698433637619019,
0.598741352558136,
0.1803244650363922,
0.03995450958609581,
-0.5782859921455383,
-0.602970540523529,
0.1059107854962349,
-0.07515568286180496,
0.35136809945106506,
-0.1467924863100052,
-0.28700000047683716,
0.5121510028839111,
0.5921526551246643,
-0.5455843210220337,
-0.21135081350803375,
-0.5271089673042297,
-0.14765258133411407,
1.1609766483306885,
0.15238748490810394,
0.3948594629764557,
-0.46089550852775574,
-0.14018438756465912,
-0.37983959913253784,
-0.22362712025642395,
0.25667545199394226,
0.5164132118225098,
0.4957185387611389,
-1.125887155532837,
0.5795748233795166,
-0.19090977311134338,
0.6785373687744141,
-0.003315695095807314,
-0.08797081559896469,
0.8226636648178101,
-0.406602144241333,
-0.11306552588939667,
-0.16552774608135223,
1.0357613563537598,
0.7517852187156677,
0.2326151430606842,
0.02762656658887863,
-0.06992924213409424,
0.15547403693199158,
-0.21611112356185913,
-0.8069121241569519,
-0.3911978304386139,
0.6725521683692932,
-0.5769659280776978,
-0.5456811189651489,
0.07600961625576019,
-0.9626318216323853,
-0.2385440617799759,
-0.31464895606040955,
0.22653405368328094,
-0.38687053322792053,
-0.5243763327598572,
0.19931668043136597,
-0.4306938052177429,
0.09047699719667435,
0.1339600682258606,
-0.5164740681648254,
0.1601705253124237,
0.5660338997840881,
0.8367615342140198,
0.23651453852653503,
-0.263027548789978,
-0.3641544580459595,
-0.15487878024578094,
-0.02617809921503067,
0.7376687526702881,
-0.32166436314582825,
-0.33660900592803955,
-0.11121018975973129,
0.3375670909881592,
0.05373731255531311,
-0.2245219200849533,
0.9078867435455322,
-0.0022923906799405813,
0.217587411403656,
-0.5678071975708008,
-0.4100295603275299,
-0.003377568908035755,
0.2657226026058197,
-0.7699070572853088,
0.9755939245223999,
0.3634456992149353,
-1.0201890468597412,
0.16459514200687408,
-0.6838852167129517,
-0.34964150190353394,
0.06029387563467026,
-0.01835060305893421,
-0.7787123918533325,
-0.15279892086982727,
0.09868394583463669,
0.7190935611724854,
-0.33143386244773865,
-0.08710092306137085,
-0.685285210609436,
-0.18432514369487762,
0.3113856613636017,
0.22184284031391144,
1.2667367458343506,
0.14248713850975037,
-0.07507141679525375,
0.016747042536735535,
-1.0316098928451538,
0.11836162209510803,
0.4189751148223877,
-0.21493516862392426,
-0.16872239112854004,
-0.19814395904541016,
0.45124173164367676,
0.2595171630382538,
0.012770737521350384,
-0.5016016364097595,
0.39914119243621826,
-0.2418351024389267,
0.4710627794265747,
0.7509284615516663,
0.05342618003487587,
0.3242380619049072,
-0.6501774787902832,
0.40593579411506653,
0.00417878944426775,
0.37606534361839294,
-0.021896112710237503,
-0.5414505004882812,
-0.38143250346183777,
-0.25766006112098694,
0.27353546023368835,
0.44032663106918335,
-0.6228935718536377,
0.9748265743255615,
-0.3658982515335083,
-0.8039889335632324,
-0.5472020506858826,
0.06362257897853851,
0.08702355623245239,
0.5225222110748291,
0.4209093153476715,
-0.5575606226921082,
-0.5465856194496155,
-0.5996125936508179,
0.15911294519901276,
-0.25904354453086853,
0.1251082718372345,
0.4325348436832428,
0.686259925365448,
-0.25187408924102783,
0.8423409461975098,
-0.671936571598053,
-0.26119086146354675,
-0.18788425624370575,
-0.294191837310791,
0.439287394285202,
0.7809564471244812,
0.7017382979393005,
-0.8154523372650146,
-0.4189378619194031,
-0.27921485900878906,
-0.704659104347229,
-0.12311948090791702,
-0.10362206399440765,
-0.2170460969209671,
-0.07013525813817978,
0.025652863085269928,
-0.7338882684707642,
0.49445798993110657,
0.4291880428791046,
-0.594295084476471,
0.5535001754760742,
0.10669289529323578,
0.004432042129337788,
-1.2627978324890137,
0.34098511934280396,
0.23243455588817596,
0.014472479932010174,
-0.6039556860923767,
-0.22859790921211243,
-0.039317499846220016,
-0.0063358875922858715,
-0.11301995813846588,
0.5610694289207458,
-0.42184367775917053,
0.25652965903282166,
0.1339113563299179,
0.10509270429611206,
0.06675580143928528,
0.3847823143005371,
-0.07053253799676895,
0.2895283102989197,
1.021561622619629,
-0.4406503438949585,
0.6680986285209656,
0.5619456171989441,
-0.14620739221572876,
0.8058961033821106,
-0.7870728969573975,
0.005621783901005983,
-0.30922648310661316,
0.44933152198791504,
-0.8159521818161011,
-0.5219367146492004,
0.8030432462692261,
-0.7288960814476013,
0.3440873920917511,
-0.2783651053905487,
-0.5533201694488525,
-0.7618787288665771,
-0.6854320764541626,
0.18814316391944885,
0.5780693888664246,
-0.19543848931789398,
0.40968453884124756,
0.6008684635162354,
0.10994713753461838,
-0.34495529532432556,
-0.8095371723175049,
-0.11197111010551453,
-0.3920368254184723,
-0.7681032419204712,
0.3575780391693115,
-0.3848077952861786,
-0.13643686473369598,
0.08865272253751755,
0.12424403429031372,
0.10012645274400711,
0.027059942483901978,
0.34569910168647766,
0.3192254900932312,
0.04935690388083458,
0.03948790207505226,
-0.12629370391368866,
-0.25134405493736267,
0.09573806822299957,
-0.21467788517475128,
0.27949002385139465,
-0.19362303614616394,
-0.16119399666786194,
-0.6398464441299438,
0.17281514406204224,
0.4951038658618927,
-0.2852955758571625,
0.604875922203064,
0.7491191029548645,
-0.2691327929496765,
0.02259548008441925,
-0.5413925051689148,
-0.16433323919773102,
-0.38503584265708923,
-0.0007377511938102543,
-0.13150426745414734,
-0.5696887969970703,
0.9902964234352112,
0.22425755858421326,
0.15412960946559906,
0.6235020756721497,
0.4905630648136139,
0.006614068057388067,
0.6214591264724731,
0.33291903138160706,
-0.3369547724723816,
0.4986804127693176,
-0.6562912464141846,
-0.3111056387424469,
-0.8023132681846619,
-0.2938961982727051,
-0.5528096556663513,
-0.4357759356498718,
-0.7924800515174866,
-0.49514469504356384,
0.19568094611167908,
0.15449456870555878,
-0.22950026392936707,
0.4052343964576721,
-0.9640707969665527,
0.25223276019096375,
0.26438456773757935,
0.2922116219997406,
-0.07558547705411911,
0.11166990548372269,
0.1126052588224411,
0.22254587709903717,
-0.5133864879608154,
-0.24478264153003693,
1.1108148097991943,
0.47768330574035645,
0.609042227268219,
-0.05686305835843086,
0.7945132255554199,
0.07191748917102814,
0.26992717385292053,
-0.5304241180419922,
0.4626443386077881,
0.010583776980638504,
-0.4569683372974396,
-0.13456985354423523,
-0.4993368089199066,
-0.8183497786521912,
-0.1575876623392105,
-0.3900136351585388,
-0.650725781917572,
0.468584805727005,
0.07301938533782959,
-0.3176449239253998,
0.3274645209312439,
-0.6397014856338501,
0.7996736764907837,
-0.10406005382537842,
-0.4663996994495392,
0.28464946150779724,
-1.1073721647262573,
0.14526236057281494,
0.21935966610908508,
0.31743836402893066,
-0.4139024019241333,
-0.016723114997148514,
0.9826592803001404,
-0.7577751278877258,
0.9464718699455261,
-0.3609519600868225,
0.1430041491985321,
0.5456769466400146,
-0.3541625440120697,
0.5367609858512878,
0.21058110892772675,
-0.3567103147506714,
0.41551896929740906,
-0.013283839449286461,
-0.4416242837905884,
-0.40351206064224243,
0.6452071070671082,
-0.7354663014411926,
0.02952534891664982,
-0.3738373816013336,
-0.41127830743789673,
0.045630455017089844,
0.23903661966323853,
0.2774781882762909,
0.40653297305107117,
0.020236611366271973,
0.08796948939561844,
0.49381521344184875,
-0.1503036767244339,
0.28947320580482483,
0.10411874204874039,
0.010951326228678226,
-0.8636520504951477,
0.851017415523529,
0.16292084753513336,
0.10242073237895966,
-0.0026385874953120947,
0.38323020935058594,
-0.3573338985443115,
-0.18740758299827576,
-0.6780605912208557,
0.48910561203956604,
-0.4368136525154114,
-0.4389297366142273,
-0.551878035068512,
-0.13627001643180847,
-0.6695404648780823,
-0.18140052258968353,
-0.2090175747871399,
-0.5512114763259888,
-0.4496123194694519,
-0.21324937045574188,
1.1149377822875977,
0.3625182807445526,
-0.7132039666175842,
0.09358112514019012,
-0.5543798208236694,
0.31302469968795776,
-0.1272316426038742,
0.6767836213111877,
-0.05001760646700859,
-0.2675091028213501,
-0.18752062320709229,
0.13321660459041595,
-0.16821947693824768,
-0.7736901640892029,
0.2215779572725296,
-0.02968776971101761,
0.39641156792640686,
0.19545914232730865,
0.18409380316734314,
0.7180129885673523,
-0.07857897132635117,
0.7027314305305481,
0.3801577687263489,
-0.6919267773628235,
0.6654067039489746,
-0.5282951593399048,
0.186049222946167,
0.7705401182174683,
0.33828529715538025,
-0.6374155879020691,
-0.21775725483894348,
-0.934889018535614,
-0.8309699296951294,
0.7782964706420898,
0.3952602744102478,
0.1212986558675766,
0.1842731386423111,
0.5033761858940125,
-0.1109204962849617,
0.2422090619802475,
-0.6653611660003662,
-0.9249612092971802,
-0.4738595485687256,
-0.3287486135959625,
-0.10735100507736206,
-0.05031176283955574,
-0.2811439335346222,
-0.6821319460868835,
0.6720256805419922,
-0.11296316981315613,
0.3477095663547516,
0.40960514545440674,
0.4361218810081482,
-0.2719453275203705,
0.03275687247514725,
0.35012975335121155,
0.4143591523170471,
-0.2973243296146393,
-0.24163995683193207,
-0.151078000664711,
-0.6100033521652222,
-0.14225554466247559,
0.5758997201919556,
-0.3596821427345276,
-0.020687725394964218,
0.34029796719551086,
0.8284515142440796,
-0.05078411102294922,
-0.27353084087371826,
0.5753095746040344,
-0.1320357620716095,
-0.27647748589515686,
-0.47566115856170654,
0.025952909141778946,
0.1417492926120758,
0.1365833282470703,
0.13598842918872833,
0.11231331527233124,
-0.11090372502803802,
-0.3650919198989868,
0.42925235629081726,
0.31737884879112244,
-0.3747440278530121,
-0.48114994168281555,
0.633282482624054,
0.06723415106534958,
-0.14575564861297607,
0.4420020282268524,
-0.11803100258111954,
-0.5872035026550293,
0.7253308892250061,
0.13284549117088318,
0.8318955898284912,
-0.09939800947904587,
0.32200756669044495,
0.7110744714736938,
0.2437552660703659,
-0.016666337847709656,
0.47057488560676575,
-0.29287588596343994,
-0.579283595085144,
-0.03286215662956238,
-0.5990508198738098,
-0.0565280057489872,
0.12350941449403763,
-0.786806046962738,
0.476843923330307,
-0.4953491687774658,
-0.2538870871067047,
0.02618877962231636,
0.3469020426273346,
-0.703639805316925,
0.21317751705646515,
-0.09796842932701111,
1.0791614055633545,
-1.0946996212005615,
0.40689295530319214,
0.7146679759025574,
-0.7928974628448486,
-1.1248682737350464,
-0.11976064741611481,
0.12815193831920624,
-0.5670102834701538,
0.13713215291500092,
0.12202911078929901,
0.5578784942626953,
-0.003200810868293047,
-0.8659661412239075,
-0.6563014388084412,
1.1329163312911987,
0.055015962570905685,
-0.16560012102127075,
0.3549705445766449,
0.09353415668010712,
0.6318330764770508,
-0.28856730461120605,
0.4651530683040619,
0.5180425047874451,
0.6960383057594299,
0.2737169563770294,
-0.6781549453735352,
0.31650421023368835,
-0.5763994455337524,
-0.2550329267978668,
0.06773807108402252,
-1.0906505584716797,
0.5936006307601929,
-0.14777790009975433,
-0.11574442684650421,
-0.0175448190420866,
0.6058436632156372,
0.4475593864917755,
0.46174994111061096,
0.4493826627731323,
0.8233102560043335,
0.7533829212188721,
-0.2867460250854492,
1.2113147974014282,
-0.21665307879447937,
0.6052160263061523,
0.7248496413230896,
0.03487211838364601,
0.46656936407089233,
0.23252707719802856,
-0.35899320244789124,
0.5074427127838135,
0.7034366130828857,
-0.44807636737823486,
0.2996072769165039,
0.4088457226753235,
-0.12496951967477798,
-0.10986926406621933,
-0.22268974781036377,
-0.748770534992218,
0.20686081051826477,
0.20872730016708374,
-0.3447643518447876,
-0.09981446713209152,
-0.051415834575891495,
0.3177105188369751,
-0.11247387528419495,
-0.2392912656068802,
0.6479036808013916,
0.03208667412400246,
-0.31951844692230225,
0.6503832340240479,
-0.18029673397541046,
0.6694532632827759,
-0.5971441864967346,
0.05733301490545273,
-0.14850769937038422,
0.07732708007097244,
-0.6365431547164917,
-1.0096187591552734,
0.34557056427001953,
-0.08658964931964874,
-0.27933821082115173,
-0.24753513932228088,
0.7160118222236633,
-0.3475884199142456,
-0.7751902937889099,
0.20563329756259918,
0.1795591413974762,
0.3925827443599701,
0.2275596708059311,
-1.264825463294983,
0.6506417393684387,
0.1770973652601242,
-0.4042614698410034,
0.13436339795589447,
0.5265050530433655,
0.16000859439373016,
0.4904685914516449,
0.7358794212341309,
0.34930869936943054,
-0.23103578388690948,
0.16303211450576782,
1.1703219413757324,
-0.5766019225120544,
-0.5002076625823975,
-0.7180965542793274,
0.9124258756637573,
-0.3875736892223358,
-0.40606436133384705,
0.7124616503715515,
0.8299070000648499,
0.8796678185462952,
-0.032094597816467285,
0.8801581859588623,
-0.6379227042198181,
0.6908201575279236,
-0.18170981109142303,
0.9701263904571533,
-0.743267297744751,
-0.000438716757344082,
-0.7464166879653931,
-0.4874810576438904,
-0.49278953671455383,
0.6822782754898071,
-0.15854577720165253,
0.20987080037593842,
0.2471049726009369,
0.9094579815864563,
-0.02485102042555809,
0.13308556377887726,
-0.25352928042411804,
0.2654752731323242,
0.28341591358184814,
0.5688951015472412,
0.4162302613258362,
-0.9187917113304138,
0.34748032689094543,
-0.731406033039093,
-0.39848700165748596,
0.055715326219797134,
-0.8516052961349487,
-0.8548717498779297,
-0.8873803615570068,
-0.6910436749458313,
-0.8009095788002014,
-0.25450822710990906,
1.000137448310852,
0.6514075398445129,
-0.7291139364242554,
-0.24372747540473938,
0.0020194381941109896,
0.33592864871025085,
-0.10175712406635284,
-0.3389098644256592,
0.6434840559959412,
0.4093555212020874,
-0.5230586528778076,
-0.15683682262897491,
0.06389328092336655,
0.23987142741680145,
0.03995630517601967,
-0.09995217621326447,
-0.10871963202953339,
-0.35600072145462036,
0.3184870481491089,
0.5498418211936951,
-0.3612782955169678,
-0.10086943209171295,
-0.3276691436767578,
0.016668498516082764,
0.1470937430858612,
0.4902728796005249,
-0.5793406367301941,
0.19023340940475464,
0.6962833404541016,
0.29390817880630493,
0.34142202138900757,
0.28577786684036255,
-0.004278839100152254,
-0.47016641497612,
0.08927188068628311,
0.09560501575469971,
0.2478628009557724,
0.382298082113266,
-0.4967106580734253,
0.7816024422645569,
0.6382001042366028,
-0.5074984431266785,
-0.8944522738456726,
-0.17928139865398407,
-1.4000717401504517,
0.11192211508750916,
1.0811951160430908,
0.08587842434644699,
-0.4745579957962036,
-0.03497862443327904,
-0.15348096191883087,
0.19350223243236542,
-0.6129311919212341,
0.4722272753715515,
0.48022955656051636,
-0.0981554239988327,
0.07940713316202164,
-0.3644621968269348,
0.617357611656189,
-0.09477850794792175,
-0.9240679740905762,
0.22033818066120148,
0.5773454904556274,
0.44943422079086304,
0.36713382601737976,
0.8532748818397522,
-0.27562499046325684,
0.13041257858276367,
-0.08987283706665039,
0.2814878225326538,
-0.2624637186527252,
0.16483134031295776,
-0.37864550948143005,
-0.08965423703193665,
-0.49680206179618835,
-0.20423702895641327
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/the-king-and-the-jester | huggingartists | 2022-10-25T09:47:30Z | 293 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:47:30Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/the-king-and-the-jester"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 0.189886 MB
<div class="inline-flex flex-col" style="line-height: 1.5;">
<div class="flex">
<div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('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.6838226318359375,
-0.542050838470459,
0.08286089450120926,
0.1684524267911911,
-0.23467473685741425,
0.018663626164197922,
-0.337793231010437,
-0.4725540280342102,
0.8904387950897217,
0.36164718866348267,
-0.8279209733009338,
-0.78756183385849,
-0.5819187760353088,
0.15115392208099365,
-0.07196098566055298,
1.247533917427063,
-0.21514658629894257,
-0.33984655141830444,
-0.32259202003479004,
-0.21760232746601105,
-0.29359424114227295,
-0.324459969997406,
-0.24994832277297974,
-0.36215323209762573,
0.42240819334983826,
0.5186136364936829,
0.799705445766449,
0.9474899172782898,
0.48488837480545044,
0.34754741191864014,
-0.1351781040430069,
-0.00991864874958992,
-0.395137220621109,
-0.021784072741866112,
0.13383227586746216,
-0.2375759333372116,
-0.6144832372665405,
0.2411663681268692,
0.528958797454834,
0.36043083667755127,
-0.08162525296211243,
0.4383039176464081,
0.07552918046712875,
0.9346655607223511,
-0.34787556529045105,
0.49774742126464844,
-0.21556423604488373,
-0.1470828503370285,
-0.26810020208358765,
0.020173368975520134,
0.15726681053638458,
-0.6547687649726868,
0.04598883166909218,
-0.7698701620101929,
0.003956228028982878,
0.011002197861671448,
1.0373024940490723,
0.006332804448902607,
0.07113014906644821,
-0.22978109121322632,
-0.17336373031139374,
0.5245769619941711,
-0.5091460347175598,
-0.013961496762931347,
0.5412799119949341,
0.16202260553836823,
-0.012941837310791016,
-0.6212896108627319,
-0.6487963795661926,
0.012572401203215122,
-0.2051328867673874,
0.3329240083694458,
-0.189071923494339,
-0.2995217442512512,
0.4929591119289398,
0.5534617304801941,
-0.551445722579956,
-0.2943967580795288,
-0.5298787355422974,
-0.11352424323558807,
1.138735294342041,
0.14852558076381683,
0.45442333817481995,
-0.5801131725311279,
-0.23012644052505493,
-0.5184611082077026,
-0.25022706389427185,
0.385650098323822,
0.6229395270347595,
0.4320336580276489,
-1.0029665231704712,
0.6312230229377747,
-0.07207823544740677,
0.45941096544265747,
0.2244015336036682,
-0.02225247211754322,
0.7266916632652283,
-0.3688022792339325,
-0.08626201748847961,
-0.07040203362703323,
1.0328668355941772,
0.6669175624847412,
0.2841092348098755,
0.09532158076763153,
-0.028860848397016525,
0.14799486100673676,
-0.0686788409948349,
-0.8760324716567993,
-0.48728975653648376,
0.6029084920883179,
-0.6038580536842346,
-0.6018667221069336,
0.13202348351478577,
-0.9998282194137573,
-0.2904737889766693,
-0.3417062759399414,
0.3260044753551483,
-0.37848329544067383,
-0.5796886682510376,
0.1634873002767563,
-0.3415093421936035,
0.08382007479667664,
0.07253317534923553,
-0.5817233324050903,
0.19252070784568787,
0.5498940944671631,
0.6878759860992432,
0.12878462672233582,
-0.2501016855239868,
-0.2700868248939514,
-0.1469481736421585,
-0.167319655418396,
0.6646914482116699,
-0.3429611921310425,
-0.37279412150382996,
-0.13487659394741058,
0.3383769392967224,
-0.11164409667253494,
-0.32345783710479736,
0.8368462324142456,
0.009179399348795414,
0.2032165825366974,
-0.5653852820396423,
-0.4558473825454712,
-0.037468165159225464,
0.2966763377189636,
-0.8216473460197449,
1.0077643394470215,
0.34425947070121765,
-1.0462017059326172,
0.11863510310649872,
-0.7415841817855835,
-0.34259700775146484,
-0.0033977574203163385,
0.005126748234033585,
-0.7931634783744812,
-0.17935597896575928,
0.1846962720155716,
0.719336748123169,
-0.30045926570892334,
0.010558881796896458,
-0.624064028263092,
-0.17141444981098175,
0.3426024615764618,
0.2695087194442749,
1.1488603353500366,
0.06910467147827148,
-0.14026065170764923,
0.05986957252025604,
-0.8765556812286377,
0.13977165520191193,
0.46454310417175293,
-0.18689915537834167,
-0.1331821233034134,
-0.1677512228488922,
0.4191136658191681,
0.287740558385849,
0.07199303060770035,
-0.4914841055870056,
0.42305928468704224,
-0.18547441065311432,
0.37228143215179443,
0.7807037830352783,
0.019286707043647766,
0.3247881531715393,
-0.6877225041389465,
0.467891126871109,
0.07786845415830612,
0.3610047399997711,
0.05794556811451912,
-0.5070111155509949,
-0.4536915421485901,
-0.2372974306344986,
0.35615554451942444,
0.487957239151001,
-0.7348148822784424,
0.9741172790527344,
-0.35162433981895447,
-0.8295301198959351,
-0.5809226632118225,
0.04880095273256302,
0.211202010512352,
0.460564523935318,
0.3900046646595001,
-0.4664247930049896,
-0.6119877696037292,
-0.7516831159591675,
0.05786999687552452,
-0.3564881682395935,
0.2168421894311905,
0.43658891320228577,
0.8168637752532959,
-0.18941760063171387,
0.7629441022872925,
-0.6011383533477783,
-0.22917160391807556,
-0.29079753160476685,
-0.33456873893737793,
0.3740207552909851,
0.7795208096504211,
0.6305191516876221,
-0.8555947542190552,
-0.5342049598693848,
-0.20098301768302917,
-0.6729684472084045,
-0.05624426156282425,
-0.030937954783439636,
-0.2969181537628174,
-0.0026750597171485424,
0.09884286671876907,
-0.6671056747436523,
0.550510585308075,
0.4976571798324585,
-0.648565948009491,
0.6434369087219238,
0.14740701019763947,
0.14008398354053497,
-1.3243952989578247,
0.3415975570678711,
0.2279519885778427,
0.019770652055740356,
-0.6300156116485596,
-0.2063126266002655,
-0.01934668980538845,
0.05681181699037552,
-0.06517642736434937,
0.5420176386833191,
-0.33543863892555237,
0.33796820044517517,
0.12511488795280457,
0.11126093566417694,
0.09838515520095825,
0.4415307939052582,
-0.07606755942106247,
0.30566534399986267,
0.9943253993988037,
-0.3408786654472351,
0.615321159362793,
0.6104748845100403,
-0.21909549832344055,
0.8819600939750671,
-0.746811032295227,
0.00929532665759325,
-0.27602750062942505,
0.3860960900783539,
-0.8082848787307739,
-0.5577470064163208,
0.8089215159416199,
-0.7115071415901184,
0.44656041264533997,
-0.316724568605423,
-0.5738542079925537,
-0.8098152279853821,
-0.7530632019042969,
0.1016559973359108,
0.595648467540741,
-0.36438918113708496,
0.46808773279190063,
0.6090990900993347,
0.08527246117591858,
-0.40112707018852234,
-0.7271952629089355,
-0.15998628735542297,
-0.39061811566352844,
-0.8279827833175659,
0.4178924858570099,
-0.34107717871665955,
-0.10824356228113174,
0.16689381003379822,
-0.004770718514919281,
0.14261029660701752,
-0.05357850715517998,
0.4409298002719879,
0.3370698392391205,
0.07912063598632812,
-0.05950241908431053,
-0.10145577043294907,
-0.24147067964076996,
0.15411484241485596,
-0.14954759180545807,
0.2307407557964325,
-0.24532796442508698,
-0.12353134900331497,
-0.674370288848877,
0.2216005176305771,
0.4739011526107788,
-0.16176947951316833,
0.6331351399421692,
0.7585000395774841,
-0.2359921634197235,
-0.025670411065220833,
-0.4919128119945526,
-0.16728655993938446,
-0.42116600275039673,
0.026656845584511757,
-0.2209600955247879,
-0.6779618263244629,
0.9301754832267761,
0.23397715389728546,
0.04898975417017937,
0.7047697305679321,
0.5097910165786743,
-0.07967282086610794,
0.7376912236213684,
0.35556647181510925,
-0.27936893701553345,
0.502429723739624,
-0.6386816501617432,
-0.23784960806369781,
-0.8289915323257446,
-0.4177435040473938,
-0.5430877804756165,
-0.5764831900596619,
-0.9361573457717896,
-0.4036861062049866,
0.2694605886936188,
0.21721991896629333,
-0.23387376964092255,
0.5259285569190979,
-0.9768612384796143,
0.28814372420310974,
0.33686429262161255,
0.24995532631874084,
-0.12738612294197083,
0.12681639194488525,
0.041944123804569244,
0.12386149913072586,
-0.512915849685669,
-0.2533402144908905,
1.0925544500350952,
0.4431045353412628,
0.5691488981246948,
-0.08426046371459961,
0.794109582901001,
0.11002906411886215,
0.16660788655281067,
-0.4780745804309845,
0.5031019449234009,
0.04380638897418976,
-0.5183842182159424,
-0.09894192218780518,
-0.5166910886764526,
-0.9123076796531677,
-0.08600630611181259,
-0.38652145862579346,
-0.7434607744216919,
0.515583872795105,
0.09909046441316605,
-0.18724821507930756,
0.43228647112846375,
-0.5986420512199402,
0.8755600452423096,
0.054655417799949646,
-0.3764996826648712,
0.19805492460727692,
-1.0696085691452026,
0.18475116789340973,
0.22078339755535126,
0.2234676033258438,
-0.3856852948665619,
0.03613860905170441,
0.9901511669158936,
-0.7394842505455017,
0.8610471487045288,
-0.35085585713386536,
0.17105641961097717,
0.5761937499046326,
-0.23181100189685822,
0.5797936320304871,
0.10611037164926529,
-0.26396211981773376,
0.2346096932888031,
0.09213387221097946,
-0.39224427938461304,
-0.422050803899765,
0.6795030236244202,
-0.769322395324707,
0.04700575768947601,
-0.39471274614334106,
-0.44034990668296814,
0.05948909744620323,
0.07077162712812424,
0.22836934030056,
0.3873403072357178,
0.029799874871969223,
0.1620931327342987,
0.4710614085197449,
-0.12191858142614365,
0.23550200462341309,
0.03464947268366814,
-0.10805404931306839,
-0.8504542112350464,
0.8886861205101013,
0.17781856656074524,
0.07763846218585968,
-0.0389520563185215,
0.4389440417289734,
-0.35450589656829834,
-0.12736697494983673,
-0.6519612073898315,
0.3967738449573517,
-0.42815032601356506,
-0.3900447487831116,
-0.545416533946991,
-0.2196117490530014,
-0.5754694938659668,
-0.20968331396579742,
-0.19980351626873016,
-0.5141684412956238,
-0.3081204891204834,
-0.1489071547985077,
1.080507516860962,
0.49299684166908264,
-0.6962026953697205,
0.08630181103944778,
-0.4854510724544525,
0.33797112107276917,
-0.07569824159145355,
0.5840495228767395,
-0.0379338338971138,
-0.3458356559276581,
-0.23518739640712738,
0.018647504970431328,
-0.2250179797410965,
-0.7833532691001892,
0.2127286195755005,
-0.13134315609931946,
0.329270601272583,
0.09127602726221085,
0.1712590903043747,
0.722658634185791,
-0.0964227020740509,
0.6494871377944946,
0.3175434470176697,
-0.757150411605835,
0.629342257976532,
-0.5097073316574097,
0.13676778972148895,
0.7813737988471985,
0.3631807267665863,
-0.6812467575073242,
-0.18698829412460327,
-0.9572961926460266,
-0.8613338470458984,
0.8035593032836914,
0.46104153990745544,
0.026339933276176453,
0.19051402807235718,
0.48636218905448914,
-0.16365300118923187,
0.26848533749580383,
-0.6403806805610657,
-0.9091182351112366,
-0.34535571932792664,
-0.3388843536376953,
0.05727795511484146,
-0.06134166941046715,
-0.19925737380981445,
-0.7410649061203003,
0.8196768760681152,
-0.07336795330047607,
0.3165220022201538,
0.4004632532596588,
0.3587456941604614,
-0.29044926166534424,
0.037999313324689865,
0.23958632349967957,
0.3860854506492615,
-0.20884749293327332,
-0.25310373306274414,
-0.1603536307811737,
-0.6913516521453857,
-0.09280052781105042,
0.5223459601402283,
-0.3308923840522766,
-0.09278331696987152,
0.29093003273010254,
0.8310014605522156,
-0.06839239597320557,
-0.24198010563850403,
0.6243041157722473,
-0.05676601082086563,
-0.4085288643836975,
-0.4378802478313446,
0.036788132041692734,
0.16235144436359406,
0.2965373694896698,
0.05332545191049576,
0.09911904484033585,
-0.10245156288146973,
-0.35479891300201416,
0.44305339455604553,
0.2274724245071411,
-0.4113752245903015,
-0.49086958169937134,
0.5786733627319336,
0.0026939460076391697,
-0.07093916088342667,
0.4258159399032593,
-0.2007811814546585,
-0.6418575644493103,
0.7893079519271851,
0.12653830647468567,
0.8425509333610535,
-0.13843519985675812,
0.31609535217285156,
0.7347378730773926,
0.24112005531787872,
-0.04801524430513382,
0.5859341621398926,
-0.1601535528898239,
-0.5598315000534058,
-0.11774822324514389,
-0.5547484755516052,
-0.10672636330127716,
0.10497675836086273,
-0.8770094513893127,
0.41075995564460754,
-0.4936641752719879,
-0.2029486745595932,
0.02007395029067993,
0.41415512561798096,
-0.7104207873344421,
0.08578011393547058,
-0.04771997779607773,
1.0080809593200684,
-1.0192537307739258,
0.45875927805900574,
0.6587830185890198,
-0.626693844795227,
-1.2122496366500854,
-0.127666175365448,
0.2210586667060852,
-0.569920539855957,
0.12967458367347717,
0.23894087970256805,
0.5153659582138062,
-0.07232832163572311,
-0.916212260723114,
-0.6368430852890015,
1.1235612630844116,
0.0025535679887980223,
-0.27025943994522095,
0.3706096112728119,
0.06472490727901459,
0.5721806883811951,
-0.3121688663959503,
0.32358038425445557,
0.6610887050628662,
0.7892358899116516,
0.20649093389511108,
-0.7342294454574585,
0.3072155714035034,
-0.6430793404579163,
-0.21514448523521423,
0.1709851175546646,
-0.912129819393158,
0.6156038045883179,
-0.10129489004611969,
-0.05990723520517349,
0.06342613697052002,
0.5993617177009583,
0.4465966820716858,
0.34555351734161377,
0.509323239326477,
0.7866242527961731,
0.7379805445671082,
-0.3197431266307831,
1.2230604887008667,
-0.2346869558095932,
0.5940808057785034,
0.7586237192153931,
-0.008824773132801056,
0.5081971883773804,
0.25306880474090576,
-0.33714941143989563,
0.5952257513999939,
0.6426419019699097,
-0.4831092953681946,
0.2593531608581543,
0.47859182953834534,
-0.04957638308405876,
-0.1256686896085739,
-0.2750980854034424,
-0.6223804354667664,
0.21308399736881256,
0.20326484739780426,
-0.30105340480804443,
-0.003135860897600651,
-0.021249806508421898,
0.3965989649295807,
0.002790566999465227,
-0.2715524137020111,
0.6596752405166626,
0.010427712462842464,
-0.3204111158847809,
0.5341247916221619,
-0.21436229348182678,
0.6761829853057861,
-0.5818784832954407,
0.12880836427211761,
-0.02623027004301548,
0.11132559925317764,
-0.5269086956977844,
-1.084327220916748,
0.3042680621147156,
-0.07657606899738312,
-0.30773040652275085,
-0.32386794686317444,
0.7518070936203003,
-0.44867753982543945,
-0.7354952096939087,
0.28500884771347046,
0.25339096784591675,
0.34443581104278564,
0.16353155672550201,
-1.275599479675293,
0.5878636837005615,
0.13502174615859985,
-0.5455297231674194,
0.13040213286876678,
0.4994197189807892,
0.13951657712459564,
0.43483391404151917,
0.6735376715660095,
0.2595352828502655,
-0.2971215546131134,
0.10320498794317245,
1.1137133836746216,
-0.5701941251754761,
-0.42546266317367554,
-0.7755271196365356,
0.8902549743652344,
-0.38030123710632324,
-0.3902355134487152,
0.6890770792961121,
0.7920005321502686,
0.8918493390083313,
0.016043080016970634,
0.8220680356025696,
-0.6825941801071167,
0.671299159526825,
-0.1652931571006775,
0.9748600721359253,
-0.7338742613792419,
-0.1493687778711319,
-0.7529300451278687,
-0.516188383102417,
-0.37148264050483704,
0.6202350854873657,
-0.16766834259033203,
0.22249063849449158,
0.317312091588974,
0.9315506219863892,
-0.008380670100450516,
0.1606738269329071,
-0.23210372030735016,
0.30430135130882263,
0.23657424747943878,
0.5719641447067261,
0.4916169047355652,
-0.8790479898452759,
0.40539783239364624,
-0.7350472807884216,
-0.21717534959316254,
0.0030387146398425102,
-0.8174797892570496,
-0.9483616948127747,
-0.9377731680870056,
-0.6466236114501953,
-0.8576290607452393,
-0.22309516370296478,
1.1025571823120117,
0.6795824766159058,
-0.745808482170105,
-0.2645207345485687,
0.14851759374141693,
0.3002646565437317,
-0.0908849760890007,
-0.31512847542762756,
0.7327373027801514,
0.4204498529434204,
-0.5541282892227173,
-0.0933435708284378,
0.03702562674880028,
0.2493651658296585,
0.033076245337724686,
-0.12038832902908325,
-0.0774988979101181,
-0.2672734558582306,
0.30303090810775757,
0.4209372401237488,
-0.3668804466724396,
-0.18124127388000488,
-0.2774864435195923,
-0.020725470036268234,
0.19712084531784058,
0.4835261404514313,
-0.5722755789756775,
0.1991404891014099,
0.7248179316520691,
0.2983042299747467,
0.4352394938468933,
0.2044353187084198,
-0.007862330414354801,
-0.45355936884880066,
-0.0008428464061580598,
0.003998007625341415,
0.2971797585487366,
0.36102935671806335,
-0.42932960391044617,
0.7666593194007874,
0.5646434426307678,
-0.543632984161377,
-0.8525392413139343,
-0.13150440156459808,
-1.3118815422058105,
0.07720015943050385,
0.9945792555809021,
0.09954521059989929,
-0.5688875317573547,
0.0442301407456398,
-0.16657155752182007,
0.17075884342193604,
-0.5981167554855347,
0.4529016613960266,
0.5434462428092957,
-0.06377653777599335,
0.18398001790046692,
-0.4569844901561737,
0.6502680778503418,
-0.05555133521556854,
-0.9569920301437378,
0.20835472643375397,
0.46776583790779114,
0.4060111939907074,
0.3564675450325012,
0.6982488632202148,
-0.2984046936035156,
0.13229325413703918,
-0.06986789405345917,
0.3529820740222931,
-0.25590384006500244,
-0.039364542812108994,
-0.33521875739097595,
-0.0842839702963829,
-0.5463916659355164,
-0.1829763650894165
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/the-sugarcubes | huggingartists | 2022-10-25T09:47:46Z | 293 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:47:46Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/the-sugarcubes"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 0.077715 MB
<div class="inline-flex flex-col" style="line-height: 1.5;">
<div class="flex">
<div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('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.6140645146369934,
-0.5461989045143127,
0.08534060418605804,
0.24453718960285187,
-0.24754996597766876,
0.05225290358066559,
-0.3459732234477997,
-0.4220641851425171,
0.9063579440116882,
0.3359721899032593,
-0.8590584993362427,
-0.8210466504096985,
-0.5959234237670898,
0.1685476452112198,
-0.09864658862352371,
1.2963383197784424,
-0.19327710568904877,
-0.3314206600189209,
-0.39480331540107727,
-0.16049420833587646,
-0.3395780324935913,
-0.34377145767211914,
-0.3031403124332428,
-0.2822394073009491,
0.31123921275138855,
0.5481656193733215,
0.7289328575134277,
0.8882260918617249,
0.4889757037162781,
0.3494725823402405,
-0.1616748869419098,
-0.041903357952833176,
-0.38466331362724304,
-0.10304746776819229,
0.20437394082546234,
-0.3576345145702362,
-0.6616132855415344,
0.23627178370952606,
0.4567398726940155,
0.42543914914131165,
-0.06275355815887451,
0.4696572721004486,
0.07174473255872726,
0.7712390422821045,
-0.29477202892303467,
0.4898521602153778,
-0.26357969641685486,
-0.1540045589208603,
-0.2876792252063751,
0.07093243300914764,
0.16893233358860016,
-0.6249279975891113,
-0.06304644793272018,
-0.7258949279785156,
0.0821172446012497,
-0.0007641020929440856,
1.00173819065094,
0.049000710248947144,
0.10640442371368408,
-0.2411690354347229,
-0.13524587452411652,
0.5034273862838745,
-0.5801455974578857,
-0.044114090502262115,
0.6215581297874451,
0.12616433203220367,
-0.0010712528601288795,
-0.6231890916824341,
-0.5696490406990051,
0.05966847762465477,
-0.2204425036907196,
0.3192000687122345,
-0.14085546135902405,
-0.3557051718235016,
0.5077152252197266,
0.516535222530365,
-0.5031905770301819,
-0.2673150300979614,
-0.5337594151496887,
-0.1082766205072403,
1.155698299407959,
0.17370659112930298,
0.3820563554763794,
-0.5332764983177185,
-0.1975121796131134,
-0.3476964235305786,
-0.19528618454933167,
0.38245898485183716,
0.5293385982513428,
0.4691125154495239,
-1.0166895389556885,
0.5897321701049805,
-0.08980370312929153,
0.5158624053001404,
0.1431616246700287,
-0.01450859010219574,
0.7705920338630676,
-0.44522297382354736,
-0.14353907108306885,
-0.10839840024709702,
1.0656262636184692,
0.6102730631828308,
0.19346478581428528,
0.08634348958730698,
-0.06800999492406845,
0.08582143485546112,
-0.1314469575881958,
-0.8422001600265503,
-0.44374534487724304,
0.671790599822998,
-0.5589322447776794,
-0.5630531907081604,
0.18603123724460602,
-1.0519875288009644,
-0.21202440559864044,
-0.265807569026947,
0.22324693202972412,
-0.3934410810470581,
-0.49247318506240845,
0.17107507586479187,
-0.28588420152664185,
0.04552704840898514,
0.054122693836688995,
-0.6604474782943726,
0.2820223569869995,
0.6327838897705078,
0.7770625352859497,
0.21304729580879211,
-0.2640253007411957,
-0.3037589490413666,
-0.21076640486717224,
-0.11592663824558258,
0.666623592376709,
-0.3263574540615082,
-0.35505905747413635,
-0.18477708101272583,
0.3685762584209442,
-0.09170066565275192,
-0.303823322057724,
0.9173495173454285,
0.11178631335496902,
0.17318333685398102,
-0.5648676156997681,
-0.4585517644882202,
0.041877638548612595,
0.2263241410255432,
-0.7316139936447144,
1.0360181331634521,
0.3356863558292389,
-0.9477791786193848,
0.20384539663791656,
-0.7739500999450684,
-0.3268505930900574,
0.04146963730454445,
0.07971862703561783,
-0.8264843225479126,
-0.16745279729366302,
0.17234231531620026,
0.7105655670166016,
-0.3260115683078766,
0.051809195429086685,
-0.6027020812034607,
-0.11170630156993866,
0.35552555322647095,
0.26146820187568665,
1.1753126382827759,
0.12423713505268097,
-0.14438647031784058,
0.07411710917949677,
-0.8960787653923035,
0.10648661106824875,
0.4837605655193329,
-0.1019374206662178,
-0.1626587212085724,
-0.24363753199577332,
0.38419508934020996,
0.22557416558265686,
0.06213552877306938,
-0.5408720374107361,
0.45363250374794006,
-0.1658947467803955,
0.5037506222724915,
0.7415480613708496,
-0.04938286542892456,
0.30187350511550903,
-0.5821082592010498,
0.436462938785553,
0.09628978371620178,
0.4364430904388428,
-0.027023078873753548,
-0.5767304301261902,
-0.4722682535648346,
-0.24023164808750153,
0.37632158398628235,
0.4404010474681854,
-0.6236748099327087,
1.0392117500305176,
-0.31519514322280884,
-0.8455914855003357,
-0.6043993830680847,
0.12245074659585953,
0.17113462090492249,
0.5262300372123718,
0.41300472617149353,
-0.4717780649662018,
-0.5770489573478699,
-0.6288414001464844,
0.12340810149908066,
-0.21652601659297943,
0.19511614739894867,
0.43631014227867126,
0.8841192126274109,
-0.2136763036251068,
0.837454080581665,
-0.7147242426872253,
-0.23584534227848053,
-0.23498481512069702,
-0.33824560046195984,
0.4168611168861389,
0.7759453058242798,
0.7560033202171326,
-0.8861217498779297,
-0.47205474972724915,
-0.27953729033470154,
-0.6464580297470093,
-0.13728468120098114,
-0.02839055471122265,
-0.2675881087779999,
0.00612064590677619,
0.08316454291343689,
-0.692710816860199,
0.5888473391532898,
0.5094531774520874,
-0.7429555058479309,
0.6175903081893921,
0.12558911740779877,
0.06845104694366455,
-1.2889574766159058,
0.3495628833770752,
0.24109652638435364,
0.007650225888937712,
-0.6128922700881958,
-0.25677311420440674,
-0.015232975594699383,
-0.003344752825796604,
-0.10736435651779175,
0.5970494747161865,
-0.36702775955200195,
0.2831725776195526,
0.1185796707868576,
0.13571903109550476,
0.12634211778640747,
0.4226641356945038,
-0.07956293225288391,
0.2943321466445923,
1.0706886053085327,
-0.41065385937690735,
0.6985132694244385,
0.6674244403839111,
-0.1898012012243271,
0.8412485122680664,
-0.755644679069519,
-0.0035381498746573925,
-0.24551180005073547,
0.39575809240341187,
-0.8265630602836609,
-0.5171427130699158,
0.8305234313011169,
-0.7329453825950623,
0.34075766801834106,
-0.27259132266044617,
-0.48794761300086975,
-0.8609653115272522,
-0.6579930186271667,
0.14966963231563568,
0.5258347988128662,
-0.35299018025398254,
0.4147728383541107,
0.5925564169883728,
0.07150737941265106,
-0.340785413980484,
-0.8065800070762634,
-0.0929533839225769,
-0.3905966579914093,
-0.7950634956359863,
0.3998815417289734,
-0.37026330828666687,
-0.09422723948955536,
0.1663355529308319,
0.03956739604473114,
0.09849562495946884,
0.04098493605852127,
0.4176662862300873,
0.29787853360176086,
0.11457780003547668,
0.001346637844108045,
-0.1395816206932068,
-0.2298641800880432,
0.12387049943208694,
-0.20819996297359467,
0.3001895844936371,
-0.266335666179657,
-0.07442037016153336,
-0.6191560626029968,
0.19209596514701843,
0.3927077054977417,
-0.2448601871728897,
0.6615265607833862,
0.7535788416862488,
-0.24119150638580322,
-0.0028088949620723724,
-0.42814716696739197,
-0.17864078283309937,
-0.407661110162735,
0.032837897539138794,
-0.2525942027568817,
-0.59804767370224,
0.938012957572937,
0.25608474016189575,
0.03022853285074234,
0.6273589730262756,
0.4660348892211914,
-0.030492665246129036,
0.622797966003418,
0.3772719204425812,
-0.27694258093833923,
0.49108031392097473,
-0.677131712436676,
-0.24297979474067688,
-0.8232999444007874,
-0.4883793890476227,
-0.5789029598236084,
-0.4975702166557312,
-0.8128687143325806,
-0.4313713014125824,
0.1713186353445053,
0.16074781119823456,
-0.2018250972032547,
0.5472298264503479,
-0.9109851717948914,
0.26889216899871826,
0.3589644730091095,
0.2810879647731781,
-0.14036588370800018,
0.04245735704898834,
0.05579990893602371,
0.1610919088125229,
-0.5936886072158813,
-0.2510005533695221,
1.09142005443573,
0.44077610969543457,
0.585058331489563,
-0.10530199855566025,
0.7967792749404907,
0.04184875637292862,
0.21528854966163635,
-0.5642490386962891,
0.48334717750549316,
-0.02231816202402115,
-0.44462689757347107,
-0.09961285442113876,
-0.5574268102645874,
-0.9613959193229675,
-0.17497146129608154,
-0.43122598528862,
-0.7410135865211487,
0.4503448009490967,
0.10850140452384949,
-0.23807494342327118,
0.39373165369033813,
-0.6640437245368958,
0.8851976990699768,
-0.15564434230327606,
-0.481193482875824,
0.3176972270011902,
-1.0425703525543213,
0.17622379958629608,
0.16755831241607666,
0.28231528401374817,
-0.3885691165924072,
0.02207006700336933,
0.9823597073554993,
-0.8275985717773438,
0.9125839471817017,
-0.34846073389053345,
0.15487238764762878,
0.5556476712226868,
-0.2628888487815857,
0.4461217522621155,
0.16009822487831116,
-0.27463042736053467,
0.32928466796875,
0.02587961219251156,
-0.4534580409526825,
-0.4349004924297333,
0.6764220595359802,
-0.697110116481781,
-0.02012699656188488,
-0.35273101925849915,
-0.3991102874279022,
0.04965333268046379,
0.16680026054382324,
0.22079721093177795,
0.35789477825164795,
0.04600401222705841,
0.10437439382076263,
0.39285165071487427,
-0.12292368710041046,
0.2999531030654907,
-0.027041584253311157,
-0.09196127951145172,
-0.8290908336639404,
0.8263182640075684,
0.12236881256103516,
0.08000808954238892,
-0.024976616725325584,
0.4577903151512146,
-0.36197325587272644,
-0.1232001930475235,
-0.5635374784469604,
0.44043630361557007,
-0.3620437681674957,
-0.43536490201950073,
-0.5139347910881042,
-0.14088529348373413,
-0.7331728935241699,
-0.19065748155117035,
-0.23389403522014618,
-0.48607319593429565,
-0.3964746594429016,
-0.19780176877975464,
1.051945447921753,
0.4363928437232971,
-0.6644135117530823,
0.1429934799671173,
-0.5543034076690674,
0.301771879196167,
-0.1215236485004425,
0.6750340461730957,
-0.11596406251192093,
-0.3374956250190735,
-0.24191300570964813,
0.11721181869506836,
-0.21097059547901154,
-0.7207501530647278,
0.3063734173774719,
-0.0739603340625763,
0.3592304587364197,
0.10121002793312073,
0.0819898396730423,
0.7437649369239807,
-0.03196003660559654,
0.6853310465812683,
0.3073592483997345,
-0.8680592179298401,
0.7016124725341797,
-0.4129970967769623,
0.1422785371541977,
0.7540135979652405,
0.4154044985771179,
-0.6534343361854553,
-0.12377939373254776,
-0.9825194478034973,
-0.868233323097229,
0.8091994524002075,
0.439709335565567,
0.03174613043665886,
0.2383512407541275,
0.5685560703277588,
-0.1379013955593109,
0.29300737380981445,
-0.6490840315818787,
-0.8722125887870789,
-0.44080591201782227,
-0.3441654145717621,
-0.07636108994483948,
-0.05434739962220192,
-0.21425668895244598,
-0.6893914341926575,
0.7710756063461304,
-0.12178080528974533,
0.2998407781124115,
0.38506460189819336,
0.42626816034317017,
-0.22126413881778717,
-0.005841501988470554,
0.2560369372367859,
0.3530964255332947,
-0.23445674777030945,
-0.23831191658973694,
-0.2058868706226349,
-0.6577895283699036,
-0.09853747487068176,
0.4960097670555115,
-0.36206337809562683,
-0.12243929505348206,
0.2632620632648468,
0.9137381315231323,
-0.06150049343705177,
-0.272678941488266,
0.594262957572937,
-0.12026499956846237,
-0.381478488445282,
-0.38670432567596436,
0.050550445914268494,
0.13229328393936157,
0.18887709081172943,
0.03807223215699196,
0.11780423671007156,
-0.14895565807819366,
-0.440018892288208,
0.46497175097465515,
0.23123808205127716,
-0.3861418068408966,
-0.5020962357521057,
0.6609011888504028,
0.08605421334505081,
-0.14896325767040253,
0.47425761818885803,
-0.1424102485179901,
-0.6400985717773438,
0.8450242280960083,
0.1632576584815979,
0.8132167458534241,
-0.163567915558815,
0.3477180600166321,
0.741181492805481,
0.2122240960597992,
-0.03893987461924553,
0.49795645475387573,
-0.18763549625873566,
-0.5899783968925476,
-0.012205558829009533,
-0.5910594463348389,
-0.08762193471193314,
0.08367644250392914,
-0.7856531143188477,
0.5085992813110352,
-0.4601716101169586,
-0.2571525573730469,
0.0317942351102829,
0.385942280292511,
-0.6737365126609802,
0.19872358441352844,
-0.029870107769966125,
1.0356050729751587,
-1.0540789365768433,
0.4044707417488098,
0.6700919270515442,
-0.6732750535011292,
-1.163185477256775,
-0.1312800794839859,
0.18293021619319916,
-0.559374988079071,
0.15255992114543915,
0.1819341629743576,
0.5365281105041504,
-0.10310048609972,
-0.9346537590026855,
-0.6663941144943237,
1.1691882610321045,
0.05501318722963333,
-0.22902441024780273,
0.3945636451244354,
0.15502509474754333,
0.6210083365440369,
-0.34215906262397766,
0.42118674516677856,
0.6760895252227783,
0.7287434339523315,
0.31891152262687683,
-0.7299702167510986,
0.29505157470703125,
-0.6139665246009827,
-0.2759314179420471,
0.08184492588043213,
-1.0646048784255981,
0.6215893626213074,
-0.20748035609722137,
-0.05413005128502846,
0.028014373034238815,
0.597245991230011,
0.42631796002388,
0.3887021243572235,
0.43735936284065247,
0.7329893708229065,
0.8162233829498291,
-0.38036561012268066,
1.1853039264678955,
-0.2570079565048218,
0.6507222056388855,
0.7846906781196594,
0.024794956669211388,
0.42693015933036804,
0.23083677887916565,
-0.3337307572364807,
0.4869841933250427,
0.719976544380188,
-0.5135170221328735,
0.2143351137638092,
0.4280836582183838,
-0.007220244500786066,
-0.08846387267112732,
-0.26607072353363037,
-0.5513837337493896,
0.3069881200790405,
0.22649212181568146,
-0.3241419792175293,
0.03085748665034771,
-0.02448098547756672,
0.43517133593559265,
-0.01273293700069189,
-0.3074597716331482,
0.6212904453277588,
0.06405499577522278,
-0.35800158977508545,
0.5499304533004761,
-0.20415471494197845,
0.7091923952102661,
-0.5892579555511475,
0.16687345504760742,
-0.15710899233818054,
0.0815696269273758,
-0.6322887539863586,
-1.1147569417953491,
0.3607511818408966,
-0.0422104075551033,
-0.19758397340774536,
-0.31654027104377747,
0.7095208168029785,
-0.47574612498283386,
-0.7776221632957458,
0.24484144151210785,
0.1938146948814392,
0.32378989458084106,
0.20273397862911224,
-1.286023497581482,
0.5698574781417847,
0.1588016152381897,
-0.46223825216293335,
0.05689670518040657,
0.5113806128501892,
0.1716088354587555,
0.525390625,
0.657416820526123,
0.2858927547931671,
-0.2550797760486603,
0.07766719907522202,
1.0851478576660156,
-0.6049498319625854,
-0.46503856778144836,
-0.7946596145629883,
0.8679699301719666,
-0.35667285323143005,
-0.38933461904525757,
0.7089420557022095,
0.8521337509155273,
0.8828594088554382,
-0.013856764882802963,
0.8418089151382446,
-0.7161583304405212,
0.6036158800125122,
-0.2255476415157318,
0.9058086276054382,
-0.7254860401153564,
-0.08727652579545975,
-0.7567434906959534,
-0.48144346475601196,
-0.4580690860748291,
0.5682722330093384,
-0.18350765109062195,
0.23894493281841278,
0.32548853754997253,
0.9139638543128967,
-0.015436800196766853,
0.15845711529254913,
-0.22262512147426605,
0.35502997040748596,
0.2958887219429016,
0.593196451663971,
0.40146562457084656,
-0.8904849290847778,
0.3779420256614685,
-0.7443761825561523,
-0.30735698342323303,
0.019972950220108032,
-0.8403233885765076,
-0.868992805480957,
-0.9439721703529358,
-0.6551629304885864,
-0.7978329658508301,
-0.29333028197288513,
1.0762981176376343,
0.6954804062843323,
-0.735958993434906,
-0.28056254982948303,
0.08366239815950394,
0.2624088227748871,
-0.08563677966594696,
-0.32547616958618164,
0.6657554507255554,
0.37195953726768494,
-0.6367979049682617,
-0.1615677922964096,
-0.004136192612349987,
0.27422982454299927,
0.09519319236278534,
-0.0649624913930893,
-0.1121753677725792,
-0.30218857526779175,
0.32012033462524414,
0.4360831081867218,
-0.2658976912498474,
-0.10142482072114944,
-0.21572232246398926,
0.03532088175415993,
0.2507762908935547,
0.5188254714012146,
-0.5367401242256165,
0.18060514330863953,
0.6359353065490723,
0.2685392200946808,
0.44357988238334656,
0.24922071397304535,
-0.044046446681022644,
-0.46146926283836365,
0.0774424746632576,
0.017632491886615753,
0.35457441210746765,
0.3836999535560608,
-0.48423174023628235,
0.793113648891449,
0.637061595916748,
-0.5162059664726257,
-0.7803776860237122,
-0.16060006618499756,
-1.3540031909942627,
0.04714479669928551,
1.078432321548462,
0.031236950308084488,
-0.6386511325836182,
0.05887431651353836,
-0.21756815910339355,
0.1469401866197586,
-0.6195653080940247,
0.49481233954429626,
0.4799486994743347,
-0.12114820629358292,
0.16575513780117035,
-0.3324519693851471,
0.6257718801498413,
-0.041168369352817535,
-1.0898680686950684,
0.24269430339336395,
0.4587787985801697,
0.4736355245113373,
0.32735615968704224,
0.7698256969451904,
-0.2493828386068344,
0.008323170244693756,
-0.05554697662591934,
0.29107290506362915,
-0.24539531767368317,
-0.00867864117026329,
-0.33927497267723083,
-0.12941819429397583,
-0.5844048857688904,
-0.1698792278766632
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/tom-waits | huggingartists | 2022-10-25T09:48:23Z | 293 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:48:23Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/tom-waits"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 0.818237 MB
<div class="inline-flex flex-col" style="line-height: 1.5;">
<div class="flex">
<div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('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.6298279166221619,
-0.4365769922733307,
0.12643824517726898,
0.3045577108860016,
-0.2564501166343689,
-0.044631216675043106,
-0.3498784303665161,
-0.4593032896518707,
0.8684906959533691,
0.31097206473350525,
-0.9360842108726501,
-0.7253844738006592,
-0.5653414130210876,
0.18957962095737457,
-0.1167483925819397,
1.2687240839004517,
-0.21562474966049194,
-0.3263971209526062,
-0.47920745611190796,
-0.2541610598564148,
-0.2763787806034088,
-0.2972739338874817,
-0.31417593359947205,
-0.3080153167247772,
0.42542925477027893,
0.4889303147792816,
0.7992358803749084,
0.9739235639572144,
0.49034374952316284,
0.33517327904701233,
-0.14570912718772888,
-0.031870268285274506,
-0.39061087369918823,
-0.05866586044430733,
0.22736160457134247,
-0.3220664858818054,
-0.6500188708305359,
0.2129501849412918,
0.54695725440979,
0.44524672627449036,
-0.09164772927761078,
0.5090832114219666,
0.02962600626051426,
0.8145570755004883,
-0.27056410908699036,
0.521406352519989,
-0.20521052181720734,
-0.11229219287633896,
-0.4032110869884491,
0.002171176252886653,
0.1572016328573227,
-0.6772933602333069,
0.03751737251877785,
-0.8380502462387085,
0.07373571395874023,
-0.08242258429527283,
1.0192508697509766,
0.18900761008262634,
0.11356304585933685,
-0.21769341826438904,
-0.05719581991434097,
0.5317061543464661,
-0.6392883062362671,
-0.041769325733184814,
0.5838952660560608,
0.13265666365623474,
-0.05510928854346275,
-0.574548602104187,
-0.7213332056999207,
0.11818133294582367,
-0.199746236205101,
0.24588871002197266,
0.018634704872965813,
-0.31449374556541443,
0.55256187915802,
0.6613950133323669,
-0.6303078532218933,
-0.2764676809310913,
-0.5073451995849609,
-0.03140609711408615,
1.2197861671447754,
0.14703010022640228,
0.4231258034706116,
-0.45301541686058044,
-0.2217245101928711,
-0.5027328133583069,
-0.2120523601770401,
0.29776230454444885,
0.4988349974155426,
0.5747772455215454,
-1.037114143371582,
0.6347548961639404,
-0.13229124248027802,
0.5272306203842163,
0.06502654403448105,
-0.030134819447994232,
0.8011075854301453,
-0.3148868680000305,
-0.12149228900671005,
-0.23757638037204742,
0.93996262550354,
0.7085585594177246,
0.2810785472393036,
0.13390502333641052,
-0.04760560020804405,
0.0986088290810585,
-0.18008799850940704,
-0.7666657567024231,
-0.45302918553352356,
0.6759968996047974,
-0.5840803384780884,
-0.522725522518158,
0.08978807926177979,
-1.0510019063949585,
-0.29028016328811646,
-0.37911656498908997,
0.22654536366462708,
-0.29234057664871216,
-0.5710166692733765,
0.13695645332336426,
-0.3256438076496124,
0.15644149482250214,
0.06197253242135048,
-0.5802924036979675,
0.18711978197097778,
0.5685954093933105,
0.8047836422920227,
0.10497669130563736,
-0.34362271428108215,
-0.2546997666358948,
-0.18127265572547913,
-0.0942566767334938,
0.6737065315246582,
-0.32484468817710876,
-0.43547505140304565,
-0.0592697449028492,
0.4104900360107422,
-0.09886500984430313,
-0.2531892955303192,
0.8963170647621155,
0.045377299189567566,
0.2739388644695282,
-0.6763532161712646,
-0.5012781023979187,
0.06286866962909698,
0.2425113469362259,
-0.7882245182991028,
1.1451414823532104,
0.25635597109794617,
-0.9786964654922485,
0.23109573125839233,
-0.8749935626983643,
-0.4215688407421112,
0.04947627708315849,
0.01631697081029415,
-0.8136633038520813,
-0.175383061170578,
0.18040241301059723,
0.7281708717346191,
-0.27987417578697205,
0.042315948754549026,
-0.6550648808479309,
-0.12190677225589752,
0.3195857107639313,
0.3011038899421692,
1.210274577140808,
0.14876870810985565,
-0.08141382038593292,
0.06372469663619995,
-0.9670106768608093,
0.15431877970695496,
0.5777062177658081,
-0.23103126883506775,
-0.11200033873319626,
-0.21927960216999054,
0.5087026953697205,
0.2047991007566452,
0.09010214358568192,
-0.4334253966808319,
0.47387057542800903,
-0.13888628780841827,
0.442898154258728,
0.80238938331604,
-0.05738969147205353,
0.26250582933425903,
-0.6901770830154419,
0.4874126613140106,
0.01328360103070736,
0.3638063371181488,
-0.09611339867115021,
-0.5979032516479492,
-0.47739332914352417,
-0.18019576370716095,
0.3017927408218384,
0.42373043298721313,
-0.7040897011756897,
0.8870706558227539,
-0.38554567098617554,
-0.7825257778167725,
-0.5248005986213684,
0.00802789069712162,
0.17642223834991455,
0.44143161177635193,
0.3521890938282013,
-0.4554758369922638,
-0.579687774181366,
-0.6013414859771729,
0.0834069550037384,
-0.29873648285865784,
0.16301900148391724,
0.38975828886032104,
0.7599835395812988,
-0.16441725194454193,
0.8374186158180237,
-0.7615249752998352,
-0.2001969814300537,
-0.12227122485637665,
-0.27590492367744446,
0.4012702405452728,
0.8450154662132263,
0.7411830425262451,
-0.8609883785247803,
-0.44817009568214417,
-0.346112996339798,
-0.6755955219268799,
-0.08952289819717407,
-0.058735284954309464,
-0.236455500125885,
-0.021987978368997574,
0.04413028433918953,
-0.8027003407478333,
0.5100449919700623,
0.4416030943393707,
-0.6168025135993958,
0.5652814507484436,
0.14580756425857544,
0.03324870765209198,
-1.310695767402649,
0.3633885681629181,
0.23204229772090912,
0.03515024483203888,
-0.5390984416007996,
-0.15296824276447296,
-0.12518928945064545,
-0.08222156018018723,
-0.05846422165632248,
0.673818826675415,
-0.3816436529159546,
0.19272245466709137,
0.14162983000278473,
0.09272520989179611,
0.1263808012008667,
0.43655794858932495,
-0.006103371735662222,
0.3091679811477661,
0.9742050766944885,
-0.36965838074684143,
0.5460259318351746,
0.6539607644081116,
-0.18728342652320862,
0.8437830209732056,
-0.7520442605018616,
0.11877963691949844,
-0.2446434497833252,
0.3490563929080963,
-0.8626977205276489,
-0.610357403755188,
0.6984832286834717,
-0.6867768168449402,
0.38413143157958984,
-0.2554876506328583,
-0.6174207329750061,
-0.8683851361274719,
-0.603996753692627,
0.19224192202091217,
0.5077601075172424,
-0.38500648736953735,
0.3957919180393219,
0.6401459574699402,
-0.0032894331961870193,
-0.3056489825248718,
-0.8588963150978088,
-0.18732264637947083,
-0.37384507060050964,
-0.7505059242248535,
0.3380950391292572,
-0.493440181016922,
-0.0600171759724617,
0.1404908448457718,
0.15047802031040192,
0.034606125205755234,
0.015656011179089546,
0.344298779964447,
0.22330445051193237,
0.07014115154743195,
0.0823950245976448,
-0.10223858803510666,
-0.22350537776947021,
0.09833739697933197,
-0.2217096984386444,
0.18984989821910858,
-0.2054602950811386,
-0.1282738596200943,
-0.6486879587173462,
0.23638586699962616,
0.5050510764122009,
-0.20389904081821442,
0.5295296311378479,
0.762686550617218,
-0.30430158972740173,
-0.03621345013380051,
-0.41996192932128906,
-0.16556118428707123,
-0.4149859845638275,
-0.01281021349132061,
-0.23613214492797852,
-0.5632416605949402,
0.9271360635757446,
0.2453804761171341,
0.13349105417728424,
0.6077508330345154,
0.4569447934627533,
-0.05845947936177254,
0.615394115447998,
0.41456377506256104,
-0.27502718567848206,
0.4924331307411194,
-0.5799902677536011,
-0.31256723403930664,
-0.720578670501709,
-0.33617913722991943,
-0.5136036276817322,
-0.48991480469703674,
-0.8449384570121765,
-0.4709678888320923,
0.14275535941123962,
0.0236172117292881,
-0.1734519749879837,
0.46688103675842285,
-0.9827252626419067,
0.32764241099357605,
0.38495391607284546,
0.19357609748840332,
-0.1559254378080368,
0.042222000658512115,
0.0781775712966919,
0.1437988579273224,
-0.5287343263626099,
-0.2083931714296341,
1.1611255407333374,
0.466722309589386,
0.4780659079551697,
-0.10682842880487442,
0.7258800864219666,
0.13596846163272858,
0.19127103686332703,
-0.5135222673416138,
0.5171018242835999,
-0.03027583472430706,
-0.5370878577232361,
-0.17235320806503296,
-0.4356619715690613,
-0.8581898808479309,
-0.12921150028705597,
-0.3708197772502899,
-0.6123356223106384,
0.4995039105415344,
0.14947263896465302,
-0.2677180767059326,
0.3620699644088745,
-0.6376794576644897,
0.839988648891449,
-0.11403565853834152,
-0.4309639632701874,
0.34521958231925964,
-1.0580700635910034,
0.13896405696868896,
0.24395176768302917,
0.21684911847114563,
-0.40935876965522766,
0.10378728806972504,
1.0228252410888672,
-0.8065515756607056,
0.924477756023407,
-0.4495266377925873,
0.1504773646593094,
0.4697798490524292,
-0.3710307478904724,
0.4902322292327881,
0.07765240967273712,
-0.3128474950790405,
0.33243802189826965,
0.11945624649524689,
-0.5304861664772034,
-0.4254530668258667,
0.6088210940361023,
-0.6899153590202332,
0.05692264810204506,
-0.4028567969799042,
-0.4905608892440796,
-0.009971179999411106,
0.2216733992099762,
0.1857873499393463,
0.2961752712726593,
0.07564982026815414,
0.08243077993392944,
0.38068386912345886,
-0.09615562856197357,
0.30764997005462646,
0.05343316122889519,
-0.14847427606582642,
-0.8179356455802917,
0.8167027831077576,
0.19788521528244019,
-0.012809897772967815,
-0.02456483244895935,
0.40098807215690613,
-0.3714419901371002,
-0.14172908663749695,
-0.5882994532585144,
0.42903080582618713,
-0.40042537450790405,
-0.33857351541519165,
-0.45345064997673035,
-0.1147768646478653,
-0.6361728310585022,
-0.1715545654296875,
-0.2590281665325165,
-0.5265101194381714,
-0.36385491490364075,
-0.270810067653656,
1.075302243232727,
0.48506221175193787,
-0.6479068994522095,
0.2282414585351944,
-0.4476358890533447,
0.2536989450454712,
-0.06283804029226303,
0.6421372294425964,
-0.055862028151750565,
-0.22073353826999664,
-0.2818247973918915,
0.031054159626364708,
-0.17499488592147827,
-0.6574125289916992,
0.23344449698925018,
-0.08088009804487228,
0.3453325629234314,
0.19841116666793823,
0.1767382174730301,
0.8342291712760925,
-0.03756018728017807,
0.7596830725669861,
0.2401600331068039,
-0.7874525189399719,
0.6883440017700195,
-0.5098087787628174,
0.1758890599012375,
0.8024789094924927,
0.3786676824092865,
-0.5819246768951416,
-0.052213702350854874,
-0.8912165760993958,
-0.9129115343093872,
0.7967849373817444,
0.429269939661026,
0.010007236152887344,
0.17907141149044037,
0.6191165447235107,
-0.09908277541399002,
0.350154846906662,
-0.7035316228866577,
-0.8560751676559448,
-0.3527476191520691,
-0.32330942153930664,
-0.10118869692087173,
-0.07103995233774185,
-0.2546478807926178,
-0.649843692779541,
0.7373142242431641,
-0.203888401389122,
0.28270959854125977,
0.42459845542907715,
0.4825921654701233,
-0.30659642815589905,
-0.06897879391908646,
0.30171892046928406,
0.3909326493740082,
-0.26262494921684265,
-0.3406166732311249,
-0.2015196532011032,
-0.5684934854507446,
-0.1888258457183838,
0.5780117511749268,
-0.35340598225593567,
-0.054279766976833344,
0.3569532036781311,
0.8781121373176575,
-0.051966648548841476,
-0.277459979057312,
0.5667625665664673,
-0.13318069279193878,
-0.26932278275489807,
-0.5318155288696289,
-0.05745304375886917,
0.08174354583024979,
0.23917776346206665,
0.05560103803873062,
0.12004177272319794,
-0.14215587079524994,
-0.35506051778793335,
0.45223134756088257,
0.17125560343265533,
-0.34254008531570435,
-0.5480537414550781,
0.6537467241287231,
0.09989967197179794,
-0.1189572811126709,
0.4646952152252197,
-0.15974874794483185,
-0.5500411987304688,
0.7702867984771729,
0.10755405575037003,
0.8410360813140869,
-0.16395267844200134,
0.30851197242736816,
0.6878544092178345,
0.17281128466129303,
-0.10773693025112152,
0.6514795422554016,
-0.29016220569610596,
-0.5821235179901123,
-0.027336422353982925,
-0.5731161832809448,
-0.15520279109477997,
0.12877710163593292,
-0.9460525512695312,
0.43262457847595215,
-0.4260188639163971,
-0.29384317994117737,
-0.0629691556096077,
0.4204334616661072,
-0.7626250386238098,
0.22438646852970123,
-0.0331779345870018,
1.0457863807678223,
-1.124958872795105,
0.46275627613067627,
0.6941830515861511,
-0.7209197878837585,
-1.1118264198303223,
-0.005817086435854435,
0.2503931224346161,
-0.6027994751930237,
0.1348399668931961,
0.21141564846038818,
0.5766965746879578,
-0.1346525102853775,
-0.8739078044891357,
-0.682733416557312,
1.2026947736740112,
0.06169521436095238,
-0.2591543197631836,
0.30077213048934937,
0.10124366730451584,
0.6472455859184265,
-0.34747037291526794,
0.35178688168525696,
0.5452507734298706,
0.7684440016746521,
0.2846606373786926,
-0.7559322714805603,
0.2854353189468384,
-0.7032262086868286,
-0.18816201388835907,
-0.0008220444433391094,
-1.0332701206207275,
0.7052138447761536,
-0.21073542535305023,
-0.105209581553936,
0.16000691056251526,
0.6257665157318115,
0.5211220979690552,
0.5093289613723755,
0.5313526391983032,
0.7975932955741882,
0.9305104613304138,
-0.3397013247013092,
1.2471542358398438,
-0.2064436674118042,
0.5747573971748352,
0.889874279499054,
-0.09531600028276443,
0.5941354632377625,
0.285184383392334,
-0.42220768332481384,
0.4890165627002716,
0.8002377152442932,
-0.44331011176109314,
0.22590279579162598,
0.4461299479007721,
0.0550583116710186,
-0.05139481648802757,
-0.230551078915596,
-0.648107647895813,
0.2584162652492523,
0.21424469351768494,
-0.30961164832115173,
0.11893316358327866,
-0.02247305028140545,
0.4145926535129547,
-0.024171283468604088,
-0.16751554608345032,
0.6072317361831665,
0.04892453923821449,
-0.3964611887931824,
0.5023015737533569,
-0.36341509222984314,
0.60617995262146,
-0.542291522026062,
0.1286177784204483,
-0.11968185007572174,
0.07025102525949478,
-0.5666834115982056,
-1.1204466819763184,
0.34862250089645386,
-0.10203780233860016,
-0.34487438201904297,
-0.3532913029193878,
0.5618805885314941,
-0.4454306960105896,
-0.7470043301582336,
0.31823596358299255,
0.20926354825496674,
0.40682274103164673,
0.21114660799503326,
-1.2811670303344727,
0.5754554867744446,
0.1358700394630432,
-0.4600009024143219,
0.056069131940603256,
0.4859250485897064,
0.18872715532779694,
0.4871993362903595,
0.7531692981719971,
0.3042357265949249,
-0.2380346953868866,
0.15949036180973053,
1.0844227075576782,
-0.5931640267372131,
-0.5846241116523743,
-0.6154403686523438,
0.991972804069519,
-0.4020233750343323,
-0.461076021194458,
0.635562002658844,
0.8065400123596191,
0.9603191614151001,
-0.061283938586711884,
0.8601367473602295,
-0.6144096255302429,
0.718708336353302,
-0.26980721950531006,
0.9194526672363281,
-0.8353157639503479,
-0.06428930163383484,
-0.67950439453125,
-0.4955190122127533,
-0.4719890058040619,
0.5643947124481201,
-0.20077049732208252,
0.2667335569858551,
0.2736455500125885,
0.8888418674468994,
0.056398019194602966,
0.13565373420715332,
-0.21621005237102509,
0.3704156279563904,
0.23223598301410675,
0.5018945932388306,
0.430504709482193,
-0.8667023777961731,
0.32349225878715515,
-0.6932491064071655,
-0.2657448947429657,
0.031584206968545914,
-0.8989773988723755,
-0.8663402795791626,
-1.0633530616760254,
-0.7150133848190308,
-0.7015359997749329,
-0.19819235801696777,
1.0303677320480347,
0.8562836050987244,
-0.7952892780303955,
-0.2748476266860962,
0.0846722424030304,
0.2738763988018036,
-0.11941617727279663,
-0.3525563180446625,
0.6969951391220093,
0.3859739601612091,
-0.6652491092681885,
-0.09826011955738068,
-0.010741060599684715,
0.2429567128419876,
0.025473015382885933,
-0.078513503074646,
-0.09698838740587234,
-0.2877090275287628,
0.32220616936683655,
0.5236859321594238,
-0.3756372332572937,
-0.07007288187742233,
-0.3253743350505829,
0.15051312744617462,
0.2038932889699936,
0.516173243522644,
-0.48045310378074646,
0.2919471263885498,
0.6687816977500916,
0.3185857832431793,
0.40820741653442383,
0.20367635786533356,
0.062372755259275436,
-0.5420113801956177,
0.08605723083019257,
-0.02986031211912632,
0.3758440613746643,
0.42782479524612427,
-0.5267326235771179,
0.8123504519462585,
0.5718925595283508,
-0.608906626701355,
-0.9045766592025757,
-0.13996794819831848,
-1.3866304159164429,
0.11261379718780518,
0.9948177933692932,
-0.04900970682501793,
-0.5214466452598572,
0.10966718941926956,
-0.08413088321685791,
0.15781259536743164,
-0.5902708768844604,
0.5115966200828552,
0.5438302159309387,
-0.12965528666973114,
0.0888243243098259,
-0.3653702735900879,
0.6282455921173096,
-0.024252336472272873,
-0.9938725829124451,
0.20166219770908356,
0.41889479756355286,
0.3817961513996124,
0.37106674909591675,
0.7958206534385681,
-0.2832062244415283,
0.003592405002564192,
-0.04668431356549263,
0.33291131258010864,
-0.189614936709404,
0.044824518263339996,
-0.36763206124305725,
-0.07150948792695999,
-0.4336324632167816,
-0.25366276502609253
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/zemfira | huggingartists | 2022-10-25T09:50:39Z | 293 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:50:39Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/zemfira"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 0.226796 MB
<div class="inline-flex flex-col" style="line-height: 1.5;">
<div class="flex">
<div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('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.6018097996711731,
-0.5237864851951599,
0.09886505454778671,
0.25632452964782715,
-0.24676021933555603,
-0.036018554121255875,
-0.2783178389072418,
-0.4763520061969757,
0.8692665100097656,
0.32201334834098816,
-0.9222392439842224,
-0.8244710564613342,
-0.562746524810791,
0.09519637376070023,
-0.09456039220094681,
1.2403005361557007,
-0.18558469414710999,
-0.36650821566581726,
-0.2982008159160614,
-0.29186558723449707,
-0.3126443326473236,
-0.31328660249710083,
-0.25372081995010376,
-0.3782123029232025,
0.42467132210731506,
0.5409055352210999,
0.782318651676178,
0.8211745619773865,
0.4446612596511841,
0.342377632856369,
-0.1180012971162796,
-0.0231915470212698,
-0.3775008022785187,
-0.10933820903301239,
0.16357149183750153,
-0.3185730576515198,
-0.6926572322845459,
0.22147640585899353,
0.5520694851875305,
0.40864554047584534,
-0.04380714148283005,
0.49291539192199707,
0.08832836151123047,
0.8372297883033752,
-0.3010256290435791,
0.4970288872718811,
-0.2281893491744995,
-0.1768227368593216,
-0.3264600932598114,
0.07560565322637558,
0.20665930211544037,
-0.5607926845550537,
0.010342498309910297,
-0.7456718683242798,
0.06994003802537918,
-0.014694487676024437,
1.0406394004821777,
0.007253916002810001,
0.07598129659891129,
-0.17494097352027893,
-0.2596936821937561,
0.5147339701652527,
-0.5823211073875427,
-0.006426859647035599,
0.5359759330749512,
0.20566287636756897,
0.00010412072151666507,
-0.6545843482017517,
-0.650354266166687,
0.1284741312265396,
-0.12449201941490173,
0.2501484155654907,
-0.2349865883588791,
-0.32517528533935547,
0.5017896890640259,
0.5353054404258728,
-0.509425163269043,
-0.30976352095603943,
-0.5099766850471497,
-0.15129777789115906,
1.1199294328689575,
0.17678019404411316,
0.4471489191055298,
-0.3951115012168884,
-0.24581444263458252,
-0.4002918601036072,
-0.3228461742401123,
0.3521926999092102,
0.5705917477607727,
0.3855288624763489,
-0.9286341071128845,
0.6133582592010498,
-0.2197912484407425,
0.5722904205322266,
0.06206889823079109,
-0.028963711112737656,
0.8376126289367676,
-0.3770136535167694,
-0.10337062180042267,
-0.11694545298814774,
1.0288406610488892,
0.7265008687973022,
0.15123800933361053,
0.05186859890818596,
-0.0872221291065216,
0.08580517768859863,
-0.16294528543949127,
-0.8963683247566223,
-0.36895468831062317,
0.6218810677528381,
-0.5742009282112122,
-0.5943097472190857,
0.13308297097682953,
-0.979033350944519,
-0.18048392236232758,
-0.23951688408851624,
0.3903276026248932,
-0.3743765354156494,
-0.5325676798820496,
0.22313152253627777,
-0.30233532190322876,
0.09554439783096313,
0.06422333419322968,
-0.5918439626693726,
0.16783004999160767,
0.5418049693107605,
0.8000286817550659,
0.270677775144577,
-0.29206326603889465,
-0.2589907646179199,
-0.16788986325263977,
-0.09631336480379105,
0.6962118744850159,
-0.2905407249927521,
-0.3139200508594513,
-0.1702490746974945,
0.3915890157222748,
-0.13165956735610962,
-0.25451692938804626,
0.9166795015335083,
-0.004662788473069668,
0.18062631785869598,
-0.5865376591682434,
-0.42784565687179565,
-0.1209971010684967,
0.2382819503545761,
-0.7921833992004395,
0.9672937989234924,
0.40157681703567505,
-1.0208194255828857,
0.18245810270309448,
-0.7873558402061462,
-0.2831701636314392,
0.052669085562229156,
0.07676593959331512,
-0.7870509028434753,
-0.2113439291715622,
0.15419411659240723,
0.7097246646881104,
-0.3742402493953705,
0.007944327779114246,
-0.5961704850196838,
-0.1443687230348587,
0.37684521079063416,
0.23045547306537628,
1.19189453125,
0.1340842992067337,
-0.20069622993469238,
0.09465669840574265,
-0.9231386184692383,
0.15036235749721527,
0.4930627644062042,
-0.11408236622810364,
-0.08405076712369919,
-0.184269517660141,
0.4179220497608185,
0.32152605056762695,
0.05505620315670967,
-0.6052772998809814,
0.32895296812057495,
-0.20849351584911346,
0.5172989964485168,
0.7055762410163879,
0.002919441321864724,
0.30958235263824463,
-0.7308271527290344,
0.44310882687568665,
0.0834641382098198,
0.37420234084129333,
0.012698556296527386,
-0.6037992835044861,
-0.48825207352638245,
-0.1733066439628601,
0.3127022683620453,
0.47754421830177307,
-0.7078705430030823,
0.9768589735031128,
-0.33506181836128235,
-0.9145433902740479,
-0.5998362898826599,
0.15813790261745453,
0.18335556983947754,
0.5584602952003479,
0.3930124342441559,
-0.3710273504257202,
-0.5446946620941162,
-0.6821372509002686,
0.10031318664550781,
-0.2568725645542145,
0.1881301999092102,
0.4132247865200043,
0.7964312434196472,
-0.300672322511673,
0.8715528249740601,
-0.6802188158035278,
-0.30140241980552673,
-0.3184598684310913,
-0.33593013882637024,
0.4191732108592987,
0.7930198907852173,
0.7753357887268066,
-0.882051408290863,
-0.4912375509738922,
-0.25752583146095276,
-0.6592841744422913,
-0.1311926543712616,
-0.01149310078471899,
-0.30037322640419006,
-0.023613937199115753,
0.06814567744731903,
-0.6770086884498596,
0.5392211675643921,
0.5437449812889099,
-0.7724438905715942,
0.527146577835083,
0.09719183295965195,
0.010749352164566517,
-1.2813608646392822,
0.37033283710479736,
0.20958755910396576,
0.052097808569669724,
-0.6766260862350464,
-0.25378093123435974,
-0.010729524306952953,
0.012031030841171741,
-0.12917889654636383,
0.5983831882476807,
-0.3663327693939209,
0.3110617995262146,
0.11752684414386749,
-0.002470148727297783,
0.12606480717658997,
0.462455689907074,
-0.05619208887219429,
0.2810766100883484,
1.0148069858551025,
-0.38642218708992004,
0.645443320274353,
0.5757009983062744,
-0.28777962923049927,
0.7673323154449463,
-0.856529176235199,
0.009686587378382683,
-0.2782655656337738,
0.3505987524986267,
-0.8455474972724915,
-0.4816422164440155,
0.856782078742981,
-0.7015844583511353,
0.32993465662002563,
-0.2622978389263153,
-0.5341333746910095,
-0.7350045442581177,
-0.645662784576416,
0.1441100537776947,
0.5673943161964417,
-0.3441782593727112,
0.41015055775642395,
0.6028501391410828,
0.06068071350455284,
-0.36018919944763184,
-0.7020075917243958,
-0.1501716524362564,
-0.3966354429721832,
-0.8792056441307068,
0.4734801650047302,
-0.35921600461006165,
-0.0992797389626503,
0.15782973170280457,
0.12551966309547424,
0.11790693551301956,
0.06680713593959808,
0.4338877499103546,
0.31458956003189087,
0.024343261495232582,
0.006037237122654915,
-0.05700482800602913,
-0.2576160132884979,
0.12055151164531708,
-0.1872939020395279,
0.3051200211048126,
-0.29829901456832886,
-0.12618599832057953,
-0.5724064707756042,
0.20816783607006073,
0.45147567987442017,
-0.2520393133163452,
0.708151638507843,
0.8465925455093384,
-0.2678237557411194,
-0.012342669069766998,
-0.4966042935848236,
-0.11836234480142593,
-0.40761786699295044,
0.020724615082144737,
-0.20652900636196136,
-0.638576090335846,
0.9666229486465454,
0.24439246952533722,
0.1262267678976059,
0.7347366809844971,
0.46755287051200867,
-0.024600302800536156,
0.7223900556564331,
0.4009035527706146,
-0.24882231652736664,
0.5414872765541077,
-0.7127279043197632,
-0.2837977707386017,
-0.8683679103851318,
-0.45202431082725525,
-0.5180907249450684,
-0.5620872378349304,
-0.7446073889732361,
-0.47812530398368835,
0.2104705274105072,
0.18659579753875732,
-0.1581553816795349,
0.4698236286640167,
-0.8689305186271667,
0.2629701793193817,
0.286994606256485,
0.2701003849506378,
-0.13969112932682037,
0.09433087706565857,
0.06553615629673004,
0.1436218023300171,
-0.6520745158195496,
-0.2639400064945221,
1.1135478019714355,
0.4876236319541931,
0.5272655487060547,
-0.043164171278476715,
0.8009614944458008,
0.02775472216308117,
0.2545165419578552,
-0.5063509941101074,
0.4658759832382202,
0.08823569118976593,
-0.4963543713092804,
-0.16278217732906342,
-0.49961861968040466,
-0.944162130355835,
-0.014515564776957035,
-0.47077417373657227,
-0.6854528188705444,
0.5703500509262085,
0.08749287575483322,
-0.2912046015262604,
0.40784093737602234,
-0.633502721786499,
0.9261090159416199,
-0.02831021137535572,
-0.4595203101634979,
0.2684139013290405,
-1.0244123935699463,
0.16759200394153595,
0.200007826089859,
0.2819894850254059,
-0.4631476402282715,
0.01512080617249012,
1.0450055599212646,
-0.8300971984863281,
0.9432185292243958,
-0.4000159502029419,
0.16509094834327698,
0.6045637726783752,
-0.3134414553642273,
0.41707032918930054,
0.11628838628530502,
-0.28451982140541077,
0.34081125259399414,
0.034785978496074677,
-0.448930561542511,
-0.40803155303001404,
0.6461130380630493,
-0.7352890372276306,
0.01339041069149971,
-0.33432188630104065,
-0.450010746717453,
0.050625234842300415,
0.1966705024242401,
0.31999871134757996,
0.4146316945552826,
-0.029465096071362495,
0.1686294674873352,
0.4429744780063629,
-0.12547899782657623,
0.2682417929172516,
0.0931013822555542,
-0.0828101634979248,
-0.7782496213912964,
0.923650324344635,
0.23707759380340576,
0.046265456825494766,
-0.0826355591416359,
0.45266973972320557,
-0.33421844244003296,
-0.14198918640613556,
-0.6718035340309143,
0.43126142024993896,
-0.39230111241340637,
-0.42073172330856323,
-0.5853784084320068,
-0.17282697558403015,
-0.6626514196395874,
-0.15770752727985382,
-0.17880742251873016,
-0.5255200862884521,
-0.33192551136016846,
-0.1775442659854889,
1.040169358253479,
0.4368778169155121,
-0.63451087474823,
0.15414007008075714,
-0.6422335505485535,
0.24604769051074982,
-0.07409939914941788,
0.57337486743927,
-0.0674840435385704,
-0.34891441464424133,
-0.2403222620487213,
0.13602718710899353,
-0.15356434881687164,
-0.7637631297111511,
0.3054184019565582,
0.0023300822358578444,
0.4595397710800171,
0.14889535307884216,
0.13446426391601562,
0.6347902417182922,
-0.054196469485759735,
0.6278865933418274,
0.2734006941318512,
-0.775156557559967,
0.6803664565086365,
-0.4704558849334717,
0.15439538657665253,
0.6970070600509644,
0.38480237126350403,
-0.6302545666694641,
-0.1151147112250328,
-0.9823510646820068,
-0.8787864446640015,
0.8054776787757874,
0.44692760705947876,
0.0966193899512291,
0.1914794147014618,
0.5258833765983582,
-0.20811432600021362,
0.2411479353904724,
-0.6249622702598572,
-0.830901026725769,
-0.3836595416069031,
-0.322767049074173,
-0.10303758084774017,
-0.14981776475906372,
-0.24348263442516327,
-0.6684203743934631,
0.7661320567131042,
-0.13681358098983765,
0.30570852756500244,
0.44007232785224915,
0.31175854802131653,
-0.25724339485168457,
-0.004097663331776857,
0.3327754735946655,
0.3850601613521576,
-0.24899742007255554,
-0.30598995089530945,
-0.18433332443237305,
-0.6337662935256958,
-0.07156054675579071,
0.4842776954174042,
-0.4036461114883423,
-0.033520255237817764,
0.3177960216999054,
0.8887354731559753,
-0.019481729716062546,
-0.26254400610923767,
0.6360468864440918,
-0.07742711901664734,
-0.45277154445648193,
-0.39799943566322327,
0.09468460083007812,
0.18931365013122559,
0.27870842814445496,
0.054295867681503296,
0.10478987544775009,
-0.09356983006000519,
-0.38685721158981323,
0.39046207070350647,
0.23907878994941711,
-0.41923147439956665,
-0.5477800965309143,
0.6387375593185425,
0.06925778090953827,
-0.0974835678935051,
0.45187628269195557,
-0.1418643742799759,
-0.6589117646217346,
0.8262811899185181,
0.17125201225280762,
0.8376927971839905,
-0.1739976704120636,
0.3499285578727722,
0.7298247218132019,
0.22006171941757202,
-0.0897359624505043,
0.5453930497169495,
-0.21675777435302734,
-0.7335093021392822,
-0.00876986887305975,
-0.5751107931137085,
-0.0733121708035469,
0.0036624448839575052,
-0.8107571601867676,
0.4031960666179657,
-0.4383268654346466,
-0.2823973298072815,
0.04433101788163185,
0.3698157072067261,
-0.6880654096603394,
0.14055022597312927,
-0.07941605150699615,
1.0347177982330322,
-1.0891718864440918,
0.54889315366745,
0.6888468861579895,
-0.6750503182411194,
-1.150267481803894,
-0.19947412610054016,
0.17217518389225006,
-0.5787159204483032,
0.22381941974163055,
0.22212618589401245,
0.4767039120197296,
-0.05208823084831238,
-0.838955283164978,
-0.655369758605957,
1.2763922214508057,
0.03602229431271553,
-0.2231629341840744,
0.3389594852924347,
0.1057610884308815,
0.6143836975097656,
-0.3882163465023041,
0.2967979609966278,
0.6269721984863281,
0.676514208316803,
0.323993444442749,
-0.6395350098609924,
0.27975815534591675,
-0.6688185930252075,
-0.2398870885372162,
0.09263797849416733,
-1.0247485637664795,
0.7126791477203369,
-0.19817988574504852,
-0.07481271028518677,
-0.0274281594902277,
0.6378592848777771,
0.3641664385795593,
0.3891102075576782,
0.5591624975204468,
0.7420271039009094,
0.7544584274291992,
-0.2992967963218689,
1.1374471187591553,
-0.3080291748046875,
0.5894713401794434,
0.7323916554450989,
-0.03460816293954849,
0.47328609228134155,
0.21302928030490875,
-0.2817871570587158,
0.5457550883293152,
0.5914255380630493,
-0.4218279719352722,
0.20920361578464508,
0.3555411100387573,
-0.08699915558099747,
-0.1061691865324974,
-0.2396058589220047,
-0.6071517467498779,
0.2506162226200104,
0.279789000749588,
-0.35941991209983826,
-0.064724400639534,
-0.03265107795596123,
0.35702279210090637,
-0.09122172743082047,
-0.2527514100074768,
0.6272211074829102,
0.03542647510766983,
-0.3144208788871765,
0.5230316519737244,
-0.16455771028995514,
0.6773064732551575,
-0.5824531316757202,
0.09257350862026215,
-0.09473487734794617,
0.11136287450790405,
-0.6096655130386353,
-1.0801557302474976,
0.3890870213508606,
-0.06531941145658493,
-0.2608925998210907,
-0.3276653587818146,
0.82143634557724,
-0.48585814237594604,
-0.7745515704154968,
0.2708169221878052,
0.23988483846187592,
0.3088877499103546,
0.09250953793525696,
-1.2633965015411377,
0.5300135612487793,
0.17030301690101624,
-0.48803457617759705,
0.16525276005268097,
0.5023979544639587,
0.11611055582761765,
0.5276882648468018,
0.7207855582237244,
0.23968729376792908,
-0.26113125681877136,
0.0681590810418129,
1.140152096748352,
-0.5582559704780579,
-0.4494040906429291,
-0.7479197382926941,
0.8499559164047241,
-0.32688218355178833,
-0.3920953869819641,
0.7005085945129395,
0.7592081427574158,
0.8529960513114929,
0.015134193003177643,
0.7524692416191101,
-0.664829671382904,
0.6814291477203369,
-0.2340019792318344,
1.001278042793274,
-0.6862104535102844,
-0.09274359792470932,
-0.7066487073898315,
-0.5590095520019531,
-0.377047598361969,
0.650682806968689,
-0.16508297622203827,
0.15439483523368835,
0.21213454008102417,
0.9688305258750916,
0.04221437871456146,
0.10299817472696304,
-0.16879737377166748,
0.23808801174163818,
0.2691197991371155,
0.6236454248428345,
0.4712650775909424,
-0.9033591151237488,
0.38122764229774475,
-0.7956106662750244,
-0.30567827820777893,
-0.017503194510936737,
-0.8059962391853333,
-0.8652694821357727,
-0.9346137046813965,
-0.6380535364151001,
-0.7934279441833496,
-0.31203290820121765,
1.062394618988037,
0.6596071720123291,
-0.6860174536705017,
-0.24452711641788483,
0.1436753273010254,
0.2929432690143585,
-0.12162713706493378,
-0.302813857793808,
0.6197237372398376,
0.3505363464355469,
-0.580342710018158,
-0.1243370771408081,
0.00307855405844748,
0.2714184820652008,
0.07843362540006638,
-0.1299215853214264,
-0.08980976790189743,
-0.2938198149204254,
0.35241416096687317,
0.4467393159866333,
-0.2653179466724396,
-0.0979013741016388,
-0.23106878995895386,
0.011234985664486885,
0.1652274876832962,
0.48532792925834656,
-0.5416561365127563,
0.1792697161436081,
0.7415707111358643,
0.2689675986766815,
0.3885670602321625,
0.16116230189800262,
0.04506722092628479,
-0.39911389350891113,
0.095584437251091,
0.011776771396398544,
0.35927614569664,
0.2938266098499298,
-0.4491320848464966,
0.7847297191619873,
0.5937551856040955,
-0.4835790693759918,
-0.8066673874855042,
-0.16295628249645233,
-1.3041032552719116,
0.09814845770597458,
1.0417187213897705,
-0.05149046331644058,
-0.6170287728309631,
0.05391669273376465,
-0.2120417207479477,
0.12736007571220398,
-0.5149996280670166,
0.39799198508262634,
0.5308752059936523,
-0.04459954425692558,
0.16777877509593964,
-0.39498624205589294,
0.6211099028587341,
0.01690608263015747,
-0.9384812116622925,
0.17965754866600037,
0.47012972831726074,
0.5134965181350708,
0.2980118989944458,
0.8144675493240356,
-0.3024454712867737,
0.12112170457839966,
-0.052423812448978424,
0.32390081882476807,
-0.28395700454711914,
0.012864031828939915,
-0.3912612497806549,
-0.12843656539916992,
-0.47135865688323975,
-0.19735169410705566
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
jakeazcona/short-text-labeled-emotion-classification | jakeazcona | 2021-12-05T18:38:57Z | 293 | 3 | null | [
"region:us"
] | 2021-12-05T18:38:57Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227645754814148,
-0.22568479180335999,
0.8622263669967651,
0.43461522459983826,
-0.52829909324646,
0.7012971639633179,
0.7915719747543335,
0.07618614286184311,
0.774603009223938,
0.2563217282295227,
-0.7852813005447388,
-0.22573819756507874,
-0.9104475975036621,
0.5715674161911011,
-0.3992327153682709,
0.5791246294975281,
-0.14494499564170837,
-0.10751135647296906,
0.28233814239501953,
-0.2768957316875458,
-0.5409227013587952,
-0.3685525059700012,
-1.1902779340744019,
0.061491698026657104,
0.5316582918167114,
0.743514358997345,
0.7584061622619629,
0.3652168810367584,
0.643257737159729,
0.39322906732559204,
-0.231389120221138,
0.48270541429519653,
-0.04171793907880783,
0.0026038705836981535,
-0.3524438440799713,
-0.5516899824142456,
-0.28596577048301697,
0.07584768533706665,
1.096130132675171,
0.9666873812675476,
-0.28466421365737915,
0.05330856889486313,
-0.30636167526245117,
0.3308892846107483,
-0.4973427355289459,
0.3054097294807434,
-0.022506216540932655,
0.16318757832050323,
-0.704151451587677,
-0.5535351634025574,
0.012795033864676952,
-0.7361212968826294,
0.17926514148712158,
-0.6900812387466431,
0.8269097208976746,
0.18583209812641144,
1.1533749103546143,
0.14819422364234924,
-0.4624859392642975,
-0.8161761164665222,
-0.6538985371589661,
0.5711163282394409,
-0.32703715562820435,
0.3968023657798767,
0.7028226256370544,
-0.048573337495326996,
-0.9820331335067749,
-0.6745738983154297,
-0.46466246247291565,
0.2923974096775055,
0.3540281355381012,
-0.3411684036254883,
-0.17522093653678894,
-0.30589917302131653,
0.15791958570480347,
0.1281142681837082,
-0.48419976234436035,
-0.5543919205665588,
-0.547515869140625,
-0.39602571725845337,
0.6206656694412231,
0.34829503297805786,
0.24291737377643585,
-0.18884189426898956,
-0.3228582441806793,
0.0880165845155716,
-0.41608554124832153,
0.3402574062347412,
0.6335517168045044,
0.711402416229248,
-0.5811446309089661,
0.5602157711982727,
-0.049275897443294525,
0.7439709901809692,
0.11445585638284683,
-0.2747812569141388,
0.4146060049533844,
-0.14724673330783844,
0.055171847343444824,
0.42263513803482056,
0.3152443468570709,
0.28413069248199463,
-0.3273696303367615,
0.20322275161743164,
-0.32151490449905396,
-0.3049626648426056,
-0.2233218252658844,
-0.29490745067596436,
-0.35921788215637207,
0.5492295026779175,
-0.3314018249511719,
-0.4285552501678467,
1.1431758403778076,
-0.42007699608802795,
-0.7302228808403015,
0.33156365156173706,
0.40652117133140564,
-0.0994473472237587,
-0.37146514654159546,
-0.052260853350162506,
-0.8458787202835083,
-0.00790744461119175,
0.7491178512573242,
-0.7198969125747681,
0.33717358112335205,
0.47280627489089966,
0.741721510887146,
0.1965060532093048,
-0.14034466445446014,
-0.4294945299625397,
0.2971963882446289,
-0.8659994006156921,
0.6320174336433411,
-0.20135276019573212,
-1.0051976442337036,
0.11150483042001724,
0.8971704244613647,
-0.3789643347263336,
-1.2094870805740356,
1.0605157613754272,
-0.6887932419776917,
0.16017864644527435,
-0.6767609119415283,
-0.14661164581775665,
-0.07118469476699829,
-0.005095955915749073,
-0.6088155508041382,
0.7567099332809448,
0.5872676968574524,
-0.49952778220176697,
0.21429462730884552,
-0.2602984309196472,
-0.3915135860443115,
0.38824939727783203,
-0.0793546810746193,
-0.21858906745910645,
0.7138336896896362,
-0.6647078394889832,
-0.2693284749984741,
0.2942773103713989,
0.23689350485801697,
-0.357060968875885,
-0.793192446231842,
0.08478079736232758,
-0.05786222219467163,
1.5507503747940063,
-0.03868860378861427,
-0.35861143469810486,
-0.6793836951255798,
-1.1506236791610718,
-0.07070811837911606,
0.6886887550354004,
-0.9194992184638977,
-0.27839499711990356,
-0.046410247683525085,
-0.26169371604919434,
0.0899493545293808,
0.7390591502189636,
-1.119404911994934,
0.28327250480651855,
-0.050927065312862396,
-0.22794730961322784,
0.8271061182022095,
0.1538720428943634,
0.24758882820606232,
0.14913466572761536,
0.4295872151851654,
0.5277255773544312,
0.11115183681249619,
0.6835882663726807,
-0.3472035229206085,
-0.9694353938102722,
0.6154633164405823,
0.25266438722610474,
0.8121451139450073,
-0.49945372343063354,
0.2685092091560364,
0.2702546715736389,
-0.3409683108329773,
-0.5682377815246582,
-0.310282826423645,
0.09025713056325912,
0.14930608868598938,
0.11142496764659882,
-0.5721707344055176,
-0.6576128005981445,
-0.9689135551452637,
-0.13590654730796814,
-0.43143755197525024,
-0.35715678334236145,
0.2100687474012375,
0.5792907476425171,
-1.1975533962249756,
0.4128877520561218,
-0.7705622911453247,
-0.703874409198761,
-0.010655621066689491,
-0.1933809369802475,
0.7540653944015503,
0.43240174651145935,
0.5033961534500122,
-0.6397145390510559,
-0.5661987066268921,
-0.22470159828662872,
-1.0333740711212158,
-0.13280484080314636,
0.24819664657115936,
0.3065737783908844,
-0.1342328041791916,
-0.2744964361190796,
-0.48740261793136597,
0.8100383877754211,
0.14789214730262756,
-0.5391897559165955,
0.5220769643783569,
-0.3020317554473877,
0.17224839329719543,
-0.6369158029556274,
-0.0691685602068901,
-0.6616761684417725,
-0.0009067110950127244,
-0.36083078384399414,
-0.5737436413764954,
0.14772333204746246,
0.07017548382282257,
-0.16065415740013123,
0.2880837619304657,
-0.909276008605957,
-0.0010854422580450773,
-0.744221568107605,
0.37907224893569946,
0.0639476627111435,
-0.3145084083080292,
-0.017516743391752243,
1.000038743019104,
0.7784457206726074,
-0.3848040699958801,
0.7217439413070679,
0.4440040588378906,
0.19036099314689636,
0.7630518674850464,
-0.18725158274173737,
0.16478213667869568,
-0.5245421528816223,
-0.12161099910736084,
-0.8887605667114258,
-1.0982943773269653,
0.7320572137832642,
-0.6114250421524048,
0.36542850732803345,
-0.42778605222702026,
0.2589159309864044,
-0.6919258832931519,
-0.038853395730257034,
0.4808599054813385,
-0.05936374515295029,
-0.6863952875137329,
0.5232571363449097,
0.4531749188899994,
-0.2019244134426117,
-0.6609036922454834,
-0.5301570296287537,
0.39365914463996887,
0.6154113411903381,
-0.16390396654605865,
0.06878498196601868,
0.14941087365150452,
-0.5441920757293701,
-0.040802545845508575,
-0.3869187533855438,
-0.4576674997806549,
0.05422405153512955,
0.13053379952907562,
-0.005750161595642567,
-0.40482011437416077,
-0.08680257946252823,
-0.35842010378837585,
-0.4656125009059906,
0.21876463294029236,
0.30119529366493225,
-0.04096344858407974,
-0.42599743604660034,
-0.36198148131370544,
-0.8881808519363403,
0.6719611883163452,
0.5370280146598816,
0.05281474441289902,
0.7555550336837769,
0.16819244623184204,
-0.801498293876648,
-0.13532206416130066,
-0.17607054114341736,
0.2696835994720459,
-0.5588056445121765,
0.13849826157093048,
-0.013484805822372437,
-0.06374907493591309,
0.2629791498184204,
0.25386205315589905,
-0.4300558567047119,
0.927625298500061,
-0.26152747869491577,
-0.3592526614665985,
0.7960182428359985,
0.5974737405776978,
0.4958309531211853,
0.16503198444843292,
-0.044541094452142715,
0.9007097482681274,
-1.196651816368103,
-0.6563171744346619,
-0.7409546375274658,
-0.15945661067962646,
-0.43510857224464417,
-0.0321057066321373,
0.6254417300224304,
0.29009905457496643,
-0.13333925604820251,
0.47563934326171875,
-0.5243490934371948,
0.3556032180786133,
1.0119839906692505,
0.3574867248535156,
0.34357017278671265,
-0.7570232152938843,
-0.25157779455184937,
-0.14024296402931213,
-0.9998159408569336,
-0.2631372809410095,
0.8871029615402222,
0.2275265008211136,
0.8444608449935913,
0.5992542505264282,
0.6784538626670837,
0.136723130941391,
0.2523833215236664,
-0.305902898311615,
0.39202871918678284,
0.43760839104652405,
-1.040114164352417,
-0.42758411169052124,
0.02141888067126274,
-0.9703332185745239,
-0.14227578043937683,
-0.03495054319500923,
-0.42617106437683105,
0.7681738138198853,
0.00016635804786346853,
-0.4076710641384125,
0.7732735872268677,
-0.4555833339691162,
0.7562878727912903,
-0.4473649859428406,
-0.026638653129339218,
0.4699098467826843,
-0.707064151763916,
0.4677433967590332,
0.12878736853599548,
0.6205845475196838,
-0.015571946278214455,
-0.04078621417284012,
0.7104931473731995,
-0.9129164814949036,
0.25438612699508667,
-0.6348398923873901,
0.22421303391456604,
0.24246959388256073,
0.5160625576972961,
0.5969962477684021,
0.4371241629123688,
0.10119915008544922,
-0.23920848965644836,
0.04115789383649826,
-0.8241121172904968,
-0.21050670742988586,
0.6975144147872925,
-0.7186897397041321,
-0.6864195466041565,
-1.2355334758758545,
0.14438661932945251,
0.2734704911708832,
0.3893047273159027,
0.7959297895431519,
0.5714079141616821,
0.12895449995994568,
0.6805254220962524,
0.9888579249382019,
-0.06885591894388199,
0.916691780090332,
0.3224475085735321,
0.09175165742635727,
-0.2194489687681198,
0.703682541847229,
0.2662784457206726,
-0.2470790147781372,
-0.11939744651317596,
0.20913469791412354,
-0.11069414764642715,
-0.5917618870735168,
-0.4999074339866638,
0.3701755702495575,
-0.6731783747673035,
-0.1830393373966217,
-0.6243732571601868,
-0.6043766736984253,
-0.5117589235305786,
0.0692739263176918,
-0.7147684097290039,
0.23979082703590393,
-0.7753568887710571,
-0.10574901103973389,
0.04323358088731766,
0.9792002439498901,
-0.5893120765686035,
0.5805228352546692,
-1.12185800075531,
0.19345775246620178,
-0.07949890196323395,
0.792106032371521,
0.2139579802751541,
-0.7344390153884888,
-0.39754199981689453,
-0.11592598259449005,
-0.37299054861068726,
-1.3576757907867432,
0.21404962241649628,
-0.24541422724723816,
0.2309398353099823,
0.6145407557487488,
0.13977040350437164,
0.5258244276046753,
-0.3432632088661194,
0.7029102444648743,
-0.057016827166080475,
-0.7069293856620789,
0.7934491038322449,
-0.5026893615722656,
0.4963533282279968,
0.9766002893447876,
0.5333840250968933,
-0.7984007596969604,
0.0357406847178936,
-1.041122555732727,
-0.600869357585907,
0.38426393270492554,
0.1192895919084549,
-0.03601125627756119,
-0.665955662727356,
-0.054019927978515625,
-0.16143806278705597,
0.6043741703033447,
-1.0390695333480835,
-0.785835862159729,
0.25766894221305847,
0.5277299284934998,
0.08168502151966095,
-0.5653401613235474,
0.2088075876235962,
-0.5444163084030151,
1.0657776594161987,
0.45109352469444275,
0.32744958996772766,
0.8406059145927429,
0.4649237096309662,
-0.38231605291366577,
0.09252502024173737,
0.7662692070007324,
0.6666228771209717,
-0.5239795446395874,
-0.2908027172088623,
-0.0882752314209938,
-0.9143400192260742,
0.05927503854036331,
0.1116887554526329,
-0.013456095941364765,
0.9082115292549133,
0.579308032989502,
0.253970205783844,
0.4514276385307312,
-0.7264610528945923,
0.8859445452690125,
-0.1495419293642044,
-0.1247284859418869,
-1.0677239894866943,
0.19486205279827118,
-0.23984935879707336,
0.5006400346755981,
1.0061331987380981,
0.525004506111145,
-0.047630541026592255,
-0.814338207244873,
-0.014736384153366089,
0.6939173936843872,
-0.7091119289398193,
-0.17449775338172913,
0.9448539614677429,
0.38471025228500366,
-1.295304536819458,
1.106776475906372,
-0.5381773710250854,
-0.5603317618370056,
0.9121302366256714,
0.5229570269584656,
1.1221849918365479,
-0.44204193353652954,
0.0008675057324580848,
0.2662239074707031,
0.4137844443321228,
0.5423170328140259,
1.0869632959365845,
0.43141356110572815,
-0.7931072115898132,
0.8826581835746765,
-0.24776068329811096,
-0.40361127257347107,
-0.053475700318813324,
-0.42859864234924316,
0.16892209649085999,
-0.4406189024448395,
-0.10712965577840805,
-0.3444185256958008,
0.2854307293891907,
-0.70720374584198,
0.42807644605636597,
-0.08385642617940903,
0.8653066754341125,
-0.8553729057312012,
0.47207602858543396,
0.6354700326919556,
-0.33373481035232544,
-0.8508192300796509,
-0.26198476552963257,
-0.1144845262169838,
-0.6389466524124146,
0.30214792490005493,
-0.45541054010391235,
0.044398874044418335,
0.09623479843139648,
-0.6491509675979614,
-1.1778273582458496,
0.9093631505966187,
-0.6396117210388184,
-0.2784458100795746,
0.20463958382606506,
-0.1151471883058548,
0.28811654448509216,
-0.2524648904800415,
0.010661328211426735,
0.4187661111354828,
0.7489396333694458,
0.28446561098098755,
-0.7727053761482239,
-0.36948859691619873,
0.0015033691888675094,
-0.44474759697914124,
0.7582973837852478,
-0.6002098917961121,
1.1840776205062866,
-0.556353747844696,
-0.05965423583984375,
0.4438447952270508,
0.24690861999988556,
0.21076245605945587,
0.6629217267036438,
0.144208163022995,
0.7282259464263916,
1.0701210498809814,
-0.4083522856235504,
0.881180465221405,
0.26432785391807556,
0.4743083417415619,
0.7238510251045227,
-0.6487718820571899,
0.7513747811317444,
0.3181043267250061,
-0.5682927966117859,
0.9228019714355469,
1.290606141090393,
-0.15699152648448944,
0.80793696641922,
0.051364265382289886,
-1.0815999507904053,
0.32583361864089966,
-0.20724761486053467,
-0.7530062198638916,
0.31502565741539,
0.19055864214897156,
-0.6920987367630005,
-0.5770313739776611,
-0.2404651641845703,
-0.35662829875946045,
-0.11552873998880386,
-0.763173520565033,
0.6720565557479858,
-0.01696927472949028,
-0.5103673934936523,
0.18857470154762268,
0.28775009512901306,
0.17368444800376892,
-0.5235736966133118,
-0.029393965378403664,
-0.22823575139045715,
0.2660652697086334,
-0.5670853853225708,
-0.5234523415565491,
0.5724437236785889,
-0.32430148124694824,
-0.5343252420425415,
0.181474968791008,
0.7635870575904846,
-0.16923785209655762,
-0.4515411853790283,
0.3247268795967102,
0.6959530115127563,
0.16658467054367065,
0.42502790689468384,
-0.23511283099651337,
0.2448059767484665,
-0.08044827729463577,
-0.06651593744754791,
0.27714747190475464,
0.3449171781539917,
0.22435645759105682,
0.44501352310180664,
0.432856947183609,
-0.018087303265929222,
-0.10736559331417084,
-0.38282057642936707,
0.41249361634254456,
-0.9542784690856934,
-0.5713290572166443,
-0.630710780620575,
0.2740667760372162,
-0.023154327645897865,
-1.0836422443389893,
0.41451746225357056,
1.4406688213348389,
1.0359984636306763,
-0.4756380617618561,
1.0672271251678467,
-0.21818462014198303,
0.9594789743423462,
0.4148314893245697,
0.5420438051223755,
-0.6030403971672058,
0.038353081792593,
-0.43644052743911743,
-1.0769634246826172,
-0.3571633994579315,
0.4539390206336975,
-0.02289981208741665,
-0.3429867625236511,
0.8725717663764954,
0.5887162685394287,
-0.3347362279891968,
-0.11728022992610931,
0.04848663881421089,
-0.029941599816083908,
-0.12433874607086182,
0.5145372152328491,
0.764839768409729,
-0.9344298243522644,
-0.10680411010980606,
-0.21577700972557068,
-0.6382728815078735,
-0.5047284364700317,
-0.9632002711296082,
-0.12959381937980652,
-0.16037842631340027,
0.03534334897994995,
-0.5662809014320374,
0.002556905150413513,
1.2083250284194946,
0.5684951543807983,
-1.1113994121551514,
-0.5303782224655151,
0.33718499541282654,
0.39204245805740356,
-0.1874789297580719,
-0.24202406406402588,
0.2984571158885956,
0.1538221836090088,
-0.5908879041671753,
0.6875662803649902,
0.8089626431465149,
0.20888905227184296,
0.19554781913757324,
0.15893003344535828,
-0.8229468464851379,
-0.1491343379020691,
0.1744047999382019,
0.9450566172599792,
-0.9398531913757324,
-0.7114846110343933,
-0.03168468177318573,
-0.2709487974643707,
-0.05765697360038757,
0.17102089524269104,
-0.4046342968940735,
0.5180684924125671,
0.34591469168663025,
0.49933499097824097,
0.056160878390073776,
-0.05474642664194107,
0.5409556031227112,
-0.9069051742553711,
0.09425970166921616,
0.41343608498573303,
0.4154110848903656,
-0.4000871181488037,
-0.5910195112228394,
0.6713417172431946,
1.0073974132537842,
-0.6594864130020142,
-0.8743263483047485,
-0.19846680760383606,
-1.0016000270843506,
0.04189697653055191,
0.6762756109237671,
0.5009528994560242,
-0.48065176606178284,
-0.4174492359161377,
-0.5617400407791138,
-0.1254679411649704,
-0.13699708878993988,
0.76216059923172,
1.1796802282333374,
-0.7432100772857666,
0.07975788414478302,
-1.0386393070220947,
0.6594987511634827,
-0.2419460564851761,
-0.3457580506801605,
-0.4864429533481598,
0.3832802176475525,
0.3523699641227722,
0.44048118591308594,
0.6148120164871216,
0.14084689319133759,
0.8338428735733032,
0.31260576844215393,
-0.17026856541633606,
0.2698982357978821,
-0.4559198319911957,
-0.02893332578241825,
-0.05796259641647339,
0.3101596236228943,
-1.026215672492981
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
jegormeister/dutch-snli | jegormeister | 2023-10-02T19:06:35Z | 293 | 0 | null | [
"language:nl",
"region:us"
] | 2023-10-02T19:06:35Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- nl
---
This is a translated version of SNLI in Dutch. The translation was performed using Google Translate. | [
0.22793106734752655,
-0.5672305822372437,
0.2416250854730606,
0.5298473238945007,
-0.5963770151138306,
-0.04696286842226982,
-0.23859427869319916,
-0.8025568127632141,
1.3935050964355469,
0.7264297604560852,
-1.0286394357681274,
0.0010943629313260317,
-0.7213142514228821,
0.5387330651283264,
0.018574444577097893,
1.4544689655303955,
-0.3167657256126404,
0.6932408213615417,
-0.04425712302327156,
0.2062472403049469,
0.2324170470237732,
0.3703027069568634,
-0.7217320799827576,
-0.28434351086616516,
0.856354296207428,
0.2324066311120987,
0.5438997745513916,
-0.043973539024591446,
0.5837470889091492,
0.11655262112617493,
-0.19709105789661407,
-0.35670527815818787,
-0.8632643222808838,
-0.0200472641736269,
0.39072027802467346,
-0.60576993227005,
-0.2458757907152176,
0.026631522923707962,
0.7181347608566284,
0.810983419418335,
-0.20853298902511597,
0.09197315573692322,
-0.5036389827728271,
0.7549728155136108,
-0.6894794702529907,
-0.02990170568227768,
-0.228118896484375,
0.6696008443832397,
0.010713797062635422,
-0.2069297879934311,
-0.16809511184692383,
-0.8564765453338623,
-0.048611268401145935,
-0.6896522045135498,
-0.29341578483581543,
-0.3563600778579712,
1.2931286096572876,
0.44598180055618286,
-0.45235463976860046,
-0.6760740280151367,
-0.26251843571662903,
0.7878907918930054,
-1.1502505540847778,
0.019684763625264168,
0.10823714733123779,
0.8615393042564392,
-0.42827969789505005,
-0.6797348260879517,
-0.5358847975730896,
0.02885109931230545,
-0.02489028498530388,
0.410075843334198,
0.17329473793506622,
-0.6074633598327637,
0.17802311480045319,
0.4885089695453644,
-0.6576122045516968,
-0.3043040931224823,
-1.047202467918396,
0.28531721234321594,
0.9778192639350891,
-0.26808691024780273,
0.48098933696746826,
-0.3160642385482788,
-0.13148795068264008,
-0.11186931282281876,
-0.6033318042755127,
-0.34614065289497375,
0.667132556438446,
0.30702412128448486,
-0.182486429810524,
0.8281810879707336,
-0.23899102210998535,
0.5726134777069092,
-0.5236987471580505,
-0.0034974352456629276,
0.4421858489513397,
-0.28530314564704895,
-0.2762255370616913,
0.5663719773292542,
0.40024787187576294,
1.3848216533660889,
0.6824500560760498,
-0.3677530288696289,
-0.27374446392059326,
-0.4820004403591156,
0.1827424168586731,
-0.615138590335846,
-0.40068018436431885,
0.05095939338207245,
-0.3894561529159546,
-0.595928966999054,
-0.022291194647550583,
-0.37290075421333313,
0.005298240575939417,
0.05957293137907982,
0.1428140550851822,
-0.0935063287615776,
-0.2511900067329407,
0.4144183397293091,
-0.2204151153564453,
0.37562379240989685,
0.15084651112556458,
-0.33894598484039307,
-0.3473944664001465,
0.4839671850204468,
0.8636346459388733,
0.04691248759627342,
0.00003872676461469382,
-0.2660786211490631,
0.40747955441474915,
-0.3659816086292267,
0.009527021087706089,
0.08398377150297165,
-0.8607969880104065,
0.9556192755699158,
0.46444079279899597,
0.17777350544929504,
-0.07156122475862503,
0.49037429690361023,
-0.8883386850357056,
0.38331079483032227,
-0.08406148105859756,
-0.7003587484359741,
-0.2861301600933075,
-0.029809875413775444,
-0.5319105982780457,
0.833408772945404,
-0.005436426028609276,
-1.0544459819793701,
0.2314574122428894,
-0.6342963576316833,
-0.3803004026412964,
0.0032092712353914976,
0.02130802348256111,
-0.48330506682395935,
0.511044442653656,
-0.19673039019107819,
0.3326999247074127,
0.5021433234214783,
-0.01722717471420765,
-0.25674667954444885,
-0.08530156314373016,
0.06935716420412064,
0.12410382926464081,
1.4042092561721802,
0.6105707883834839,
0.06339752674102783,
0.6373355388641357,
-0.8379722833633423,
-0.07165468484163284,
0.4849430322647095,
-0.513947606086731,
-0.21276402473449707,
-0.12090849131345749,
0.6141178607940674,
0.2718730866909027,
0.8993750214576721,
-0.7725017070770264,
0.2385118007659912,
-0.8671360015869141,
0.30989328026771545,
0.105173259973526,
-0.2984500825405121,
0.51190185546875,
-0.10688220709562302,
0.21784082055091858,
-0.417875200510025,
0.22078050673007965,
0.21503804624080658,
-1.0757203102111816,
-0.6070808172225952,
0.38307246565818787,
0.27895182371139526,
0.8837786316871643,
-1.3612860441207886,
0.4218081533908844,
-0.9853300452232361,
-0.371176540851593,
-0.4553788900375366,
0.25271928310394287,
0.31466662883758545,
-0.2955884635448456,
0.046407271176576614,
-0.17607539892196655,
-0.17321600019931793,
-1.0805656909942627,
0.17514564096927643,
0.41109421849250793,
-0.47194918990135193,
0.4391421973705292,
0.5928453207015991,
-0.28194525837898254,
0.3258836567401886,
-0.4038257300853729,
-0.3396613895893097,
-0.6911693215370178,
0.06496674567461014,
0.9585909247398376,
0.3657242953777313,
0.8425203561782837,
-0.5619968771934509,
-0.9570836424827576,
0.5007171034812927,
-0.872793436050415,
-0.006323121953755617,
-0.355852335691452,
-0.215985968708992,
0.011739240027964115,
0.5946320295333862,
-0.24669517576694489,
0.9651917815208435,
0.746399462223053,
-0.13778188824653625,
0.31728309392929077,
-0.710015058517456,
0.16122479736804962,
-1.559458613395691,
0.023353755474090576,
-0.22468771040439606,
-0.2473977655172348,
-0.5027595162391663,
0.6090098023414612,
0.10517990589141846,
-0.21894079446792603,
-0.6923208832740784,
0.21904878318309784,
-0.3109740912914276,
-0.20461975038051605,
-0.4132896661758423,
0.3056902587413788,
-0.2908138334751129,
0.11940345168113708,
-0.41964757442474365,
1.1531344652175903,
0.8197309970855713,
-0.5522118210792542,
0.5970271825790405,
0.38251540064811707,
-0.6279971599578857,
0.30370569229125977,
-0.6488471627235413,
0.2534257471561432,
-0.13838475942611694,
0.5678820013999939,
-1.0977535247802734,
-0.6761675477027893,
0.6318740844726562,
-0.03781064227223396,
0.4659618139266968,
0.19072766602039337,
-0.41611814498901367,
-0.44843578338623047,
-0.17331553995609283,
0.3151317536830902,
-0.23041066527366638,
-0.7503715753555298,
0.9781174063682556,
0.2840385437011719,
-0.16849194467067719,
-0.8728504180908203,
-0.9414752721786499,
0.883100688457489,
-0.10315745323896408,
-0.7792422771453857,
0.19453807175159454,
0.07129903137683868,
-0.09073252975940704,
-0.08559562265872955,
-0.07277166098356247,
-0.1915079951286316,
-0.35351213812828064,
-0.1741618514060974,
0.054171670228242874,
-0.43334105610847473,
-0.507514476776123,
0.2902880907058716,
0.2443014532327652,
0.24558734893798828,
0.09533721953630447,
0.1697067767381668,
0.0906631276011467,
0.18556906282901764,
-0.7620931267738342,
1.2796835899353027,
0.4654206335544586,
0.47120997309684753,
0.470857173204422,
0.4367779791355133,
-0.05020475387573242,
-0.007321782875806093,
-0.7870115637779236,
-0.15169113874435425,
-0.3468473553657532,
0.12217206507921219,
-0.6243186593055725,
-0.609015703201294,
0.8282912969589233,
-0.05584811046719551,
-0.17775355279445648,
0.5386362671852112,
-0.36414220929145813,
-0.2694628834724426,
0.7784375548362732,
0.555433988571167,
-0.20252370834350586,
0.41784754395484924,
-0.5304905772209167,
0.08807249367237091,
-0.4072098731994629,
0.08609738200902939,
-0.30821946263313293,
-0.5303901433944702,
-0.6848939657211304,
-0.19015587866306305,
0.2584683299064636,
0.016951067373156548,
0.005526111926883459,
0.6616472601890564,
-0.536082923412323,
0.5367867946624756,
0.5676842331886292,
0.14076176285743713,
-0.013652118854224682,
0.23467092216014862,
0.3521721065044403,
-0.2216838002204895,
-0.6192677021026611,
-0.4212351143360138,
0.683473527431488,
0.25109341740608215,
0.35785987973213196,
0.7324369549751282,
0.651222288608551,
-0.09735272079706192,
0.05781969055533409,
-0.6339444518089294,
0.8745067119598389,
-0.6823087334632874,
-0.6330521106719971,
-0.45375296473503113,
-0.495602011680603,
-1.215387225151062,
-0.25242435932159424,
-0.627685010433197,
-0.7245694994926453,
-0.009943682700395584,
-0.8057807683944702,
0.0909983217716217,
0.4167965054512024,
-0.7429184317588806,
0.879046618938446,
-0.4432547390460968,
0.24491019546985626,
-0.5285861492156982,
-1.0902587175369263,
0.18152257800102234,
0.6713829040527344,
-0.10736193507909775,
-0.13720442354679108,
0.27264639735221863,
0.4916193187236786,
-0.2922007441520691,
0.7232930064201355,
0.14685551822185516,
-0.6687543392181396,
-0.08773095160722733,
0.19158793985843658,
0.9117650389671326,
0.25559595227241516,
-0.31354963779449463,
0.7472183704376221,
0.21615423262119293,
-0.7446469664573669,
-0.47590649127960205,
1.0939388275146484,
-0.5100849866867065,
-0.5209225416183472,
-0.5463903546333313,
-0.2284185290336609,
0.697215735912323,
0.15502215921878815,
0.5397091507911682,
-0.163566455245018,
-0.29240962862968445,
-0.2577377259731293,
0.22436480224132538,
-0.4342895746231079,
0.7154857516288757,
0.16269932687282562,
-0.6207325458526611,
-0.538770318031311,
1.0887113809585571,
-0.06830520182847977,
-0.3011855185031891,
0.24872475862503052,
0.10868053883314133,
-0.7302566766738892,
-0.1960277110338211,
-0.9910925030708313,
0.7847828269004822,
-0.9212642908096313,
0.2421460598707199,
-0.4382254481315613,
-0.45084676146507263,
-0.3803970515727997,
-0.6802329421043396,
-0.017940359190106392,
-0.4581863284111023,
-0.4488828778266907,
-0.12205088883638382,
0.4460437595844269,
1.0532896518707275,
0.054060693830251694,
0.40576985478401184,
-0.28825342655181885,
-0.12995176017284393,
0.7857182025909424,
0.13233457505702972,
-0.7996014952659607,
-0.15158583223819733,
-0.1802017241716385,
-0.4849758446216583,
0.20665758848190308,
-0.7237338423728943,
0.7306976318359375,
0.24146375060081482,
-0.11931581795215607,
0.07598614692687988,
0.0766075924038887,
0.499970942735672,
-0.7034738063812256,
1.033482313156128,
0.8955442309379578,
-0.601703405380249,
1.0257458686828613,
-0.718152642250061,
0.2725297212600708,
0.7455428838729858,
0.03526369109749794,
-0.31659895181655884,
-0.419883131980896,
-0.47368404269218445,
-1.304643154144287,
0.5364912748336792,
0.05256379023194313,
0.6590322852134705,
-0.21783581376075745,
0.5182485580444336,
0.11440009623765945,
0.5271621942520142,
-0.8724058270454407,
-0.3818097412586212,
-0.6329218149185181,
0.04003114998340607,
-0.11428473144769669,
-0.34598490595817566,
-0.1311371922492981,
-0.19966764748096466,
0.7272460460662842,
0.10691095143556595,
0.2261033058166504,
0.04328428581357002,
-0.0015631887363269925,
-0.14698824286460876,
0.03069916181266308,
1.172314167022705,
0.7963577508926392,
-0.7297934889793396,
-0.07308054715394974,
0.4869803190231323,
-0.17135387659072876,
-0.5727521777153015,
-0.5256007313728333,
-0.33614760637283325,
0.62880939245224,
-0.1519879251718521,
1.2862416505813599,
0.40409228205680847,
-0.34651491045951843,
1.2083035707473755,
-0.17006056010723114,
0.17225928604602814,
-1.4497977495193481,
-0.09363958984613419,
-0.21876777708530426,
0.10974419862031937,
0.321808785200119,
0.07550756633281708,
0.3658789396286011,
-0.10067472606897354,
0.4476199150085449,
-0.024700945243239403,
-0.9085619449615479,
-0.08366907387971878,
0.9781469702720642,
0.6219789385795593,
-0.7707111835479736,
0.5300468802452087,
-0.5875715017318726,
0.18068061769008636,
0.07179223746061325,
0.4129829406738281,
1.072921633720398,
-0.21388249099254608,
0.26810410618782043,
0.8706178665161133,
-0.2233133763074875,
-0.016201363876461983,
0.5642340183258057,
0.16981260478496552,
-0.4948887526988983,
-1.4497501850128174,
-0.28974848985671997,
0.052307117730379105,
0.2688109576702118,
-0.7234112620353699,
0.0580437146127224,
-0.09256415069103241,
0.14425572752952576,
-0.36763715744018555,
-0.5385595560073853,
-0.3351268470287323,
0.2302842140197754,
0.18882803618907928,
1.2899448871612549,
-0.7339134216308594,
1.2521843910217285,
0.897715151309967,
-0.28486594557762146,
-0.40153801441192627,
0.2743344306945801,
-0.49290764331817627,
-0.7819709777832031,
1.0011096000671387,
0.02048322558403015,
-0.47649288177490234,
0.18683117628097534,
-0.6187286972999573,
-0.7513723373413086,
0.19578365981578827,
-0.09112830460071564,
-0.1750131994485855,
0.3051307499408722,
-0.015379517339169979,
0.5022415518760681,
-0.5533130168914795,
0.5452531576156616,
0.09241283684968948,
0.6837383508682251,
0.2155294269323349,
-1.0703835487365723,
-0.26624128222465515,
-0.6954817175865173,
0.558067798614502,
-0.48610445857048035,
-0.046279050409793854,
0.38852977752685547,
0.13440684974193573,
-0.3871323764324188,
0.15365609526634216,
1.1408129930496216,
-0.1888338029384613,
0.49531280994415283,
0.44809895753860474,
0.6249082684516907,
0.3264327347278595,
0.051170047372579575,
1.5344734191894531,
-0.5200603604316711,
0.19975589215755463,
0.9150650501251221,
-0.11724903434515,
1.041796088218689,
0.9021548628807068,
0.04653742536902428,
0.39191314578056335,
0.41276976466178894,
0.1658220887184143,
0.7811092138290405,
0.5316438674926758,
-0.40089651942253113,
0.04688699170947075,
-0.30773162841796875,
-0.4280140697956085,
0.3052130937576294,
0.15191622078418732,
0.22195659577846527,
-0.438059538602829,
0.08072327822446823,
-0.0015925114275887609,
0.3858451843261719,
-0.01875178888440132,
0.7626083493232727,
-0.1180972158908844,
-0.5339948534965515,
0.7693927884101868,
-0.44708970189094543,
0.9972479343414307,
-0.21680298447608948,
0.24682994186878204,
0.0219919104129076,
-0.5522010326385498,
0.06363285332918167,
-1.1031807661056519,
0.7643396258354187,
-0.363577663898468,
-0.036496106535196304,
-0.4018818140029907,
-0.06804699450731277,
-0.4688659906387329,
-1.0638527870178223,
0.5633174777030945,
0.19944709539413452,
0.8114224076271057,
0.5486404299736023,
-0.9677305817604065,
-0.32199370861053467,
0.2521233558654785,
-0.00030665640952065587,
0.04923546314239502,
0.2970409095287323,
0.1569187194108963,
0.6554191708564758,
0.34044304490089417,
0.5285562872886658,
0.4091164767742157,
0.35421907901763916,
0.43518057465553284,
-0.45266255736351013,
-0.9467273950576782,
0.0015005902387201786,
0.4607875943183899,
-1.0312831401824951,
-0.791421115398407,
0.6895565986633301,
0.7567377090454102,
0.9945852160453796,
-1.1434401273727417,
0.45568713545799255,
0.0015105009078979492,
0.630147397518158,
-0.5180650949478149,
0.8878759145736694,
-1.0352078676223755,
-0.07828778773546219,
-0.057741738855838776,
-0.9358707070350647,
-0.7373908758163452,
1.1386851072311401,
-0.20736399292945862,
-0.4296412765979767,
0.3634966313838959,
0.7765785455703735,
0.1230812519788742,
-0.058708515018224716,
0.5252249240875244,
0.32912540435791016,
-0.06695893406867981,
0.04034848138689995,
0.8953619599342346,
-0.9161054491996765,
0.5648413300514221,
-0.012304180301725864,
0.3463831841945648,
-0.5191099643707275,
-1.061537504196167,
-0.7850134372711182,
-0.4534502923488617,
-0.8785805106163025,
-0.24527768790721893,
-0.09763682633638382,
0.518798291683197,
0.424294114112854,
-1.4926451444625854,
-0.4015628695487976,
-0.139412060379982,
0.09789838641881943,
-0.31324395537376404,
-0.1868641972541809,
0.6666998267173767,
-0.23580236732959747,
-1.0083823204040527,
1.0454227924346924,
0.43194741010665894,
-0.0037870637606829405,
0.14968961477279663,
0.09638957679271698,
-0.16349707543849945,
0.3439539670944214,
0.33903324604034424,
0.20192532241344452,
-1.2097307443618774,
-0.6679468750953674,
-0.33593451976776123,
-0.177165687084198,
-0.03740498423576355,
0.49500587582588196,
0.15281184017658234,
0.7309144735336304,
0.8460695147514343,
0.43158677220344543,
0.8707124590873718,
-0.6487024426460266,
0.5711914896965027,
-0.8313804864883423,
0.40998953580856323,
-0.09245622903108597,
0.3913598954677582,
0.08419107645750046,
-0.4754827618598938,
0.6919281482696533,
0.15086640417575836,
-0.6078208088874817,
-0.6596850752830505,
0.1607741117477417,
-1.5185681581497192,
-0.364063560962677,
1.2842758893966675,
-0.052508290857076645,
-0.7860667705535889,
-0.5219140648841858,
-0.3904213607311249,
0.25253015756607056,
-0.36048442125320435,
1.1499043703079224,
0.4782510995864868,
0.6102772355079651,
-0.1593852937221527,
-1.4403412342071533,
0.6959983706474304,
0.4531209170818329,
0.3366260826587677,
-0.676289975643158,
-0.06930205971002579,
-0.1059771254658699,
0.659049391746521,
0.23643498122692108,
0.2954798936843872,
0.05766694247722626,
-0.27008020877838135,
0.5859272480010986,
0.31618088483810425,
-0.018712656572461128,
0.17083492875099182,
0.1871596723794937,
-0.8095003366470337,
-0.4706983268260956
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
webis/Touche23-ValueEval | webis | 2023-05-23T20:19:40Z | 293 | 3 | null | [
"task_categories:text-classification",
"task_categories:zero-shot-classification",
"task_ids:multi-label-classification",
"size_categories:1K<n<10K",
"language:en",
"license:cc-by-4.0",
"Human Values",
"Value Detection",
"Multi-Label",
"region:us"
] | 2023-05-23T20:19:40Z | 2023-04-17T09:17:07.000Z | 2023-04-17T09:17:07 | ---
license: cc-by-4.0
task_categories:
- text-classification
- zero-shot-classification
task_ids:
- multi-label-classification
language:
- en
tags:
- Human Values
- Value Detection
- Multi-Label
pretty_name: Human Value Detection Dataset
size_categories:
- 1K<n<10K
---
# The Touché23-ValueEval Dataset
## Table of Contents
- [Table of Contents](#table-of-contents)
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Dataset Usage](#dataset-usage)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [Dataset Structure](#dataset-structure)
- [Argument Instances](#argument-instances)
- [Metadata Instances](#metadata-instances)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
## Dataset Description
- **Homepage:** [https://webis.de/data/touche23-valueeval.html](https://webis.de/data/touche23-valueeval.html)
- **Repository:** [Zenodo](https://doi.org/10.5281/zenodo.6814563)
- **Paper:** [The Touché23-ValueEval Dataset for Identifying Human Values behind Arguments.](https://webis.de/downloads/publications/papers/mirzakhmedova_2023a.pdf)
- **Leaderboard:** [https://touche.webis.de/](https://touche.webis.de/semeval23/touche23-web/index.html#results)
- **Point of Contact:** [Webis Group](https://webis.de/people.html)
### Dataset Summary
The Touché23-ValueEval Dataset comprises 9324 arguments from six different sources. An arguments source is indicated with the first letter of its `Argument ID`:
- `A`: [IBM-ArgQ-Rank-30kArgs](https://research.ibm.com/haifa/dept/vst/debating_data.shtml#Argument%20Quality)
- `C`:Chinese question-answering website [Zhihu](https://www.zhihu.com)
- `D`:[Group Discussion Ideas (GD IDEAS)](https://www.groupdiscussionideas.com)
- `E`:[The Conference for the Future of Europe](https://futureu.europa.eu)
- `F`:Contribution by the language.ml lab (Doratossadat, Omid, Mohammad, Ehsaneddin) [1]:
arguments from the "Nahj al-Balagha" [2] and "Ghurar al-Hikam wa Durar ak-Kalim" [3]
- `G`:[The New York Times](https://www.nytimes.com)
The annotated labels are based on the value taxonomy published in
[Identifying the Human Values behind Arguments](https://webis.de/publications.html#kiesel_2022b) (Kiesel et al. 2022) at ACL'22.
[1] https://language.ml
[2] https://en.wikipedia.org/wiki/Nahj_al-Balagha
[3] https://en.wikipedia.org/wiki/Ghurar_al-Hikam_wa_Durar_al-Kalim
### Dataset Usage
The default configuration name is `main`.
```python
from datasets import load_dataset
dataset = load_dataset("webis/Touche23-ValueEval")
print(dataset['train'].info.description)
for argument in iter(dataset['train']):
print(f"{argument['Argument ID']}: {argument['Stance']} '{argument['Conclusion']}': {argument['Premise']}")
```
### Supported Tasks and Leaderboards
Human Value Detection
### Languages
The [Argument Instances](#argument-instances) are all monolingual; it only includes English (mostly en-US) documents.
The [Metadata Instances](#metadata-instances) for some dataset parts additionally state the arguments in their original language and phrasing.
## Dataset Structure
### Argument Instances
Each argument instance has the following attributes:
- `Argument ID`: The unique identifier for the argument within the dataset
- `Conclusion`: Conclusion text of the argument
- `Stance`: Stance of the `Premise` towards the `Conclusion; one of "in favor of", "against"
- `Premise`: Premise text of the argument
- `Labels`: The `Labels` for each example is an array of 1s (argument resorts to value) and 0s (argument does not resort to value). The order is the same as in the original files.
Additionally, the labels are separated into *value-categories*, aka. level 2 labels of the value taxonomy (Kiesel et al. 2022b), and *human values*, aka. level 1 labels of the value taxonomy.
This distinction is also reflected in the configuration names:
- `<config>`: As the [Task](https://touche.webis.de/semeval23/touche23-web/) is focused mainly on the detection of value-categories,
each base configuration ([listed below](#p-list-base-configs)) has the 20 value-categories as labels:
```python
labels = ["Self-direction: thought", "Self-direction: action", "Stimulation", "Hedonism", "Achievement", "Power: dominance", "Power: resources", "Face", "Security: personal", "Security: societal", "Tradition", "Conformity: rules", "Conformity: interpersonal", "Humility", "Benevolence: caring", "Benevolence: dependability", "Universalism: concern", "Universalism: nature", "Universalism: tolerance", "Universalism: objectivity"]
```
- `<config>-level1`: The 54 human values from the level 1 of the value taxonomy are not used for the 2023 task
(except for the annotation), but are still listed here for some might find them useful for understanding the value
categories. Their order is also the same as in the original files. For more details see the [value-categories](#metadata-instances) configuration.
<p id="p-list-base-configs">The configuration names (as replacements for <code><config></code>) in this dataset are:</p>
- `main`: 8865 arguments (sources: `A`, `D`, `E`) with splits `train`, `validation`, and `test` (default configuration name)
```python
dataset_main_train = load_dataset("webis/Touche23-ValueEval", split="train")
dataset_main_validation = load_dataset("webis/Touche23-ValueEval", split="validation")
dataset_main_test = load_dataset("webis/Touche23-ValueEval", split="test")
```
- `nahjalbalagha`: 279 arguments (source: `F`) with split `test`
```python
dataset_nahjalbalagha_test = load_dataset("webis/Touche23-ValueEval", name="nahjalbalagha", split="test")
```
- `nyt`: 80 arguments (source: `G`) with split `test`
```python
dataset_nyt_test = load_dataset("webis/Touche23-ValueEval", name="nyt", split="test")
```
- `zhihu`: 100 arguments (source: `C`) with split `validation`
```python
dataset_zhihu_validation = load_dataset("webis/Touche23-ValueEval", name="zhihu", split="validation")
```
Please note that due to copyright reasons, there currently does not exist a direct download link to the arguments contained in the
New york Times
dataset. Accessing any of the `nyt` or `nyt-level1` configurations will therefore use the specifically created
[nyt-downloader program](https://github.com/touche-webis-de/touche-code/tree/main/semeval23/human-value-detection/nyt-downloader)
to create and access the arguments locally. See the program's
[README](https://github.com/touche-webis-de/touche-code/blob/main/semeval23/human-value-detection/nyt-downloader/README.md)
for further details.
### Metadata Instances
The following lists all configuration names for metadata. Each configuration only has a single split named `meta`.
- `ibm-meta`: Each row corresponds to one argument (IDs starting with `A`) from the [IBM-ArgQ-Rank-30kArgs](https://research.ibm.com/haifa/dept/vst/debating_data.shtml#Argument%20Quality)
- `Argument ID`: The unique identifier for the argument
- `WA`: the quality label according to the weighted-average scoring function
- `MACE-P`: the quality label according to the MACE-P scoring function
- `stance_WA`: the stance label according to the weighted-average scoring function
- `stance_WA_conf`: the confidence in the stance label according to the weighted-average scoring function
```python
dataset_ibm_metadata = load_dataset("webis/Touche23-ValueEval", name="ibm-meta", split="meta")
```
- `zhihu-meta`: Each row corresponds to one argument (IDs starting with `C`) from the Chinese question-answering website [Zhihu](https://www.zhihu.com)
- `Argument ID`: The unique identifier for the argument
- `Conclusion Chinese`: The original chinese conclusion statement
- `Premise Chinese`: The original chinese premise statement
- `URL`: Link to the original statement the argument was taken from
```python
dataset_zhihu_metadata = load_dataset("webis/Touche23-ValueEval", name="zhihu-meta", split="meta")
```
- `gdi-meta`: Each row corresponds to one argument (IDs starting with `D`) from [GD IDEAS](https://www.groupdiscussionideas.com/)
- `Argument ID`: The unique identifier for the argument
- `URL`: Link to the topic the argument was taken from
```python
dataset_gdi_metadata = load_dataset("webis/Touche23-ValueEval", name="gdi-meta", split="meta")
```
- `cofe-meta`: Each row corresponds to one argument (IDs starting with `E`) from [the Conference for the Future of Europe](https://futureu.europa.eu)
- `Argument ID`: The unique identifier for the argument
- `URL`: Link to the comment the argument was taken from
```python
dataset_cofe_metadata = load_dataset("webis/Touche23-ValueEval", name="cofe-meta", split="meta")
```
- `nahjalbalagha-meta`: Each row corresponds to one argument (IDs starting with `F`). This file contains information on the 279 arguments in `nahjalbalagha` (or `nahjalbalagha-level1`)
and 1047 additional arguments that were not labeled so far. This data was contributed by the language.ml lab.
- `Argument ID`: The unique identifier for the argument
- `Conclusion Farsi`: Conclusion text of the argument in Farsi
- `Stance Farsi`: Stance of the `Premise` towards the `Conclusion`, in Farsi
- `Premise Farsi`: Premise text of the argument in Farsi
- `Conclusion English`: Conclusion text of the argument in English (translated from Farsi)
- `Stance English`: Stance of the `Premise` towards the `Conclusion`; one of "in favor of", "against"
- `Premise English`: Premise text of the argument in English (translated from Farsi)
- `Source`: Source text of the argument; one of "Nahj al-Balagha", "Ghurar al-Hikam wa Durar ak-Kalim"; their Farsi translations were used
- `Method`: How the premise was extracted from the source; one of "extracted" (directly taken), "deduced"; the conclusion are deduced
```python
dataset_nahjalbalagha_metadata = load_dataset("webis/Touche23-ValueEval", name="nahjalbalagha-meta", split="meta")
```
- `nyt-meta`: Each row corresponds to one argument (IDs starting with `G`) from [The New York Times](https://www.nytimes.com)
- `Argument ID`: The unique identifier for the argument
- `URL`: Link to the article the argument was taken from
- `Internet Archive timestamp`: Timestamp of the article's version in the Internet Archive that was used
```python
dataset_nyt_metadata = load_dataset("webis/Touche23-ValueEval", name="nyt-meta", split="meta")
```
- `value-categories`: Contains a single JSON-entry with the structure of level 2 and level 1 values regarding the value taxonomy:
```
{
"<value category>": {
"<level 1 value>": [
"<exemplary effect a corresponding argument might target>",
...
], ...
}, ...
}
```
As this configuration contains just a single entry, an example usage could be:
```python
value_categories = load_dataset("webis/Touche23-ValueEval", name="value-categories", split="meta")[0]
```
## Additional Information
### Dataset Curators
[More Information Needed]
### Licensing Information
[Creative Commons Attribution 4.0 International (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/)
### Citation Information
```
@Article{mirzakhmedova:2023a,
author = {Nailia Mirzakhmedova and Johannes Kiesel and Milad Alshomary and Maximilian Heinrich and Nicolas Handke\
and Xiaoni Cai and Valentin Barriere and Doratossadat Dastgheib and Omid Ghahroodi and {Mohammad Ali} Sadraei\
and Ehsaneddin Asgari and Lea Kawaletz and Henning Wachsmuth and Benno Stein},
doi = {10.48550/arXiv.2301.13771},
journal = {CoRR},
month = jan,
publisher = {arXiv},
title = {{The Touch{\'e}23-ValueEval Dataset for Identifying Human Values behind Arguments}},
volume = {abs/2301.13771},
year = 2023
}
``` | [
-0.7493962645530701,
-0.2748787999153137,
0.08680489659309387,
0.024761904031038284,
-0.3905486762523651,
-0.26546913385391235,
-0.13492515683174133,
-0.2979917526245117,
0.2932334542274475,
0.18746542930603027,
-0.5966647267341614,
-0.7346562147140503,
-0.4116578698158264,
0.324258029460907,
0.12819132208824158,
1.1163930892944336,
-0.011436576023697853,
-0.22165897488594055,
-0.09479114413261414,
-0.5242456793785095,
0.068906769156456,
-0.5710346102714539,
-0.27527573704719543,
-0.13953344523906708,
0.6117321848869324,
0.4986640214920044,
0.49475979804992676,
0.731813907623291,
0.5319765210151672,
0.26416704058647156,
-0.12469886243343353,
0.1813446432352066,
0.02101508527994156,
-0.2388978749513626,
-0.08780190348625183,
-0.189914733171463,
-0.6260260939598083,
0.278937429189682,
0.45102253556251526,
0.7288281917572021,
0.03225231170654297,
0.46294623613357544,
-0.029713593423366547,
0.7105600833892822,
-0.600132167339325,
0.02610284648835659,
-0.4437338709831238,
-0.19411419332027435,
-0.07518817484378815,
-0.15937942266464233,
-0.2779582738876343,
-0.3871135115623474,
0.09742899239063263,
-0.669318437576294,
-0.03940672427415848,
0.03787510097026825,
1.5002201795578003,
0.21010462939739227,
-0.4364047050476074,
-0.09576369822025299,
-0.26372969150543213,
0.9821932911872864,
-0.9537102580070496,
0.2571311295032501,
0.6610282063484192,
-0.09584619849920273,
-0.10287561267614365,
-0.5514474511146545,
-0.6048158407211304,
0.01180692482739687,
-0.28947019577026367,
0.2654789686203003,
-0.16768914461135864,
-0.020647697150707245,
0.40167421102523804,
0.1160297691822052,
-0.5424918532371521,
0.004770136438310146,
-0.4890322685241699,
-0.2718561589717865,
0.8589051365852356,
0.06061158329248428,
0.16452009975910187,
-0.5838804841041565,
-0.46813735365867615,
-0.3486793041229248,
-0.42048120498657227,
0.38876327872276306,
0.30006879568099976,
0.5098508596420288,
-0.3137637972831726,
0.372341126203537,
-0.4497722387313843,
0.7005739808082581,
0.14031270146369934,
-0.32218483090400696,
0.706881046295166,
-0.6440759897232056,
-0.11303284764289856,
-0.09128959476947784,
1.1466145515441895,
0.6076768636703491,
0.07203345745801926,
0.09312710911035538,
0.16375084221363068,
-0.18748313188552856,
0.10874094814062119,
-1.004777431488037,
-0.1479884684085846,
0.5948627591133118,
-0.6959658861160278,
-0.3069297969341278,
0.2789798676967621,
-1.0143722295761108,
-0.15867261588573456,
-0.06970729678869247,
0.2828645706176758,
-0.4095335006713867,
-0.3268873691558838,
0.19538214802742004,
-0.26448503136634827,
0.41554757952690125,
0.09687548130750656,
-0.829955518245697,
0.33471497893333435,
0.24377213418483734,
0.7172597646713257,
-0.19376347959041595,
-0.38626885414123535,
-0.2837558090686798,
-0.14059190452098846,
-0.21823494136333466,
0.7502360939979553,
-0.3071241080760956,
-0.14923106133937836,
-0.24369440972805023,
0.05355825275182724,
0.035117752850055695,
-0.5104570984840393,
0.9420868754386902,
-0.47565388679504395,
0.49617159366607666,
-0.7241322994232178,
-0.4031839966773987,
-0.4075249433517456,
0.3738460838794708,
-0.6208502054214478,
1.044287919998169,
0.07847367227077484,
-1.047236680984497,
0.7670326232910156,
-1.0156633853912354,
-0.34600991010665894,
-0.0009911766974255443,
0.13935992121696472,
-0.5666975975036621,
-0.4340533912181854,
0.20645871758460999,
0.4779859781265259,
-0.37404966354370117,
0.1049705296754837,
-0.3437328636646271,
-0.07544213533401489,
0.2799514830112457,
-0.26246508955955505,
1.2324260473251343,
0.2635788023471832,
-0.35632261633872986,
0.11549408733844757,
-1.0872416496276855,
0.2483697533607483,
0.09260902553796768,
-0.5431086421012878,
-0.509941041469574,
0.21679608523845673,
0.06475391983985901,
0.3942006230354309,
0.27329596877098083,
-0.6514759659767151,
0.275433212518692,
-0.3460717499256134,
0.35033074021339417,
0.5312328934669495,
0.05495597794651985,
0.13513487577438354,
-0.24628175795078278,
0.3016497492790222,
0.35895973443984985,
0.15122471749782562,
-0.07547715306282043,
-0.5741536021232605,
-0.7895233631134033,
-0.10295257717370987,
0.30235621333122253,
0.7510630488395691,
-0.4794214963912964,
0.8030930757522583,
-0.5334229469299316,
-0.5775364637374878,
-0.4645034372806549,
0.0038321709726005793,
0.3147968649864197,
0.5132473707199097,
0.6770119667053223,
-0.07785923033952713,
-0.5713040232658386,
-0.9452756643295288,
-0.20768292248249054,
-0.4077673554420471,
-0.037143222987651825,
0.29133322834968567,
0.7467264533042908,
-0.11490770429372787,
1.043259859085083,
-0.49233195185661316,
-0.1235383152961731,
-0.05517168715596199,
0.14990513026714325,
0.44595324993133545,
0.4136704206466675,
0.3951747715473175,
-1.0904228687286377,
-0.3926398456096649,
-0.16495902836322784,
-0.7108104825019836,
-0.1454509198665619,
-0.10155939310789108,
-0.008118254132568836,
0.2063503861427307,
0.08236665278673172,
-0.4768071174621582,
0.306664377450943,
0.15305474400520325,
-0.6984387636184692,
0.5727502703666687,
-0.08038105815649033,
0.30520856380462646,
-1.428962230682373,
0.26001349091529846,
0.367763489484787,
0.15609842538833618,
-0.650702178478241,
-0.10714824497699738,
-0.04426496475934982,
0.4055371582508087,
-0.5360720753669739,
0.5839800834655762,
-0.34763485193252563,
0.08182799816131592,
0.15086139738559723,
0.1674889177083969,
0.11000138521194458,
0.5596739053726196,
-0.09701845049858093,
0.7208912372589111,
0.37236306071281433,
-0.8359821438789368,
0.4610331654548645,
0.3825407326221466,
-0.18977907299995422,
0.5972673892974854,
-0.5379659533500671,
-0.19293411076068878,
0.12743191421031952,
0.12256870418787003,
-0.9416645765304565,
-0.1298578828573227,
0.4335954785346985,
-0.6207140684127808,
-0.09789934009313583,
-0.25639599561691284,
-0.3781421482563019,
-0.36288732290267944,
-0.6742531657218933,
0.2405126988887787,
0.32401421666145325,
-0.47349801659584045,
0.28589680790901184,
0.3538283109664917,
0.14578215777873993,
-0.7322985529899597,
-0.5934522151947021,
0.1555580049753189,
-0.564582884311676,
-0.5763322114944458,
0.45910483598709106,
-0.16056302189826965,
-0.3653396666049957,
0.0660673975944519,
0.05053773149847984,
-0.13577908277511597,
0.2388116419315338,
0.09087752550840378,
0.3360197842121124,
-0.17827454209327698,
-0.016549037769436836,
-0.1309056282043457,
-0.25156641006469727,
0.07069860398769379,
-0.25087770819664,
0.4459669291973114,
-0.3874601721763611,
-0.09761510789394379,
-0.536169707775116,
0.2147025316953659,
0.6090720891952515,
-0.26188093423843384,
0.7687967419624329,
0.7462021708488464,
-0.32602769136428833,
0.22339659929275513,
-0.31032049655914307,
-0.0260009802877903,
-0.4618326723575592,
0.27434733510017395,
-0.341967910528183,
-0.45698046684265137,
0.6421977877616882,
0.04624944552779198,
0.269711971282959,
0.8720945715904236,
0.45702552795410156,
-0.08752188086509705,
0.8284285664558411,
0.13596397638320923,
-0.12525686621665955,
0.2006288766860962,
-0.49942922592163086,
-0.025260966271162033,
-0.9019436240196228,
-0.36086830496788025,
-0.6086679697036743,
-0.29343974590301514,
-0.9180157780647278,
-0.19466008245944977,
0.21999484300613403,
0.14062105119228363,
-0.47693973779678345,
0.468535840511322,
-0.7193347215652466,
0.14800651371479034,
0.6825399398803711,
-0.002016761340200901,
-0.002057475969195366,
0.041205838322639465,
-0.29872533679008484,
0.012791851535439491,
-0.537040650844574,
-0.6797009110450745,
1.0925532579421997,
0.1707400679588318,
0.4249013364315033,
0.09227517992258072,
0.7519075274467468,
0.2198641002178192,
0.03616158291697502,
-0.8140125274658203,
0.6882398128509521,
-0.20334646105766296,
-0.4939503073692322,
-0.3855646252632141,
-0.49484866857528687,
-1.2408608198165894,
0.4171353578567505,
-0.12567317485809326,
-1.0245059728622437,
0.4324551224708557,
-0.059056006371974945,
-0.44501984119415283,
0.4745010733604431,
-0.5777114033699036,
0.950896680355072,
-0.26061880588531494,
-0.4288308024406433,
-0.009281082078814507,
-0.7693668603897095,
0.07537025958299637,
0.31443604826927185,
0.2588375508785248,
-0.21822327375411987,
-0.21331383287906647,
1.1873117685317993,
-0.4559899568557739,
0.6914049983024597,
-0.3371579349040985,
0.04982355609536171,
0.3194847106933594,
-0.31715717911720276,
0.11780687421560287,
-0.2015685737133026,
-0.3268473446369171,
0.31146055459976196,
0.2588726878166199,
-0.42720261216163635,
-0.28691810369491577,
0.41273975372314453,
-0.8272075057029724,
-0.4470668137073517,
-0.619354248046875,
-0.2937638461589813,
-0.0990285649895668,
0.37337544560432434,
0.40026071667671204,
0.45939362049102783,
0.06037074699997902,
0.3722253441810608,
0.6155369877815247,
-0.353850781917572,
0.5960115790367126,
0.313646137714386,
0.12335985898971558,
-0.6861920356750488,
0.9051786661148071,
0.2712218761444092,
0.17122189700603485,
0.44557857513427734,
0.4307491183280945,
-0.4229847490787506,
-0.4540552496910095,
-0.6534214615821838,
0.07193194329738617,
-0.684482753276825,
-0.22069837152957916,
-0.5857641696929932,
-0.22852791845798492,
-0.25807926058769226,
0.06268308311700821,
-0.1942054182291031,
-0.45842593908309937,
-0.34875085949897766,
-0.12855929136276245,
0.6099681854248047,
0.35980573296546936,
-0.09613766521215439,
0.010598745197057724,
-0.8082107305526733,
0.4399520754814148,
0.18732984364032745,
0.45847490429878235,
-0.254905104637146,
-0.4735282361507416,
-0.29500612616539,
0.36957240104675293,
-0.4145330488681793,
-0.9567339420318604,
0.3744879961013794,
0.11923493444919586,
0.6217440962791443,
0.48139429092407227,
0.39126288890838623,
0.6205161809921265,
-0.08905103802680969,
1.1442439556121826,
0.0576801560819149,
-0.8068408370018005,
0.6649755835533142,
-0.35270315408706665,
0.18579566478729248,
0.6932399272918701,
0.6582545042037964,
-0.592766284942627,
0.06116660311818123,
-0.7363629937171936,
-1.0199158191680908,
0.8824697136878967,
0.14844690263271332,
-0.09839461743831635,
0.00915165152400732,
0.3718379735946655,
-0.07979362457990646,
0.008826063014566898,
-0.9750056266784668,
-0.607735276222229,
-0.38611361384391785,
-0.30252954363822937,
0.285770058631897,
-0.18698127567768097,
-0.23392407596111298,
-0.5866038203239441,
0.8032391667366028,
-0.20815199613571167,
0.32063981890678406,
0.32787343859672546,
0.101076640188694,
0.046213291585445404,
0.489218533039093,
0.6081609725952148,
0.6043376326560974,
-0.2540781795978546,
0.14258521795272827,
0.3074977695941925,
-0.6821378469467163,
0.28361842036247253,
0.09624868631362915,
-0.2611873149871826,
-0.2011084109544754,
0.38499146699905396,
0.8286422491073608,
-0.18571822345256805,
-0.4159119129180908,
0.44475165009498596,
-0.0776444524526596,
-0.4035945534706116,
-0.22038501501083374,
0.07687465846538544,
0.00829955842345953,
-0.025939445942640305,
0.6004330515861511,
0.00017011648742482066,
0.16418731212615967,
-0.4373740255832672,
0.3845658302307129,
0.3090953826904297,
-0.15782803297042847,
-0.36720606684684753,
0.5574467182159424,
-0.01168544590473175,
-0.27800026535987854,
0.5146607160568237,
-0.5779516696929932,
-0.733254075050354,
0.6853571534156799,
0.32264190912246704,
0.8079354763031006,
-0.04242531955242157,
0.29616808891296387,
0.7717402577400208,
0.3668736219406128,
0.13971197605133057,
0.5351396799087524,
-0.041555557399988174,
-0.9729084968566895,
-0.10545812547206879,
-0.7362102270126343,
-0.22943460941314697,
0.25225844979286194,
-0.8430567383766174,
0.27735164761543274,
-0.34332433342933655,
-0.25003746151924133,
0.1580803096294403,
0.5181573629379272,
-0.4490693211555481,
0.4262130856513977,
0.03616384044289589,
0.8195990920066833,
-0.9324405193328857,
0.6709185838699341,
0.9586308598518372,
-0.7356449365615845,
-0.9263274073600769,
0.15501563251018524,
-0.00994839146733284,
-0.36071616411209106,
0.6373296976089478,
0.1036488339304924,
0.00726748164743185,
-0.2287748008966446,
-0.4226484000682831,
-0.9989327788352966,
1.1405737400054932,
0.027818262577056885,
0.0051086111925542355,
0.2865626811981201,
0.18634958565235138,
0.5451277494430542,
-0.12730371952056885,
0.39226093888282776,
0.46797606348991394,
0.8474995493888855,
0.1429462879896164,
-0.8472909927368164,
0.32480472326278687,
-0.6248569488525391,
-0.29237881302833557,
0.08373559266328812,
-0.8371451497077942,
0.8668686151504517,
-0.24500147998332977,
-0.00457219872623682,
-0.311288982629776,
0.5587369799613953,
0.35787662863731384,
0.261615127325058,
0.6525336503982544,
0.6663996577262878,
0.7754989862442017,
-0.19126398861408234,
0.8558904528617859,
-0.3469105660915375,
0.42900794744491577,
0.6805813908576965,
-0.03833272308111191,
0.9592297077178955,
0.371327668428421,
-0.5951833724975586,
0.7938529849052429,
0.9984666109085083,
-0.32622066140174866,
0.4341418743133545,
-0.019888490438461304,
0.026817074045538902,
-0.12190774828195572,
-0.023954220116138458,
-0.22378556430339813,
0.5188546776771545,
0.3761722147464752,
-0.09177641570568085,
-0.0810292512178421,
-0.2782289683818817,
0.352232962846756,
-0.2108369916677475,
-0.13330242037773132,
0.7943078279495239,
-0.20300133526325226,
-0.8021732568740845,
1.0610182285308838,
0.1199391707777977,
0.8161552548408508,
-0.4883483350276947,
-0.00013627309817820787,
-0.06415615230798721,
0.0466749332845211,
-0.5488226413726807,
-0.9137399196624756,
0.2554524838924408,
0.047698866575956345,
-0.2526112198829651,
-0.15807463228702545,
0.5030926465988159,
-0.21736259758472443,
-0.5005283951759338,
0.28619474172592163,
0.3202691972255707,
0.2872992157936096,
0.27986574172973633,
-0.9247608184814453,
-0.20546774566173553,
0.22898714244365692,
-0.5878545641899109,
0.3392140865325928,
0.3349466323852539,
-0.02837654948234558,
0.7365546226501465,
0.7094955444335938,
0.13009798526763916,
0.06903133541345596,
-0.10352661460638046,
0.8024769425392151,
-0.8267911076545715,
-0.40842050313949585,
-0.9759708046913147,
0.6952681541442871,
-0.3747497797012329,
-0.7045910954475403,
0.7673152685165405,
0.7656128406524658,
0.7205687761306763,
0.23620285093784332,
0.7735649347305298,
-0.4198692739009857,
0.3761870861053467,
-0.3197613060474396,
0.7751256227493286,
-0.6955167055130005,
0.15722569823265076,
-0.4227904677391052,
-0.584810197353363,
-0.3925360143184662,
0.7693520188331604,
-0.2039792686700821,
0.24017620086669922,
0.6168898940086365,
0.7038282752037048,
-0.04680803418159485,
-0.14308640360832214,
0.0434400849044323,
0.26035088300704956,
0.27242615818977356,
0.44099077582359314,
0.42088747024536133,
-0.6943796277046204,
0.4831077754497528,
-0.37188661098480225,
-0.2670597732067108,
-0.13245317339897156,
-1.0174713134765625,
-0.6982999444007874,
-0.8443812727928162,
-0.46857285499572754,
-0.46216946840286255,
-0.26449230313301086,
1.2977176904678345,
0.8442069292068481,
-1.081345558166504,
-0.33292192220687866,
0.09215244650840759,
0.21176187694072723,
-0.31901824474334717,
-0.25778576731681824,
0.6836971640586853,
-0.07665104418992996,
-0.48885178565979004,
0.14755897223949432,
0.10511840134859085,
-0.1727181375026703,
-0.09622307121753693,
-0.15473654866218567,
-0.5407635569572449,
0.05792921409010887,
0.5296446084976196,
0.3579533100128174,
-0.861472487449646,
-0.3342756927013397,
-0.026295913383364677,
-0.055401913821697235,
0.41556572914123535,
0.17628711462020874,
-0.739840030670166,
0.19325439631938934,
0.5373747944831848,
0.3897026479244232,
0.21151083707809448,
0.20086419582366943,
0.043595656752586365,
-0.49642476439476013,
0.013857515528798103,
0.10383182018995285,
0.49846532940864563,
0.2390158772468567,
-0.2872726023197174,
0.4171256124973297,
0.49391475319862366,
-0.29680806398391724,
-0.7232042551040649,
-0.033445972949266434,
-1.222870111465454,
-0.15301866829395294,
1.4124245643615723,
-0.25208204984664917,
-0.19028109312057495,
-0.20654979348182678,
-0.17547142505645752,
0.23168259859085083,
-0.4543320834636688,
0.7420851588249207,
0.7390469908714294,
-0.20615024864673615,
-0.10766567289829254,
-0.26753076910972595,
0.5117532014846802,
0.10725051909685135,
-1.1341978311538696,
0.14674638211727142,
0.283100962638855,
0.45216596126556396,
0.5020620226860046,
0.5107807517051697,
-0.04363967850804329,
0.15734919905662537,
-0.04182542860507965,
0.2211475372314453,
-0.0012148291571065784,
-0.046845149248838425,
-0.1512761265039444,
0.1947019249200821,
-0.06447774916887283,
-0.3917980194091797
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
akkasi/ethos | akkasi | 2023-10-28T19:59:52Z | 293 | 0 | null | [
"region:us"
] | 2023-10-28T19:59:52Z | 2023-10-28T19:59:50.000Z | 2023-10-28T19:59:50 | ---
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: test
path: data/test-*
dataset_info:
features:
- name: text
dtype: string
- name: labels
sequence: float64
- name: label2idx
dtype: string
- name: idx2label
dtype: string
splits:
- name: train
num_bytes: 165667
num_examples: 346
- name: test
num_bytes: 46805
num_examples: 87
download_size: 46734
dataset_size: 212472
---
# Dataset Card for "ethos_new"
[More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards) | [
-0.7435060143470764,
-0.4670615792274475,
0.15925057232379913,
0.030015379190444946,
-0.33977562189102173,
0.023142052814364433,
0.1801510453224182,
-0.4317992031574249,
1.1281540393829346,
0.4490348994731903,
-0.6109590530395508,
-0.757662296295166,
-0.7237012386322021,
-0.1758173406124115,
-0.30437082052230835,
1.3453549146652222,
0.0319923497736454,
-0.20449094474315643,
-0.2850683331489563,
-0.13611139357089996,
-0.33286482095718384,
-0.4232105016708374,
-0.7957562208175659,
-0.5368376970291138,
0.7922389507293701,
0.9502286911010742,
0.4029404819011688,
0.5617871284484863,
0.7038294076919556,
0.14209982752799988,
-0.008596084080636501,
-0.1099097952246666,
-0.4656025171279907,
0.06604421138763428,
-0.19520533084869385,
-0.3853587508201599,
-1.2095184326171875,
0.09090430289506912,
0.6130396127700806,
0.6970455646514893,
-0.27748051285743713,
0.955054759979248,
-0.16921117901802063,
0.6615524888038635,
-0.33954671025276184,
0.5731402635574341,
-0.4252956807613373,
0.07150710374116898,
-0.6704239249229431,
-0.5884780883789062,
0.16711819171905518,
-0.5959872603416443,
0.18237674236297607,
-1.3096041679382324,
0.11244095116853714,
0.32026058435440063,
0.7375692129135132,
0.06432683765888214,
-0.09759394824504852,
-0.05641208589076996,
-0.47473806142807007,
0.16031219065189362,
0.03226176276803017,
0.17897771298885345,
0.5420850515365601,
0.5653480291366577,
0.04657062888145447,
-0.7667617797851562,
-0.44365623593330383,
0.07195493578910828,
0.2134624719619751,
0.019308101385831833,
0.022773653268814087,
-0.2143159657716751,
0.40168702602386475,
0.786311686038971,
-0.12295204401016235,
-0.2939799427986145,
-0.7697461247444153,
-0.2460818737745285,
0.651373565196991,
0.08499754965305328,
0.2336147278547287,
-0.08346787095069885,
-0.22544744610786438,
-0.2462504655122757,
-0.7726690769195557,
0.059833791106939316,
0.5659474730491638,
0.21100223064422607,
-1.153774380683899,
0.7262245416641235,
-0.08292357623577118,
0.2445192039012909,
0.271507203578949,
0.7488400936126709,
0.6786805391311646,
0.01805010437965393,
-0.2295534461736679,
0.17858915030956268,
0.09986311942338943,
0.7011287808418274,
0.21977616846561432,
0.2597208619117737,
0.17696784436702728,
0.14214828610420227,
-0.01914096064865589,
-1.0256361961364746,
-0.8545553684234619,
0.4439024031162262,
-0.8274984955787659,
-0.5042058229446411,
0.2476126253604889,
-1.0019804239273071,
-0.6705967783927917,
-0.43543681502342224,
-0.041284170001745224,
-0.06671822816133499,
-0.9809120893478394,
-0.09434287995100021,
-0.7748934626579285,
0.6265941858291626,
0.5034077167510986,
-0.7816770076751709,
0.45436903834342957,
0.9434646964073181,
0.56470787525177,
0.18235723674297333,
-0.28399112820625305,
-0.8643813133239746,
0.12124327570199966,
-0.02960081398487091,
1.073978304862976,
-0.8095779418945312,
-0.28615257143974304,
0.17590297758579254,
0.5265162587165833,
0.19366618990898132,
-0.10818519443273544,
1.0248568058013916,
-0.43578431010246277,
-0.019188374280929565,
-0.7516459226608276,
-0.6942164301872253,
-0.1115449070930481,
0.3255476951599121,
-1.073305368423462,
1.072019100189209,
0.2650739848613739,
-0.7823818325996399,
0.4998641908168793,
-1.2630327939987183,
-0.442842960357666,
0.47064077854156494,
-0.1574883759021759,
-0.3281466066837311,
0.3576766550540924,
-0.34392857551574707,
0.6110051870346069,
-0.3742648959159851,
0.2897305190563202,
-0.8859782218933105,
-0.1800597757101059,
0.04299940913915634,
0.3028114438056946,
1.0709561109542847,
0.37147265672683716,
0.30633318424224854,
0.011065264232456684,
-1.0508341789245605,
-0.1465555727481842,
0.32445287704467773,
-0.04651282727718353,
-0.3854961693286896,
-0.29961955547332764,
0.35854223370552063,
-0.2829945683479309,
0.2927468717098236,
-0.5586740970611572,
0.48556938767433167,
0.16425767540931702,
0.11199808120727539,
0.6864218711853027,
0.17273738980293274,
0.40984907746315,
-0.5747008919715881,
0.4351674020290375,
-0.2546843886375427,
0.4746114909648895,
-0.003132773330435157,
-0.6903627514839172,
-0.7086371779441833,
0.17725269496440887,
0.32058197259902954,
0.4503677189350128,
-0.4209672212600708,
0.30618011951446533,
0.004335785284638405,
-0.7714092135429382,
-0.14837899804115295,
-0.330706387758255,
-0.02363887056708336,
0.1342563033103943,
0.2896426320075989,
-0.5290423631668091,
-0.934109091758728,
-0.5652549266815186,
0.24388891458511353,
-0.0646146833896637,
0.07336128503084183,
0.3879503905773163,
0.9501550793647766,
-0.25939080119132996,
0.49804458022117615,
-0.8124441504478455,
-0.19580622017383575,
0.2095939815044403,
-0.2799898386001587,
0.313262015581131,
0.6444880366325378,
1.0341368913650513,
-0.6613210439682007,
-0.628337562084198,
-0.21003612875938416,
-0.460202693939209,
0.015751201659440994,
0.5680444240570068,
-0.5626940131187439,
-0.40748509764671326,
0.186738058924675,
-0.46161171793937683,
0.3725939989089966,
0.8093739151954651,
-0.6398969292640686,
0.17012685537338257,
0.002316514030098915,
0.33201780915260315,
-1.5075758695602417,
0.39882299304008484,
-0.10039765387773514,
-0.1063886284828186,
-0.4650733172893524,
0.19730108976364136,
-0.012298472225666046,
-0.20873340964317322,
-0.1701168268918991,
0.6277948021888733,
-0.5531675219535828,
0.029991231858730316,
-0.16011835634708405,
0.007250492461025715,
0.058511555194854736,
0.15971705317497253,
0.15715274214744568,
0.20696674287319183,
1.2526627779006958,
-0.6763361692428589,
1.0326263904571533,
0.668350338935852,
0.11371172964572906,
1.267295479774475,
-0.9184361696243286,
0.2211795151233673,
-0.20836929976940155,
0.4378823935985565,
-0.6549941897392273,
-0.8903620839118958,
0.6678813099861145,
-0.48340362310409546,
0.5362935066223145,
-0.6743207573890686,
-0.25816017389297485,
-0.5682042241096497,
-0.6590777039527893,
0.7018627524375916,
0.5274941325187683,
-0.7045727968215942,
0.49021580815315247,
1.0248061418533325,
-0.05782000720500946,
-0.08263523876667023,
-0.8174260258674622,
-0.006980427075177431,
-0.30432772636413574,
-0.1324986219406128,
0.6295379400253296,
-0.25890693068504333,
-0.03346139192581177,
-0.20687846839427948,
0.5343889594078064,
-0.24630208313465118,
-0.04187580943107605,
0.4733890891075134,
0.12761349976062775,
-0.17643803358078003,
0.23729157447814941,
0.08521489799022675,
-0.8073803186416626,
0.22913847863674164,
-0.3318271040916443,
0.49738919734954834,
-0.05414251238107681,
-0.22550563514232635,
-0.5571910738945007,
0.48528164625167847,
0.25054284930229187,
-0.27804940938949585,
0.519430935382843,
0.8492612242698669,
-0.9116727709770203,
-0.10402479767799377,
-0.4065452218055725,
-0.15051744878292084,
-0.4557885229587555,
0.009418480098247528,
-0.2554165720939636,
-0.621942937374115,
0.616411566734314,
-0.2124001383781433,
0.30694615840911865,
0.9673991203308105,
0.6298450231552124,
-0.11825694143772125,
0.21685820817947388,
0.9451959133148193,
-0.14930413663387299,
0.3260576128959656,
-0.30269530415534973,
-0.29209038615226746,
-0.8644426465034485,
-0.39535239338874817,
-0.6992083191871643,
-0.46971961855888367,
-0.8408466577529907,
-0.532524585723877,
-0.09411005675792694,
-0.14146919548511505,
-0.19221442937850952,
0.7643656134605408,
-0.9799575805664062,
0.3434934914112091,
0.6430754065513611,
0.04737412557005882,
0.16103702783584595,
0.10561946034431458,
0.3350219130516052,
0.3879818618297577,
-0.5752395391464233,
-0.31602996587753296,
1.5400882959365845,
0.5672141909599304,
0.8209580183029175,
0.2337339222431183,
0.7910513281822205,
0.4339214265346527,
0.4081480801105499,
-0.07552828639745712,
0.2874840795993805,
0.21478326618671417,
-0.7006431818008423,
-0.1335994005203247,
0.0007086816476657987,
-0.8563359975814819,
-0.4933221638202667,
-0.46902090311050415,
-0.21242748200893402,
0.6465529203414917,
0.6118939518928528,
-0.34041163325309753,
0.442056268453598,
-0.5834705829620361,
0.5945850014686584,
0.09267579019069672,
-0.1650823950767517,
-0.3370867371559143,
-0.6129097938537598,
0.012536372058093548,
0.355847030878067,
-0.05961759015917778,
-0.38358432054519653,
-0.09901508688926697,
0.8528647422790527,
-0.32717618346214294,
1.0737792253494263,
-0.6115826368331909,
-0.1718284785747528,
0.240365132689476,
-0.3420131504535675,
0.49976426362991333,
0.5778876543045044,
-0.33260318636894226,
0.1357358992099762,
0.19038847088813782,
-0.4713902175426483,
0.14938825368881226,
0.8829607367515564,
-0.6912757754325867,
0.42027753591537476,
-0.5375231504440308,
-0.21224480867385864,
0.1686229407787323,
0.13505356013774872,
0.4383864402770996,
0.5809861421585083,
-0.6844384074211121,
0.11025122553110123,
0.984133243560791,
0.026634540408849716,
0.09628341346979141,
0.3339284062385559,
-0.2747214138507843,
-0.5943002104759216,
0.8140261173248291,
0.07191996276378632,
-0.3676011562347412,
0.4594373404979706,
0.30869442224502563,
-0.18282420933246613,
-0.4440160393714905,
-0.6555383205413818,
-0.12770134210586548,
-0.4461556375026703,
-0.4410678744316101,
-0.5542300939559937,
-0.15162518620491028,
-0.4233402609825134,
-0.2094544917345047,
-0.3556690514087677,
-0.8473156094551086,
-0.3966517448425293,
-0.6531934142112732,
1.3352406024932861,
0.6343464851379395,
-0.5971207022666931,
0.47480955719947815,
-0.5681228637695312,
0.5216081142425537,
-0.010388839058578014,
0.9856269955635071,
-0.2342825084924698,
-0.45279139280319214,
-0.2716595530509949,
-0.0721040815114975,
-0.10804956406354904,
-0.8241874575614929,
-0.3376021385192871,
0.5165608525276184,
0.6248241066932678,
0.4242090582847595,
0.16749785840511322,
0.3627387583255768,
-0.2177622765302658,
0.43006059527397156,
0.19990813732147217,
-0.5690687894821167,
0.7717391848564148,
-0.46553558111190796,
0.047815144062042236,
0.8578051924705505,
0.4908161759376526,
-0.5290563702583313,
0.10192781686782837,
-1.0723990201950073,
-0.6656413078308105,
0.47609516978263855,
0.14946651458740234,
0.3644951283931732,
0.10678759217262268,
0.6105590462684631,
0.36124804615974426,
0.5593746304512024,
-0.9065207839012146,
-1.1085439920425415,
0.029358386993408203,
-0.06709261238574982,
0.3896665871143341,
-0.706403374671936,
-0.4102073311805725,
-0.702117919921875,
0.7173552513122559,
0.05823000147938728,
0.6591508984565735,
-0.008639001287519932,
0.29823750257492065,
-0.4410759210586548,
-0.13393858075141907,
0.19291245937347412,
0.4561973810195923,
-0.43933603167533875,
0.020572222769260406,
0.10148406773805618,
-0.3259236216545105,
-0.26279085874557495,
0.7712663412094116,
-0.17749179899692535,
-0.13939890265464783,
0.4309009313583374,
0.7811635136604309,
-0.17918214201927185,
0.18967819213867188,
0.3252098858356476,
-0.0063615343533456326,
-0.5094135999679565,
-0.7795398235321045,
0.1980513036251068,
0.12672556936740875,
0.1790529191493988,
0.011061113327741623,
0.01719982922077179,
0.38435351848602295,
-0.6096979379653931,
0.41288113594055176,
-0.027909763157367706,
-0.4392135441303253,
-0.6342864632606506,
0.5617277026176453,
0.8380608558654785,
-0.42247065901756287,
0.5161736011505127,
-0.30060020089149475,
-0.45131248235702515,
0.6288337111473083,
0.16654199361801147,
0.728610098361969,
-0.5101054310798645,
0.5315473675727844,
0.6037561297416687,
0.2671297490596771,
0.3005722761154175,
0.992235004901886,
-0.41763192415237427,
-0.6311812996864319,
-0.054083697497844696,
-0.2658616602420807,
-0.5930533409118652,
-0.3340896666049957,
-0.9494062662124634,
0.5494135022163391,
-0.7816405892372131,
-0.21954628825187683,
-0.013928362168371677,
0.15198063850402832,
-0.976481020450592,
0.0672316700220108,
0.1849975883960724,
1.2800308465957642,
-0.9422028064727783,
0.7937014102935791,
1.0212055444717407,
-0.22204305231571198,
-0.5293819904327393,
-0.33936673402786255,
-0.030143583193421364,
-0.8305115103721619,
-0.23616042733192444,
0.21716146171092987,
0.2697255611419678,
-0.16324642300605774,
-0.6931667923927307,
-0.8226828575134277,
1.2357075214385986,
0.2645135223865509,
-0.78324294090271,
0.41109317541122437,
0.026430470868945122,
0.40956398844718933,
-0.3639075756072998,
0.5232731699943542,
0.2906789183616638,
0.9775723814964294,
0.03834006190299988,
-0.6094943284988403,
0.07882057875394821,
-0.7558582425117493,
-0.3976847231388092,
0.4580821692943573,
-0.7963536381721497,
0.5406740307807922,
-0.09300161153078079,
0.04044052213430405,
-0.10095170885324478,
0.7028569579124451,
0.05994601547718048,
0.7311701774597168,
0.573572039604187,
0.5488053560256958,
1.2219390869140625,
-0.36941951513290405,
0.9721711874008179,
-0.2989102602005005,
0.5943444967269897,
1.3910975456237793,
-0.386677086353302,
0.3912786841392517,
0.5343807339668274,
-0.1181907206773758,
0.37904152274131775,
0.7521243691444397,
-0.48064354062080383,
0.3039942681789398,
0.316567599773407,
-0.056306011974811554,
-0.1343005895614624,
-0.28215014934539795,
-1.1765069961547852,
0.03986145928502083,
0.24650512635707855,
-0.5052402019500732,
0.018085289746522903,
-0.10555913299322128,
0.1445324718952179,
-0.18886801600456238,
-0.30897796154022217,
0.5159599184989929,
0.15958382189273834,
-0.19464698433876038,
-0.16786333918571472,
0.09474846720695496,
0.4101857542991638,
-0.6995093822479248,
-0.5139838457107544,
0.09893032163381577,
0.05659538879990578,
-0.5347580313682556,
-1.0490593910217285,
0.7437132000923157,
-0.3189581036567688,
-0.2530006468296051,
-0.036818310618400574,
0.7937453389167786,
-0.2708807587623596,
-0.7517333626747131,
0.4162144362926483,
0.261123925447464,
0.12749451398849487,
0.0312793105840683,
-1.07831871509552,
0.14023622870445251,
-0.16725338995456696,
-0.17017091810703278,
-0.04641939327120781,
0.3699114918708801,
0.17659872770309448,
0.5620170831680298,
0.7629444599151611,
-0.10967466235160828,
-0.41033056378364563,
0.19148866832256317,
0.9614877104759216,
-0.5475791692733765,
-0.5842946171760559,
-0.5478174090385437,
0.5335174202919006,
-0.6261192560195923,
-0.8949267268180847,
0.6196582913398743,
0.9182944297790527,
0.9366011023521423,
-0.04218215495347977,
0.8261208534240723,
-0.6910820007324219,
0.6640681028366089,
-0.16079045832157135,
0.5368747115135193,
-0.5027287602424622,
-0.008752920664846897,
-0.3379831910133362,
-0.9434995055198669,
-0.37266799807548523,
0.7535211443901062,
0.23171371221542358,
-0.14533981680870056,
0.497031569480896,
0.7060750722885132,
-0.40923741459846497,
0.48277002573013306,
-0.19286243617534637,
0.22388334572315216,
0.13898465037345886,
0.37435382604599,
0.6702558994293213,
-0.5206562876701355,
0.013699888251721859,
-0.3774908781051636,
-0.6523951292037964,
-0.22384394705295563,
-1.3133493661880493,
-0.8064704537391663,
-0.5940625667572021,
-0.6972047686576843,
-0.4059313237667084,
-0.0052259331569075584,
1.2352927923202515,
1.012330174446106,
-1.1485620737075806,
-0.20895138382911682,
-0.10994751751422882,
0.18318521976470947,
-0.13946959376335144,
-0.1074514389038086,
0.5938376784324646,
0.7282475233078003,
-0.5784224271774292,
-0.3254961669445038,
0.10350318253040314,
0.11946564167737961,
-0.08335674554109573,
-0.03370966762304306,
0.06767351180315018,
-0.19415916502475739,
0.3904777765274048,
0.5007238388061523,
0.11744581907987595,
-0.3201274871826172,
-0.5441718101501465,
0.26423418521881104,
0.06060337647795677,
1.0204992294311523,
-0.24563440680503845,
-0.01721429079771042,
0.6431386470794678,
0.2722504138946533,
0.544366180896759,
-0.34258806705474854,
0.8660069108009338,
-0.36798423528671265,
0.17494717240333557,
-0.17670409381389618,
0.6947157979011536,
0.12025190889835358,
-0.6641399264335632,
0.8629934787750244,
0.24253445863723755,
-0.3865872025489807,
-0.5206195712089539,
0.17494335770606995,
-1.2542747259140015,
0.43687644600868225,
0.8486259579658508,
0.20918545126914978,
-0.3004564344882965,
-0.2256121188402176,
-0.4500276744365692,
0.32529160380363464,
-0.9270257353782654,
0.38471516966819763,
0.39396899938583374,
0.2502615749835968,
-0.014332798309624195,
-0.4008219540119171,
0.6308448910713196,
-0.22061218321323395,
-1.278847575187683,
0.1631411910057068,
0.49968963861465454,
0.2673182487487793,
0.112531878054142,
0.9042384624481201,
-0.19723664224147797,
0.35739409923553467,
0.18562789261341095,
0.3388369679450989,
-0.348417729139328,
-0.7208860516548157,
0.03305799514055252,
0.11950937658548355,
-0.0030006091110408306,
-0.5243927240371704
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
stsb_mt_sv | null | 2022-11-18T21:48:42Z | 292 | 1 | null | [
"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"
] | 2022-11-18T21:48:42Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
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:timisbisters@gmail.com)
### 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.31375759840011597,
-0.5020046234130859,
0.25684893131256104,
0.21248026192188263,
-0.7096499800682068,
-0.07914326339960098,
-0.48508182168006897,
-0.4159085750579834,
0.295988529920578,
0.5163167119026184,
-0.8658342361450195,
-1.201612114906311,
-0.7675966024398804,
0.3545994758605957,
-0.21609875559806824,
1.0462090969085693,
-0.28603652119636536,
0.4690364897251129,
-0.3574903607368469,
-0.33099472522735596,
-0.3674444556236267,
-0.5436144471168518,
-0.28258365392684937,
-0.1275085210800171,
0.41517993807792664,
0.530105471611023,
0.48132821917533875,
0.8410000801086426,
0.7402594089508057,
0.2839639484882355,
-0.033512379974126816,
0.1333809196949005,
-0.5149942636489868,
-0.04596536606550217,
-0.2587648630142212,
-0.37920424342155457,
-0.31989407539367676,
-0.16964580118656158,
0.6998088955879211,
0.6773280501365662,
0.1713615506887436,
0.6040304899215698,
0.16859959065914154,
0.6922610998153687,
-0.20726244151592255,
0.524553656578064,
-0.5224937796592712,
-0.08798534423112869,
-0.38056498765945435,
0.09048906713724136,
-0.17782379686832428,
-0.3555670976638794,
-0.18671883642673492,
-0.5302360653877258,
0.14303864538669586,
0.2972643971443176,
1.1341028213500977,
0.23537302017211914,
-0.37153205275535583,
-0.26483824849128723,
-0.3910549581050873,
0.9930890798568726,
-0.59908527135849,
0.28161895275115967,
0.41743654012680054,
0.27330294251441956,
0.014131367206573486,
-0.6819190979003906,
-0.6481189727783203,
0.11169403046369553,
-0.21537739038467407,
0.22484038770198822,
-0.10725083202123642,
-0.22075685858726501,
0.3366768956184387,
0.24394261837005615,
-0.6529315114021301,
-0.021559959277510643,
-0.6325976252555847,
-0.28099754452705383,
0.8377267122268677,
0.31836214661598206,
0.23929442465305328,
-0.5864253044128418,
-0.5139517188072205,
-0.4742598831653595,
-0.5588734745979309,
-0.20323655009269714,
0.4200823903083801,
0.5624912977218628,
-0.582146406173706,
0.7858612537384033,
-0.09431926906108856,
0.6227632761001587,
-0.3721078634262085,
0.035918060690164566,
0.8809000849723816,
-0.7248815298080444,
-0.08807015419006348,
-0.07665137201547623,
0.9205763339996338,
0.6119754314422607,
0.216291144490242,
0.11851298063993454,
-0.2477574199438095,
0.04943530261516571,
0.1948605179786682,
-0.6358984112739563,
0.018007904291152954,
0.21976616978645325,
-0.729732871055603,
-0.22360815107822418,
0.21241582930088043,
-0.7076997756958008,
0.018171222880482674,
-0.46584224700927734,
0.2863060534000397,
-0.350943922996521,
-0.16475965082645416,
0.03597424551844597,
-0.20663060247898102,
0.44892770051956177,
0.031362663954496384,
-0.46027716994285583,
0.36848345398902893,
0.6701806783676147,
0.8098234534263611,
-0.5123688578605652,
-0.3864407539367676,
0.045077014714479446,
-0.00028190918965265155,
-0.18211935460567474,
0.6783208250999451,
-0.18728309869766235,
-0.6168814301490784,
0.11149034649133682,
0.4316752254962921,
-0.06904783099889755,
-0.34491437673568726,
1.0560141801834106,
-0.1432035267353058,
0.5114851593971252,
-0.5383307933807373,
-0.5522081255912781,
0.009624051861464977,
0.34028360247612,
-0.6118205189704895,
1.6402697563171387,
0.28684672713279724,
-0.9872794151306152,
0.4137395918369293,
-0.8126475811004639,
-0.5097490549087524,
0.16865383088588715,
-0.32253435254096985,
-0.4245772361755371,
-0.1358708143234253,
0.000203235205844976,
0.6190686225891113,
-0.541907787322998,
0.15966084599494934,
-0.2331053912639618,
-0.26651620864868164,
0.002233361592516303,
-0.15158522129058838,
1.0403372049331665,
0.3252708911895752,
-0.16855601966381073,
0.2043294757604599,
-0.9867963790893555,
0.04018007218837738,
0.31831029057502747,
-0.21124735474586487,
-0.49439069628715515,
-0.21098950505256653,
0.5312119722366333,
0.5121070742607117,
0.5142150521278381,
-0.7314796447753906,
-0.09738823026418686,
-0.4977699816226959,
0.20247147977352142,
0.6849000453948975,
0.016620483249425888,
0.26440197229385376,
-0.31244558095932007,
0.43210673332214355,
0.14779525995254517,
0.24705566465854645,
0.07234068959951401,
-0.6159710884094238,
-0.7165452837944031,
-0.31795963644981384,
0.4463115930557251,
0.7444416880607605,
-0.8714967370033264,
0.9257947206497192,
-0.9124369621276855,
-0.6859540939331055,
-0.9605623483657837,
0.12149018049240112,
0.6442193388938904,
0.5025315284729004,
0.4993928372859955,
-0.30662810802459717,
-0.7240346074104309,
-1.1216455698013306,
-0.15961746871471405,
-0.0874614492058754,
-0.037326738238334656,
0.39040637016296387,
0.979985773563385,
-0.025678660720586777,
0.6200364232063293,
-0.6637279987335205,
-0.3716980814933777,
-0.403674453496933,
-0.07996814697980881,
0.3672518730163574,
0.6606763005256653,
0.5211749076843262,
-1.0236217975616455,
-0.7111367583274841,
-0.10845401138067245,
-0.7584740519523621,
-0.11937128007411957,
0.1668061465024948,
-0.2907695472240448,
0.39235249161720276,
0.347654789686203,
-0.5857353210449219,
0.36558443307876587,
0.49926409125328064,
-0.5765461325645447,
0.47251370549201965,
-0.23219554126262665,
0.239918515086174,
-1.6271470785140991,
0.37600553035736084,
-0.14548470079898834,
-0.0026887552812695503,
-0.4555635452270508,
-0.09510772675275803,
0.033470552414655685,
0.03437390550971031,
-0.6652913689613342,
0.8063428997993469,
-0.2609342932701111,
-0.03067208081483841,
0.07761159539222717,
0.2544367015361786,
0.026519283652305603,
0.4873785078525543,
-0.05791766196489334,
0.7109061479568481,
0.4858126640319824,
-0.5083013772964478,
0.2714371979236603,
0.7604462504386902,
-0.7153989672660828,
0.8051976561546326,
-0.7519593238830566,
-0.00706423819065094,
-0.20702587068080902,
0.1552354097366333,
-1.1205891370773315,
-0.15790672600269318,
0.4768141806125641,
-0.7483717799186707,
0.1295066475868225,
-0.14430183172225952,
-0.9702355265617371,
-0.4434475004673004,
-0.39579686522483826,
0.07583963871002197,
0.5538467168807983,
-0.22990918159484863,
0.5504599809646606,
0.3834426701068878,
-0.14344051480293274,
-0.5675560235977173,
-1.1008483171463013,
0.0677444189786911,
-0.1273787021636963,
-0.7449119687080383,
0.5113399028778076,
-0.2234165072441101,
-0.08307426422834396,
0.24846111238002777,
0.02486327663064003,
0.06950699537992477,
0.05130884051322937,
0.2809922695159912,
0.5363749265670776,
-0.08805805444717407,
0.1880556344985962,
0.1533874124288559,
-0.21232622861862183,
-0.03552288934588432,
-0.24952030181884766,
0.5413221120834351,
-0.01838197372853756,
-0.26779648661613464,
-0.3178298771381378,
0.4871116280555725,
0.3682425320148468,
-0.07963261753320694,
0.9061764478683472,
0.8751361966133118,
-0.3679485321044922,
0.1312577873468399,
-0.4283779561519623,
-0.025550447404384613,
-0.39764925837516785,
0.41037532687187195,
-0.5879442095756531,
-0.6847215294837952,
0.7272979021072388,
0.12176217883825302,
0.04486536979675293,
0.9664060473442078,
0.5808628797531128,
-0.10657128691673279,
0.949657142162323,
0.4380525052547455,
-0.05911485478281975,
0.30041733384132385,
-0.38896241784095764,
-0.14609068632125854,
-0.6705771088600159,
-0.5623058676719666,
-0.9219270944595337,
-0.26261353492736816,
-0.9905338287353516,
-0.5506786704063416,
0.038632430136203766,
-0.2764996588230133,
-0.22598738968372345,
0.6270113587379456,
-0.5202903747558594,
0.36507925391197205,
0.5592796802520752,
-0.1196398138999939,
0.05695062130689621,
0.08880548924207687,
-0.3889743387699127,
-0.37573230266571045,
-0.649937093257904,
-0.5598815679550171,
0.9787733554840088,
0.25731030106544495,
0.31004202365875244,
0.028184834867715836,
0.7304934859275818,
0.3529187738895416,
-0.0011912574991583824,
-0.5395165085792542,
0.7855501174926758,
-0.43492937088012695,
-0.5831883549690247,
-0.25478842854499817,
-0.41631612181663513,
-0.999753475189209,
0.2525455057621002,
-0.422843337059021,
-0.4378964304924011,
0.13601259887218475,
-0.11771322041749954,
0.2594629228115082,
0.10582630336284637,
-0.7549694180488586,
1.0627888441085815,
-0.14162878692150116,
-0.17979344725608826,
-0.1805853694677353,
-1.1642770767211914,
-0.19709546864032745,
0.006071875337511301,
0.43855929374694824,
-0.21095143258571625,
-0.2264116257429123,
0.9365853071212769,
-0.34944814443588257,
0.9482958912849426,
-0.2573184669017792,
0.10397150367498398,
0.10756292939186096,
-0.28088101744651794,
0.5855128169059753,
-0.34113427996635437,
-0.1710958480834961,
0.6322004199028015,
0.20686106383800507,
-0.5735495090484619,
-0.4187726378440857,
0.7532604336738586,
-0.7827075123786926,
-0.19649259746074677,
-0.4545336067676544,
-0.38544759154319763,
0.11021043360233307,
0.5997350215911865,
0.3049258589744568,
0.004830670077353716,
-0.2980871796607971,
0.34934723377227783,
0.5536681413650513,
-0.2668708562850952,
-0.016829848289489746,
0.5862099528312683,
0.0012093569384887815,
-0.6714209318161011,
0.817994236946106,
0.2621903121471405,
0.11931083351373672,
0.5000420212745667,
0.057731177657842636,
-0.572669267654419,
-0.43569061160087585,
-0.49734213948249817,
0.3725534975528717,
-0.9452887177467346,
-0.099372997879982,
-0.6773571968078613,
-0.13616330921649933,
-0.6236754655838013,
-0.044577088207006454,
-0.173025444149971,
-0.6415714621543884,
-0.22704407572746277,
-0.41689586639404297,
0.4246596097946167,
0.5155549049377441,
-0.03290558606386185,
0.14799219369888306,
-0.687646210193634,
0.13920217752456665,
-0.3446806073188782,
0.4088403582572937,
-0.3074975609779358,
-0.5028610825538635,
-0.4436304271221161,
-0.009355238638818264,
0.051224637776613235,
-0.5691969394683838,
0.34338152408599854,
-0.054737355560064316,
0.7033796906471252,
-0.0519273616373539,
0.07713282108306885,
0.492438942193985,
-0.5159463882446289,
1.134808897972107,
0.09051870554685593,
-0.7876403331756592,
0.5505282878875732,
-0.3171614408493042,
0.5079272985458374,
0.9976482391357422,
0.4483623206615448,
-0.7171681523323059,
-0.20415347814559937,
-0.8802860379219055,
-1.1502680778503418,
0.8446514010429382,
0.32975149154663086,
0.39556869864463806,
-0.16575093567371368,
0.1421043872833252,
0.16753362119197845,
0.2756979167461395,
-0.5910224914550781,
-0.7483691573143005,
-0.19436310231685638,
-0.6334298849105835,
-0.20699654519557953,
-0.2651553153991699,
-0.11548656225204468,
-0.32183754444122314,
0.9153100252151489,
0.1927792727947235,
0.26320499181747437,
0.04946644976735115,
-0.10367868095636368,
0.22732895612716675,
0.25820356607437134,
0.5837172269821167,
0.3107835352420807,
-0.16416501998901367,
0.04940870404243469,
0.40101638436317444,
-0.6566537022590637,
-0.15627384185791016,
0.18323998153209686,
-0.3224664330482483,
0.26652222871780396,
0.34638145565986633,
0.9834091067314148,
0.31446167826652527,
-0.649176836013794,
0.7352952361106873,
0.061477284878492355,
-0.3898574411869049,
-0.583727240562439,
-0.25187447667121887,
0.023851126432418823,
0.04950549453496933,
0.16363032162189484,
-0.08200099319219589,
-0.03506064787507057,
-0.19988173246383667,
0.2310844510793686,
0.04102842137217522,
-0.6160213947296143,
-0.2730903625488281,
0.5201436281204224,
0.24211856722831726,
-0.43969234824180603,
0.5426743030548096,
-0.15827104449272156,
-0.416849821805954,
0.46002641320228577,
0.4176817834377289,
0.8669761419296265,
-0.0016590195009484887,
0.25805336236953735,
0.7383153438568115,
0.4319069981575012,
-0.09990028291940689,
0.8086062669754028,
-0.14789795875549316,
-0.6897081136703491,
-0.3686556816101074,
-0.5615897178649902,
-0.13636468350887299,
-0.013358749449253082,
-0.8547480702400208,
0.6057641506195068,
-0.10812181234359741,
-0.07294578850269318,
-0.10207334160804749,
0.23608845472335815,
-0.9669002294540405,
0.23796148598194122,
-0.04856434464454651,
1.2036807537078857,
-1.1093757152557373,
0.8841361999511719,
0.8123878836631775,
-0.6756502389907837,
-0.4625978171825409,
-0.2199697643518448,
-0.021783754229545593,
-0.8874224424362183,
0.6112997531890869,
0.06416579335927963,
0.1519598513841629,
-0.04746745526790619,
-0.6257215142250061,
-0.8390976190567017,
1.237380027770996,
0.16072112321853638,
-0.29502496123313904,
0.15805798768997192,
0.4632534384727478,
0.8432398438453674,
-0.527252197265625,
-0.02209305204451084,
0.4070204496383667,
0.7479591369628906,
0.1921953707933426,
-0.6924017667770386,
0.22267475724220276,
-0.5732966065406799,
0.2064642757177353,
0.2140021026134491,
-0.5708192586898804,
0.4376717209815979,
0.06554757803678513,
-0.27369943261146545,
-0.0279866773635149,
0.6092195510864258,
0.20182918012142181,
0.28968214988708496,
0.39272063970565796,
0.5424185991287231,
0.6495375037193298,
-0.20830361545085907,
1.1170517206192017,
-0.4668559432029724,
0.34454405307769775,
1.225465178489685,
-0.12599651515483856,
0.9385547041893005,
0.5976601243019104,
-0.2928016781806946,
0.5673538446426392,
0.6134212017059326,
-0.4505862593650818,
0.48838913440704346,
0.2361033409833908,
0.11178857088088989,
-0.11842160671949387,
-0.2608831822872162,
-0.36591923236846924,
0.40394771099090576,
0.34185105562210083,
-0.5948745608329773,
-0.10668551176786423,
-0.04317440092563629,
0.22536049783229828,
0.22555144131183624,
-0.06837993860244751,
0.7965589761734009,
0.03219224885106087,
-0.4954945147037506,
0.43067464232444763,
0.09144054353237152,
0.5250141620635986,
-0.8139667510986328,
0.02578938566148281,
0.010859890840947628,
-0.016070213168859482,
-0.111967533826828,
-1.062199592590332,
0.470426470041275,
0.04620284214615822,
-0.2900421619415283,
-0.4159078299999237,
0.7178458571434021,
-0.5691827535629272,
-0.7123816609382629,
0.3514728546142578,
0.45121511816978455,
0.505354106426239,
0.35167232155799866,
-1.1972692012786865,
0.2044830322265625,
0.13602837920188904,
-0.16430164873600006,
0.2697347402572632,
0.4161972999572754,
-0.1636832058429718,
0.46987977623939514,
0.5960536003112793,
0.17904774844646454,
-0.12614955008029938,
0.23627980053424835,
0.7879077792167664,
-0.7217602133750916,
-0.45620113611221313,
-0.710997462272644,
0.7089941501617432,
-0.5182731747627258,
-0.4986618459224701,
0.9703888297080994,
0.9724420309066772,
1.2246119976043701,
-0.19363616406917572,
0.9519703984260559,
-0.31964394450187683,
0.8877518773078918,
-0.42866048216819763,
0.7146815657615662,
-0.6142945885658264,
0.12974348664283752,
-0.2624172866344452,
-0.8660962581634521,
-0.43488824367523193,
0.42418986558914185,
-0.2755995988845825,
-0.046547334641218185,
0.731654167175293,
0.789685845375061,
0.011865578591823578,
-0.12111233919858932,
0.3480118215084076,
0.477915495634079,
-0.06166287884116173,
0.27763307094573975,
0.2676241397857666,
-0.7367430925369263,
0.7335374355316162,
-0.24406154453754425,
0.02029760368168354,
-0.04445699229836464,
-0.8451082706451416,
-0.9435091614723206,
-1.1064090728759766,
-0.3988807797431946,
-0.6283587217330933,
0.057671137154102325,
1.2086007595062256,
0.2914314270019531,
-0.9414740204811096,
-0.2142750471830368,
0.18743635714054108,
0.1521299183368683,
-0.24244095385074615,
-0.18427208065986633,
0.7442888617515564,
-0.02784653939306736,
-0.8162253499031067,
-0.04112415760755539,
0.05643155798316002,
0.14989814162254333,
-0.19185732305049896,
-0.1526706963777542,
-0.3457060158252716,
-0.007978660054504871,
0.6000357866287231,
-0.008078834973275661,
-0.6503757834434509,
-0.15887857973575592,
0.08431267738342285,
-0.27889296412467957,
0.08337903022766113,
0.33729568123817444,
-0.32613950967788696,
0.40992051362991333,
0.7836257219314575,
0.48503726720809937,
0.6568701267242432,
-0.12860184907913208,
0.23493149876594543,
-0.8859227299690247,
0.19115161895751953,
0.1300717443227768,
0.2998886704444885,
0.46963968873023987,
-0.2537681460380554,
0.7048940062522888,
0.38857749104499817,
-0.3328867256641388,
-0.937447726726532,
0.0033620931208133698,
-1.2289131879806519,
-0.12185315042734146,
1.4690525531768799,
-0.22205190360546112,
-0.482603520154953,
-0.30306586623191833,
-0.31284913420677185,
0.34281790256500244,
-0.3921513557434082,
0.5854247808456421,
1.022549033164978,
0.42350614070892334,
0.22454622387886047,
-0.4637018144130707,
0.4575527608394623,
0.13875016570091248,
-0.7915668487548828,
-0.027243776246905327,
0.30162739753723145,
0.4198201596736908,
0.09878452122211456,
0.6044979691505432,
-0.4960477948188782,
0.01961384527385235,
-0.061656802892684937,
0.44632530212402344,
0.040266003459692,
0.016143161803483963,
-0.31760314106941223,
-0.16116824746131897,
-0.22596758604049683,
-0.27966195344924927
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
urdu_sentiment_corpus | null | 2023-01-25T15:02:01Z | 292 | 1 | urdu-sentiment-corpus | [
"task_categories:text-classification",
"task_ids:sentiment-classification",
"annotations_creators:expert-generated",
"language_creators:crowdsourced",
"multilinguality:monolingual",
"size_categories:1K<n<10K",
"source_datasets:original",
"language:ur",
"license:unknown",
"region:us"
] | 2023-01-25T15:02:01Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
annotations_creators:
- expert-generated
language_creators:
- crowdsourced
language:
- ur
license:
- unknown
multilinguality:
- monolingual
size_categories:
- 1K<n<10K
source_datasets:
- original
task_categories:
- text-classification
task_ids:
- sentiment-classification
paperswithcode_id: urdu-sentiment-corpus
pretty_name: Urdu Sentiment Corpus (USC)
dataset_info:
features:
- name: sentence
dtype: string
- name: sentiment
dtype:
class_label:
names:
'0': P
'1': N
'2': O
splits:
- name: train
num_bytes: 161190
num_examples: 1000
download_size: 51583
dataset_size: 161190
---
# Dataset Card for Urdu Sentiment Corpus (USC)
## 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:** [Github](https://github.com/MuhammadYaseenKhan/Urdu-Sentiment-Corpus)
- **Repository:** [Github](https://github.com/MuhammadYaseenKhan/Urdu-Sentiment-Corpus)
- **Paper:** [IEEE](https://ieeexplore.ieee.org/abstract/document/9080043)
- **Leaderboard:**
- **Point of Contact:** [Muhammad Yaseen Khan](https://github.com/MuhammadYaseenKhan)
### Dataset Summary
[More Information Needed]
### Supported Tasks and Leaderboards
[More Information Needed]
### Languages
[More Information Needed]
## Dataset Structure
### Data Instances
[More Information Needed]
### Data Fields
- sentences: The Urdu tweet
- sentiment: The sentiment that was exhibited in the tweet, which can be Positive(P) or Negative(N) or Objective(O).
### 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
Thanks to [@chaitnayabasava](https://github.com/chaitnayabasava) for adding this dataset. | [
-0.4598270654678345,
-0.2104245275259018,
0.027282267808914185,
0.7147282361984253,
-0.3905452489852905,
0.39867275953292847,
-0.32316267490386963,
-0.09587238729000092,
0.4764498770236969,
0.4625127613544464,
-0.676355242729187,
-1.191349744796753,
-0.8084945678710938,
0.3717840015888214,
-0.345748633146286,
1.0906988382339478,
-0.022675693035125732,
-0.049947917461395264,
0.36495035886764526,
-0.2827201187610626,
-0.034039855003356934,
-0.39982283115386963,
-0.5013734698295593,
0.09370103478431702,
0.3422495126724243,
0.919219970703125,
0.6796806454658508,
0.5049200057983398,
0.695035457611084,
0.27301791310310364,
-0.08256898820400238,
-0.01503208838403225,
-0.263590931892395,
-0.04458990693092346,
-0.12711049616336823,
-0.2673870027065277,
-0.700682520866394,
-0.0917692705988884,
0.9061907529830933,
0.5841204524040222,
-0.008688056841492653,
0.6425970196723938,
0.015056364238262177,
0.897287130355835,
-0.7249158024787903,
0.22924914956092834,
-0.27102431654930115,
0.15779873728752136,
-0.5993242263793945,
-0.008707189001142979,
-0.15363295376300812,
-0.6485880613327026,
-0.39400744438171387,
-0.3540968894958496,
0.04605106636881828,
0.012522311881184578,
0.8490605354309082,
0.0764756128191948,
-0.40515539050102234,
-0.23198415338993073,
-0.48995763063430786,
0.9037977457046509,
-0.9306280612945557,
0.2935914695262909,
0.5604610443115234,
0.30524346232414246,
0.10871826112270355,
-0.5580928325653076,
-0.7373281121253967,
0.24621206521987915,
0.03078954666852951,
0.33231204748153687,
0.09096717089414597,
-0.25566565990448,
0.47133880853652954,
0.5738087296485901,
-0.43800726532936096,
-0.5298932194709778,
-0.7250422239303589,
-0.3272365629673004,
0.8203871250152588,
0.2110394686460495,
0.3848576247692108,
-0.5062353014945984,
0.02562950737774372,
-0.3578610122203827,
-0.3176361620426178,
0.1768505573272705,
0.6283896565437317,
0.5442848801612854,
-0.76750248670578,
0.9176810383796692,
-0.38433751463890076,
0.4176592230796814,
0.054702408611774445,
-0.1816980391740799,
0.9409494996070862,
-0.5704073309898376,
-0.009442283771932125,
0.33939868211746216,
1.1390341520309448,
0.4254288077354431,
0.21184496581554413,
0.2905983626842499,
0.09596182405948639,
-0.15104366838932037,
-0.050064414739608765,
-0.765116810798645,
-0.14315766096115112,
0.6449254751205444,
-0.5178397297859192,
-0.5090720653533936,
0.3037053942680359,
-1.3647061586380005,
-0.35586515069007874,
-0.08855709433555603,
-0.12336811423301697,
-0.19513452053070068,
-0.666913628578186,
-0.208830788731575,
-0.20661914348602295,
0.4517216980457306,
-0.1756095439195633,
-0.692450761795044,
0.3004210293292999,
0.44303202629089355,
0.9705015420913696,
0.06294534355401993,
-0.14883767068386078,
-0.05302391201257706,
0.19544628262519836,
-0.3567867577075958,
0.763302206993103,
-0.36129531264305115,
-0.751030683517456,
0.06575696170330048,
0.013585937209427357,
0.04551544412970543,
-0.27396488189697266,
1.1174571514129639,
-0.2655816972255707,
0.11084477603435516,
-0.5274567008018494,
-0.13629059493541718,
-0.11304852366447449,
0.30206093192100525,
-0.9344743490219116,
1.1780904531478882,
0.32667094469070435,
-1.1514111757278442,
0.2963353991508484,
-1.0705430507659912,
-0.5390832424163818,
-0.0918157622218132,
-0.04655329883098602,
-0.6209269762039185,
-0.37664610147476196,
0.18489935994148254,
0.4787789285182953,
-0.2949466407299042,
0.055932920426130295,
-0.35547661781311035,
-0.21676409244537354,
0.30391234159469604,
0.08617463707923889,
1.34689462184906,
0.5391830205917358,
-0.2884020209312439,
-0.020289121195673943,
-0.9526584148406982,
-0.007921806536614895,
-0.1397716999053955,
-0.015481563284993172,
0.09550388902425766,
-0.2810850143432617,
0.5661646127700806,
0.252277672290802,
0.2706589102745056,
-0.7216307520866394,
0.054624252021312714,
-0.6249114871025085,
0.29690077900886536,
0.6018559336662292,
0.19201797246932983,
0.49255532026290894,
-0.18094243109226227,
0.6542335748672485,
0.43101784586906433,
0.3101083040237427,
0.3067447245121002,
-0.3306739926338196,
-0.6759176254272461,
-0.33699601888656616,
0.18398639559745789,
0.7652634978294373,
-0.4660697281360626,
0.396823912858963,
-0.3643612563610077,
-0.7811008095741272,
-0.5564782023429871,
0.439786434173584,
0.1510988175868988,
0.5147544741630554,
0.4202619194984436,
-0.037635430693626404,
-1.0053876638412476,
-0.9661970138549805,
-0.1785004585981369,
-0.21917997300624847,
0.4288325309753418,
0.19862262904644012,
0.660148561000824,
-0.23762626945972443,
0.936324417591095,
-0.5320831537246704,
-0.391338974237442,
-0.6735943555831909,
0.20380151271820068,
0.5671500563621521,
0.4056989252567291,
0.4407062828540802,
-1.2609258890151978,
-0.8879057765007019,
-0.11203934252262115,
-0.6786110401153564,
-0.4366259276866913,
0.1395764946937561,
-0.2700546383857727,
0.43285465240478516,
0.18381354212760925,
-0.4099849760532379,
0.6553289890289307,
0.3772365152835846,
-0.5036382079124451,
0.5444762110710144,
0.6659306287765503,
0.47166159749031067,
-1.7388232946395874,
0.15446190536022186,
-0.009227902628481388,
0.27735376358032227,
-0.4873817563056946,
-0.3063463568687439,
-0.05957411602139473,
0.0623612143099308,
-0.6427692770957947,
0.7489692568778992,
-0.12437065690755844,
0.19099611043930054,
-0.03516671434044838,
-0.19960163533687592,
-0.020423881709575653,
0.49467629194259644,
-0.14456085860729218,
0.9110767245292664,
0.6030160784721375,
-0.37382972240448,
0.2887096107006073,
0.5330339670181274,
-0.11888521909713745,
0.39675605297088623,
-0.7574834227561951,
-0.18022914230823517,
-0.06284891068935394,
0.16109515726566315,
-0.9629606008529663,
-0.5146054625511169,
0.8231275081634521,
-0.8696951270103455,
0.05002395436167717,
0.06366552412509918,
-0.6715083122253418,
-0.31535956263542175,
-0.849717378616333,
0.5163408517837524,
0.4280865788459778,
0.013272385112941265,
0.6737502813339233,
0.489855021238327,
-0.13206084072589874,
-0.7239534258842468,
-0.984097957611084,
0.10580635070800781,
-0.3106645345687866,
-0.4262581765651703,
0.2754695415496826,
-0.04164649546146393,
-0.4152972102165222,
0.05965036153793335,
0.23866386711597443,
-0.20912279188632965,
-0.10443972796201706,
0.5894730687141418,
0.2346627414226532,
-0.06181952729821205,
-0.003413659753277898,
0.22998860478401184,
0.06877410411834717,
-0.022291885688900948,
0.2688559591770172,
0.535630464553833,
-0.1672953963279724,
-0.20405671000480652,
-0.5578330755233765,
0.6496056914329529,
0.4132705628871918,
-0.0575876384973526,
1.0272414684295654,
1.1723343133926392,
-0.3692617416381836,
0.09400404989719391,
-0.5472784638404846,
0.10001961141824722,
-0.4093532860279083,
0.27934616804122925,
-0.1787576526403427,
-0.6059824228286743,
0.8988462090492249,
0.07789888232946396,
-0.17832393944263458,
0.9602702260017395,
0.8293428421020508,
0.11738240718841553,
1.1028532981872559,
0.5417818427085876,
-0.5319864153862,
0.2809813916683197,
-0.5123519897460938,
0.5791462659835815,
-0.9483416676521301,
-0.3777010142803192,
-0.8107752203941345,
-0.08545103669166565,
-0.9271091818809509,
0.045928049832582474,
0.16626596450805664,
0.1603098213672638,
-0.575019359588623,
0.21089263260364532,
-0.4883512854576111,
0.16612090170383453,
0.47856250405311584,
0.1617375761270523,
-0.027256658300757408,
0.045437268912792206,
-0.06153881922364235,
-0.018353456631302834,
-0.46018046140670776,
-0.6399866342544556,
1.1041254997253418,
0.2341788113117218,
0.2571393549442291,
0.2678160071372986,
0.8417006731033325,
0.581666111946106,
0.3115086257457733,
-0.4771097004413605,
0.6143584847450256,
-0.17021210491657257,
-0.566956639289856,
-0.19888518750667572,
-0.29054075479507446,
-0.4260220229625702,
-0.4795950949192047,
-0.15354618430137634,
-0.7249504327774048,
0.43587526679039,
0.05455667898058891,
-0.3379741907119751,
0.2434030920267105,
-0.4959527552127838,
0.7950975894927979,
0.14914155006408691,
-0.5381467938423157,
0.007244952488690615,
-0.712900698184967,
0.30230969190597534,
0.0448882021009922,
0.581617534160614,
-0.24350939691066742,
-0.149064838886261,
1.1757166385650635,
-0.4970493018627167,
0.9613202214241028,
-0.19786956906318665,
0.3762759566307068,
0.552839457988739,
-0.2213493287563324,
0.011337838135659695,
0.14609386026859283,
-0.4753783643245697,
0.35416555404663086,
0.15951482951641083,
-0.6055854558944702,
-0.38833650946617126,
0.6082552075386047,
-1.041845440864563,
-0.1313600242137909,
-0.7014240622520447,
-0.4364132583141327,
-0.2851613163948059,
0.21498076617717743,
0.4131050407886505,
0.3718925416469574,
0.009738419204950333,
0.2340981811285019,
0.31316059827804565,
-0.2248196005821228,
0.2277197539806366,
0.04502216726541519,
-0.18586896359920502,
-0.8125105500221252,
0.8472399115562439,
0.11408112943172455,
-0.15240851044654846,
0.20430326461791992,
0.07742993533611298,
-0.4796158969402313,
-0.16226746141910553,
-0.415941447019577,
0.21296636760234833,
-0.7599945068359375,
-0.3867748975753784,
-0.6170710921287537,
-0.37927088141441345,
-1.0915392637252808,
-0.0988759770989418,
-0.08568287640810013,
-0.5228568911552429,
-0.3213701844215393,
-0.3143424987792969,
0.7869040966033936,
0.4310254752635956,
-0.49392935633659363,
0.42075324058532715,
-0.8371042609214783,
0.275991290807724,
-0.20520314574241638,
0.34875231981277466,
0.13499140739440918,
-0.49032342433929443,
-0.46812132000923157,
0.323759526014328,
-0.462877094745636,
-0.9940906167030334,
0.6139627695083618,
0.3230690360069275,
0.25908908247947693,
0.32583972811698914,
0.26009395718574524,
0.5637879371643066,
0.013608294539153576,
1.19655179977417,
-0.002728775842115283,
-0.8643889427185059,
0.6804730892181396,
-0.5318194627761841,
0.4369719922542572,
0.9458558559417725,
0.5868865251541138,
-0.5533136129379272,
-0.37806299328804016,
-0.5528420805931091,
-1.23214590549469,
0.6782169342041016,
0.22890256345272064,
0.20247496664524078,
-0.22716890275478363,
0.1998121589422226,
-0.2174508273601532,
0.30807575583457947,
-0.7231460213661194,
-0.5199505686759949,
-0.6088010668754578,
-0.7416772842407227,
0.025523245334625244,
-0.4858173429965973,
0.002863339614123106,
-0.5240819454193115,
0.8890107274055481,
0.25360867381095886,
0.3597397208213806,
0.3357270359992981,
0.0888923928141594,
-0.05679723992943764,
0.49353453516960144,
0.6020352840423584,
0.3709336817264557,
-0.35102254152297974,
-0.1085713803768158,
0.059868279844522476,
-0.8743470907211304,
-0.07395454496145248,
-0.10779405385255814,
-0.1693110316991806,
-0.1787235289812088,
0.4905758798122406,
0.6243016123771667,
0.03660975769162178,
-0.5183624029159546,
0.5030107498168945,
0.14442552626132965,
-0.41449761390686035,
-0.9090137481689453,
-0.12302746623754501,
-0.02873179316520691,
0.20052632689476013,
0.6374252438545227,
0.03560370206832886,
0.47306501865386963,
-0.4471603035926819,
0.162506103515625,
0.022573301568627357,
-0.38002580404281616,
-0.33181124925613403,
0.35852065682411194,
-0.11975765228271484,
-0.3294088542461395,
0.5134521126747131,
-0.22292378544807434,
-0.9784460663795471,
0.7940297722816467,
0.15488556027412415,
1.041534423828125,
-0.11154288798570633,
0.5692035555839539,
0.7574300765991211,
0.11101344227790833,
-0.11954539269208908,
0.8425461053848267,
-0.1865626722574234,
-0.6922387480735779,
-0.3066388666629791,
-0.8740599155426025,
-0.35728734731674194,
-0.13750864565372467,
-0.8215108513832092,
0.3948327302932739,
-0.6316685676574707,
-0.2528719902038574,
-0.2366306632757187,
0.26062485575675964,
-0.5730506777763367,
0.2512454092502594,
-0.17326916754245758,
1.1363623142242432,
-1.0193506479263306,
0.581234872341156,
0.7372084259986877,
-0.7820247411727905,
-1.2662652730941772,
-0.08576060831546783,
0.08780007809400558,
-0.3903988003730774,
0.8332635760307312,
0.006820359267294407,
-0.017119625583291054,
-0.02391653135418892,
-0.8264142870903015,
-0.7571316957473755,
1.0823630094528198,
-0.17120817303657532,
-0.0038220747373998165,
0.5690014362335205,
0.6593987941741943,
0.6441956162452698,
-0.4680095613002777,
0.31495293974876404,
0.4521694779396057,
0.8141695261001587,
0.2912917137145996,
-0.5323593020439148,
0.06218624487519264,
-0.7742393016815186,
-0.3747480809688568,
0.045187823474407196,
-0.667837381362915,
0.8369951248168945,
0.09649951010942459,
-0.07955598086118698,
-0.07823208719491959,
0.7056924104690552,
0.2683120667934418,
0.5716050267219543,
0.2940700650215149,
0.7013800144195557,
0.31702518463134766,
0.026527920737862587,
0.9114899635314941,
-0.47557777166366577,
0.29279401898384094,
0.9655287265777588,
-0.25808751583099365,
1.0117732286453247,
0.5665478110313416,
-0.3663441836833954,
0.6402959823608398,
0.5883157253265381,
-0.09869382530450821,
0.5340144038200378,
-0.1600654274225235,
-0.16510598361492157,
-0.03019961714744568,
-0.5866172909736633,
-0.49388495087623596,
0.4754294157028198,
0.3756200969219208,
-0.45097145438194275,
-0.0998682752251625,
-0.01603473536670208,
0.14251463115215302,
0.17237433791160583,
-0.5970081686973572,
0.6693938970565796,
-0.025805922225117683,
-0.28797492384910583,
0.2378459870815277,
-0.10314808785915375,
0.592411994934082,
-0.39486104249954224,
-0.1631922870874405,
-0.1074686050415039,
0.16852900385856628,
-0.7350221872329712,
-0.8886563777923584,
0.7387773990631104,
0.10258901119232178,
-0.45304059982299805,
-0.0650831088423729,
0.6420632004737854,
-0.3589801490306854,
-1.2353692054748535,
0.07267561554908752,
0.19650648534297943,
0.10206043720245361,
0.2092626541852951,
-0.752845823764801,
0.5173762440681458,
0.17801807820796967,
-0.39167100191116333,
0.17696520686149597,
0.35612303018569946,
-0.12744571268558502,
0.4855232238769531,
0.49510547518730164,
0.534389317035675,
-0.05282114818692207,
0.27964791655540466,
0.8021021485328674,
-0.7392206192016602,
-0.32677286863327026,
-0.8378906846046448,
0.6054781079292297,
-0.5523509979248047,
-0.3468305170536041,
0.9246213436126709,
0.7009429931640625,
0.777819812297821,
0.004164464771747589,
0.955342710018158,
-0.3057534992694855,
1.1234570741653442,
-0.17196321487426758,
0.971863329410553,
-0.5835533738136292,
0.06345891952514648,
-0.5448188185691833,
-0.6827329397201538,
-0.530569314956665,
0.7163949608802795,
-0.5170345902442932,
0.22445957362651825,
0.4539754390716553,
1.119720458984375,
0.059704408049583435,
0.2853153347969055,
-0.14955410361289978,
0.4949224293231964,
-0.02544456720352173,
0.22798733413219452,
0.2698117196559906,
-0.7017022967338562,
0.4057261645793915,
-0.7115969061851501,
-0.1786569356918335,
-0.06734610348939896,
-0.968389630317688,
-0.871391773223877,
-0.9833246469497681,
-0.39996594190597534,
-0.523485004901886,
-0.08798100054264069,
1.2812693119049072,
0.28089526295661926,
-1.183773398399353,
-0.538292407989502,
0.1442314088344574,
0.23714324831962585,
0.1430121213197708,
-0.3448353111743927,
0.7336893081665039,
0.1543264538049698,
-0.5520317554473877,
-0.459465354681015,
0.07102806866168976,
-0.1748003214597702,
-0.07608310133218765,
-0.06371595710515976,
-0.4951840043067932,
-0.06513434648513794,
0.4695097804069519,
0.4764789640903473,
-0.486274391412735,
-0.09965920448303223,
0.18624144792556763,
-0.206154927611351,
-0.049335263669490814,
0.3907462954521179,
-0.3607703447341919,
-0.127516970038414,
0.6349313259124756,
0.23398393392562866,
0.11393561959266663,
0.02772579900920391,
0.10822489857673645,
-0.4029441177845001,
0.20986619591712952,
0.3081372082233429,
0.17435823380947113,
0.5078597068786621,
-0.5955321192741394,
0.49240341782569885,
0.08918040245771408,
-0.39965200424194336,
-1.044314980506897,
-0.0660676658153534,
-1.4094436168670654,
0.1365082710981369,
1.320676565170288,
0.1981501281261444,
-0.5267308950424194,
-0.17707808315753937,
-0.43478667736053467,
0.5207744240760803,
-0.8683157563209534,
0.7209894061088562,
0.9556280970573425,
0.058837439864873886,
-0.26890191435813904,
-0.3313668668270111,
0.6002053618431091,
0.010018208995461464,
-0.6335063576698303,
-0.16107098758220673,
0.1192585676908493,
0.021421609446406364,
0.239520862698555,
0.8915210962295532,
-0.4056834578514099,
0.3672025203704834,
-0.1820206344127655,
0.26550304889678955,
-0.13767646253108978,
-0.0709744319319725,
-0.04500401020050049,
0.1889415979385376,
-0.01734231412410736,
-0.05630128085613251
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
Check/vverify | Check | 2021-09-11T05:13:10Z | 292 | 0 | null | [
"region:us"
] | 2021-09-11T05:13:10Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227645754814148,
-0.22568479180335999,
0.8622264862060547,
0.43461528420448303,
-0.52829909324646,
0.7012971639633179,
0.7915720343589783,
0.07618614286184311,
0.774603009223938,
0.2563217282295227,
-0.7852813005447388,
-0.22573819756507874,
-0.9104477167129517,
0.5715674161911011,
-0.3992327153682709,
0.5791246294975281,
-0.14494498074054718,
-0.10751134157180786,
0.28233814239501953,
-0.2768957316875458,
-0.5409227609634399,
-0.3685525059700012,
-1.1902780532836914,
0.061491698026657104,
0.5316582918167114,
0.7435142993927002,
0.7584062218666077,
0.3652168810367584,
0.643257737159729,
0.39322906732559204,
-0.231389120221138,
0.48270541429519653,
-0.04171793907880783,
0.0026038766372948885,
-0.3524438440799713,
-0.5516899824142456,
-0.28596580028533936,
0.07584768533706665,
1.096130132675171,
0.9666873812675476,
-0.28466421365737915,
0.05330856889486313,
-0.30636167526245117,
0.3308892846107483,
-0.4973427355289459,
0.3054097294807434,
-0.022506212815642357,
0.16318757832050323,
-0.704151451587677,
-0.5535351634025574,
0.012795033864676952,
-0.7361212968826294,
0.17926514148712158,
-0.6900812387466431,
0.8269097208976746,
0.18583208322525024,
1.1533749103546143,
0.14819422364234924,
-0.4624859392642975,
-0.8161761164665222,
-0.6538985371589661,
0.5711163878440857,
-0.32703715562820435,
0.3968023657798767,
0.7028225660324097,
-0.048573337495326996,
-0.9820331335067749,
-0.6745738387107849,
-0.4646624028682709,
0.2923974096775055,
0.3540281355381012,
-0.3411684036254883,
-0.17522093653678894,
-0.30589917302131653,
0.15791957080364227,
0.1281142681837082,
-0.48419976234436035,
-0.5543919801712036,
-0.547515869140625,
-0.39602574706077576,
0.6206656694412231,
0.34829503297805786,
0.24291737377643585,
-0.18884189426898956,
-0.3228582441806793,
0.0880165845155716,
-0.41608554124832153,
0.3402574062347412,
0.6335517168045044,
0.711402416229248,
-0.5811445713043213,
0.5602157711982727,
-0.049275897443294525,
0.7439709901809692,
0.11445585638284683,
-0.2747812569141388,
0.4146060049533844,
-0.14724673330783844,
0.055171847343444824,
0.42263513803482056,
0.3152443468570709,
0.284130722284317,
-0.3273696303367615,
0.20322275161743164,
-0.32151490449905396,
-0.3049626648426056,
-0.2233218252658844,
-0.29490745067596436,
-0.35921788215637207,
0.5492295622825623,
-0.3314017951488495,
-0.4285551905632019,
1.1431758403778076,
-0.42007699608802795,
-0.7302228808403015,
0.33156365156173706,
0.40652117133140564,
-0.0994473397731781,
-0.37146514654159546,
-0.052260853350162506,
-0.8458786010742188,
-0.007907438091933727,
0.749117910861969,
-0.7198969125747681,
0.33717361092567444,
0.47280627489089966,
0.741721510887146,
0.1965060532093048,
-0.14034466445446014,
-0.4294945299625397,
0.2971963882446289,
-0.8659994006156921,
0.6320174932479858,
-0.2013527899980545,
-1.0051976442337036,
0.11150483042001724,
0.8971704244613647,
-0.3789643347263336,
-1.2094870805740356,
1.0605157613754272,
-0.6887932419776917,
0.16017864644527435,
-0.6767609119415283,
-0.14661164581775665,
-0.0711846798658371,
-0.005095955915749073,
-0.6088155508041382,
0.7567099332809448,
0.5872676968574524,
-0.4995277523994446,
0.2142946422100067,
-0.2602984309196472,
-0.3915135860443115,
0.38824939727783203,
-0.0793546810746193,
-0.21858903765678406,
0.7138336896896362,
-0.6647078394889832,
-0.2693285048007965,
0.2942773103713989,
0.23689353466033936,
-0.357060968875885,
-0.793192446231842,
0.08478078991174698,
-0.05786222219467163,
1.5507503747940063,
-0.03868861123919487,
-0.35861143469810486,
-0.6793837547302246,
-1.1506236791610718,
-0.07070811837911606,
0.6886887550354004,
-0.9194992184638977,
-0.27839499711990356,
-0.046410251408815384,
-0.26169371604919434,
0.0899493545293808,
0.7390591502189636,
-1.119404911994934,
0.28327250480651855,
-0.0509270615875721,
-0.22794727981090546,
0.8271061182022095,
0.1538720428943634,
0.24758882820606232,
0.14913466572761536,
0.4295872747898102,
0.5277255773544312,
0.11115183681249619,
0.6835883259773254,
-0.3472035229206085,
-0.9694353938102722,
0.6154633164405823,
0.25266438722610474,
0.8121451139450073,
-0.49945372343063354,
0.2685092091560364,
0.2702546715736389,
-0.3409683108329773,
-0.5682377219200134,
-0.31028279662132263,
0.09025713056325912,
0.14930610358715057,
0.11142496764659882,
-0.5721707344055176,
-0.6576128005981445,
-0.9689136743545532,
-0.13590654730796814,
-0.43143755197525024,
-0.35715675354003906,
0.2100687474012375,
0.5792906880378723,
-1.197553277015686,
0.4128877520561218,
-0.7705622911453247,
-0.7038743495941162,
-0.010655623860657215,
-0.1933809518814087,
0.7540653944015503,
0.43240171670913696,
0.5033961534500122,
-0.6397145390510559,
-0.5661987066268921,
-0.22470159828662872,
-1.0333740711212158,
-0.13280484080314636,
0.24819664657115936,
0.3065738081932068,
-0.1342327892780304,
-0.2744964063167572,
-0.48740261793136597,
0.8100383877754211,
0.14789216220378876,
-0.5391896963119507,
0.5220770239830017,
-0.3020317256450653,
0.17224839329719543,
-0.6369158029556274,
-0.0691685602068901,
-0.6616761684417725,
-0.0009067117935046554,
-0.36083078384399414,
-0.5737435817718506,
0.14772331714630127,
0.07017547637224197,
-0.16065414249897003,
0.2880837917327881,
-0.909276008605957,
-0.001085443771444261,
-0.744221568107605,
0.37907224893569946,
0.06394767016172409,
-0.3145084083080292,
-0.017516745254397392,
1.000038743019104,
0.7784457206726074,
-0.3848040699958801,
0.7217439413070679,
0.4440040588378906,
0.19036099314689636,
0.7630518674850464,
-0.18725158274173737,
0.16478213667869568,
-0.5245421528816223,
-0.12161099910736084,
-0.8887605667114258,
-1.0982943773269653,
0.7320572137832642,
-0.61142498254776,
0.36542850732803345,
-0.42778611183166504,
0.25891590118408203,
-0.6919258832931519,
-0.038853395730257034,
0.4808599054813385,
-0.05936374515295029,
-0.6863952875137329,
0.5232571363449097,
0.453174889087677,
-0.2019244134426117,
-0.6609036326408386,
-0.5301569700241089,
0.39365917444229126,
0.6154112815856934,
-0.16390395164489746,
0.06878498196601868,
0.14941087365150452,
-0.5441920757293701,
-0.040802545845508575,
-0.3869187533855438,
-0.45766744017601013,
0.054224055260419846,
0.13053379952907562,
-0.005750161595642567,
-0.404820054769516,
-0.08680257946252823,
-0.35842007398605347,
-0.4656125009059906,
0.21876463294029236,
0.30119529366493225,
-0.04096343368291855,
-0.42599743604660034,
-0.36198148131370544,
-0.8881809115409851,
0.6719611883163452,
0.5370280146598816,
0.05281474441289902,
0.7555550932884216,
0.16819243133068085,
-0.801498293876648,
-0.13532207906246185,
-0.17607054114341736,
0.2696835994720459,
-0.5588056445121765,
0.13849826157093048,
-0.01348480861634016,
-0.06374907493591309,
0.2629791498184204,
0.25386205315589905,
-0.4300558567047119,
0.927625298500061,
-0.26152747869491577,
-0.3592526614665985,
0.7960182428359985,
0.5974737405776978,
0.4958309233188629,
0.16503198444843292,
-0.044541098177433014,
0.9007097482681274,
-1.196651816368103,
-0.6563172340393066,
-0.740954577922821,
-0.15945661067962646,
-0.43510857224464417,
-0.0321057066321373,
0.6254417300224304,
0.29009905457496643,
-0.13333925604820251,
0.47563934326171875,
-0.5243490934371948,
0.3556032180786133,
1.01198410987854,
0.357486754655838,
0.34357017278671265,
-0.7570232152938843,
-0.25157779455184937,
-0.14024297893047333,
-0.9998160600662231,
-0.2631372809410095,
0.8871029019355774,
0.2275265008211136,
0.8444608449935913,
0.5992542505264282,
0.6784538626670837,
0.136723130941391,
0.2523833215236664,
-0.305902898311615,
0.3920287489891052,
0.43760839104652405,
-1.040114164352417,
-0.427584171295166,
0.02141888067126274,
-0.9703332781791687,
-0.14227578043937683,
-0.03495054692029953,
-0.42617106437683105,
0.7681738138198853,
0.00016635804786346853,
-0.40767112374305725,
0.7732735872268677,
-0.455583393573761,
0.7562879323959351,
-0.4473649859428406,
-0.02663865126669407,
0.4699098467826843,
-0.707064151763916,
0.4677433967590332,
0.12878736853599548,
0.6205845475196838,
-0.015571946278214455,
-0.04078621417284012,
0.7104930877685547,
-0.912916362285614,
0.25438612699508667,
-0.6348398923873901,
0.22421303391456604,
0.24246959388256073,
0.5160625576972961,
0.5969963073730469,
0.4371241629123688,
0.10119915008544922,
-0.23920850455760956,
0.04115789383649826,
-0.8241121172904968,
-0.21050667762756348,
0.6975144147872925,
-0.7186897397041321,
-0.6864195466041565,
-1.2355334758758545,
0.14438661932945251,
0.27347052097320557,
0.3893046975135803,
0.7959297895431519,
0.5714079141616821,
0.12895449995994568,
0.6805253624916077,
0.9888579249382019,
-0.06885592639446259,
0.916691780090332,
0.3224475085735321,
0.09175165742635727,
-0.21944895386695862,
0.703682541847229,
0.2662784457206726,
-0.24707898497581482,
-0.11939744651317596,
0.20913469791412354,
-0.11069414764642715,
-0.5917618870735168,
-0.4999074935913086,
0.3701755404472351,
-0.6731783151626587,
-0.1830393373966217,
-0.6243732571601868,
-0.6043766736984253,
-0.5117589235305786,
0.0692739263176918,
-0.7147683501243591,
0.23979082703590393,
-0.7753568887710571,
-0.10574901103973389,
0.043233584612607956,
0.9792002439498901,
-0.5893121361732483,
0.5805228352546692,
-1.12185800075531,
0.19345775246620178,
-0.07949890196323395,
0.792106032371521,
0.2139579802751541,
-0.7344390153884888,
-0.39754197001457214,
-0.11592598259449005,
-0.37299054861068726,
-1.3576757907867432,
0.21404962241649628,
-0.24541425704956055,
0.2309398651123047,
0.6145407557487488,
0.13977038860321045,
0.5258244276046753,
-0.3432632088661194,
0.7029102444648743,
-0.05701681971549988,
-0.7069293856620789,
0.7934491038322449,
-0.5026893615722656,
0.4963533282279968,
0.9766002893447876,
0.5333840250968933,
-0.7984007596969604,
0.0357406847178936,
-1.041122555732727,
-0.6008694171905518,
0.38426393270492554,
0.1192895919084549,
-0.036011260002851486,
-0.665955662727356,
-0.05401992052793503,
-0.16143806278705597,
0.6043741703033447,
-1.0390695333480835,
-0.785835862159729,
0.25766894221305847,
0.527729868888855,
0.08168502151966095,
-0.5653401613235474,
0.2088075578212738,
-0.5444163084030151,
1.0657776594161987,
0.4510935842990875,
0.32744958996772766,
0.8406059145927429,
0.4649236798286438,
-0.38231605291366577,
0.09252502024173737,
0.7662692070007324,
0.6666229367256165,
-0.5239795446395874,
-0.2908026874065399,
-0.0882752314209938,
-0.9143400192260742,
0.05927504226565361,
0.11168874800205231,
-0.013456094078719616,
0.9082115292549133,
0.579308032989502,
0.253970205783844,
0.4514276385307312,
-0.7264610528945923,
0.8859445452690125,
-0.1495419293642044,
-0.1247284859418869,
-1.0677239894866943,
0.19486205279827118,
-0.23984935879707336,
0.5006400346755981,
1.0061330795288086,
0.525004506111145,
-0.047630541026592255,
-0.814338207244873,
-0.014736393466591835,
0.6939173936843872,
-0.7091119885444641,
-0.17449776828289032,
0.9448539614677429,
0.38471025228500366,
-1.295304536819458,
1.106776475906372,
-0.5381773710250854,
-0.5603318214416504,
0.9121303558349609,
0.5229570269584656,
1.1221849918365479,
-0.44204193353652954,
0.0008675068384036422,
0.2662239074707031,
0.4137844443321228,
0.5423170328140259,
1.086963176727295,
0.43141356110572815,
-0.7931071519851685,
0.8826581835746765,
-0.24776068329811096,
-0.40361127257347107,
-0.053475700318813324,
-0.4285985827445984,
0.16892209649085999,
-0.44061893224716187,
-0.10712965577840805,
-0.3444185256958008,
0.2854307293891907,
-0.70720374584198,
0.42807650566101074,
-0.08385643362998962,
0.8653066754341125,
-0.8553729057312012,
0.47207602858543396,
0.6354700326919556,
-0.33373481035232544,
-0.8508192300796509,
-0.2619847357273102,
-0.1144845262169838,
-0.6389466524124146,
0.30214792490005493,
-0.45541056990623474,
0.04439886659383774,
0.09623479843139648,
-0.6491509079933167,
-1.1778273582458496,
0.9093630909919739,
-0.6396117210388184,
-0.2784458100795746,
0.20463955402374268,
-0.1151471734046936,
0.28811654448509216,
-0.2524648904800415,
0.010661326348781586,
0.4187661111354828,
0.7489396333694458,
0.28446558117866516,
-0.7727053761482239,
-0.36948859691619873,
0.0015033691888675094,
-0.44474759697914124,
0.7582973837852478,
-0.6002099514007568,
1.1840776205062866,
-0.556353747844696,
-0.05965423583984375,
0.4438447952270508,
0.24690861999988556,
0.21076245605945587,
0.6629217267036438,
0.144208163022995,
0.7282260060310364,
1.0701210498809814,
-0.4083523154258728,
0.881180465221405,
0.26432785391807556,
0.47430840134620667,
0.7238510251045227,
-0.6487718820571899,
0.7513748407363892,
0.3181042969226837,
-0.5682927966117859,
0.9228019714355469,
1.290606141090393,
-0.15699151158332825,
0.8079370260238647,
0.05136425420641899,
-1.0815999507904053,
0.32583364844322205,
-0.20724764466285706,
-0.7530062794685364,
0.31502565741539,
0.19055864214897156,
-0.6920987367630005,
-0.5770313739776611,
-0.2404651641845703,
-0.35662832856178284,
-0.11552872508764267,
-0.763173520565033,
0.6720565557479858,
-0.01696927472949028,
-0.5103673934936523,
0.18857470154762268,
0.2877500653266907,
0.17368444800376892,
-0.5235736966133118,
-0.029393965378403664,
-0.22823575139045715,
0.2660652697086334,
-0.5670853853225708,
-0.5234523415565491,
0.5724437236785889,
-0.32430148124694824,
-0.5343252420425415,
0.1814749836921692,
0.7635869979858398,
-0.1692378669977188,
-0.4515411853790283,
0.3247268795967102,
0.6959530115127563,
0.16658465564250946,
0.42502784729003906,
-0.23511283099651337,
0.2448059767484665,
-0.08044828474521637,
-0.06651593744754791,
0.27714747190475464,
0.3449171483516693,
0.22435645759105682,
0.44501352310180664,
0.432856947183609,
-0.018087303265929222,
-0.10736560821533203,
-0.38282057642936707,
0.41249361634254456,
-0.9542783498764038,
-0.5713291168212891,
-0.630710780620575,
0.2740667760372162,
-0.023154327645897865,
-1.0836422443389893,
0.41451749205589294,
1.4406688213348389,
1.0359984636306763,
-0.4756380617618561,
1.0672271251678467,
-0.21818462014198303,
0.9594789743423462,
0.4148315489292145,
0.5420438051223755,
-0.6030403971672058,
0.038353078067302704,
-0.43644046783447266,
-1.0769634246826172,
-0.3571633994579315,
0.4539390504360199,
-0.02289981208741665,
-0.3429867625236511,
0.8725717663764954,
0.5887162089347839,
-0.3347362279891968,
-0.11728024482727051,
0.04848664999008179,
-0.02994159795343876,
-0.12433876097202301,
0.5145372152328491,
0.7648398280143738,
-0.9344298243522644,
-0.10680411010980606,
-0.21577700972557068,
-0.6382728815078735,
-0.5047284364700317,
-0.9632003903388977,
-0.12959381937980652,
-0.16037844121456146,
0.03534334897994995,
-0.5662809610366821,
0.002556905150413513,
1.2083250284194946,
0.5684951543807983,
-1.1113994121551514,
-0.5303782224655151,
0.33718496561050415,
0.39204245805740356,
-0.1874789297580719,
-0.24202406406402588,
0.2984570860862732,
0.1538221836090088,
-0.5908879041671753,
0.6875662803649902,
0.8089626431465149,
0.20888905227184296,
0.19554781913757324,
0.15893003344535828,
-0.8229469060897827,
-0.14913435280323029,
0.1744047999382019,
0.9450566172599792,
-0.939853310585022,
-0.7114846110343933,
-0.03168468549847603,
-0.2709487974643707,
-0.05765698105096817,
0.17102089524269104,
-0.4046342968940735,
0.5180684924125671,
0.34591469168663025,
0.49933499097824097,
0.056160878390073776,
-0.054746419191360474,
0.5409556031227112,
-0.9069050550460815,
0.09425969421863556,
0.41343602538108826,
0.4154110848903656,
-0.4000871777534485,
-0.5910195112228394,
0.6713417172431946,
1.0073974132537842,
-0.6594864130020142,
-0.8743263483047485,
-0.19846680760383606,
-1.0016000270843506,
0.04189697653055191,
0.6762756109237671,
0.5009528994560242,
-0.48065176606178284,
-0.4174492359161377,
-0.5617400407791138,
-0.1254679411649704,
-0.13699710369110107,
0.76216059923172,
1.1796802282333374,
-0.7432100772857666,
0.07975788414478302,
-1.0386393070220947,
0.6594986915588379,
-0.2419460266828537,
-0.3457580506801605,
-0.4864429533481598,
0.3832802176475525,
0.3523699641227722,
0.44048118591308594,
0.6148120164871216,
0.14084689319133759,
0.8338428735733032,
0.31260576844215393,
-0.17026858031749725,
0.2698982357978821,
-0.4559198319911957,
-0.02893332578241825,
-0.05796258896589279,
0.3101596236228943,
-1.026215672492981
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
Fraser/mnist-text-default | Fraser | 2021-02-22T10:48:20Z | 292 | 0 | null | [
"region:us"
] | 2021-02-22T10:48:20Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | MNIST dataset adapted to a text-based representation.
This allows testing interpolation quality for Transformer-VAEs.
System is heavily inspired by Matthew Rayfield's work https://youtu.be/Z9K3cwSL6uM
Works by quantising each MNIST pixel into one of 64 characters.
Every sample has an up & down version to encourage the model to learn rotation invarient features.
Use `.array_to_text(` and `.text_to_array(` methods to test your generated data.
Data format:
- text: (30 x 28 tokens, 840 tokens total): Textual representation of MNIST digit, for example:
```
00 down ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
01 down ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
02 down ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
03 down ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
04 down ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
05 down ! ! ! ! ! ! ! ! ! ! ! ! ! % % % @ C L ' J a ^ @ ! ! ! !
06 down ! ! ! ! ! ! ! ! ( * 8 G K ` ` ` ` ` Y L ` ] Q 1 ! ! ! !
07 down ! ! ! ! ! ! ! - \ ` ` ` ` ` ` ` ` _ 8 5 5 / * ! ! ! ! !
08 down ! ! ! ! ! ! ! % W ` ` ` ` ` R N ^ ] ! ! ! ! ! ! ! ! ! !
09 down ! ! ! ! ! ! ! ! 5 H ; ` ` T # ! + G ! ! ! ! ! ! ! ! ! !
10 down ! ! ! ! ! ! ! ! ! $ ! G ` 7 ! ! ! ! ! ! ! ! ! ! ! ! ! !
11 down ! ! ! ! ! ! ! ! ! ! ! C ` P ! ! ! ! ! ! ! ! ! ! ! ! ! !
12 down ! ! ! ! ! ! ! ! ! ! ! # P ` 2 ! ! ! ! ! ! ! ! ! ! ! ! !
13 down ! ! ! ! ! ! ! ! ! ! ! ! ) ] Y I < ! ! ! ! ! ! ! ! ! ! !
14 down ! ! ! ! ! ! ! ! ! ! ! ! ! 5 ] ` ` > ' ! ! ! ! ! ! ! ! !
15 down ! ! ! ! ! ! ! ! ! ! ! ! ! ! , O ` ` F ' ! ! ! ! ! ! ! !
16 down ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! % 8 ` ` O ! ! ! ! ! ! ! !
17 down ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! _ ` _ 1 ! ! ! ! ! ! !
18 down ! ! ! ! ! ! ! ! ! ! ! ! ! ! , A N ` ` T ! ! ! ! ! ! ! !
19 down ! ! ! ! ! ! ! ! ! ! ! ! * F Z ` ` ` _ N ! ! ! ! ! ! ! !
20 down ! ! ! ! ! ! ! ! ! ! ' = X ` ` ` ` S 4 ! ! ! ! ! ! ! ! !
21 down ! ! ! ! ! ! ! ! & 1 V ` ` ` ` R 5 ! ! ! ! ! ! ! ! ! ! !
22 down ! ! ! ! ! ! % K W ` ` ` ` Q 5 # ! ! ! ! ! ! ! ! ! ! ! !
23 down ! ! ! ! . L Y ` ` ` ` ^ B # ! ! ! ! ! ! ! ! ! ! ! ! ! !
24 down ! ! ! ! C ` ` ` V B B % ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
25 down ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
26 down ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
27 down ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
```
- label: Just a number with the texts matching label. | [
-0.7578458189964294,
-0.24499255418777466,
0.30201852321624756,
0.4191212058067322,
-0.23903720080852509,
0.021906880661845207,
-0.021265296265482903,
-0.13830254971981049,
0.47097882628440857,
0.7163534164428711,
-0.8078325390815735,
-0.7220736742019653,
-0.8014668822288513,
0.21601271629333496,
-0.4241977035999298,
1.0012613534927368,
0.2774576246738434,
-0.09296657145023346,
0.08385281264781952,
-0.2754175662994385,
-0.6020594239234924,
-0.34429457783699036,
0.03361330181360245,
-0.3677670955657959,
0.2638111114501953,
0.6199464201927185,
1.1590697765350342,
0.7922570705413818,
0.6520870923995972,
0.24813035130500793,
-0.13288120925426483,
0.2738134264945984,
-0.43206775188446045,
-0.09666358679533005,
0.14767184853553772,
-0.2575282156467438,
-0.2883131504058838,
-0.20507855713367462,
0.485013872385025,
0.7196791172027588,
-0.03148378059267998,
0.5681186318397522,
-0.11217600852251053,
0.9618737697601318,
-0.5821726322174072,
-0.15376608073711395,
-0.6307616829872131,
0.15999484062194824,
-0.14063647389411926,
-0.47763168811798096,
-0.34000682830810547,
-0.5245687961578369,
-0.14251063764095306,
-0.7811168432235718,
0.2972728908061981,
0.21584552526474,
1.658931016921997,
0.38874903321266174,
-0.4113083481788635,
-0.4247763454914093,
-0.635451078414917,
0.929642379283905,
-1.0667648315429688,
0.2920655310153961,
0.5546479821205139,
0.2528960108757019,
-0.3651205897331238,
-0.7947682738304138,
-1.0574623346328735,
-0.07053534686565399,
-0.30538859963417053,
0.4289532005786896,
-0.1737435758113861,
-0.28935977816581726,
0.5813114643096924,
0.5236202478408813,
-0.917351484298706,
0.07319314777851105,
-0.6822631359100342,
-0.22529184818267822,
0.909426748752594,
0.4176305830478668,
0.3678804934024811,
-0.7700318098068237,
-0.9263885617256165,
-0.2599049210548401,
-0.5892323851585388,
0.23701003193855286,
0.7168053984642029,
0.3064420819282532,
-0.31764358282089233,
1.0752229690551758,
-0.07536071538925171,
0.8353980183601379,
0.25088825821876526,
-0.21429215371608734,
0.791374146938324,
-0.5995012521743774,
-0.45754244923591614,
-0.12979835271835327,
1.0816640853881836,
0.8588685393333435,
0.5042479634284973,
0.3283744752407074,
-0.41509202122688293,
0.0422891303896904,
0.40285107493400574,
-1.1795856952667236,
-0.497279554605484,
0.3834313452243805,
-0.8548506498336792,
-0.16994906961917877,
0.2812753915786743,
-1.2646573781967163,
-0.037093035876750946,
-0.5904698371887207,
0.9074934124946594,
-0.6947857737541199,
-0.3942020535469055,
0.159180149435997,
-0.23805859684944153,
0.3548896908760071,
-0.0844937264919281,
-0.9487671256065369,
0.3582797050476074,
0.5250716209411621,
0.9859086275100708,
-0.10711885243654251,
-0.10867270082235336,
-0.0633188784122467,
-0.17640021443367004,
-0.548442542552948,
0.778370201587677,
-0.485671728849411,
-0.6130290627479553,
-0.3133319914340973,
0.1215585470199585,
-0.05333402752876282,
-0.628907322883606,
0.22404584288597107,
-0.418485552072525,
0.163564994931221,
-0.33888155221939087,
-0.4910676181316376,
-0.35721299052238464,
0.12673456966876984,
-0.8953866958618164,
1.4543581008911133,
0.40236788988113403,
-0.7554224133491516,
0.5974254012107849,
-0.7644369602203369,
-0.0839591845870018,
-0.17521466314792633,
-0.44214174151420593,
-1.0190070867538452,
-0.15752214193344116,
0.39621075987815857,
0.40788179636001587,
-0.33671942353248596,
0.12458619475364685,
-0.4022383689880371,
-0.6799128651618958,
0.14924480020999908,
-0.5710258483886719,
1.123284935951233,
0.34526684880256653,
-0.5713990926742554,
0.1899748146533966,
-1.4086002111434937,
0.3181794285774231,
0.21461838483810425,
-0.20238392055034637,
-0.037017010152339935,
-0.3244929611682892,
0.010442078113555908,
0.2774163782596588,
-0.007736728060990572,
-0.43857690691947937,
0.2251448631286621,
-0.3620069622993469,
0.2073201984167099,
0.927274227142334,
0.39098668098449707,
0.27349647879600525,
-0.7675061821937561,
0.7693454623222351,
0.4463311433792114,
0.12366024404764175,
-0.2951488196849823,
-0.5643116235733032,
-0.9274005889892578,
-0.478850394487381,
0.2956870496273041,
0.6527546048164368,
-0.8120896816253662,
0.8572308421134949,
-0.5895289182662964,
-0.642497181892395,
-0.49850785732269287,
-0.26257625222206116,
0.3596494793891907,
0.3167928457260132,
0.5594320893287659,
0.0148096838966012,
-0.7634891271591187,
-1.4223405122756958,
-0.07802050560712814,
-0.009721565991640091,
0.0010442223865538836,
-0.0020328895188868046,
0.8133646249771118,
-0.038437314331531525,
1.2591065168380737,
-0.6735390424728394,
-0.3002839982509613,
0.1760093718767166,
-0.03737282380461693,
1.130669116973877,
0.6044076085090637,
1.0647661685943604,
-0.976697564125061,
-0.9878281950950623,
0.06692938506603241,
-0.5049598813056946,
0.013289235532283783,
-0.030200542882084846,
-0.23128657042980194,
-0.027511032298207283,
0.33211544156074524,
-0.5384467840194702,
0.8978502154350281,
0.6453359723091125,
-0.7261357307434082,
0.9478038549423218,
-0.2955890893936157,
0.25136634707450867,
-1.4889569282531738,
0.1799563616514206,
-0.14784762263298035,
-0.17888043820858002,
-0.7148864269256592,
-0.3551758825778961,
0.250673770904541,
0.1066155880689621,
-0.2600264847278595,
0.39613863825798035,
-0.5370194315910339,
-0.2619495987892151,
-0.037388529628515244,
-0.43097713589668274,
-0.09612882137298584,
0.9122103452682495,
-0.31971389055252075,
1.3423939943313599,
0.4044068455696106,
-0.6511235237121582,
0.16625168919563293,
0.29595378041267395,
-0.5645590424537659,
0.7192246317863464,
-0.6072117686271667,
-0.0871572196483612,
-0.3946456015110016,
-0.05136346071958542,
-1.2453402280807495,
-0.11942232400178909,
0.3477494418621063,
-0.7560798525810242,
-0.0036729942075908184,
-0.2384480983018875,
-0.6572031378746033,
-0.5201032757759094,
-0.4275173544883728,
0.2706288993358612,
0.5435420870780945,
-0.4582730531692505,
0.5501471161842346,
0.2114393413066864,
0.027735847979784012,
-0.8856631517410278,
-0.6632617115974426,
-0.15770290791988373,
-0.3723280429840088,
-0.698945939540863,
0.6127740144729614,
-0.09993672370910645,
-0.09038848429918289,
0.25879916548728943,
-0.16190509498119354,
-0.142621248960495,
-0.29439935088157654,
0.5319364070892334,
0.4035544991493225,
-0.21386028826236725,
-0.09158077836036682,
-0.05330825224518776,
-0.34680402278900146,
0.12464553117752075,
-0.10015316307544708,
1.0936740636825562,
-0.06234774366021156,
-0.4944336712360382,
-0.40499526262283325,
0.45435988903045654,
0.9377681612968445,
-0.3400301933288574,
0.6697786450386047,
0.562221348285675,
-0.47459837794303894,
-0.2949855327606201,
-0.17073029279708862,
0.04465177655220032,
-0.5373426079750061,
0.36250901222229004,
-0.8508175015449524,
-0.54715895652771,
1.187233328819275,
0.4444766938686371,
0.1675335019826889,
1.0859037637710571,
0.7572610974311829,
-0.2733011543750763,
1.0579702854156494,
0.2393798977136612,
0.33084914088249207,
0.42077648639678955,
-0.8213326334953308,
0.1290832757949829,
-0.7532479763031006,
-0.5219361782073975,
-0.5880208015441895,
-0.6872165203094482,
-0.9456558227539062,
-0.4451511800289154,
0.5686807036399841,
-0.012583599425852299,
-0.6030333042144775,
0.6121404767036438,
-0.7977196574211121,
0.5299735069274902,
0.6631813049316406,
0.2357390969991684,
0.16210582852363586,
0.19713376462459564,
-0.48217132687568665,
-0.32993045449256897,
-0.6002985835075378,
-0.33443328738212585,
1.509056568145752,
0.09626316279172897,
0.7250971794128418,
0.4419047236442566,
0.6525248289108276,
0.5962421298027039,
0.3264807462692261,
-0.6741341352462769,
0.47761252522468567,
-0.40634459257125854,
-0.8012852072715759,
-0.18658919632434845,
-0.4267663061618805,
-1.102876901626587,
0.6151250600814819,
-0.2395317107439041,
-0.9305814504623413,
0.6589788198471069,
0.006878429092466831,
-0.5517969131469727,
0.45403754711151123,
-0.46848607063293457,
0.6568599939346313,
0.2037966251373291,
0.015248027630150318,
-0.008211490698158741,
-0.8611703515052795,
0.5054567456245422,
-0.027598243206739426,
0.24761369824409485,
-0.32477879524230957,
0.3446926772594452,
0.6048952341079712,
-0.9155018329620361,
0.7420344948768616,
-0.06193547695875168,
-0.09320960938930511,
0.6103078126907349,
0.09914881736040115,
0.6860705614089966,
0.07322467118501663,
-0.2143407016992569,
-0.008093751966953278,
0.3647705614566803,
-0.51507967710495,
-0.4670645594596863,
0.5854443311691284,
-1.115106225013733,
-0.40789446234703064,
-0.58756023645401,
-0.5007135272026062,
0.15560321509838104,
0.21683089435100555,
0.7200179100036621,
0.6710467338562012,
0.5048432946205139,
0.4670132100582123,
0.5234422087669373,
-0.21146555244922638,
0.5864657759666443,
0.1896590143442154,
-0.5170955657958984,
-0.9673073291778564,
1.1250548362731934,
0.4419127106666565,
0.6035975217819214,
0.2299274355173111,
0.1214909628033638,
-0.6587687134742737,
-0.4582667052745819,
-0.5568943619728088,
0.039967454969882965,
-0.8802890181541443,
-0.5728931427001953,
-0.5976822376251221,
-0.636705756187439,
-0.3102828860282898,
-0.08386412262916565,
-0.2682287096977234,
-0.5044184923171997,
-0.23465408384799957,
-0.09052032232284546,
0.6671245098114014,
0.6281443238258362,
-0.20725250244140625,
0.4550227224826813,
-0.8193334937095642,
0.5182400941848755,
0.09362892806529999,
0.530811607837677,
-0.18561607599258423,
-0.8356071710586548,
0.10948273539543152,
-0.026172956451773643,
-0.30418774485588074,
-1.4265714883804321,
0.5889330506324768,
-0.05797776207327843,
0.6041467189788818,
0.33384969830513,
0.19088114798069,
1.0845978260040283,
-0.2806519567966461,
0.774256706237793,
0.4781450927257538,
-1.070336103439331,
0.3092785179615021,
-0.415778249502182,
0.008604961447417736,
0.6308927536010742,
0.4076632261276245,
-0.8301458954811096,
-0.24030788242816925,
-0.8778123259544373,
-1.081350564956665,
0.8532217144966125,
0.608475387096405,
-0.11854389309883118,
0.006001973990350962,
0.2186494767665863,
0.26053744554519653,
0.15868373215198517,
-0.8300417065620422,
-0.5822420716285706,
-0.6012953519821167,
-0.5952597260475159,
0.11487259715795517,
-0.019545134156942368,
-0.015704931691288948,
-0.26472821831703186,
0.5846519470214844,
-0.18291808664798737,
0.5353306531906128,
0.2383960336446762,
0.057199981063604355,
-0.023238632827997208,
-0.022512497380375862,
1.0590744018554688,
0.9090313911437988,
-0.5042446255683899,
0.30930212140083313,
0.1329798549413681,
-0.7035039663314819,
0.31422141194343567,
-0.2031179964542389,
-0.422931045293808,
0.22648635506629944,
0.4577193856239319,
0.9219321608543396,
-0.14435051381587982,
-0.4847806990146637,
0.6346307396888733,
0.2493659108877182,
-0.645654559135437,
-0.7910510897636414,
-0.02331647276878357,
-0.1691133975982666,
0.11691024154424667,
0.39786890149116516,
0.26793521642684937,
0.032049957662820816,
-0.2304883450269699,
0.550667941570282,
0.2636744976043701,
-0.547452986240387,
-0.288851797580719,
0.5747769474983215,
-0.38191699981689453,
-0.41364800930023193,
0.660122275352478,
-0.19231770932674408,
-0.6645585298538208,
1.398231029510498,
0.6437239646911621,
0.6941077709197998,
-0.21860447525978088,
0.10452552884817123,
0.9122805595397949,
0.6703495383262634,
0.11990874260663986,
0.9876007437705994,
0.288683146238327,
-0.7738732695579529,
-0.3398745357990265,
-0.7333537936210632,
-0.05471540242433548,
0.45401903986930847,
-0.9242508411407471,
0.364510715007782,
-0.5684564709663391,
-0.5691810846328735,
0.10543973743915558,
-0.08854564279317856,
-0.9442169070243835,
0.454081654548645,
-0.2840138375759125,
1.0152840614318848,
-1.0072425603866577,
0.6085740923881531,
0.5637320280075073,
-0.5280684232711792,
-1.1185641288757324,
-0.019486311823129654,
-0.10628563910722733,
-1.1184520721435547,
0.7607715725898743,
0.3064497709274292,
0.1327088177204132,
0.19842460751533508,
-0.5441996455192566,
-1.4975554943084717,
1.4655259847640991,
-0.009466081857681274,
-0.6767175793647766,
0.42964890599250793,
0.45621663331985474,
0.3814062178134918,
-0.10005467385053635,
0.4393253028392792,
0.46751436591148376,
0.8817915320396423,
0.08727343380451202,
-0.8599788546562195,
0.22211109101772308,
-0.4890749454498291,
0.2558508515357971,
0.5664108991622925,
-0.9014297723770142,
1.2072147130966187,
-0.12177544832229614,
-0.2612415850162506,
0.07830198854207993,
0.8478429913520813,
0.6786900758743286,
0.18849901854991913,
0.8750143647193909,
0.7098015546798706,
0.5275346040725708,
-0.401287317276001,
0.8733364343643188,
-0.4857005774974823,
0.7955180406570435,
0.938101589679718,
0.15306293964385986,
0.8132299780845642,
0.6027444005012512,
-0.6139221787452698,
0.6248398423194885,
0.8357464671134949,
-0.4499439299106598,
0.6575455665588379,
0.5372678637504578,
-0.0023173801600933075,
-0.12907949090003967,
0.25483083724975586,
-0.4671211540699005,
0.36998099088668823,
0.6379455327987671,
-0.49375638365745544,
-0.20247147977352142,
-0.2329847514629364,
0.07878916710615158,
0.1870686411857605,
-0.34103161096572876,
0.4891771376132965,
-0.10696077346801758,
-0.6176135540008545,
0.8060474395751953,
0.010808447375893593,
0.5358320474624634,
-0.4824027717113495,
-0.10888596624135971,
-0.17161846160888672,
0.15913665294647217,
-0.47204744815826416,
-1.3199999332427979,
0.509178102016449,
-0.19560612738132477,
-0.5023429989814758,
0.06758280098438263,
0.569754958152771,
-0.3723536431789398,
-0.8112738132476807,
0.31649062037467957,
0.23505260050296783,
-0.04920738935470581,
0.26830771565437317,
-0.5007762312889099,
-0.13780032098293304,
0.1870381236076355,
-0.3100541830062866,
-0.07758962363004684,
0.5452192425727844,
-0.07295189052820206,
0.7210357189178467,
0.986152172088623,
-0.04535394906997681,
0.5827279686927795,
0.0499681681394577,
1.0999059677124023,
-0.9834287166595459,
-0.6643935441970825,
-1.0122148990631104,
0.842693567276001,
-0.14531056582927704,
-0.7817285656929016,
0.6364271640777588,
0.8839441537857056,
0.5806252956390381,
-0.20361386239528656,
0.7362837195396423,
-0.06743471324443817,
0.49747234582901,
-0.8902544379234314,
0.8550383448600769,
-0.7129267454147339,
-0.08004935085773468,
-0.18890723586082458,
-1.127588152885437,
-0.38787034153938293,
0.7279036641120911,
-0.06794746965169907,
0.2071494609117508,
0.6723731756210327,
1.114397406578064,
-0.1527128666639328,
0.03699251636862755,
0.25126004219055176,
0.12676113843917847,
0.47638407349586487,
0.5483079552650452,
0.8594837188720703,
-0.6426537036895752,
0.6396582722663879,
-0.5671457052230835,
-0.04466908052563667,
-0.2856661379337311,
-0.7434011101722717,
-0.9254966974258423,
-0.7507727146148682,
-0.03241898491978645,
-0.645088791847229,
-0.18213725090026855,
1.1404087543487549,
0.8314552903175354,
-1.026895523071289,
-0.07425215095281601,
-0.04621671885251999,
0.006766381673514843,
-0.4524639844894409,
-0.3818756639957428,
0.7460220456123352,
-0.06419732421636581,
-0.7792081236839294,
0.25834929943084717,
0.2681134045124054,
0.3706662654876709,
-0.36542966961860657,
-0.12483858317136765,
-0.036776602268218994,
0.2456701248884201,
0.38058918714523315,
-0.014123775064945221,
-0.787093460559845,
-0.5518741607666016,
0.09078632295131683,
-0.25111326575279236,
0.4373151361942291,
0.4328356981277466,
-0.43475112318992615,
0.31281647086143494,
0.8487024903297424,
0.38399749994277954,
0.668449878692627,
0.20255056023597717,
0.1897493153810501,
-0.8762819766998291,
-0.02236265130341053,
0.26152125000953674,
0.1549752801656723,
-0.12268660962581635,
-0.28327465057373047,
0.5343800187110901,
0.2545521557331085,
-0.6253652572631836,
-0.9379549026489258,
0.266471266746521,
-1.2457349300384521,
-0.10402744263410568,
1.0387753248214722,
-0.004594861064106226,
-0.16510933637619019,
-0.10667320340871811,
-0.15623727440834045,
0.08814903348684311,
-0.5082313418388367,
0.7684491276741028,
0.7619903087615967,
-0.07616416364908218,
-0.06802454590797424,
-0.711563229560852,
0.39848271012306213,
0.5355148315429688,
-0.9870967268943787,
-0.16469965875148773,
0.2676140069961548,
0.571013867855072,
0.5440698862075806,
0.6957873106002808,
-0.2706596851348877,
0.0921071395277977,
0.26707521080970764,
0.30875280499458313,
-0.07816404104232788,
-0.3449573516845703,
-0.08910150080919266,
0.24283534288406372,
-0.5422070026397705,
-0.5492144823074341
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
GEM-submissions/v1-outputs-and-scores | GEM-submissions | 2022-02-25T11:48:06Z | 292 | 0 | null | [
"region:us"
] | 2022-02-25T11:48:06Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227645754814148,
-0.22568479180335999,
0.8622264862060547,
0.43461528420448303,
-0.52829909324646,
0.7012971639633179,
0.7915720343589783,
0.07618614286184311,
0.774603009223938,
0.2563217282295227,
-0.7852813005447388,
-0.22573819756507874,
-0.9104477167129517,
0.5715674161911011,
-0.3992327153682709,
0.5791246294975281,
-0.14494498074054718,
-0.10751134157180786,
0.28233814239501953,
-0.2768957316875458,
-0.5409227609634399,
-0.3685525059700012,
-1.1902780532836914,
0.061491698026657104,
0.5316582918167114,
0.7435142993927002,
0.7584062218666077,
0.3652168810367584,
0.643257737159729,
0.39322906732559204,
-0.231389120221138,
0.48270541429519653,
-0.04171793907880783,
0.0026038766372948885,
-0.3524438440799713,
-0.5516899824142456,
-0.28596580028533936,
0.07584768533706665,
1.096130132675171,
0.9666873812675476,
-0.28466421365737915,
0.05330856889486313,
-0.30636167526245117,
0.3308892846107483,
-0.4973427355289459,
0.3054097294807434,
-0.022506212815642357,
0.16318757832050323,
-0.704151451587677,
-0.5535351634025574,
0.012795033864676952,
-0.7361212968826294,
0.17926514148712158,
-0.6900812387466431,
0.8269097208976746,
0.18583208322525024,
1.1533749103546143,
0.14819422364234924,
-0.4624859392642975,
-0.8161761164665222,
-0.6538985371589661,
0.5711163878440857,
-0.32703715562820435,
0.3968023657798767,
0.7028225660324097,
-0.048573337495326996,
-0.9820331335067749,
-0.6745738387107849,
-0.4646624028682709,
0.2923974096775055,
0.3540281355381012,
-0.3411684036254883,
-0.17522093653678894,
-0.30589917302131653,
0.15791957080364227,
0.1281142681837082,
-0.48419976234436035,
-0.5543919801712036,
-0.547515869140625,
-0.39602574706077576,
0.6206656694412231,
0.34829503297805786,
0.24291737377643585,
-0.18884189426898956,
-0.3228582441806793,
0.0880165845155716,
-0.41608554124832153,
0.3402574062347412,
0.6335517168045044,
0.711402416229248,
-0.5811445713043213,
0.5602157711982727,
-0.049275897443294525,
0.7439709901809692,
0.11445585638284683,
-0.2747812569141388,
0.4146060049533844,
-0.14724673330783844,
0.055171847343444824,
0.42263513803482056,
0.3152443468570709,
0.284130722284317,
-0.3273696303367615,
0.20322275161743164,
-0.32151490449905396,
-0.3049626648426056,
-0.2233218252658844,
-0.29490745067596436,
-0.35921788215637207,
0.5492295622825623,
-0.3314017951488495,
-0.4285551905632019,
1.1431758403778076,
-0.42007699608802795,
-0.7302228808403015,
0.33156365156173706,
0.40652117133140564,
-0.0994473397731781,
-0.37146514654159546,
-0.052260853350162506,
-0.8458786010742188,
-0.007907438091933727,
0.749117910861969,
-0.7198969125747681,
0.33717361092567444,
0.47280627489089966,
0.741721510887146,
0.1965060532093048,
-0.14034466445446014,
-0.4294945299625397,
0.2971963882446289,
-0.8659994006156921,
0.6320174932479858,
-0.2013527899980545,
-1.0051976442337036,
0.11150483042001724,
0.8971704244613647,
-0.3789643347263336,
-1.2094870805740356,
1.0605157613754272,
-0.6887932419776917,
0.16017864644527435,
-0.6767609119415283,
-0.14661164581775665,
-0.0711846798658371,
-0.005095955915749073,
-0.6088155508041382,
0.7567099332809448,
0.5872676968574524,
-0.4995277523994446,
0.2142946422100067,
-0.2602984309196472,
-0.3915135860443115,
0.38824939727783203,
-0.0793546810746193,
-0.21858903765678406,
0.7138336896896362,
-0.6647078394889832,
-0.2693285048007965,
0.2942773103713989,
0.23689353466033936,
-0.357060968875885,
-0.793192446231842,
0.08478078991174698,
-0.05786222219467163,
1.5507503747940063,
-0.03868861123919487,
-0.35861143469810486,
-0.6793837547302246,
-1.1506236791610718,
-0.07070811837911606,
0.6886887550354004,
-0.9194992184638977,
-0.27839499711990356,
-0.046410251408815384,
-0.26169371604919434,
0.0899493545293808,
0.7390591502189636,
-1.119404911994934,
0.28327250480651855,
-0.0509270615875721,
-0.22794727981090546,
0.8271061182022095,
0.1538720428943634,
0.24758882820606232,
0.14913466572761536,
0.4295872747898102,
0.5277255773544312,
0.11115183681249619,
0.6835883259773254,
-0.3472035229206085,
-0.9694353938102722,
0.6154633164405823,
0.25266438722610474,
0.8121451139450073,
-0.49945372343063354,
0.2685092091560364,
0.2702546715736389,
-0.3409683108329773,
-0.5682377219200134,
-0.31028279662132263,
0.09025713056325912,
0.14930610358715057,
0.11142496764659882,
-0.5721707344055176,
-0.6576128005981445,
-0.9689136743545532,
-0.13590654730796814,
-0.43143755197525024,
-0.35715675354003906,
0.2100687474012375,
0.5792906880378723,
-1.197553277015686,
0.4128877520561218,
-0.7705622911453247,
-0.7038743495941162,
-0.010655623860657215,
-0.1933809518814087,
0.7540653944015503,
0.43240171670913696,
0.5033961534500122,
-0.6397145390510559,
-0.5661987066268921,
-0.22470159828662872,
-1.0333740711212158,
-0.13280484080314636,
0.24819664657115936,
0.3065738081932068,
-0.1342327892780304,
-0.2744964063167572,
-0.48740261793136597,
0.8100383877754211,
0.14789216220378876,
-0.5391896963119507,
0.5220770239830017,
-0.3020317256450653,
0.17224839329719543,
-0.6369158029556274,
-0.0691685602068901,
-0.6616761684417725,
-0.0009067117935046554,
-0.36083078384399414,
-0.5737435817718506,
0.14772331714630127,
0.07017547637224197,
-0.16065414249897003,
0.2880837917327881,
-0.909276008605957,
-0.001085443771444261,
-0.744221568107605,
0.37907224893569946,
0.06394767016172409,
-0.3145084083080292,
-0.017516745254397392,
1.000038743019104,
0.7784457206726074,
-0.3848040699958801,
0.7217439413070679,
0.4440040588378906,
0.19036099314689636,
0.7630518674850464,
-0.18725158274173737,
0.16478213667869568,
-0.5245421528816223,
-0.12161099910736084,
-0.8887605667114258,
-1.0982943773269653,
0.7320572137832642,
-0.61142498254776,
0.36542850732803345,
-0.42778611183166504,
0.25891590118408203,
-0.6919258832931519,
-0.038853395730257034,
0.4808599054813385,
-0.05936374515295029,
-0.6863952875137329,
0.5232571363449097,
0.453174889087677,
-0.2019244134426117,
-0.6609036326408386,
-0.5301569700241089,
0.39365917444229126,
0.6154112815856934,
-0.16390395164489746,
0.06878498196601868,
0.14941087365150452,
-0.5441920757293701,
-0.040802545845508575,
-0.3869187533855438,
-0.45766744017601013,
0.054224055260419846,
0.13053379952907562,
-0.005750161595642567,
-0.404820054769516,
-0.08680257946252823,
-0.35842007398605347,
-0.4656125009059906,
0.21876463294029236,
0.30119529366493225,
-0.04096343368291855,
-0.42599743604660034,
-0.36198148131370544,
-0.8881809115409851,
0.6719611883163452,
0.5370280146598816,
0.05281474441289902,
0.7555550932884216,
0.16819243133068085,
-0.801498293876648,
-0.13532207906246185,
-0.17607054114341736,
0.2696835994720459,
-0.5588056445121765,
0.13849826157093048,
-0.01348480861634016,
-0.06374907493591309,
0.2629791498184204,
0.25386205315589905,
-0.4300558567047119,
0.927625298500061,
-0.26152747869491577,
-0.3592526614665985,
0.7960182428359985,
0.5974737405776978,
0.4958309233188629,
0.16503198444843292,
-0.044541098177433014,
0.9007097482681274,
-1.196651816368103,
-0.6563172340393066,
-0.740954577922821,
-0.15945661067962646,
-0.43510857224464417,
-0.0321057066321373,
0.6254417300224304,
0.29009905457496643,
-0.13333925604820251,
0.47563934326171875,
-0.5243490934371948,
0.3556032180786133,
1.01198410987854,
0.357486754655838,
0.34357017278671265,
-0.7570232152938843,
-0.25157779455184937,
-0.14024297893047333,
-0.9998160600662231,
-0.2631372809410095,
0.8871029019355774,
0.2275265008211136,
0.8444608449935913,
0.5992542505264282,
0.6784538626670837,
0.136723130941391,
0.2523833215236664,
-0.305902898311615,
0.3920287489891052,
0.43760839104652405,
-1.040114164352417,
-0.427584171295166,
0.02141888067126274,
-0.9703332781791687,
-0.14227578043937683,
-0.03495054692029953,
-0.42617106437683105,
0.7681738138198853,
0.00016635804786346853,
-0.40767112374305725,
0.7732735872268677,
-0.455583393573761,
0.7562879323959351,
-0.4473649859428406,
-0.02663865126669407,
0.4699098467826843,
-0.707064151763916,
0.4677433967590332,
0.12878736853599548,
0.6205845475196838,
-0.015571946278214455,
-0.04078621417284012,
0.7104930877685547,
-0.912916362285614,
0.25438612699508667,
-0.6348398923873901,
0.22421303391456604,
0.24246959388256073,
0.5160625576972961,
0.5969963073730469,
0.4371241629123688,
0.10119915008544922,
-0.23920850455760956,
0.04115789383649826,
-0.8241121172904968,
-0.21050667762756348,
0.6975144147872925,
-0.7186897397041321,
-0.6864195466041565,
-1.2355334758758545,
0.14438661932945251,
0.27347052097320557,
0.3893046975135803,
0.7959297895431519,
0.5714079141616821,
0.12895449995994568,
0.6805253624916077,
0.9888579249382019,
-0.06885592639446259,
0.916691780090332,
0.3224475085735321,
0.09175165742635727,
-0.21944895386695862,
0.703682541847229,
0.2662784457206726,
-0.24707898497581482,
-0.11939744651317596,
0.20913469791412354,
-0.11069414764642715,
-0.5917618870735168,
-0.4999074935913086,
0.3701755404472351,
-0.6731783151626587,
-0.1830393373966217,
-0.6243732571601868,
-0.6043766736984253,
-0.5117589235305786,
0.0692739263176918,
-0.7147683501243591,
0.23979082703590393,
-0.7753568887710571,
-0.10574901103973389,
0.043233584612607956,
0.9792002439498901,
-0.5893121361732483,
0.5805228352546692,
-1.12185800075531,
0.19345775246620178,
-0.07949890196323395,
0.792106032371521,
0.2139579802751541,
-0.7344390153884888,
-0.39754197001457214,
-0.11592598259449005,
-0.37299054861068726,
-1.3576757907867432,
0.21404962241649628,
-0.24541425704956055,
0.2309398651123047,
0.6145407557487488,
0.13977038860321045,
0.5258244276046753,
-0.3432632088661194,
0.7029102444648743,
-0.05701681971549988,
-0.7069293856620789,
0.7934491038322449,
-0.5026893615722656,
0.4963533282279968,
0.9766002893447876,
0.5333840250968933,
-0.7984007596969604,
0.0357406847178936,
-1.041122555732727,
-0.6008694171905518,
0.38426393270492554,
0.1192895919084549,
-0.036011260002851486,
-0.665955662727356,
-0.05401992052793503,
-0.16143806278705597,
0.6043741703033447,
-1.0390695333480835,
-0.785835862159729,
0.25766894221305847,
0.527729868888855,
0.08168502151966095,
-0.5653401613235474,
0.2088075578212738,
-0.5444163084030151,
1.0657776594161987,
0.4510935842990875,
0.32744958996772766,
0.8406059145927429,
0.4649236798286438,
-0.38231605291366577,
0.09252502024173737,
0.7662692070007324,
0.6666229367256165,
-0.5239795446395874,
-0.2908026874065399,
-0.0882752314209938,
-0.9143400192260742,
0.05927504226565361,
0.11168874800205231,
-0.013456094078719616,
0.9082115292549133,
0.579308032989502,
0.253970205783844,
0.4514276385307312,
-0.7264610528945923,
0.8859445452690125,
-0.1495419293642044,
-0.1247284859418869,
-1.0677239894866943,
0.19486205279827118,
-0.23984935879707336,
0.5006400346755981,
1.0061330795288086,
0.525004506111145,
-0.047630541026592255,
-0.814338207244873,
-0.014736393466591835,
0.6939173936843872,
-0.7091119885444641,
-0.17449776828289032,
0.9448539614677429,
0.38471025228500366,
-1.295304536819458,
1.106776475906372,
-0.5381773710250854,
-0.5603318214416504,
0.9121303558349609,
0.5229570269584656,
1.1221849918365479,
-0.44204193353652954,
0.0008675068384036422,
0.2662239074707031,
0.4137844443321228,
0.5423170328140259,
1.086963176727295,
0.43141356110572815,
-0.7931071519851685,
0.8826581835746765,
-0.24776068329811096,
-0.40361127257347107,
-0.053475700318813324,
-0.4285985827445984,
0.16892209649085999,
-0.44061893224716187,
-0.10712965577840805,
-0.3444185256958008,
0.2854307293891907,
-0.70720374584198,
0.42807650566101074,
-0.08385643362998962,
0.8653066754341125,
-0.8553729057312012,
0.47207602858543396,
0.6354700326919556,
-0.33373481035232544,
-0.8508192300796509,
-0.2619847357273102,
-0.1144845262169838,
-0.6389466524124146,
0.30214792490005493,
-0.45541056990623474,
0.04439886659383774,
0.09623479843139648,
-0.6491509079933167,
-1.1778273582458496,
0.9093630909919739,
-0.6396117210388184,
-0.2784458100795746,
0.20463955402374268,
-0.1151471734046936,
0.28811654448509216,
-0.2524648904800415,
0.010661326348781586,
0.4187661111354828,
0.7489396333694458,
0.28446558117866516,
-0.7727053761482239,
-0.36948859691619873,
0.0015033691888675094,
-0.44474759697914124,
0.7582973837852478,
-0.6002099514007568,
1.1840776205062866,
-0.556353747844696,
-0.05965423583984375,
0.4438447952270508,
0.24690861999988556,
0.21076245605945587,
0.6629217267036438,
0.144208163022995,
0.7282260060310364,
1.0701210498809814,
-0.4083523154258728,
0.881180465221405,
0.26432785391807556,
0.47430840134620667,
0.7238510251045227,
-0.6487718820571899,
0.7513748407363892,
0.3181042969226837,
-0.5682927966117859,
0.9228019714355469,
1.290606141090393,
-0.15699151158332825,
0.8079370260238647,
0.05136425420641899,
-1.0815999507904053,
0.32583364844322205,
-0.20724764466285706,
-0.7530062794685364,
0.31502565741539,
0.19055864214897156,
-0.6920987367630005,
-0.5770313739776611,
-0.2404651641845703,
-0.35662832856178284,
-0.11552872508764267,
-0.763173520565033,
0.6720565557479858,
-0.01696927472949028,
-0.5103673934936523,
0.18857470154762268,
0.2877500653266907,
0.17368444800376892,
-0.5235736966133118,
-0.029393965378403664,
-0.22823575139045715,
0.2660652697086334,
-0.5670853853225708,
-0.5234523415565491,
0.5724437236785889,
-0.32430148124694824,
-0.5343252420425415,
0.1814749836921692,
0.7635869979858398,
-0.1692378669977188,
-0.4515411853790283,
0.3247268795967102,
0.6959530115127563,
0.16658465564250946,
0.42502784729003906,
-0.23511283099651337,
0.2448059767484665,
-0.08044828474521637,
-0.06651593744754791,
0.27714747190475464,
0.3449171483516693,
0.22435645759105682,
0.44501352310180664,
0.432856947183609,
-0.018087303265929222,
-0.10736560821533203,
-0.38282057642936707,
0.41249361634254456,
-0.9542783498764038,
-0.5713291168212891,
-0.630710780620575,
0.2740667760372162,
-0.023154327645897865,
-1.0836422443389893,
0.41451749205589294,
1.4406688213348389,
1.0359984636306763,
-0.4756380617618561,
1.0672271251678467,
-0.21818462014198303,
0.9594789743423462,
0.4148315489292145,
0.5420438051223755,
-0.6030403971672058,
0.038353078067302704,
-0.43644046783447266,
-1.0769634246826172,
-0.3571633994579315,
0.4539390504360199,
-0.02289981208741665,
-0.3429867625236511,
0.8725717663764954,
0.5887162089347839,
-0.3347362279891968,
-0.11728024482727051,
0.04848664999008179,
-0.02994159795343876,
-0.12433876097202301,
0.5145372152328491,
0.7648398280143738,
-0.9344298243522644,
-0.10680411010980606,
-0.21577700972557068,
-0.6382728815078735,
-0.5047284364700317,
-0.9632003903388977,
-0.12959381937980652,
-0.16037844121456146,
0.03534334897994995,
-0.5662809610366821,
0.002556905150413513,
1.2083250284194946,
0.5684951543807983,
-1.1113994121551514,
-0.5303782224655151,
0.33718496561050415,
0.39204245805740356,
-0.1874789297580719,
-0.24202406406402588,
0.2984570860862732,
0.1538221836090088,
-0.5908879041671753,
0.6875662803649902,
0.8089626431465149,
0.20888905227184296,
0.19554781913757324,
0.15893003344535828,
-0.8229469060897827,
-0.14913435280323029,
0.1744047999382019,
0.9450566172599792,
-0.939853310585022,
-0.7114846110343933,
-0.03168468549847603,
-0.2709487974643707,
-0.05765698105096817,
0.17102089524269104,
-0.4046342968940735,
0.5180684924125671,
0.34591469168663025,
0.49933499097824097,
0.056160878390073776,
-0.054746419191360474,
0.5409556031227112,
-0.9069050550460815,
0.09425969421863556,
0.41343602538108826,
0.4154110848903656,
-0.4000871777534485,
-0.5910195112228394,
0.6713417172431946,
1.0073974132537842,
-0.6594864130020142,
-0.8743263483047485,
-0.19846680760383606,
-1.0016000270843506,
0.04189697653055191,
0.6762756109237671,
0.5009528994560242,
-0.48065176606178284,
-0.4174492359161377,
-0.5617400407791138,
-0.1254679411649704,
-0.13699710369110107,
0.76216059923172,
1.1796802282333374,
-0.7432100772857666,
0.07975788414478302,
-1.0386393070220947,
0.6594986915588379,
-0.2419460266828537,
-0.3457580506801605,
-0.4864429533481598,
0.3832802176475525,
0.3523699641227722,
0.44048118591308594,
0.6148120164871216,
0.14084689319133759,
0.8338428735733032,
0.31260576844215393,
-0.17026858031749725,
0.2698982357978821,
-0.4559198319911957,
-0.02893332578241825,
-0.05796258896589279,
0.3101596236228943,
-1.026215672492981
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
Llamacha/monolingual-quechua-iic | Llamacha | 2022-10-02T14:40:00Z | 292 | 0 | null | [
"task_categories:fill-mask",
"task_ids:language-modeling",
"task_ids:masked-language-modeling",
"annotations_creators:no-annotation",
"language_creators:crowdsourced",
"multilinguality:monolingual",
"size_categories:1M<n<5M",
"source_datasets:original",
"language:qu",
"license:apache-2.0",
"region:us"
] | 2022-10-02T14:40:00Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
annotations_creators:
- no-annotation
language_creators:
- crowdsourced
language:
- qu
license:
- apache-2.0
multilinguality:
- monolingual
size_categories:
- 1M<n<5M
source_datasets:
- original
task_categories:
- fill-mask
task_ids:
- language-modeling
- masked-language-modeling
---
# Dataset Card for Monolingual-Quechua-IIC
## 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:** [https://llamacha.pe](https://llamacha.pe)
- **Paper:** [Introducing QuBERT: A Large Monolingual Corpus and BERT Model for
Southern Quechua](https://aclanthology.org/2022.deeplo-1.1.pdf)
- **Point of Contact:** [Rodolfo Zevallos](mailto:rodolfojoel.zevallos@upf.edu)
- **Size of downloaded dataset files:** 373.28 MB
### Dataset Summary
We present Monolingual-Quechua-IIC, a monolingual corpus of Southern Quechua, which can be used to build language models using Transformers models. This corpus also includes the Wiki and OSCAR corpora. We used this corpus to build Llama-RoBERTa-Quechua, the first language model for Southern Quechua using Transformers.
### Supported Tasks and Leaderboards
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Languages
Southern Quechua
## 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
Apache-2.0
### Citation Information
```
@inproceedings{zevallos2022introducing,
title={Introducing QuBERT: A Large Monolingual Corpus and BERT Model for Southern Quechua},
author={Zevallos, Rodolfo and Ortega, John and Chen, William and Castro, Richard and Bel, Nuria and Toshio, Cesar and Venturas, Renzo and Aradiel, Hilario and Melgarejo, Nelsi},
booktitle={Proceedings of the Third Workshop on Deep Learning for Low-Resource Natural Language Processing},
pages={1--13},
year={2022}
}
```
### Contributions
Thanks to [@rjzevallos](https://github.com/rjzevallos) for adding this dataset.
| [
-0.42253997921943665,
-0.3231675922870636,
-0.058770325034856796,
0.5257018804550171,
-0.19829748570919037,
0.23041526973247528,
-0.5402004718780518,
-0.3723383843898773,
0.44074690341949463,
0.49301597476005554,
-0.5783247947692871,
-1.0622291564941406,
-0.37426072359085083,
0.10089113563299179,
-0.4424133002758026,
1.184482455253601,
0.01581806316971779,
-0.06591755896806717,
-0.23388023674488068,
-0.34010013937950134,
-0.1422838568687439,
-0.6402485966682434,
-0.7942827343940735,
-0.049923915416002274,
0.5166428685188293,
0.7497476935386658,
0.7496298551559448,
0.6445584893226624,
0.17792297899723053,
0.2044326364994049,
0.01744765415787697,
0.04007933661341667,
-0.6170929074287415,
-0.2181256115436554,
0.14106081426143646,
-0.522974967956543,
-0.529761791229248,
0.09615211188793182,
0.6635214686393738,
0.5906744599342346,
-0.1406044363975525,
0.4748867452144623,
0.10064506530761719,
0.6589857339859009,
-0.2011844664812088,
0.5775520205497742,
-0.3134894073009491,
0.05041716992855072,
-0.5711729526519775,
0.05627784505486488,
-0.12867775559425354,
-0.6900582313537598,
-0.05622012913227081,
-0.5130563974380493,
0.1772555261850357,
0.04354877397418022,
0.7527890205383301,
0.018804769963026047,
-0.2006387710571289,
-0.2282920479774475,
-0.3999302387237549,
0.6682145595550537,
-1.0073292255401611,
0.23264358937740326,
0.60233074426651,
0.062172431498765945,
-0.026891861110925674,
-0.7888590693473816,
-0.7467696666717529,
-0.0953766256570816,
-0.08281050622463226,
0.19375713169574738,
-0.15384745597839355,
-0.23446188867092133,
0.4817808270454407,
0.5244826674461365,
-0.5775397419929504,
-0.03811044618487358,
-0.7997525334358215,
-0.29460257291793823,
0.8973003029823303,
0.3036661744117737,
0.15873192250728607,
-0.1986723691225052,
-0.17496433854103088,
-0.21179868280887604,
-0.605006754398346,
0.4454409182071686,
0.5545578002929688,
0.5556781888008118,
-0.8803267478942871,
0.4919755756855011,
-0.16779953241348267,
0.4123130142688751,
-0.08110923320055008,
-0.0785948857665062,
0.5791976451873779,
-0.7850682139396667,
-0.11111411452293396,
-0.03849175572395325,
1.103529691696167,
0.288858562707901,
0.23024171590805054,
-0.07662660628557205,
0.17839109897613525,
-0.24352212250232697,
-0.26347896456718445,
-0.7216182351112366,
-0.4348117411136627,
0.7096659541130066,
-0.529717206954956,
-0.48217320442199707,
0.09975476562976837,
-1.0254287719726562,
-0.4668835997581482,
-0.36024951934814453,
-0.10445345938205719,
-0.3861123025417328,
-0.36862924695014954,
0.07632850855588913,
-0.03606584295630455,
0.40258824825286865,
0.08738450706005096,
-0.7337777018547058,
0.31382590532302856,
0.2860875725746155,
0.738257646560669,
0.029459532350301743,
-0.5648804306983948,
-0.20206719636917114,
-0.23026929795742035,
-0.13771386444568634,
0.47257575392723083,
-0.171583890914917,
-0.29072847962379456,
0.059419579803943634,
0.32615604996681213,
0.045834485441446304,
-0.40639808773994446,
0.9602713584899902,
-0.11606751382350922,
0.32526639103889465,
-0.5196719765663147,
-0.1493193507194519,
-0.11108896136283875,
0.09616373479366302,
-0.7557078003883362,
1.2913663387298584,
0.5405064821243286,
-0.814510703086853,
0.017639284953475,
-0.5852027535438538,
-0.5719667673110962,
0.010533763095736504,
-0.08324971050024033,
-0.30595436692237854,
-0.40139198303222656,
0.22259540855884552,
0.2779236137866974,
-0.6867610216140747,
0.21807339787483215,
-0.2761845588684082,
-0.06993827223777771,
0.16714714467525482,
0.037492722272872925,
1.6491934061050415,
0.12245966494083405,
-0.1880144476890564,
0.22822865843772888,
-0.9883897304534912,
0.021068433299660683,
0.3904765844345093,
-0.2388126701116562,
0.013897411525249481,
-0.2528006434440613,
0.226649209856987,
0.15958596765995026,
0.5466440320014954,
-0.28770747780799866,
0.3504026234149933,
-0.08338815718889236,
0.5963520407676697,
0.615497350692749,
-0.2490869164466858,
0.48097044229507446,
-0.2510893642902374,
0.6474258303642273,
0.10527285188436508,
0.6143567562103271,
-0.04413532093167305,
-0.37485456466674805,
-0.9310215711593628,
-0.22571107745170593,
0.6644008755683899,
0.7243508696556091,
-0.7851454019546509,
0.519479513168335,
-0.20415358245372772,
-0.8121609687805176,
-0.8143764734268188,
0.21801184117794037,
0.16948580741882324,
0.6558129787445068,
0.45672979950904846,
-0.1729181855916977,
-0.7732773423194885,
-0.8467482924461365,
0.5368438959121704,
-0.20937380194664001,
0.05488008260726929,
0.2681995630264282,
0.372589647769928,
-0.1278046816587448,
0.7100291848182678,
-0.42370539903640747,
-0.3125707507133484,
-0.27323609590530396,
-0.0756291076540947,
0.38826751708984375,
0.5639564990997314,
0.8021024465560913,
-0.6726205945014954,
-0.3822495937347412,
-0.16671860218048096,
-0.9011145830154419,
-0.09376552700996399,
0.015580092556774616,
-0.3195660412311554,
0.09406832605600357,
0.35013365745544434,
-0.4203212261199951,
0.32589495182037354,
0.7130259871482849,
-0.2829411029815674,
0.6404393911361694,
0.08163060247898102,
0.10776787251234055,
-1.0495893955230713,
0.08819737285375595,
-0.0025640639942139387,
0.16501720249652863,
-0.6361688375473022,
-0.077162966132164,
0.0725034773349762,
0.034156955778598785,
-0.4424060881137848,
0.5184463262557983,
-0.2888466417789459,
0.3952639400959015,
0.14467880129814148,
0.21784988045692444,
0.10231199860572815,
0.5999734401702881,
-0.22746127843856812,
0.7429253458976746,
0.937540590763092,
-0.5664579272270203,
0.5975304245948792,
0.48943790793418884,
-0.3065086007118225,
0.36666935682296753,
-0.9371817708015442,
0.15953633189201355,
-0.23264633119106293,
0.0725327655673027,
-0.7642517685890198,
-0.13035942614078522,
0.7431749105453491,
-0.6211024522781372,
0.28496161103248596,
-0.24128347635269165,
-0.678895890712738,
-0.5729208588600159,
-0.6402120590209961,
0.34285300970077515,
0.17152604460716248,
-0.34809020161628723,
0.18193888664245605,
0.7391307353973389,
-0.20621301233768463,
-0.4361240565776825,
-0.8361455798149109,
0.13968943059444427,
-0.22502334415912628,
-0.8504077196121216,
0.4375987946987152,
-0.2884930968284607,
-0.026991797611117363,
-0.13226351141929626,
0.37883880734443665,
0.06627347320318222,
-0.023997744545340538,
0.13549982011318207,
0.26476553082466125,
-0.2605316638946533,
0.20615841448307037,
0.08924330770969391,
0.25881892442703247,
-0.006681475788354874,
-0.20714466273784637,
0.6248908042907715,
-0.26646164059638977,
0.16934430599212646,
-0.22976303100585938,
0.3099711239337921,
0.48755088448524475,
-0.6096290349960327,
0.7974125742912292,
0.8870506882667542,
-0.37699371576309204,
0.12395738065242767,
-0.2582468092441559,
-0.02904406189918518,
-0.366791695356369,
0.11996027827262878,
-0.11946167796850204,
-0.6780529022216797,
0.9967762231826782,
0.35296887159347534,
0.059109438210725784,
0.4257703125476837,
0.546863853931427,
0.055785711854696274,
0.6179320216178894,
0.6095157265663147,
-0.4547771215438843,
0.590498685836792,
-0.6201359033584595,
-0.027320368215441704,
-0.9856804609298706,
-0.3214215636253357,
-0.8250089287757874,
-0.24210789799690247,
-0.973288893699646,
-0.453905314207077,
0.06075518950819969,
0.1669815331697464,
-0.19469571113586426,
0.650346577167511,
-0.38642436265945435,
0.039154067635536194,
0.9185530543327332,
0.23614990711212158,
0.030949488282203674,
-0.11168800294399261,
0.011648747138679028,
0.07521336525678635,
-0.8307895660400391,
-0.5215742588043213,
1.2540467977523804,
0.29885485768318176,
0.5889028310775757,
0.12454346567392349,
0.726835310459137,
0.20707127451896667,
0.05266788601875305,
-0.5386697053909302,
0.4224843382835388,
-0.14088106155395508,
-0.431814044713974,
-0.4757240414619446,
-0.30431026220321655,
-0.9572015404701233,
-0.09965230524539948,
-0.32036781311035156,
-0.6470831036567688,
0.7388092279434204,
0.042366139590740204,
-0.37670499086380005,
0.061443984508514404,
-0.7602077126502991,
1.0627796649932861,
-0.41225525736808777,
-0.506413996219635,
0.29332873225212097,
-0.8585978150367737,
0.3327745199203491,
0.1665874570608139,
0.39247453212738037,
-0.22829067707061768,
0.06340178102254868,
0.8562912344932556,
-0.4330846667289734,
0.9001057744026184,
-0.2709674835205078,
-0.023838326334953308,
0.5818206667900085,
-0.20339594781398773,
0.5112178325653076,
0.30926141142845154,
-0.5273783802986145,
0.6549283862113953,
0.2555294632911682,
-0.63080233335495,
-0.31409215927124023,
0.5322662591934204,
-0.7109724879264832,
-0.2565233111381531,
-0.3622993528842926,
-0.5524572134017944,
0.09192416071891785,
0.34419333934783936,
0.26281243562698364,
0.3736332356929779,
-0.09261372685432434,
0.15874731540679932,
0.45411160588264465,
-0.36726364493370056,
0.045642562210559845,
0.28190284967422485,
-0.36104443669319153,
-0.5857330560684204,
0.8521689176559448,
0.1880723536014557,
-0.06700076162815094,
0.17800657451152802,
0.14979015290737152,
-0.15595024824142456,
-0.5304793119430542,
-0.5039228796958923,
0.2791094183921814,
-0.5395767092704773,
-0.187418133020401,
-0.46011409163475037,
-0.2602514624595642,
-0.9175937175750732,
0.2638952434062958,
-0.08387923985719681,
-0.6015645265579224,
-0.510360598564148,
-0.19145479798316956,
0.33900898694992065,
0.18551857769489288,
-0.21611647307872772,
0.21348942816257477,
-0.5751271843910217,
0.1429588347673416,
-0.01929846592247486,
0.12684038281440735,
0.06334953010082245,
-0.5187937021255493,
-0.6164586544036865,
0.33941924571990967,
-0.13626256585121155,
-0.6948077082633972,
0.46629321575164795,
0.07429580390453339,
0.5855898261070251,
0.2182845026254654,
0.36983543634414673,
0.4778660833835602,
-0.07465177029371262,
0.7746743559837341,
-0.09298602491617203,
-0.7006871700286865,
0.6183901429176331,
-0.365662544965744,
0.43966493010520935,
0.7767810225486755,
0.5577224493026733,
-0.667692244052887,
-0.42631253600120544,
-0.4530007541179657,
-1.0311254262924194,
0.7768222689628601,
0.2658812999725342,
0.20600464940071106,
-0.09996338933706284,
0.12990081310272217,
0.036821719259023666,
0.36858856678009033,
-0.8527030944824219,
-0.8284394145011902,
-0.36012008786201477,
-0.2658041715621948,
0.013008853420615196,
-0.24625948071479797,
-0.2614085078239441,
-0.7214648723602295,
0.7030254602432251,
-0.13492660224437714,
0.2718786299228668,
0.28152233362197876,
-0.019357994198799133,
0.01166557613760233,
0.18628886342048645,
0.6738467216491699,
0.5528406500816345,
-0.3187454342842102,
0.041285157203674316,
-0.11508581042289734,
-0.43747806549072266,
-0.3297685384750366,
0.5251214504241943,
-0.4780414402484894,
-0.1865936666727066,
0.27090245485305786,
0.8851696848869324,
0.07261355966329575,
-0.5516652464866638,
0.3216215670108795,
-0.20698313415050507,
-0.14529770612716675,
-0.6035769581794739,
-0.12772127985954285,
0.1358879804611206,
0.3869972229003906,
0.3551666736602783,
-0.19272302091121674,
0.09050867706537247,
-0.659134566783905,
0.03603338450193405,
0.09781549870967865,
-0.35243529081344604,
-0.40174180269241333,
0.6996582746505737,
0.17898495495319366,
-0.07314848154783249,
0.7123024463653564,
-0.3041205406188965,
-0.6552267074584961,
0.9081085920333862,
0.26671114563941956,
0.6416100263595581,
0.013474163599312305,
0.3968251645565033,
0.8863463997840881,
0.5896427631378174,
0.16135209798812866,
0.37822481989860535,
-0.12209174782037735,
-0.7197896838188171,
0.1174406111240387,
-0.40978503227233887,
-0.27234530448913574,
0.08260452002286911,
-0.6903178691864014,
0.6157054305076599,
-0.4522045850753784,
-0.187647745013237,
0.19010980427265167,
0.14564703404903412,
-0.860929548740387,
-0.0635632649064064,
0.08878706395626068,
0.9677631258964539,
-0.630964994430542,
1.0165565013885498,
0.4860919713973999,
-1.0142008066177368,
-0.7266997694969177,
-0.1802033931016922,
0.013081571087241173,
-0.6614389419555664,
0.229893758893013,
-0.1796175241470337,
0.37274494767189026,
0.008802606724202633,
-0.9025384783744812,
-0.8080045580863953,
1.3168772459030151,
0.41926807165145874,
-0.44445258378982544,
0.04973895475268364,
0.2298288196325302,
0.7534531354904175,
-0.32897263765335083,
0.19303707778453827,
0.5710801482200623,
0.6491209268569946,
-0.08821076899766922,
-0.742128849029541,
0.1813098043203354,
-0.33831658959388733,
-0.3097895085811615,
-0.05028248578310013,
-1.1008965969085693,
1.0233772993087769,
-0.3668985664844513,
-0.29804617166519165,
0.07106947898864746,
0.7940284013748169,
0.14400427043437958,
0.31032004952430725,
0.12727488577365875,
0.33630824089050293,
1.0968000888824463,
-0.19565457105636597,
1.0547477006912231,
-0.46319451928138733,
0.41565895080566406,
1.3382072448730469,
-0.15290971100330353,
0.5157400965690613,
0.31371909379959106,
-0.6651929616928101,
0.39101991057395935,
0.7428548336029053,
-0.3299211859703064,
0.22973106801509857,
0.22444389760494232,
-0.15755529701709747,
0.09450496733188629,
-0.3921513259410858,
-0.5972577929496765,
0.3679971694946289,
0.24653507769107819,
-0.42130646109580994,
0.06073254719376564,
-0.04149055853486061,
0.33440926671028137,
-0.03251506760716438,
-0.24821527302265167,
0.3009844720363617,
0.06753748655319214,
-0.3074326515197754,
0.689936637878418,
-0.1062844842672348,
0.6896476745605469,
-0.5696135759353638,
0.10906393826007843,
-0.6130362153053284,
-0.10120712965726852,
-0.5598438382148743,
-0.873040497303009,
0.17695266008377075,
-0.16471321880817413,
-0.4660235047340393,
0.04405812919139862,
0.43727806210517883,
-0.7910627722740173,
-0.6853516697883606,
0.31472888588905334,
0.2803107500076294,
0.1509319245815277,
0.15016818046569824,
-0.8471736311912537,
0.24257561564445496,
0.22122259438037872,
-0.05743168294429779,
0.3087441921234131,
0.4577801823616028,
-0.19650711119174957,
0.48839953541755676,
0.6464109420776367,
0.12104514986276627,
0.21274392306804657,
0.4052625894546509,
0.8255532383918762,
-0.6524341106414795,
-0.0035326238721609116,
-0.4450281262397766,
0.5523502230644226,
-0.19037042558193207,
-0.3705344796180725,
0.8014864921569824,
0.9209131598472595,
1.2591127157211304,
-0.07853401452302933,
0.9730208516120911,
-0.6072975993156433,
0.4753294587135315,
-0.24722234904766083,
0.841752290725708,
-0.4913194477558136,
0.10839934647083282,
-0.23459088802337646,
-0.4755469858646393,
-0.3079003393650055,
0.40767645835876465,
-0.08004672080278397,
-0.08539943397045135,
0.43495163321495056,
0.9069684743881226,
0.25351542234420776,
-0.03658736124634743,
0.057133737951517105,
0.4263896346092224,
0.20926332473754883,
0.5623802542686462,
0.33836156129837036,
-0.8949690461158752,
0.7879819869995117,
-0.8495573997497559,
-0.23018352687358856,
0.018882060423493385,
-0.7558385729789734,
-0.6977591514587402,
-0.9286598563194275,
-0.5216866731643677,
-0.660894513130188,
-0.14826472103595734,
1.0377230644226074,
0.48124435544013977,
-1.0843132734298706,
-0.6335134506225586,
0.2870155870914459,
0.42314767837524414,
-0.22317256033420563,
-0.3298085331916809,
0.4169969856739044,
0.09276304394006729,
-0.9165131449699402,
0.054076071828603745,
0.07731325179338455,
-0.01611308380961418,
-0.2214607149362564,
-0.06655233353376389,
-0.4955337345600128,
-0.29642584919929504,
0.7838779091835022,
0.7325299382209778,
-0.3887972831726074,
-0.06073424965143204,
0.20298278331756592,
-0.25157293677330017,
0.2963543236255646,
0.48371684551239014,
-0.553703784942627,
0.318697065114975,
0.4757804274559021,
0.09821926802396774,
0.5397471785545349,
-0.18155419826507568,
0.2559146583080292,
-0.5011664032936096,
0.3926158845424652,
0.19579531252384186,
0.4177365005016327,
0.3802271783351898,
-0.34194886684417725,
0.9080371856689453,
0.13536518812179565,
-0.41117167472839355,
-0.8072792291641235,
-0.07827658206224442,
-1.3789894580841064,
0.12513130903244019,
1.1716541051864624,
-0.13350744545459747,
-0.36068788170814514,
-0.0486852191388607,
-0.46210235357284546,
0.4420379102230072,
-0.5727829337120056,
0.6465752720832825,
0.7607418298721313,
0.07565822452306747,
-0.4153265058994293,
-0.48085132241249084,
0.41700994968414307,
-0.15271082520484924,
-1.0311452150344849,
0.19299297034740448,
0.32367515563964844,
0.13177122175693512,
0.0883357971906662,
0.8200367093086243,
-0.34737107157707214,
0.19308191537857056,
-0.07916328310966492,
0.5017626285552979,
-0.11249963939189911,
-0.023090962320566177,
-0.24531035125255585,
-0.20153388381004333,
-0.040595393627882004,
-0.08580581843852997
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
NYTK/HuWNLI | NYTK | 2023-03-27T09:53:33Z | 292 | 3 | null | [
"task_categories:other",
"task_ids:coreference-resolution",
"annotations_creators:found",
"language_creators:found",
"language_creators:expert-generated",
"multilinguality:monolingual",
"size_categories:unknown",
"source_datasets:extended|other",
"language:hu",
"license:cc-by-sa-4.0",
"structure-prediction",
"region:us"
] | 2023-03-27T09:53:33Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
annotations_creators:
- found
language_creators:
- found
- expert-generated
language:
- hu
license:
- cc-by-sa-4.0
multilinguality:
- monolingual
size_categories:
- unknown
source_datasets:
- extended|other
task_categories:
- other
task_ids:
- coreference-resolution
pretty_name: HuWNLI
tags:
- structure-prediction
---
# Dataset Card for HuWNLI
## 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:**
[HuWNLI dataset](https://github.com/nytud/HuWNLI)
- **Paper:**
- **Leaderboard:**
- **Point of Contact:**
[lnnoemi](mailto:ligeti-nagy.noemi@nytud.hu)
### Dataset Summary
This is the dataset card for the Hungarian translation of the Winograd schemata formatted as an inference task. A Winograd schema is a pair of sentences that differ in only one or two words and that contain an ambiguity that is resolved in opposite ways in the two sentences and requires the use of world knowledge and reasoning for its resolution (Levesque et al. 2012). This dataset is also part of the Hungarian Language Understanding Evaluation Benchmark Kit [HuLU](hulu.nlp.nytud.hu). The corpus was created by translating and manually curating the original English Winograd schemata. The NLI format was created by replacing the ambiguous pronoun with each possible referent (the method is described in GLUE's paper, Wang et al. 2019). We extended the set of sentence pairs derived from the schemata by the translation of the sentence pairs that - together with the Winograd schema sentences - build up the WNLI dataset of GLUE.
### 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 orig_id, an id, two sentences and a label.
An example:
```
{"orig_id": "4",
"id": "4",
"sentence1": "A férfi nem tudta felemelni a fiát, mert olyan nehéz volt.",
"sentence2": "A fia nehéz volt.",
"Label": "1"
}
```
### Data Fields
- orig_id: the original id of this sentence pair (more precisely, its English counterpart's) in GLUE's WNLI dataset;
- id: unique id of the instances;
- sentence1: the premise;
- sentence2: the hypothesis;
- label: "1" if sentence2 is entailed by sentence1, and "0" otherwise.
### Data Splits
The data is distributed in three splits: training set (562), development set (59) and test set (134). The splits follow GLUE's WNLI's splits but contain fewer instances as many sentence pairs had to be thrown away for being untranslatable to Hungarian. The train and the development set have been extended from nli sentence pairs formatted from the Hungarian translation of 6 Winograd schemata left out from the original WNLI dataset.
The test set's sentence pairs are translated from GLUE's WNLI's test set. This set was distributed without labels. 3 annotators annotated the Hungarian sentence pairs.
The test set of HuWNLI is also distributed without labels. To evaluate your model, please [contact us](mailto:ligeti-nagy.noemi@nytud.hu), or check [HuLU's website](hulu.nytud.hu) for an automatic evaluation (this feature is under construction at the moment).
## Dataset Creation
### Source Data
#### Initial Data Collection and Normalization
The data is a translation of the English Winograd schemata and the additional sentence pairs of GLUE's WNLI. Each schema and sentence pair was translated by a human translator. Each schema was manually curated by a linguistic expert. The schemata were transformed into nli format by a linguistic expert.
During the adaption method, we found two erroneous labels in GLUE's WNLI's train set (id 347 and id 464). We corrected them in our dataset.
## Additional Information
Average human performance on the test set is 92,78% (accuracy).
### Licensing Information
HuWNLI is released under the Creative Commons Attribution-ShareAlike 4.0 International License.
### Citation Information
If you use this resource or any part of its documentation, please refer to:
Ligeti-Nagy, N., Héja, E., Laki, L. J., Takács, D., Yang, Z. Gy. and Váradi, T. (2023) Hát te mekkorát nőttél! - A HuLU első életéve új adatbázisokkal és webszolgáltatással \[Look at how much you have grown! - The first year of HuLU with new databases and with webservice\]. In: Berend, G., Gosztolya, G. and Vincze, V. (eds), XIX. Magyar Számítógépes Nyelvészeti Konferencia. Szeged, Szegedi Tudományegyetem, Informatikai Intézet. 217-230.
```
@inproceedings{ligetinagy2023hulu,
title={át te mekkorát nőttél! - A HuLU első életéve új adatbázisokkal és webszolgáltatással},
author={Ligeti-Nagy, N. and Héja, E. and Laki, L. J. and Takács, D. and Yang, Z. Gy. and Váradi, T.},
booktitle={XIX. Magyar Számítógépes Nyelvészeti Konferencia},
year={2023},
editors = {Berend, Gábor and Gosztolya, Gábor and Vincze, Veronika},
address = {Szeged},
publisher = {JATEPress},
pages = {217–230}
}
```
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\]. In: Berend, Gábor and Gosztolya, Gábor and Vincze, Veronika (eds), XVIII. Magyar Számítógépes Nyelvészeti Konferencia. JATEPress, Szeged. 431–446.
```
@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},
editors = {Berend, Gábor and Gosztolya, Gábor and Vincze, Veronika},
address = {Szeged},
publisher = {JATEPress},
pages = {431–446}
}
```
and to:
Levesque, Hector, Davis, Ernest, Morgenstern, Leora (2012) he winograd schema challenge. In: Thirteenth International Conference on the Principles of Knowledge Representation and Reasoning.
```
@inproceedings{levesque2012winograd,
title={The Winograd Schema Challenge},
author={Levesque, Hector and Davis, Ernest and Morgenstern, Leora},
booktitle={Thirteenth International Conference on the Principles of Knowledge Representation and Reasoning},
year={2012},
organization={Citeseer}
}
```
### Contributions
Thanks to [lnnoemi](https://github.com/lnnoemi) for adding this dataset. | [
-0.19271637499332428,
-0.651145875453949,
0.10961274802684784,
0.17070399224758148,
-0.024065222591161728,
-0.23770762979984283,
-0.43609800934791565,
-0.490988552570343,
0.3954651653766632,
0.28875094652175903,
-0.5240431427955627,
-0.5694255232810974,
-0.49479520320892334,
0.1038716658949852,
-0.0135322455316782,
1.111924171447754,
-0.1837223768234253,
-0.022878896445035934,
-0.31101900339126587,
-0.37727850675582886,
-0.2007306069135666,
-0.3699929118156433,
-0.04234849289059639,
-0.31900325417518616,
0.5585311055183411,
0.2917852997779846,
0.7386603951454163,
0.6944460272789001,
0.5542328953742981,
0.3484528064727783,
-0.26356375217437744,
0.1454877257347107,
-0.4034862220287323,
0.15576939284801483,
-0.0066210683435201645,
-0.21096907556056976,
-0.5321784615516663,
0.056739840656518936,
0.47615551948547363,
0.8955840468406677,
-0.2764923572540283,
0.48082977533340454,
0.31680527329444885,
0.7350185513496399,
-0.5436137318611145,
0.2925359606742859,
-0.37281838059425354,
0.05448246747255325,
-0.23520134389400482,
0.02228764444589615,
-0.4187851548194885,
-0.3331930637359619,
0.022915223613381386,
-0.8650538921356201,
0.01797952502965927,
0.18740004301071167,
1.3189777135849,
0.08578509837388992,
-0.3063971996307373,
-0.04143447056412697,
-0.697646975517273,
0.8139135241508484,
-1.0444152355194092,
0.2164696604013443,
0.28251394629478455,
0.05365830287337303,
-0.38256198167800903,
-0.6360942125320435,
-0.5021726489067078,
-0.05395488440990448,
-0.38952621817588806,
0.28678157925605774,
-0.4179506003856659,
-0.09481313824653625,
0.5111246109008789,
0.25867775082588196,
-0.7958745956420898,
-0.13530832529067993,
-0.604356586933136,
-0.2858078181743622,
0.8291482925415039,
0.17828117311000824,
0.11693782359361649,
-0.2340792566537857,
-0.4069820046424866,
-0.17806440591812134,
-0.46762844920158386,
0.06380943953990936,
0.5721361637115479,
0.2701030671596527,
-0.10826203227043152,
0.8174983859062195,
-0.19220320880413055,
0.649167537689209,
-0.06739987432956696,
-0.21813414990901947,
0.7057523727416992,
-0.5766396522521973,
-0.3278101086616516,
-0.18721769750118256,
0.8924390077590942,
0.4269259572029114,
0.2863955795764923,
-0.026011161506175995,
0.07310180366039276,
0.2062467634677887,
-0.07980848103761673,
-0.48002889752388,
-0.06047278642654419,
0.18146315217018127,
-0.6477951407432556,
-0.2820779085159302,
0.07845001667737961,
-0.7422131896018982,
-0.09403786808252335,
-0.23546510934829712,
0.45786425471305847,
-0.40577471256256104,
-0.3416343629360199,
0.29093417525291443,
-0.1760292649269104,
0.34972691535949707,
0.018016334623098373,
-0.6721690893173218,
0.36240723729133606,
0.22602221369743347,
0.4436943829059601,
-0.11345861852169037,
-0.502766489982605,
-0.19371968507766724,
0.13573519885540009,
-0.24887309968471527,
0.5929566621780396,
-0.19710466265678406,
-0.006208069156855345,
0.08642444014549255,
0.1865493655204773,
-0.29752570390701294,
-0.3630737066268921,
0.6133444309234619,
-0.21035772562026978,
0.6469411849975586,
-0.23286226391792297,
-0.7091509699821472,
-0.20360049605369568,
0.11669830232858658,
-0.6057741045951843,
1.3511160612106323,
0.37106916308403015,
-1.0938105583190918,
0.3108385503292084,
-0.4719683825969696,
-0.3870876431465149,
-0.004012559074908495,
0.006562049500644207,
-0.23048457503318787,
-0.09274794906377792,
0.03792503476142883,
0.31441977620124817,
-0.1737840473651886,
0.4241856336593628,
-0.34110701084136963,
-0.21568170189857483,
0.048465240746736526,
-0.3165733814239502,
1.047919750213623,
0.2391686588525772,
-0.4120005667209625,
0.05631368234753609,
-0.8255221247673035,
0.12731081247329712,
0.2517703175544739,
-0.4227698743343353,
-0.33483588695526123,
0.01642024517059326,
0.20184427499771118,
0.3901521861553192,
0.4502526521682739,
-0.6615865230560303,
0.3481753468513489,
-0.5692957043647766,
0.18694497644901276,
0.5690439343452454,
-0.11780332028865814,
0.4253166913986206,
-0.23422862589359283,
0.3962545096874237,
0.15106594562530518,
0.39391329884529114,
0.029052382335066795,
-0.710149884223938,
-0.8804432153701782,
0.1727975308895111,
0.376463919878006,
0.8316917419433594,
-0.6757532954216003,
0.6765357851982117,
-0.30246564745903015,
-0.5880431532859802,
-0.5361983180046082,
0.12980830669403076,
0.3716619312763214,
0.3434252142906189,
0.4036094844341278,
-0.0017350082052871585,
-0.6431264281272888,
-1.0831886529922485,
-0.133138507604599,
-0.16897889971733093,
-0.020553309470415115,
0.42460381984710693,
0.6127850413322449,
-0.03237785026431084,
0.8593577742576599,
-0.6416358947753906,
-0.32789555191993713,
-0.31091973185539246,
-0.1193096786737442,
0.5388436317443848,
0.45568227767944336,
0.4897858798503876,
-0.6499640345573425,
-0.5454460382461548,
-0.0010742946760728955,
-1.0123233795166016,
0.05261066555976868,
0.06673457473516464,
-0.2659623920917511,
0.17716237902641296,
0.3381708860397339,
-0.6493822336196899,
0.6181784868240356,
0.5833044648170471,
-0.8903967142105103,
0.7952063679695129,
-0.3785301148891449,
-0.05069940909743309,
-1.2447973489761353,
0.13856229186058044,
0.005447933450341225,
0.11333247274160385,
-0.7526640892028809,
-0.07548905164003372,
-0.28558996319770813,
0.09416137635707855,
-0.4593476951122284,
0.5421280264854431,
-0.4753628373146057,
-0.035502951592206955,
0.22354654967784882,
0.2784491181373596,
0.1314171999692917,
0.762673556804657,
-0.3232339322566986,
0.6730378270149231,
0.6083406209945679,
-0.3754032254219055,
0.34918656945228577,
0.41250166296958923,
-0.5538200736045837,
0.318797767162323,
-0.7140902280807495,
-0.22069528698921204,
-0.08944734930992126,
0.021777695044875145,
-0.8330158591270447,
-0.058459073305130005,
0.4272690415382385,
-0.32300513982772827,
0.25286680459976196,
0.13253048062324524,
-0.48358702659606934,
-0.4388813078403473,
-0.24181915819644928,
0.12096358835697174,
0.3412461578845978,
-0.17495152354240417,
0.5642441511154175,
0.3441696763038635,
-0.01229605358093977,
-0.8773275017738342,
-0.6773630976676941,
-0.04081080108880997,
-0.34789785742759705,
-0.8056944608688354,
0.49890097975730896,
-0.2585369646549225,
-0.34736788272857666,
0.16388805210590363,
0.05893230065703392,
-0.021090198308229446,
-0.12181612849235535,
0.19691039621829987,
0.3214845061302185,
-0.43317902088165283,
-0.007200595457106829,
-0.05062425881624222,
-0.14742490649223328,
-0.171601340174675,
-0.3900831937789917,
0.26881614327430725,
-0.26391324400901794,
0.020214946940541267,
-0.2878333330154419,
0.6000187397003174,
0.5200283527374268,
-0.22112195193767548,
0.7986842393875122,
0.8040192127227783,
-0.3400691747665405,
0.2219247817993164,
-0.5353264212608337,
-0.10030146688222885,
-0.46845731139183044,
0.2579459547996521,
-0.19807898998260498,
-0.7779532670974731,
0.6649127006530762,
0.27265894412994385,
0.15583357214927673,
0.6130051612854004,
0.39626631140708923,
-0.30411896109580994,
0.845935583114624,
0.5725018978118896,
-0.05367113649845123,
0.310206800699234,
-0.5628107786178589,
0.11451534181833267,
-0.7953896522521973,
-0.3246038258075714,
-0.561374306678772,
-0.40662479400634766,
-0.7418227195739746,
-0.4219590723514557,
0.05391533672809601,
0.2773990333080292,
-0.19397898018360138,
0.6942816972732544,
-0.42914050817489624,
0.2664314806461334,
0.5820086598396301,
0.11750828474760056,
0.14547240734100342,
0.19236873090267181,
-0.34824201464653015,
-0.316012978553772,
-0.8858045935630798,
-0.5238505601882935,
0.8990450501441956,
0.2993165850639343,
0.6510295867919922,
0.14402908086776733,
0.550877034664154,
0.28276005387306213,
-0.010661909356713295,
-0.5624712705612183,
0.6743921041488647,
-0.2300674468278885,
-0.6150429248809814,
-0.5071244835853577,
-0.3316051661968231,
-1.1582220792770386,
0.3018520474433899,
-0.3088928759098053,
-0.9441096186637878,
0.6469703316688538,
0.033617325127124786,
-0.11248155683279037,
0.3609212040901184,
-0.6894925236701965,
0.9875665307044983,
-0.09561412036418915,
-0.4208839535713196,
-0.009641628712415695,
-0.7247257232666016,
0.03635982796549797,
0.427581250667572,
0.23310203850269318,
-0.2179253250360489,
0.14046750962734222,
1.0465328693389893,
-0.3127517104148865,
0.635241687297821,
-0.3049764633178711,
-0.0888858288526535,
0.42091989517211914,
-0.0766717717051506,
0.562514066696167,
-0.3325211703777313,
-0.14390134811401367,
0.3295471966266632,
0.04647926241159439,
-0.45561903715133667,
-0.5725417733192444,
0.4651040732860565,
-0.643064558506012,
-0.41097861528396606,
-0.42408040165901184,
-0.6208899617195129,
0.0021331356838345528,
0.38025885820388794,
0.43965944647789,
0.5073966979980469,
-0.13565021753311157,
0.3750334084033966,
0.5210886001586914,
-0.20087389647960663,
0.4310741722583771,
0.2563246488571167,
-0.1857614368200302,
-0.3711470663547516,
0.814906120300293,
0.3509567975997925,
0.126688152551651,
0.16597656905651093,
0.24566254019737244,
-0.15712764859199524,
-0.38732993602752686,
-0.2810564935207367,
0.48083874583244324,
-0.6608313918113708,
-0.19347748160362244,
-0.506688117980957,
-0.23202931880950928,
-0.32879719138145447,
0.14176996052265167,
-0.20985963940620422,
-0.6027723550796509,
-0.29920652508735657,
-0.21661806106567383,
0.3501538038253784,
0.6696174740791321,
-0.1943633258342743,
0.07844819873571396,
-0.3415336012840271,
-0.0960768535733223,
0.11923984438180923,
0.20741932094097137,
-0.15193279087543488,
-0.6518876552581787,
-0.526551365852356,
0.05961679294705391,
-0.23507161438465118,
-0.9594396352767944,
0.4416009187698364,
0.30807051062583923,
0.7359029054641724,
0.43944424390792847,
0.1052740290760994,
0.5610284805297852,
-0.5199195742607117,
0.8802852630615234,
0.14539742469787598,
-0.6130163073539734,
0.5338162779808044,
-0.5477999448776245,
0.1904027760028839,
0.5769411325454712,
0.3167421817779541,
-0.4996865391731262,
-0.4745357930660248,
-0.830839216709137,
-0.960456132888794,
0.5730962753295898,
0.4530709385871887,
0.10955801606178284,
0.06783396750688553,
0.22882726788520813,
-0.038942791521549225,
0.10976636409759521,
-0.9021608829498291,
-0.7478253841400146,
-0.03939102962613106,
-0.260444700717926,
0.06596706062555313,
-0.38738301396369934,
-0.24295464158058167,
-0.5660068392753601,
0.7343741059303284,
-0.0657845064997673,
0.586524486541748,
0.18028923869132996,
-0.07117307186126709,
0.006301200482994318,
0.4105403423309326,
0.6744168996810913,
0.7198030948638916,
-0.3945828974246979,
-0.09675244987010956,
0.19418105483055115,
-0.573279619216919,
0.10139279812574387,
0.04120396450161934,
-0.4082031846046448,
0.2969551384449005,
0.6004189848899841,
1.1696808338165283,
0.30138230323791504,
-0.43727636337280273,
0.65169757604599,
0.06295831501483917,
-0.5726975798606873,
-0.2787427604198456,
-0.012132774107158184,
0.12569333612918854,
0.2428169846534729,
0.4126318395137787,
0.14169512689113617,
0.04793513938784599,
-0.24264894425868988,
0.33321550488471985,
0.16052629053592682,
-0.37985390424728394,
-0.24873143434524536,
0.5419126749038696,
-0.1153460144996643,
-0.2692820131778717,
0.4424951374530792,
-0.30003678798675537,
-0.3110601305961609,
0.5726470947265625,
0.644442617893219,
0.7270596623420715,
-0.20081591606140137,
0.39061737060546875,
0.6657091379165649,
0.4006188213825226,
0.08977561444044113,
0.4110620319843292,
0.1432608664035797,
-0.9326144456863403,
-0.384474515914917,
-0.5567267537117004,
0.09601547569036484,
0.20129093527793884,
-1.148755431175232,
0.1898227483034134,
0.02703951857984066,
-0.21979600191116333,
0.03467424213886261,
0.041636839509010315,
-0.6258515119552612,
0.06049765646457672,
0.1143023818731308,
1.0653393268585205,
-1.0890114307403564,
0.8897949457168579,
0.5914859771728516,
-0.4059869349002838,
-0.8676785826683044,
-0.11127875000238419,
-0.16729572415351868,
-0.33051252365112305,
0.5789771676063538,
0.00266292248852551,
0.12306538224220276,
-0.09336184710264206,
-0.5077518224716187,
-1.0546340942382812,
1.140350580215454,
0.36131802201271057,
-0.5247053503990173,
-0.2508315145969391,
-0.06251483410596848,
0.7150991559028625,
-0.5094467997550964,
0.29078125953674316,
0.566264271736145,
0.61531001329422,
-0.11475007236003876,
-0.7954571843147278,
-0.05465054512023926,
-0.5502446889877319,
-0.0417240671813488,
-0.0035968776792287827,
-0.45317935943603516,
0.8501570820808411,
-0.33466213941574097,
-0.25781339406967163,
-0.16307921707630157,
0.7059125304222107,
0.2350875735282898,
0.17136342823505402,
0.5488100647926331,
0.5695847868919373,
0.6979746222496033,
-0.20529308915138245,
0.832213282585144,
-0.3209098279476166,
0.5757009983062744,
1.0820726156234741,
-0.13891619443893433,
1.0230162143707275,
0.601184070110321,
-0.5770698189735413,
0.8250218033790588,
0.5808514952659607,
-0.21889139711856842,
0.47363194823265076,
0.1313108503818512,
0.038408949971199036,
-0.11062275618314743,
-0.15301431715488434,
-0.4451318383216858,
0.45722752809524536,
0.42248696088790894,
-0.1659696102142334,
-0.2244628220796585,
0.23093216121196747,
0.24738360941410065,
0.06857743114233017,
0.13255466520786285,
0.7163001894950867,
0.0020546470768749714,
-0.49726250767707825,
0.7456904053688049,
-0.16913571953773499,
0.6433447599411011,
-0.727568507194519,
0.0521169975399971,
-0.42688435316085815,
0.0177413709461689,
-0.30433616042137146,
-0.7635244131088257,
0.2837718427181244,
-0.1398521512746811,
-0.5475261807441711,
-0.09835491329431534,
0.6425597667694092,
-0.6625922918319702,
-0.7309566140174866,
0.70355224609375,
0.43758079409599304,
0.2565114200115204,
0.415348619222641,
-1.0284231901168823,
-0.14884760975837708,
0.28381019830703735,
-0.6649013161659241,
0.29922500252723694,
0.21757853031158447,
-0.03700300678610802,
0.5199544429779053,
0.5126638412475586,
0.3508658707141876,
0.16104139387607574,
-0.01579982228577137,
0.8320494890213013,
-0.5053867101669312,
-0.43790605664253235,
-0.6019734144210815,
0.6705920696258545,
-0.2366456240415573,
-0.4000278115272522,
0.9388110041618347,
0.6679294109344482,
0.8779677748680115,
-0.11532504111528397,
0.6502003073692322,
-0.44771820306777954,
0.3979718089103699,
-0.3345335125923157,
0.6680910587310791,
-0.6447075009346008,
0.042335376143455505,
-0.4292478859424591,
-1.048377275466919,
-0.26166531443595886,
0.7139583230018616,
-0.11788275092840195,
-0.1204126626253128,
0.802766740322113,
0.9127703905105591,
0.10218261927366257,
-0.3039802610874176,
0.3104459345340729,
0.4689670205116272,
-0.0619957409799099,
0.6648045182228088,
0.4575394093990326,
-0.941692054271698,
0.6846701502799988,
-0.4609314799308777,
-0.17466656863689423,
-0.10393531620502472,
-0.8028346300125122,
-0.6722277998924255,
-0.7881333827972412,
-0.431597501039505,
-0.6700741052627563,
-0.09595021605491638,
0.7864440679550171,
0.5914742946624756,
-1.0259850025177002,
-0.4436259865760803,
0.25053009390830994,
0.0765334814786911,
-0.6446751356124878,
-0.22533324360847473,
0.7362816333770752,
-0.03410961851477623,
-0.492605596780777,
0.37587133049964905,
0.23007698357105255,
-0.0186272282153368,
-0.27537596225738525,
-0.3116506338119507,
-0.5639404654502869,
0.0008731949492357671,
0.4998493790626526,
0.18643517792224884,
-0.7922185063362122,
-0.12982599437236786,
0.2957267165184021,
-0.2234177142381668,
0.1519753783941269,
0.5044893026351929,
-0.4912470281124115,
0.39492267370224,
0.6490634083747864,
0.08084729313850403,
0.42729607224464417,
-0.08832229673862457,
0.3396117389202118,
-0.6953859925270081,
0.4546724855899811,
0.009755000472068787,
0.46689799427986145,
0.18255367875099182,
-0.4717530906200409,
0.6221910119056702,
0.40678539872169495,
-0.5187116861343384,
-0.8982216715812683,
-0.03263762220740318,
-0.9229421019554138,
-0.1516951322555542,
1.2464005947113037,
-0.3035624921321869,
-0.3063708245754242,
-0.277859091758728,
-0.05751372501254082,
0.2050773799419403,
-0.20727966725826263,
0.3741305470466614,
0.872103214263916,
0.019711822271347046,
-0.020347939804196358,
-0.7817814946174622,
0.5239055752754211,
0.37676605582237244,
-0.798522412776947,
0.18408623337745667,
0.38835567235946655,
0.18504875898361206,
0.39839184284210205,
0.5157843232154846,
-0.06178455054759979,
0.004884194117039442,
0.10224267095327377,
0.22816969454288483,
-0.004932154901325703,
-0.34671199321746826,
-0.1960776299238205,
0.01848425157368183,
-0.24999354779720306,
-0.0688575953245163
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
Narsil/image_dummy | Narsil | 2021-08-26T09:16:29Z | 292 | 0 | null | [
"region:us"
] | 2021-08-26T09:16:29Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227645754814148,
-0.22568479180335999,
0.8622263669967651,
0.43461522459983826,
-0.52829909324646,
0.7012971639633179,
0.7915719747543335,
0.07618614286184311,
0.774603009223938,
0.2563217282295227,
-0.7852813005447388,
-0.22573819756507874,
-0.9104475975036621,
0.5715674161911011,
-0.3992327153682709,
0.5791246294975281,
-0.14494499564170837,
-0.10751135647296906,
0.28233814239501953,
-0.2768957316875458,
-0.5409227013587952,
-0.3685525059700012,
-1.1902779340744019,
0.061491698026657104,
0.5316582918167114,
0.743514358997345,
0.7584061622619629,
0.3652168810367584,
0.643257737159729,
0.39322906732559204,
-0.231389120221138,
0.48270541429519653,
-0.04171793907880783,
0.0026038705836981535,
-0.3524438440799713,
-0.5516899824142456,
-0.28596577048301697,
0.07584768533706665,
1.096130132675171,
0.9666873812675476,
-0.28466421365737915,
0.05330856889486313,
-0.30636167526245117,
0.3308892846107483,
-0.4973427355289459,
0.3054097294807434,
-0.022506216540932655,
0.16318757832050323,
-0.704151451587677,
-0.5535351634025574,
0.012795033864676952,
-0.7361212968826294,
0.17926514148712158,
-0.6900812387466431,
0.8269097208976746,
0.18583209812641144,
1.1533749103546143,
0.14819422364234924,
-0.4624859392642975,
-0.8161761164665222,
-0.6538985371589661,
0.5711163282394409,
-0.32703715562820435,
0.3968023657798767,
0.7028226256370544,
-0.048573337495326996,
-0.9820331335067749,
-0.6745738983154297,
-0.46466246247291565,
0.2923974096775055,
0.3540281355381012,
-0.3411684036254883,
-0.17522093653678894,
-0.30589917302131653,
0.15791958570480347,
0.1281142681837082,
-0.48419976234436035,
-0.5543919205665588,
-0.547515869140625,
-0.39602571725845337,
0.6206656694412231,
0.34829503297805786,
0.24291737377643585,
-0.18884189426898956,
-0.3228582441806793,
0.0880165845155716,
-0.41608554124832153,
0.3402574062347412,
0.6335517168045044,
0.711402416229248,
-0.5811446309089661,
0.5602157711982727,
-0.049275897443294525,
0.7439709901809692,
0.11445585638284683,
-0.2747812569141388,
0.4146060049533844,
-0.14724673330783844,
0.055171847343444824,
0.42263513803482056,
0.3152443468570709,
0.28413069248199463,
-0.3273696303367615,
0.20322275161743164,
-0.32151490449905396,
-0.3049626648426056,
-0.2233218252658844,
-0.29490745067596436,
-0.35921788215637207,
0.5492295026779175,
-0.3314018249511719,
-0.4285552501678467,
1.1431758403778076,
-0.42007699608802795,
-0.7302228808403015,
0.33156365156173706,
0.40652117133140564,
-0.0994473472237587,
-0.37146514654159546,
-0.052260853350162506,
-0.8458787202835083,
-0.00790744461119175,
0.7491178512573242,
-0.7198969125747681,
0.33717358112335205,
0.47280627489089966,
0.741721510887146,
0.1965060532093048,
-0.14034466445446014,
-0.4294945299625397,
0.2971963882446289,
-0.8659994006156921,
0.6320174336433411,
-0.20135276019573212,
-1.0051976442337036,
0.11150483042001724,
0.8971704244613647,
-0.3789643347263336,
-1.2094870805740356,
1.0605157613754272,
-0.6887932419776917,
0.16017864644527435,
-0.6767609119415283,
-0.14661164581775665,
-0.07118469476699829,
-0.005095955915749073,
-0.6088155508041382,
0.7567099332809448,
0.5872676968574524,
-0.49952778220176697,
0.21429462730884552,
-0.2602984309196472,
-0.3915135860443115,
0.38824939727783203,
-0.0793546810746193,
-0.21858906745910645,
0.7138336896896362,
-0.6647078394889832,
-0.2693284749984741,
0.2942773103713989,
0.23689350485801697,
-0.357060968875885,
-0.793192446231842,
0.08478079736232758,
-0.05786222219467163,
1.5507503747940063,
-0.03868860378861427,
-0.35861143469810486,
-0.6793836951255798,
-1.1506236791610718,
-0.07070811837911606,
0.6886887550354004,
-0.9194992184638977,
-0.27839499711990356,
-0.046410247683525085,
-0.26169371604919434,
0.0899493545293808,
0.7390591502189636,
-1.119404911994934,
0.28327250480651855,
-0.050927065312862396,
-0.22794730961322784,
0.8271061182022095,
0.1538720428943634,
0.24758882820606232,
0.14913466572761536,
0.4295872151851654,
0.5277255773544312,
0.11115183681249619,
0.6835882663726807,
-0.3472035229206085,
-0.9694353938102722,
0.6154633164405823,
0.25266438722610474,
0.8121451139450073,
-0.49945372343063354,
0.2685092091560364,
0.2702546715736389,
-0.3409683108329773,
-0.5682377815246582,
-0.310282826423645,
0.09025713056325912,
0.14930608868598938,
0.11142496764659882,
-0.5721707344055176,
-0.6576128005981445,
-0.9689135551452637,
-0.13590654730796814,
-0.43143755197525024,
-0.35715678334236145,
0.2100687474012375,
0.5792907476425171,
-1.1975533962249756,
0.4128877520561218,
-0.7705622911453247,
-0.703874409198761,
-0.010655621066689491,
-0.1933809369802475,
0.7540653944015503,
0.43240174651145935,
0.5033961534500122,
-0.6397145390510559,
-0.5661987066268921,
-0.22470159828662872,
-1.0333740711212158,
-0.13280484080314636,
0.24819664657115936,
0.3065737783908844,
-0.1342328041791916,
-0.2744964361190796,
-0.48740261793136597,
0.8100383877754211,
0.14789214730262756,
-0.5391897559165955,
0.5220769643783569,
-0.3020317554473877,
0.17224839329719543,
-0.6369158029556274,
-0.0691685602068901,
-0.6616761684417725,
-0.0009067110950127244,
-0.36083078384399414,
-0.5737436413764954,
0.14772333204746246,
0.07017548382282257,
-0.16065415740013123,
0.2880837619304657,
-0.909276008605957,
-0.0010854422580450773,
-0.744221568107605,
0.37907224893569946,
0.0639476627111435,
-0.3145084083080292,
-0.017516743391752243,
1.000038743019104,
0.7784457206726074,
-0.3848040699958801,
0.7217439413070679,
0.4440040588378906,
0.19036099314689636,
0.7630518674850464,
-0.18725158274173737,
0.16478213667869568,
-0.5245421528816223,
-0.12161099910736084,
-0.8887605667114258,
-1.0982943773269653,
0.7320572137832642,
-0.6114250421524048,
0.36542850732803345,
-0.42778605222702026,
0.2589159309864044,
-0.6919258832931519,
-0.038853395730257034,
0.4808599054813385,
-0.05936374515295029,
-0.6863952875137329,
0.5232571363449097,
0.4531749188899994,
-0.2019244134426117,
-0.6609036922454834,
-0.5301570296287537,
0.39365914463996887,
0.6154113411903381,
-0.16390396654605865,
0.06878498196601868,
0.14941087365150452,
-0.5441920757293701,
-0.040802545845508575,
-0.3869187533855438,
-0.4576674997806549,
0.05422405153512955,
0.13053379952907562,
-0.005750161595642567,
-0.40482011437416077,
-0.08680257946252823,
-0.35842010378837585,
-0.4656125009059906,
0.21876463294029236,
0.30119529366493225,
-0.04096344858407974,
-0.42599743604660034,
-0.36198148131370544,
-0.8881808519363403,
0.6719611883163452,
0.5370280146598816,
0.05281474441289902,
0.7555550336837769,
0.16819244623184204,
-0.801498293876648,
-0.13532206416130066,
-0.17607054114341736,
0.2696835994720459,
-0.5588056445121765,
0.13849826157093048,
-0.013484805822372437,
-0.06374907493591309,
0.2629791498184204,
0.25386205315589905,
-0.4300558567047119,
0.927625298500061,
-0.26152747869491577,
-0.3592526614665985,
0.7960182428359985,
0.5974737405776978,
0.4958309531211853,
0.16503198444843292,
-0.044541094452142715,
0.9007097482681274,
-1.196651816368103,
-0.6563171744346619,
-0.7409546375274658,
-0.15945661067962646,
-0.43510857224464417,
-0.0321057066321373,
0.6254417300224304,
0.29009905457496643,
-0.13333925604820251,
0.47563934326171875,
-0.5243490934371948,
0.3556032180786133,
1.0119839906692505,
0.3574867248535156,
0.34357017278671265,
-0.7570232152938843,
-0.25157779455184937,
-0.14024296402931213,
-0.9998159408569336,
-0.2631372809410095,
0.8871029615402222,
0.2275265008211136,
0.8444608449935913,
0.5992542505264282,
0.6784538626670837,
0.136723130941391,
0.2523833215236664,
-0.305902898311615,
0.39202871918678284,
0.43760839104652405,
-1.040114164352417,
-0.42758411169052124,
0.02141888067126274,
-0.9703332185745239,
-0.14227578043937683,
-0.03495054319500923,
-0.42617106437683105,
0.7681738138198853,
0.00016635804786346853,
-0.4076710641384125,
0.7732735872268677,
-0.4555833339691162,
0.7562878727912903,
-0.4473649859428406,
-0.026638653129339218,
0.4699098467826843,
-0.707064151763916,
0.4677433967590332,
0.12878736853599548,
0.6205845475196838,
-0.015571946278214455,
-0.04078621417284012,
0.7104931473731995,
-0.9129164814949036,
0.25438612699508667,
-0.6348398923873901,
0.22421303391456604,
0.24246959388256073,
0.5160625576972961,
0.5969962477684021,
0.4371241629123688,
0.10119915008544922,
-0.23920848965644836,
0.04115789383649826,
-0.8241121172904968,
-0.21050670742988586,
0.6975144147872925,
-0.7186897397041321,
-0.6864195466041565,
-1.2355334758758545,
0.14438661932945251,
0.2734704911708832,
0.3893047273159027,
0.7959297895431519,
0.5714079141616821,
0.12895449995994568,
0.6805254220962524,
0.9888579249382019,
-0.06885591894388199,
0.916691780090332,
0.3224475085735321,
0.09175165742635727,
-0.2194489687681198,
0.703682541847229,
0.2662784457206726,
-0.2470790147781372,
-0.11939744651317596,
0.20913469791412354,
-0.11069414764642715,
-0.5917618870735168,
-0.4999074339866638,
0.3701755702495575,
-0.6731783747673035,
-0.1830393373966217,
-0.6243732571601868,
-0.6043766736984253,
-0.5117589235305786,
0.0692739263176918,
-0.7147684097290039,
0.23979082703590393,
-0.7753568887710571,
-0.10574901103973389,
0.04323358088731766,
0.9792002439498901,
-0.5893120765686035,
0.5805228352546692,
-1.12185800075531,
0.19345775246620178,
-0.07949890196323395,
0.792106032371521,
0.2139579802751541,
-0.7344390153884888,
-0.39754199981689453,
-0.11592598259449005,
-0.37299054861068726,
-1.3576757907867432,
0.21404962241649628,
-0.24541422724723816,
0.2309398353099823,
0.6145407557487488,
0.13977040350437164,
0.5258244276046753,
-0.3432632088661194,
0.7029102444648743,
-0.057016827166080475,
-0.7069293856620789,
0.7934491038322449,
-0.5026893615722656,
0.4963533282279968,
0.9766002893447876,
0.5333840250968933,
-0.7984007596969604,
0.0357406847178936,
-1.041122555732727,
-0.600869357585907,
0.38426393270492554,
0.1192895919084549,
-0.03601125627756119,
-0.665955662727356,
-0.054019927978515625,
-0.16143806278705597,
0.6043741703033447,
-1.0390695333480835,
-0.785835862159729,
0.25766894221305847,
0.5277299284934998,
0.08168502151966095,
-0.5653401613235474,
0.2088075876235962,
-0.5444163084030151,
1.0657776594161987,
0.45109352469444275,
0.32744958996772766,
0.8406059145927429,
0.4649237096309662,
-0.38231605291366577,
0.09252502024173737,
0.7662692070007324,
0.6666228771209717,
-0.5239795446395874,
-0.2908027172088623,
-0.0882752314209938,
-0.9143400192260742,
0.05927503854036331,
0.1116887554526329,
-0.013456095941364765,
0.9082115292549133,
0.579308032989502,
0.253970205783844,
0.4514276385307312,
-0.7264610528945923,
0.8859445452690125,
-0.1495419293642044,
-0.1247284859418869,
-1.0677239894866943,
0.19486205279827118,
-0.23984935879707336,
0.5006400346755981,
1.0061331987380981,
0.525004506111145,
-0.047630541026592255,
-0.814338207244873,
-0.014736384153366089,
0.6939173936843872,
-0.7091119289398193,
-0.17449775338172913,
0.9448539614677429,
0.38471025228500366,
-1.295304536819458,
1.106776475906372,
-0.5381773710250854,
-0.5603317618370056,
0.9121302366256714,
0.5229570269584656,
1.1221849918365479,
-0.44204193353652954,
0.0008675057324580848,
0.2662239074707031,
0.4137844443321228,
0.5423170328140259,
1.0869632959365845,
0.43141356110572815,
-0.7931072115898132,
0.8826581835746765,
-0.24776068329811096,
-0.40361127257347107,
-0.053475700318813324,
-0.42859864234924316,
0.16892209649085999,
-0.4406189024448395,
-0.10712965577840805,
-0.3444185256958008,
0.2854307293891907,
-0.70720374584198,
0.42807644605636597,
-0.08385642617940903,
0.8653066754341125,
-0.8553729057312012,
0.47207602858543396,
0.6354700326919556,
-0.33373481035232544,
-0.8508192300796509,
-0.26198476552963257,
-0.1144845262169838,
-0.6389466524124146,
0.30214792490005493,
-0.45541054010391235,
0.044398874044418335,
0.09623479843139648,
-0.6491509675979614,
-1.1778273582458496,
0.9093631505966187,
-0.6396117210388184,
-0.2784458100795746,
0.20463958382606506,
-0.1151471883058548,
0.28811654448509216,
-0.2524648904800415,
0.010661328211426735,
0.4187661111354828,
0.7489396333694458,
0.28446561098098755,
-0.7727053761482239,
-0.36948859691619873,
0.0015033691888675094,
-0.44474759697914124,
0.7582973837852478,
-0.6002098917961121,
1.1840776205062866,
-0.556353747844696,
-0.05965423583984375,
0.4438447952270508,
0.24690861999988556,
0.21076245605945587,
0.6629217267036438,
0.144208163022995,
0.7282259464263916,
1.0701210498809814,
-0.4083522856235504,
0.881180465221405,
0.26432785391807556,
0.4743083417415619,
0.7238510251045227,
-0.6487718820571899,
0.7513747811317444,
0.3181043267250061,
-0.5682927966117859,
0.9228019714355469,
1.290606141090393,
-0.15699152648448944,
0.80793696641922,
0.051364265382289886,
-1.0815999507904053,
0.32583361864089966,
-0.20724761486053467,
-0.7530062198638916,
0.31502565741539,
0.19055864214897156,
-0.6920987367630005,
-0.5770313739776611,
-0.2404651641845703,
-0.35662829875946045,
-0.11552873998880386,
-0.763173520565033,
0.6720565557479858,
-0.01696927472949028,
-0.5103673934936523,
0.18857470154762268,
0.28775009512901306,
0.17368444800376892,
-0.5235736966133118,
-0.029393965378403664,
-0.22823575139045715,
0.2660652697086334,
-0.5670853853225708,
-0.5234523415565491,
0.5724437236785889,
-0.32430148124694824,
-0.5343252420425415,
0.181474968791008,
0.7635870575904846,
-0.16923785209655762,
-0.4515411853790283,
0.3247268795967102,
0.6959530115127563,
0.16658467054367065,
0.42502790689468384,
-0.23511283099651337,
0.2448059767484665,
-0.08044827729463577,
-0.06651593744754791,
0.27714747190475464,
0.3449171781539917,
0.22435645759105682,
0.44501352310180664,
0.432856947183609,
-0.018087303265929222,
-0.10736559331417084,
-0.38282057642936707,
0.41249361634254456,
-0.9542784690856934,
-0.5713290572166443,
-0.630710780620575,
0.2740667760372162,
-0.023154327645897865,
-1.0836422443389893,
0.41451746225357056,
1.4406688213348389,
1.0359984636306763,
-0.4756380617618561,
1.0672271251678467,
-0.21818462014198303,
0.9594789743423462,
0.4148314893245697,
0.5420438051223755,
-0.6030403971672058,
0.038353081792593,
-0.43644052743911743,
-1.0769634246826172,
-0.3571633994579315,
0.4539390206336975,
-0.02289981208741665,
-0.3429867625236511,
0.8725717663764954,
0.5887162685394287,
-0.3347362279891968,
-0.11728022992610931,
0.04848663881421089,
-0.029941599816083908,
-0.12433874607086182,
0.5145372152328491,
0.764839768409729,
-0.9344298243522644,
-0.10680411010980606,
-0.21577700972557068,
-0.6382728815078735,
-0.5047284364700317,
-0.9632002711296082,
-0.12959381937980652,
-0.16037842631340027,
0.03534334897994995,
-0.5662809014320374,
0.002556905150413513,
1.2083250284194946,
0.5684951543807983,
-1.1113994121551514,
-0.5303782224655151,
0.33718499541282654,
0.39204245805740356,
-0.1874789297580719,
-0.24202406406402588,
0.2984571158885956,
0.1538221836090088,
-0.5908879041671753,
0.6875662803649902,
0.8089626431465149,
0.20888905227184296,
0.19554781913757324,
0.15893003344535828,
-0.8229468464851379,
-0.1491343379020691,
0.1744047999382019,
0.9450566172599792,
-0.9398531913757324,
-0.7114846110343933,
-0.03168468177318573,
-0.2709487974643707,
-0.05765697360038757,
0.17102089524269104,
-0.4046342968940735,
0.5180684924125671,
0.34591469168663025,
0.49933499097824097,
0.056160878390073776,
-0.05474642664194107,
0.5409556031227112,
-0.9069051742553711,
0.09425970166921616,
0.41343608498573303,
0.4154110848903656,
-0.4000871181488037,
-0.5910195112228394,
0.6713417172431946,
1.0073974132537842,
-0.6594864130020142,
-0.8743263483047485,
-0.19846680760383606,
-1.0016000270843506,
0.04189697653055191,
0.6762756109237671,
0.5009528994560242,
-0.48065176606178284,
-0.4174492359161377,
-0.5617400407791138,
-0.1254679411649704,
-0.13699708878993988,
0.76216059923172,
1.1796802282333374,
-0.7432100772857666,
0.07975788414478302,
-1.0386393070220947,
0.6594987511634827,
-0.2419460564851761,
-0.3457580506801605,
-0.4864429533481598,
0.3832802176475525,
0.3523699641227722,
0.44048118591308594,
0.6148120164871216,
0.14084689319133759,
0.8338428735733032,
0.31260576844215393,
-0.17026856541633606,
0.2698982357978821,
-0.4559198319911957,
-0.02893332578241825,
-0.05796259641647339,
0.3101596236228943,
-1.026215672492981
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
Tevatron/wikipedia-curated-corpus | Tevatron | 2021-09-23T01:58:40Z | 292 | 0 | null | [
"region:us"
] | 2021-09-23T01:58:40Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227645754814148,
-0.22568479180335999,
0.8622263669967651,
0.43461522459983826,
-0.52829909324646,
0.7012971639633179,
0.7915719747543335,
0.07618614286184311,
0.774603009223938,
0.2563217282295227,
-0.7852813005447388,
-0.22573819756507874,
-0.9104475975036621,
0.5715674161911011,
-0.3992327153682709,
0.5791246294975281,
-0.14494499564170837,
-0.10751135647296906,
0.28233814239501953,
-0.2768957316875458,
-0.5409227013587952,
-0.3685525059700012,
-1.1902779340744019,
0.061491698026657104,
0.5316582918167114,
0.743514358997345,
0.7584061622619629,
0.3652168810367584,
0.643257737159729,
0.39322906732559204,
-0.231389120221138,
0.48270541429519653,
-0.04171793907880783,
0.0026038705836981535,
-0.3524438440799713,
-0.5516899824142456,
-0.28596577048301697,
0.07584768533706665,
1.096130132675171,
0.9666873812675476,
-0.28466421365737915,
0.05330856889486313,
-0.30636167526245117,
0.3308892846107483,
-0.4973427355289459,
0.3054097294807434,
-0.022506216540932655,
0.16318757832050323,
-0.704151451587677,
-0.5535351634025574,
0.012795033864676952,
-0.7361212968826294,
0.17926514148712158,
-0.6900812387466431,
0.8269097208976746,
0.18583209812641144,
1.1533749103546143,
0.14819422364234924,
-0.4624859392642975,
-0.8161761164665222,
-0.6538985371589661,
0.5711163282394409,
-0.32703715562820435,
0.3968023657798767,
0.7028226256370544,
-0.048573337495326996,
-0.9820331335067749,
-0.6745738983154297,
-0.46466246247291565,
0.2923974096775055,
0.3540281355381012,
-0.3411684036254883,
-0.17522093653678894,
-0.30589917302131653,
0.15791958570480347,
0.1281142681837082,
-0.48419976234436035,
-0.5543919205665588,
-0.547515869140625,
-0.39602571725845337,
0.6206656694412231,
0.34829503297805786,
0.24291737377643585,
-0.18884189426898956,
-0.3228582441806793,
0.0880165845155716,
-0.41608554124832153,
0.3402574062347412,
0.6335517168045044,
0.711402416229248,
-0.5811446309089661,
0.5602157711982727,
-0.049275897443294525,
0.7439709901809692,
0.11445585638284683,
-0.2747812569141388,
0.4146060049533844,
-0.14724673330783844,
0.055171847343444824,
0.42263513803482056,
0.3152443468570709,
0.28413069248199463,
-0.3273696303367615,
0.20322275161743164,
-0.32151490449905396,
-0.3049626648426056,
-0.2233218252658844,
-0.29490745067596436,
-0.35921788215637207,
0.5492295026779175,
-0.3314018249511719,
-0.4285552501678467,
1.1431758403778076,
-0.42007699608802795,
-0.7302228808403015,
0.33156365156173706,
0.40652117133140564,
-0.0994473472237587,
-0.37146514654159546,
-0.052260853350162506,
-0.8458787202835083,
-0.00790744461119175,
0.7491178512573242,
-0.7198969125747681,
0.33717358112335205,
0.47280627489089966,
0.741721510887146,
0.1965060532093048,
-0.14034466445446014,
-0.4294945299625397,
0.2971963882446289,
-0.8659994006156921,
0.6320174336433411,
-0.20135276019573212,
-1.0051976442337036,
0.11150483042001724,
0.8971704244613647,
-0.3789643347263336,
-1.2094870805740356,
1.0605157613754272,
-0.6887932419776917,
0.16017864644527435,
-0.6767609119415283,
-0.14661164581775665,
-0.07118469476699829,
-0.005095955915749073,
-0.6088155508041382,
0.7567099332809448,
0.5872676968574524,
-0.49952778220176697,
0.21429462730884552,
-0.2602984309196472,
-0.3915135860443115,
0.38824939727783203,
-0.0793546810746193,
-0.21858906745910645,
0.7138336896896362,
-0.6647078394889832,
-0.2693284749984741,
0.2942773103713989,
0.23689350485801697,
-0.357060968875885,
-0.793192446231842,
0.08478079736232758,
-0.05786222219467163,
1.5507503747940063,
-0.03868860378861427,
-0.35861143469810486,
-0.6793836951255798,
-1.1506236791610718,
-0.07070811837911606,
0.6886887550354004,
-0.9194992184638977,
-0.27839499711990356,
-0.046410247683525085,
-0.26169371604919434,
0.0899493545293808,
0.7390591502189636,
-1.119404911994934,
0.28327250480651855,
-0.050927065312862396,
-0.22794730961322784,
0.8271061182022095,
0.1538720428943634,
0.24758882820606232,
0.14913466572761536,
0.4295872151851654,
0.5277255773544312,
0.11115183681249619,
0.6835882663726807,
-0.3472035229206085,
-0.9694353938102722,
0.6154633164405823,
0.25266438722610474,
0.8121451139450073,
-0.49945372343063354,
0.2685092091560364,
0.2702546715736389,
-0.3409683108329773,
-0.5682377815246582,
-0.310282826423645,
0.09025713056325912,
0.14930608868598938,
0.11142496764659882,
-0.5721707344055176,
-0.6576128005981445,
-0.9689135551452637,
-0.13590654730796814,
-0.43143755197525024,
-0.35715678334236145,
0.2100687474012375,
0.5792907476425171,
-1.1975533962249756,
0.4128877520561218,
-0.7705622911453247,
-0.703874409198761,
-0.010655621066689491,
-0.1933809369802475,
0.7540653944015503,
0.43240174651145935,
0.5033961534500122,
-0.6397145390510559,
-0.5661987066268921,
-0.22470159828662872,
-1.0333740711212158,
-0.13280484080314636,
0.24819664657115936,
0.3065737783908844,
-0.1342328041791916,
-0.2744964361190796,
-0.48740261793136597,
0.8100383877754211,
0.14789214730262756,
-0.5391897559165955,
0.5220769643783569,
-0.3020317554473877,
0.17224839329719543,
-0.6369158029556274,
-0.0691685602068901,
-0.6616761684417725,
-0.0009067110950127244,
-0.36083078384399414,
-0.5737436413764954,
0.14772333204746246,
0.07017548382282257,
-0.16065415740013123,
0.2880837619304657,
-0.909276008605957,
-0.0010854422580450773,
-0.744221568107605,
0.37907224893569946,
0.0639476627111435,
-0.3145084083080292,
-0.017516743391752243,
1.000038743019104,
0.7784457206726074,
-0.3848040699958801,
0.7217439413070679,
0.4440040588378906,
0.19036099314689636,
0.7630518674850464,
-0.18725158274173737,
0.16478213667869568,
-0.5245421528816223,
-0.12161099910736084,
-0.8887605667114258,
-1.0982943773269653,
0.7320572137832642,
-0.6114250421524048,
0.36542850732803345,
-0.42778605222702026,
0.2589159309864044,
-0.6919258832931519,
-0.038853395730257034,
0.4808599054813385,
-0.05936374515295029,
-0.6863952875137329,
0.5232571363449097,
0.4531749188899994,
-0.2019244134426117,
-0.6609036922454834,
-0.5301570296287537,
0.39365914463996887,
0.6154113411903381,
-0.16390396654605865,
0.06878498196601868,
0.14941087365150452,
-0.5441920757293701,
-0.040802545845508575,
-0.3869187533855438,
-0.4576674997806549,
0.05422405153512955,
0.13053379952907562,
-0.005750161595642567,
-0.40482011437416077,
-0.08680257946252823,
-0.35842010378837585,
-0.4656125009059906,
0.21876463294029236,
0.30119529366493225,
-0.04096344858407974,
-0.42599743604660034,
-0.36198148131370544,
-0.8881808519363403,
0.6719611883163452,
0.5370280146598816,
0.05281474441289902,
0.7555550336837769,
0.16819244623184204,
-0.801498293876648,
-0.13532206416130066,
-0.17607054114341736,
0.2696835994720459,
-0.5588056445121765,
0.13849826157093048,
-0.013484805822372437,
-0.06374907493591309,
0.2629791498184204,
0.25386205315589905,
-0.4300558567047119,
0.927625298500061,
-0.26152747869491577,
-0.3592526614665985,
0.7960182428359985,
0.5974737405776978,
0.4958309531211853,
0.16503198444843292,
-0.044541094452142715,
0.9007097482681274,
-1.196651816368103,
-0.6563171744346619,
-0.7409546375274658,
-0.15945661067962646,
-0.43510857224464417,
-0.0321057066321373,
0.6254417300224304,
0.29009905457496643,
-0.13333925604820251,
0.47563934326171875,
-0.5243490934371948,
0.3556032180786133,
1.0119839906692505,
0.3574867248535156,
0.34357017278671265,
-0.7570232152938843,
-0.25157779455184937,
-0.14024296402931213,
-0.9998159408569336,
-0.2631372809410095,
0.8871029615402222,
0.2275265008211136,
0.8444608449935913,
0.5992542505264282,
0.6784538626670837,
0.136723130941391,
0.2523833215236664,
-0.305902898311615,
0.39202871918678284,
0.43760839104652405,
-1.040114164352417,
-0.42758411169052124,
0.02141888067126274,
-0.9703332185745239,
-0.14227578043937683,
-0.03495054319500923,
-0.42617106437683105,
0.7681738138198853,
0.00016635804786346853,
-0.4076710641384125,
0.7732735872268677,
-0.4555833339691162,
0.7562878727912903,
-0.4473649859428406,
-0.026638653129339218,
0.4699098467826843,
-0.707064151763916,
0.4677433967590332,
0.12878736853599548,
0.6205845475196838,
-0.015571946278214455,
-0.04078621417284012,
0.7104931473731995,
-0.9129164814949036,
0.25438612699508667,
-0.6348398923873901,
0.22421303391456604,
0.24246959388256073,
0.5160625576972961,
0.5969962477684021,
0.4371241629123688,
0.10119915008544922,
-0.23920848965644836,
0.04115789383649826,
-0.8241121172904968,
-0.21050670742988586,
0.6975144147872925,
-0.7186897397041321,
-0.6864195466041565,
-1.2355334758758545,
0.14438661932945251,
0.2734704911708832,
0.3893047273159027,
0.7959297895431519,
0.5714079141616821,
0.12895449995994568,
0.6805254220962524,
0.9888579249382019,
-0.06885591894388199,
0.916691780090332,
0.3224475085735321,
0.09175165742635727,
-0.2194489687681198,
0.703682541847229,
0.2662784457206726,
-0.2470790147781372,
-0.11939744651317596,
0.20913469791412354,
-0.11069414764642715,
-0.5917618870735168,
-0.4999074339866638,
0.3701755702495575,
-0.6731783747673035,
-0.1830393373966217,
-0.6243732571601868,
-0.6043766736984253,
-0.5117589235305786,
0.0692739263176918,
-0.7147684097290039,
0.23979082703590393,
-0.7753568887710571,
-0.10574901103973389,
0.04323358088731766,
0.9792002439498901,
-0.5893120765686035,
0.5805228352546692,
-1.12185800075531,
0.19345775246620178,
-0.07949890196323395,
0.792106032371521,
0.2139579802751541,
-0.7344390153884888,
-0.39754199981689453,
-0.11592598259449005,
-0.37299054861068726,
-1.3576757907867432,
0.21404962241649628,
-0.24541422724723816,
0.2309398353099823,
0.6145407557487488,
0.13977040350437164,
0.5258244276046753,
-0.3432632088661194,
0.7029102444648743,
-0.057016827166080475,
-0.7069293856620789,
0.7934491038322449,
-0.5026893615722656,
0.4963533282279968,
0.9766002893447876,
0.5333840250968933,
-0.7984007596969604,
0.0357406847178936,
-1.041122555732727,
-0.600869357585907,
0.38426393270492554,
0.1192895919084549,
-0.03601125627756119,
-0.665955662727356,
-0.054019927978515625,
-0.16143806278705597,
0.6043741703033447,
-1.0390695333480835,
-0.785835862159729,
0.25766894221305847,
0.5277299284934998,
0.08168502151966095,
-0.5653401613235474,
0.2088075876235962,
-0.5444163084030151,
1.0657776594161987,
0.45109352469444275,
0.32744958996772766,
0.8406059145927429,
0.4649237096309662,
-0.38231605291366577,
0.09252502024173737,
0.7662692070007324,
0.6666228771209717,
-0.5239795446395874,
-0.2908027172088623,
-0.0882752314209938,
-0.9143400192260742,
0.05927503854036331,
0.1116887554526329,
-0.013456095941364765,
0.9082115292549133,
0.579308032989502,
0.253970205783844,
0.4514276385307312,
-0.7264610528945923,
0.8859445452690125,
-0.1495419293642044,
-0.1247284859418869,
-1.0677239894866943,
0.19486205279827118,
-0.23984935879707336,
0.5006400346755981,
1.0061331987380981,
0.525004506111145,
-0.047630541026592255,
-0.814338207244873,
-0.014736384153366089,
0.6939173936843872,
-0.7091119289398193,
-0.17449775338172913,
0.9448539614677429,
0.38471025228500366,
-1.295304536819458,
1.106776475906372,
-0.5381773710250854,
-0.5603317618370056,
0.9121302366256714,
0.5229570269584656,
1.1221849918365479,
-0.44204193353652954,
0.0008675057324580848,
0.2662239074707031,
0.4137844443321228,
0.5423170328140259,
1.0869632959365845,
0.43141356110572815,
-0.7931072115898132,
0.8826581835746765,
-0.24776068329811096,
-0.40361127257347107,
-0.053475700318813324,
-0.42859864234924316,
0.16892209649085999,
-0.4406189024448395,
-0.10712965577840805,
-0.3444185256958008,
0.2854307293891907,
-0.70720374584198,
0.42807644605636597,
-0.08385642617940903,
0.8653066754341125,
-0.8553729057312012,
0.47207602858543396,
0.6354700326919556,
-0.33373481035232544,
-0.8508192300796509,
-0.26198476552963257,
-0.1144845262169838,
-0.6389466524124146,
0.30214792490005493,
-0.45541054010391235,
0.044398874044418335,
0.09623479843139648,
-0.6491509675979614,
-1.1778273582458496,
0.9093631505966187,
-0.6396117210388184,
-0.2784458100795746,
0.20463958382606506,
-0.1151471883058548,
0.28811654448509216,
-0.2524648904800415,
0.010661328211426735,
0.4187661111354828,
0.7489396333694458,
0.28446561098098755,
-0.7727053761482239,
-0.36948859691619873,
0.0015033691888675094,
-0.44474759697914124,
0.7582973837852478,
-0.6002098917961121,
1.1840776205062866,
-0.556353747844696,
-0.05965423583984375,
0.4438447952270508,
0.24690861999988556,
0.21076245605945587,
0.6629217267036438,
0.144208163022995,
0.7282259464263916,
1.0701210498809814,
-0.4083522856235504,
0.881180465221405,
0.26432785391807556,
0.4743083417415619,
0.7238510251045227,
-0.6487718820571899,
0.7513747811317444,
0.3181043267250061,
-0.5682927966117859,
0.9228019714355469,
1.290606141090393,
-0.15699152648448944,
0.80793696641922,
0.051364265382289886,
-1.0815999507904053,
0.32583361864089966,
-0.20724761486053467,
-0.7530062198638916,
0.31502565741539,
0.19055864214897156,
-0.6920987367630005,
-0.5770313739776611,
-0.2404651641845703,
-0.35662829875946045,
-0.11552873998880386,
-0.763173520565033,
0.6720565557479858,
-0.01696927472949028,
-0.5103673934936523,
0.18857470154762268,
0.28775009512901306,
0.17368444800376892,
-0.5235736966133118,
-0.029393965378403664,
-0.22823575139045715,
0.2660652697086334,
-0.5670853853225708,
-0.5234523415565491,
0.5724437236785889,
-0.32430148124694824,
-0.5343252420425415,
0.181474968791008,
0.7635870575904846,
-0.16923785209655762,
-0.4515411853790283,
0.3247268795967102,
0.6959530115127563,
0.16658467054367065,
0.42502790689468384,
-0.23511283099651337,
0.2448059767484665,
-0.08044827729463577,
-0.06651593744754791,
0.27714747190475464,
0.3449171781539917,
0.22435645759105682,
0.44501352310180664,
0.432856947183609,
-0.018087303265929222,
-0.10736559331417084,
-0.38282057642936707,
0.41249361634254456,
-0.9542784690856934,
-0.5713290572166443,
-0.630710780620575,
0.2740667760372162,
-0.023154327645897865,
-1.0836422443389893,
0.41451746225357056,
1.4406688213348389,
1.0359984636306763,
-0.4756380617618561,
1.0672271251678467,
-0.21818462014198303,
0.9594789743423462,
0.4148314893245697,
0.5420438051223755,
-0.6030403971672058,
0.038353081792593,
-0.43644052743911743,
-1.0769634246826172,
-0.3571633994579315,
0.4539390206336975,
-0.02289981208741665,
-0.3429867625236511,
0.8725717663764954,
0.5887162685394287,
-0.3347362279891968,
-0.11728022992610931,
0.04848663881421089,
-0.029941599816083908,
-0.12433874607086182,
0.5145372152328491,
0.764839768409729,
-0.9344298243522644,
-0.10680411010980606,
-0.21577700972557068,
-0.6382728815078735,
-0.5047284364700317,
-0.9632002711296082,
-0.12959381937980652,
-0.16037842631340027,
0.03534334897994995,
-0.5662809014320374,
0.002556905150413513,
1.2083250284194946,
0.5684951543807983,
-1.1113994121551514,
-0.5303782224655151,
0.33718499541282654,
0.39204245805740356,
-0.1874789297580719,
-0.24202406406402588,
0.2984571158885956,
0.1538221836090088,
-0.5908879041671753,
0.6875662803649902,
0.8089626431465149,
0.20888905227184296,
0.19554781913757324,
0.15893003344535828,
-0.8229468464851379,
-0.1491343379020691,
0.1744047999382019,
0.9450566172599792,
-0.9398531913757324,
-0.7114846110343933,
-0.03168468177318573,
-0.2709487974643707,
-0.05765697360038757,
0.17102089524269104,
-0.4046342968940735,
0.5180684924125671,
0.34591469168663025,
0.49933499097824097,
0.056160878390073776,
-0.05474642664194107,
0.5409556031227112,
-0.9069051742553711,
0.09425970166921616,
0.41343608498573303,
0.4154110848903656,
-0.4000871181488037,
-0.5910195112228394,
0.6713417172431946,
1.0073974132537842,
-0.6594864130020142,
-0.8743263483047485,
-0.19846680760383606,
-1.0016000270843506,
0.04189697653055191,
0.6762756109237671,
0.5009528994560242,
-0.48065176606178284,
-0.4174492359161377,
-0.5617400407791138,
-0.1254679411649704,
-0.13699708878993988,
0.76216059923172,
1.1796802282333374,
-0.7432100772857666,
0.07975788414478302,
-1.0386393070220947,
0.6594987511634827,
-0.2419460564851761,
-0.3457580506801605,
-0.4864429533481598,
0.3832802176475525,
0.3523699641227722,
0.44048118591308594,
0.6148120164871216,
0.14084689319133759,
0.8338428735733032,
0.31260576844215393,
-0.17026856541633606,
0.2698982357978821,
-0.4559198319911957,
-0.02893332578241825,
-0.05796259641647339,
0.3101596236228943,
-1.026215672492981
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
Tevatron/wikipedia-wq-corpus | Tevatron | 2021-09-23T01:42:47Z | 292 | 0 | null | [
"region:us"
] | 2021-09-23T01:42:47Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227645754814148,
-0.22568479180335999,
0.8622263669967651,
0.43461522459983826,
-0.52829909324646,
0.7012971639633179,
0.7915719747543335,
0.07618614286184311,
0.774603009223938,
0.2563217282295227,
-0.7852813005447388,
-0.22573819756507874,
-0.9104475975036621,
0.5715674161911011,
-0.3992327153682709,
0.5791246294975281,
-0.14494499564170837,
-0.10751135647296906,
0.28233814239501953,
-0.2768957316875458,
-0.5409227013587952,
-0.3685525059700012,
-1.1902779340744019,
0.061491698026657104,
0.5316582918167114,
0.743514358997345,
0.7584061622619629,
0.3652168810367584,
0.643257737159729,
0.39322906732559204,
-0.231389120221138,
0.48270541429519653,
-0.04171793907880783,
0.0026038705836981535,
-0.3524438440799713,
-0.5516899824142456,
-0.28596577048301697,
0.07584768533706665,
1.096130132675171,
0.9666873812675476,
-0.28466421365737915,
0.05330856889486313,
-0.30636167526245117,
0.3308892846107483,
-0.4973427355289459,
0.3054097294807434,
-0.022506216540932655,
0.16318757832050323,
-0.704151451587677,
-0.5535351634025574,
0.012795033864676952,
-0.7361212968826294,
0.17926514148712158,
-0.6900812387466431,
0.8269097208976746,
0.18583209812641144,
1.1533749103546143,
0.14819422364234924,
-0.4624859392642975,
-0.8161761164665222,
-0.6538985371589661,
0.5711163282394409,
-0.32703715562820435,
0.3968023657798767,
0.7028226256370544,
-0.048573337495326996,
-0.9820331335067749,
-0.6745738983154297,
-0.46466246247291565,
0.2923974096775055,
0.3540281355381012,
-0.3411684036254883,
-0.17522093653678894,
-0.30589917302131653,
0.15791958570480347,
0.1281142681837082,
-0.48419976234436035,
-0.5543919205665588,
-0.547515869140625,
-0.39602571725845337,
0.6206656694412231,
0.34829503297805786,
0.24291737377643585,
-0.18884189426898956,
-0.3228582441806793,
0.0880165845155716,
-0.41608554124832153,
0.3402574062347412,
0.6335517168045044,
0.711402416229248,
-0.5811446309089661,
0.5602157711982727,
-0.049275897443294525,
0.7439709901809692,
0.11445585638284683,
-0.2747812569141388,
0.4146060049533844,
-0.14724673330783844,
0.055171847343444824,
0.42263513803482056,
0.3152443468570709,
0.28413069248199463,
-0.3273696303367615,
0.20322275161743164,
-0.32151490449905396,
-0.3049626648426056,
-0.2233218252658844,
-0.29490745067596436,
-0.35921788215637207,
0.5492295026779175,
-0.3314018249511719,
-0.4285552501678467,
1.1431758403778076,
-0.42007699608802795,
-0.7302228808403015,
0.33156365156173706,
0.40652117133140564,
-0.0994473472237587,
-0.37146514654159546,
-0.052260853350162506,
-0.8458787202835083,
-0.00790744461119175,
0.7491178512573242,
-0.7198969125747681,
0.33717358112335205,
0.47280627489089966,
0.741721510887146,
0.1965060532093048,
-0.14034466445446014,
-0.4294945299625397,
0.2971963882446289,
-0.8659994006156921,
0.6320174336433411,
-0.20135276019573212,
-1.0051976442337036,
0.11150483042001724,
0.8971704244613647,
-0.3789643347263336,
-1.2094870805740356,
1.0605157613754272,
-0.6887932419776917,
0.16017864644527435,
-0.6767609119415283,
-0.14661164581775665,
-0.07118469476699829,
-0.005095955915749073,
-0.6088155508041382,
0.7567099332809448,
0.5872676968574524,
-0.49952778220176697,
0.21429462730884552,
-0.2602984309196472,
-0.3915135860443115,
0.38824939727783203,
-0.0793546810746193,
-0.21858906745910645,
0.7138336896896362,
-0.6647078394889832,
-0.2693284749984741,
0.2942773103713989,
0.23689350485801697,
-0.357060968875885,
-0.793192446231842,
0.08478079736232758,
-0.05786222219467163,
1.5507503747940063,
-0.03868860378861427,
-0.35861143469810486,
-0.6793836951255798,
-1.1506236791610718,
-0.07070811837911606,
0.6886887550354004,
-0.9194992184638977,
-0.27839499711990356,
-0.046410247683525085,
-0.26169371604919434,
0.0899493545293808,
0.7390591502189636,
-1.119404911994934,
0.28327250480651855,
-0.050927065312862396,
-0.22794730961322784,
0.8271061182022095,
0.1538720428943634,
0.24758882820606232,
0.14913466572761536,
0.4295872151851654,
0.5277255773544312,
0.11115183681249619,
0.6835882663726807,
-0.3472035229206085,
-0.9694353938102722,
0.6154633164405823,
0.25266438722610474,
0.8121451139450073,
-0.49945372343063354,
0.2685092091560364,
0.2702546715736389,
-0.3409683108329773,
-0.5682377815246582,
-0.310282826423645,
0.09025713056325912,
0.14930608868598938,
0.11142496764659882,
-0.5721707344055176,
-0.6576128005981445,
-0.9689135551452637,
-0.13590654730796814,
-0.43143755197525024,
-0.35715678334236145,
0.2100687474012375,
0.5792907476425171,
-1.1975533962249756,
0.4128877520561218,
-0.7705622911453247,
-0.703874409198761,
-0.010655621066689491,
-0.1933809369802475,
0.7540653944015503,
0.43240174651145935,
0.5033961534500122,
-0.6397145390510559,
-0.5661987066268921,
-0.22470159828662872,
-1.0333740711212158,
-0.13280484080314636,
0.24819664657115936,
0.3065737783908844,
-0.1342328041791916,
-0.2744964361190796,
-0.48740261793136597,
0.8100383877754211,
0.14789214730262756,
-0.5391897559165955,
0.5220769643783569,
-0.3020317554473877,
0.17224839329719543,
-0.6369158029556274,
-0.0691685602068901,
-0.6616761684417725,
-0.0009067110950127244,
-0.36083078384399414,
-0.5737436413764954,
0.14772333204746246,
0.07017548382282257,
-0.16065415740013123,
0.2880837619304657,
-0.909276008605957,
-0.0010854422580450773,
-0.744221568107605,
0.37907224893569946,
0.0639476627111435,
-0.3145084083080292,
-0.017516743391752243,
1.000038743019104,
0.7784457206726074,
-0.3848040699958801,
0.7217439413070679,
0.4440040588378906,
0.19036099314689636,
0.7630518674850464,
-0.18725158274173737,
0.16478213667869568,
-0.5245421528816223,
-0.12161099910736084,
-0.8887605667114258,
-1.0982943773269653,
0.7320572137832642,
-0.6114250421524048,
0.36542850732803345,
-0.42778605222702026,
0.2589159309864044,
-0.6919258832931519,
-0.038853395730257034,
0.4808599054813385,
-0.05936374515295029,
-0.6863952875137329,
0.5232571363449097,
0.4531749188899994,
-0.2019244134426117,
-0.6609036922454834,
-0.5301570296287537,
0.39365914463996887,
0.6154113411903381,
-0.16390396654605865,
0.06878498196601868,
0.14941087365150452,
-0.5441920757293701,
-0.040802545845508575,
-0.3869187533855438,
-0.4576674997806549,
0.05422405153512955,
0.13053379952907562,
-0.005750161595642567,
-0.40482011437416077,
-0.08680257946252823,
-0.35842010378837585,
-0.4656125009059906,
0.21876463294029236,
0.30119529366493225,
-0.04096344858407974,
-0.42599743604660034,
-0.36198148131370544,
-0.8881808519363403,
0.6719611883163452,
0.5370280146598816,
0.05281474441289902,
0.7555550336837769,
0.16819244623184204,
-0.801498293876648,
-0.13532206416130066,
-0.17607054114341736,
0.2696835994720459,
-0.5588056445121765,
0.13849826157093048,
-0.013484805822372437,
-0.06374907493591309,
0.2629791498184204,
0.25386205315589905,
-0.4300558567047119,
0.927625298500061,
-0.26152747869491577,
-0.3592526614665985,
0.7960182428359985,
0.5974737405776978,
0.4958309531211853,
0.16503198444843292,
-0.044541094452142715,
0.9007097482681274,
-1.196651816368103,
-0.6563171744346619,
-0.7409546375274658,
-0.15945661067962646,
-0.43510857224464417,
-0.0321057066321373,
0.6254417300224304,
0.29009905457496643,
-0.13333925604820251,
0.47563934326171875,
-0.5243490934371948,
0.3556032180786133,
1.0119839906692505,
0.3574867248535156,
0.34357017278671265,
-0.7570232152938843,
-0.25157779455184937,
-0.14024296402931213,
-0.9998159408569336,
-0.2631372809410095,
0.8871029615402222,
0.2275265008211136,
0.8444608449935913,
0.5992542505264282,
0.6784538626670837,
0.136723130941391,
0.2523833215236664,
-0.305902898311615,
0.39202871918678284,
0.43760839104652405,
-1.040114164352417,
-0.42758411169052124,
0.02141888067126274,
-0.9703332185745239,
-0.14227578043937683,
-0.03495054319500923,
-0.42617106437683105,
0.7681738138198853,
0.00016635804786346853,
-0.4076710641384125,
0.7732735872268677,
-0.4555833339691162,
0.7562878727912903,
-0.4473649859428406,
-0.026638653129339218,
0.4699098467826843,
-0.707064151763916,
0.4677433967590332,
0.12878736853599548,
0.6205845475196838,
-0.015571946278214455,
-0.04078621417284012,
0.7104931473731995,
-0.9129164814949036,
0.25438612699508667,
-0.6348398923873901,
0.22421303391456604,
0.24246959388256073,
0.5160625576972961,
0.5969962477684021,
0.4371241629123688,
0.10119915008544922,
-0.23920848965644836,
0.04115789383649826,
-0.8241121172904968,
-0.21050670742988586,
0.6975144147872925,
-0.7186897397041321,
-0.6864195466041565,
-1.2355334758758545,
0.14438661932945251,
0.2734704911708832,
0.3893047273159027,
0.7959297895431519,
0.5714079141616821,
0.12895449995994568,
0.6805254220962524,
0.9888579249382019,
-0.06885591894388199,
0.916691780090332,
0.3224475085735321,
0.09175165742635727,
-0.2194489687681198,
0.703682541847229,
0.2662784457206726,
-0.2470790147781372,
-0.11939744651317596,
0.20913469791412354,
-0.11069414764642715,
-0.5917618870735168,
-0.4999074339866638,
0.3701755702495575,
-0.6731783747673035,
-0.1830393373966217,
-0.6243732571601868,
-0.6043766736984253,
-0.5117589235305786,
0.0692739263176918,
-0.7147684097290039,
0.23979082703590393,
-0.7753568887710571,
-0.10574901103973389,
0.04323358088731766,
0.9792002439498901,
-0.5893120765686035,
0.5805228352546692,
-1.12185800075531,
0.19345775246620178,
-0.07949890196323395,
0.792106032371521,
0.2139579802751541,
-0.7344390153884888,
-0.39754199981689453,
-0.11592598259449005,
-0.37299054861068726,
-1.3576757907867432,
0.21404962241649628,
-0.24541422724723816,
0.2309398353099823,
0.6145407557487488,
0.13977040350437164,
0.5258244276046753,
-0.3432632088661194,
0.7029102444648743,
-0.057016827166080475,
-0.7069293856620789,
0.7934491038322449,
-0.5026893615722656,
0.4963533282279968,
0.9766002893447876,
0.5333840250968933,
-0.7984007596969604,
0.0357406847178936,
-1.041122555732727,
-0.600869357585907,
0.38426393270492554,
0.1192895919084549,
-0.03601125627756119,
-0.665955662727356,
-0.054019927978515625,
-0.16143806278705597,
0.6043741703033447,
-1.0390695333480835,
-0.785835862159729,
0.25766894221305847,
0.5277299284934998,
0.08168502151966095,
-0.5653401613235474,
0.2088075876235962,
-0.5444163084030151,
1.0657776594161987,
0.45109352469444275,
0.32744958996772766,
0.8406059145927429,
0.4649237096309662,
-0.38231605291366577,
0.09252502024173737,
0.7662692070007324,
0.6666228771209717,
-0.5239795446395874,
-0.2908027172088623,
-0.0882752314209938,
-0.9143400192260742,
0.05927503854036331,
0.1116887554526329,
-0.013456095941364765,
0.9082115292549133,
0.579308032989502,
0.253970205783844,
0.4514276385307312,
-0.7264610528945923,
0.8859445452690125,
-0.1495419293642044,
-0.1247284859418869,
-1.0677239894866943,
0.19486205279827118,
-0.23984935879707336,
0.5006400346755981,
1.0061331987380981,
0.525004506111145,
-0.047630541026592255,
-0.814338207244873,
-0.014736384153366089,
0.6939173936843872,
-0.7091119289398193,
-0.17449775338172913,
0.9448539614677429,
0.38471025228500366,
-1.295304536819458,
1.106776475906372,
-0.5381773710250854,
-0.5603317618370056,
0.9121302366256714,
0.5229570269584656,
1.1221849918365479,
-0.44204193353652954,
0.0008675057324580848,
0.2662239074707031,
0.4137844443321228,
0.5423170328140259,
1.0869632959365845,
0.43141356110572815,
-0.7931072115898132,
0.8826581835746765,
-0.24776068329811096,
-0.40361127257347107,
-0.053475700318813324,
-0.42859864234924316,
0.16892209649085999,
-0.4406189024448395,
-0.10712965577840805,
-0.3444185256958008,
0.2854307293891907,
-0.70720374584198,
0.42807644605636597,
-0.08385642617940903,
0.8653066754341125,
-0.8553729057312012,
0.47207602858543396,
0.6354700326919556,
-0.33373481035232544,
-0.8508192300796509,
-0.26198476552963257,
-0.1144845262169838,
-0.6389466524124146,
0.30214792490005493,
-0.45541054010391235,
0.044398874044418335,
0.09623479843139648,
-0.6491509675979614,
-1.1778273582458496,
0.9093631505966187,
-0.6396117210388184,
-0.2784458100795746,
0.20463958382606506,
-0.1151471883058548,
0.28811654448509216,
-0.2524648904800415,
0.010661328211426735,
0.4187661111354828,
0.7489396333694458,
0.28446561098098755,
-0.7727053761482239,
-0.36948859691619873,
0.0015033691888675094,
-0.44474759697914124,
0.7582973837852478,
-0.6002098917961121,
1.1840776205062866,
-0.556353747844696,
-0.05965423583984375,
0.4438447952270508,
0.24690861999988556,
0.21076245605945587,
0.6629217267036438,
0.144208163022995,
0.7282259464263916,
1.0701210498809814,
-0.4083522856235504,
0.881180465221405,
0.26432785391807556,
0.4743083417415619,
0.7238510251045227,
-0.6487718820571899,
0.7513747811317444,
0.3181043267250061,
-0.5682927966117859,
0.9228019714355469,
1.290606141090393,
-0.15699152648448944,
0.80793696641922,
0.051364265382289886,
-1.0815999507904053,
0.32583361864089966,
-0.20724761486053467,
-0.7530062198638916,
0.31502565741539,
0.19055864214897156,
-0.6920987367630005,
-0.5770313739776611,
-0.2404651641845703,
-0.35662829875946045,
-0.11552873998880386,
-0.763173520565033,
0.6720565557479858,
-0.01696927472949028,
-0.5103673934936523,
0.18857470154762268,
0.28775009512901306,
0.17368444800376892,
-0.5235736966133118,
-0.029393965378403664,
-0.22823575139045715,
0.2660652697086334,
-0.5670853853225708,
-0.5234523415565491,
0.5724437236785889,
-0.32430148124694824,
-0.5343252420425415,
0.181474968791008,
0.7635870575904846,
-0.16923785209655762,
-0.4515411853790283,
0.3247268795967102,
0.6959530115127563,
0.16658467054367065,
0.42502790689468384,
-0.23511283099651337,
0.2448059767484665,
-0.08044827729463577,
-0.06651593744754791,
0.27714747190475464,
0.3449171781539917,
0.22435645759105682,
0.44501352310180664,
0.432856947183609,
-0.018087303265929222,
-0.10736559331417084,
-0.38282057642936707,
0.41249361634254456,
-0.9542784690856934,
-0.5713290572166443,
-0.630710780620575,
0.2740667760372162,
-0.023154327645897865,
-1.0836422443389893,
0.41451746225357056,
1.4406688213348389,
1.0359984636306763,
-0.4756380617618561,
1.0672271251678467,
-0.21818462014198303,
0.9594789743423462,
0.4148314893245697,
0.5420438051223755,
-0.6030403971672058,
0.038353081792593,
-0.43644052743911743,
-1.0769634246826172,
-0.3571633994579315,
0.4539390206336975,
-0.02289981208741665,
-0.3429867625236511,
0.8725717663764954,
0.5887162685394287,
-0.3347362279891968,
-0.11728022992610931,
0.04848663881421089,
-0.029941599816083908,
-0.12433874607086182,
0.5145372152328491,
0.764839768409729,
-0.9344298243522644,
-0.10680411010980606,
-0.21577700972557068,
-0.6382728815078735,
-0.5047284364700317,
-0.9632002711296082,
-0.12959381937980652,
-0.16037842631340027,
0.03534334897994995,
-0.5662809014320374,
0.002556905150413513,
1.2083250284194946,
0.5684951543807983,
-1.1113994121551514,
-0.5303782224655151,
0.33718499541282654,
0.39204245805740356,
-0.1874789297580719,
-0.24202406406402588,
0.2984571158885956,
0.1538221836090088,
-0.5908879041671753,
0.6875662803649902,
0.8089626431465149,
0.20888905227184296,
0.19554781913757324,
0.15893003344535828,
-0.8229468464851379,
-0.1491343379020691,
0.1744047999382019,
0.9450566172599792,
-0.9398531913757324,
-0.7114846110343933,
-0.03168468177318573,
-0.2709487974643707,
-0.05765697360038757,
0.17102089524269104,
-0.4046342968940735,
0.5180684924125671,
0.34591469168663025,
0.49933499097824097,
0.056160878390073776,
-0.05474642664194107,
0.5409556031227112,
-0.9069051742553711,
0.09425970166921616,
0.41343608498573303,
0.4154110848903656,
-0.4000871181488037,
-0.5910195112228394,
0.6713417172431946,
1.0073974132537842,
-0.6594864130020142,
-0.8743263483047485,
-0.19846680760383606,
-1.0016000270843506,
0.04189697653055191,
0.6762756109237671,
0.5009528994560242,
-0.48065176606178284,
-0.4174492359161377,
-0.5617400407791138,
-0.1254679411649704,
-0.13699708878993988,
0.76216059923172,
1.1796802282333374,
-0.7432100772857666,
0.07975788414478302,
-1.0386393070220947,
0.6594987511634827,
-0.2419460564851761,
-0.3457580506801605,
-0.4864429533481598,
0.3832802176475525,
0.3523699641227722,
0.44048118591308594,
0.6148120164871216,
0.14084689319133759,
0.8338428735733032,
0.31260576844215393,
-0.17026856541633606,
0.2698982357978821,
-0.4559198319911957,
-0.02893332578241825,
-0.05796259641647339,
0.3101596236228943,
-1.026215672492981
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
Wikidepia/IndoParaCrawl | Wikidepia | 2021-04-13T10:22:22Z | 292 | 2 | null | [
"region:us"
] | 2021-04-13T10:22:22Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | # IndoParaCrawl
IndoParaCrawl is ParaCrawl v7.1 dataset bulk-translated to Indonesian using Google Translate.
Thanks HuggingFace for providing free storage for datasets <3.
| [
-0.11580496281385422,
-0.3929462134838104,
-0.3141164481639862,
0.8655563592910767,
-0.8380826711654663,
-0.40256646275520325,
-0.004746698308736086,
-0.2646372318267822,
0.5284414291381836,
0.9860049486160278,
-0.6349115371704102,
-0.5047857165336609,
-0.7131323218345642,
0.5458795428276062,
-0.5026108622550964,
1.2390276193618774,
-0.11767739802598953,
0.18593564629554749,
-0.08468770235776901,
-0.7685057520866394,
0.14009588956832886,
-0.39944523572921753,
-0.5288660526275635,
0.07500310987234116,
0.564670741558075,
0.6447078585624695,
0.8430359959602356,
0.7365387678146362,
0.7509994506835938,
0.26679858565330505,
0.3795182704925537,
-0.34314119815826416,
-0.4264344573020935,
0.12779125571250916,
-0.19650734961032867,
-0.5067895650863647,
-0.4698687195777893,
-0.10027686506509781,
0.3730691969394684,
0.8628636002540588,
-0.311878502368927,
0.6657658219337463,
0.07854735106229782,
0.8033535480499268,
-0.6524431705474854,
0.5569449663162231,
-0.37430518865585327,
0.22460484504699707,
-0.709851861000061,
-0.015510333701968193,
-0.07611256092786789,
-0.5865411758422852,
0.2359481304883957,
-0.9421554207801819,
-0.11461595445871353,
0.009580958634614944,
0.7498608827590942,
0.3127146065235138,
-0.698022723197937,
-0.2536988854408264,
-0.27639374136924744,
0.8315679430961609,
-0.3803776800632477,
0.3864046335220337,
0.7323944568634033,
0.7514551877975464,
-0.095437191426754,
-1.0759434700012207,
-0.3302103877067566,
0.329293817281723,
0.17580673098564148,
0.04038585349917412,
0.29910382628440857,
0.12588025629520416,
0.18501731753349304,
0.7099635601043701,
-0.6763670444488525,
-0.36074960231781006,
-1.027725338935852,
-0.012208853848278522,
0.9545050263404846,
0.041334498673677444,
0.5208390355110168,
-0.30447253584861755,
-0.30875125527381897,
-0.07977283746004105,
-0.3005060851573944,
-0.09112180769443512,
0.1381794959306717,
0.5359241962432861,
-0.472164124250412,
0.8711161613464355,
-0.551112174987793,
0.7422472238540649,
-0.08152224123477936,
-0.2872049808502197,
0.5057747960090637,
-0.001177867641672492,
-0.5415933132171631,
0.4128521978855133,
0.5164673924446106,
0.7922324538230896,
0.3004123866558075,
0.1127181351184845,
0.21487389504909515,
0.0767916589975357,
-0.1397121399641037,
-0.6138703227043152,
-0.4527612328529358,
0.3723655939102173,
-0.9377634525299072,
-0.31796228885650635,
0.14025789499282837,
-0.7775596976280212,
-0.25645124912261963,
-0.1376115381717682,
-0.022578218951821327,
-0.28773999214172363,
-0.40878844261169434,
0.04940343275666237,
-0.4512648582458496,
0.518616795539856,
0.159414142370224,
-0.676246702671051,
0.350872278213501,
0.3497786819934845,
0.737665593624115,
0.05380875617265701,
-0.4141581058502197,
-0.26430803537368774,
0.4099058508872986,
-0.5457884073257446,
0.7621176838874817,
-0.5722818374633789,
-0.5622193813323975,
0.21374937891960144,
0.37713104486465454,
0.07641038298606873,
-0.3934831917285919,
0.8021342754364014,
-0.34026792645454407,
0.4150632917881012,
-0.4428427219390869,
-0.4062878489494324,
-0.4813928008079529,
0.1391616314649582,
-0.7217092514038086,
1.0896421670913696,
0.513392448425293,
-0.9570401906967163,
0.9600867629051208,
-0.37470248341560364,
-0.588826596736908,
0.8879795670509338,
-0.15018439292907715,
-0.019703855738043785,
-0.06736942380666733,
0.23858541250228882,
0.43307414650917053,
-0.34931689500808716,
0.06421773135662079,
-0.47240594029426575,
-0.08228683471679688,
-0.5081163644790649,
-0.018843231722712517,
1.219625473022461,
0.5732570886611938,
0.12278728932142258,
0.07735302299261093,
-0.8517552614212036,
-0.08008608222007751,
0.1241183802485466,
-0.16197621822357178,
-0.6058730483055115,
0.015204913914203644,
0.4209437370300293,
0.37724465131759644,
0.5301939845085144,
-0.59296053647995,
0.5344555974006653,
-0.263552188873291,
0.440339595079422,
0.34304967522621155,
0.17234140634536743,
0.06548483669757843,
-0.4211234152317047,
0.6233448386192322,
0.11208716779947281,
0.5266972184181213,
0.10145877301692963,
-0.37055519223213196,
-0.3763068914413452,
-0.2742699682712555,
0.14005322754383087,
0.7579188942909241,
-1.1088188886642456,
0.259432852268219,
-0.4314046800136566,
-0.7784473896026611,
-0.36426496505737305,
0.3032890856266022,
0.14943592250347137,
0.219217911362648,
0.3743281960487366,
-0.22184254229068756,
-0.690141499042511,
-1.2249327898025513,
-0.38510918617248535,
-0.08575305342674255,
-0.2733165919780731,
0.14012393355369568,
0.35846105217933655,
-0.1835373044013977,
0.5068343877792358,
-0.15775376558303833,
-0.5686382055282593,
-0.5951851606369019,
-0.18013596534729004,
0.5200621485710144,
0.563144862651825,
0.6823849081993103,
-1.1888357400894165,
-0.8298056721687317,
-0.07390774041414261,
-1.014072299003601,
0.12583912909030914,
0.06641934812068939,
-0.14953558146953583,
0.3643483817577362,
0.44567278027534485,
-0.6177332997322083,
0.6432218551635742,
0.5931798219680786,
0.04431132972240448,
0.021932033821940422,
-0.12529142200946808,
0.17061391472816467,
-1.4142217636108398,
0.002823049668222666,
0.06292270869016647,
-0.10364871472120285,
-0.22387605905532837,
0.456662654876709,
0.20062705874443054,
-0.17066346108913422,
-0.9286303520202637,
0.1826668381690979,
-0.46851933002471924,
0.15028046071529388,
0.20102500915527344,
-0.2305016666650772,
-0.4512285590171814,
0.3597041666507721,
0.03879218176007271,
1.020015835762024,
0.7552227973937988,
-0.7128033638000488,
0.6337080001831055,
0.8911775350570679,
-0.028040939942002296,
0.7939205765724182,
-0.7108410596847534,
-0.18623417615890503,
-0.1722748875617981,
0.6118553876876831,
-0.6794366836547852,
-1.0756616592407227,
0.48290812969207764,
-0.2912176847457886,
-0.30735599994659424,
-0.5743368268013,
-0.3140621781349182,
-0.5942656993865967,
-0.5224450826644897,
0.5980091094970703,
0.5906795859336853,
-0.6583373546600342,
0.6185355186462402,
0.4764312207698822,
-0.22205273807048798,
-0.2516126334667206,
-1.0543344020843506,
0.2393076866865158,
-0.3651432693004608,
-0.4819909632205963,
-0.1353706568479538,
-0.008341129869222641,
-0.22198481857776642,
-0.2870980203151703,
-0.3896472156047821,
-0.6603449583053589,
-0.5820999145507812,
0.2710775136947632,
0.24351578950881958,
-0.06250743567943573,
-0.20877641439437866,
0.3892570734024048,
0.15004810690879822,
0.22943401336669922,
-0.3991561233997345,
0.5028146505355835,
0.13676899671554565,
0.28943097591400146,
-0.2954157888889313,
0.46570226550102234,
0.6512902975082397,
0.009122062474489212,
0.7247642874717712,
0.08788224309682846,
-0.3366412818431854,
-0.030707821249961853,
-0.3428420126438141,
0.29481393098831177,
-0.547373354434967,
-0.030790027230978012,
-0.7358682751655579,
-0.3246648609638214,
0.6285783648490906,
-0.004582792986184359,
-0.0033280544448643923,
0.795566976070404,
0.10421015322208405,
0.38920605182647705,
1.148756742477417,
0.5122056007385254,
-0.10702279210090637,
-0.12035207450389862,
-0.11128705739974976,
-0.10316528379917145,
-0.6168698072433472,
-0.5667471289634705,
-0.1931580901145935,
-0.016546068713068962,
-0.9735531210899353,
-0.017490213736891747,
0.21334615349769592,
-0.07868064939975739,
-0.16765910387039185,
0.5719199776649475,
-0.9962690472602844,
0.689409613609314,
0.4240674376487732,
0.3429933190345764,
-0.125922292470932,
0.023307744413614273,
0.2865649163722992,
-0.055366478860378265,
-0.5540809631347656,
-0.3980843424797058,
1.275445818901062,
-0.10127171128988266,
0.7025672197341919,
-0.11508176475763321,
0.76292884349823,
0.10655969381332397,
-0.19804111123085022,
-0.4185827970504761,
0.885838508605957,
-0.32404157519340515,
-0.7490896582603455,
-0.20563486218452454,
-0.07051990181207657,
-1.0925889015197754,
0.005141737405210733,
0.13199439644813538,
-0.49491143226623535,
0.09971750527620316,
0.045549776405096054,
-0.1413612812757492,
0.3738307058811188,
-0.403352290391922,
0.8165037035942078,
-0.09489814192056656,
-0.2400638461112976,
-0.1648927628993988,
-1.1872047185897827,
0.3507671654224396,
0.36297157406806946,
-0.14628764986991882,
-0.33974337577819824,
-0.1798744946718216,
0.8333685994148254,
-0.614518940448761,
0.3760421574115753,
-0.4545998275279999,
0.09311240911483765,
0.12518686056137085,
0.09534824639558792,
0.15754535794258118,
0.46392562985420227,
0.04802582040429115,
0.4369764029979706,
0.546777606010437,
-1.179666519165039,
-0.042528457939624786,
0.7466447949409485,
-0.6375295519828796,
-0.24378825724124908,
-0.7016351819038391,
-0.38145455718040466,
0.15000112354755402,
0.4665661156177521,
0.5161905884742737,
0.3903464078903198,
0.09963814914226532,
0.4803899824619293,
0.6946413516998291,
-0.149047389626503,
0.3079289495944977,
0.27604106068611145,
-0.4857313334941864,
-0.4360913932323456,
1.1494261026382446,
0.3274978697299957,
-0.21309539675712585,
0.22636263072490692,
-0.05834074318408966,
-0.2830066978931427,
-0.29337790608406067,
-0.4105980098247528,
0.07159458100795746,
-0.5488812327384949,
-0.131243035197258,
-0.7848575711250305,
-0.27284687757492065,
-0.6924495100975037,
-0.3790321350097656,
-0.1457223743200302,
-0.5450656414031982,
0.04374080151319504,
-0.11961457878351212,
0.5549900531768799,
0.6967359781265259,
-0.17448559403419495,
0.15128593146800995,
-0.7719376683235168,
0.6401581168174744,
0.21880437433719635,
0.6796392202377319,
-0.756003201007843,
-0.08078766614198685,
-0.02475013956427574,
-0.11754443496465683,
0.33595266938209534,
-0.7441390156745911,
0.7108407616615295,
0.3606424629688263,
0.24519068002700806,
0.31714069843292236,
0.14377014338970184,
0.6219848990440369,
-0.17773133516311646,
1.2461223602294922,
-0.10898906737565994,
-0.6082080006599426,
0.8706022500991821,
-0.8210176229476929,
0.5144289135932922,
1.0450390577316284,
0.8894494771957397,
-0.5754899978637695,
-0.10347304493188858,
-0.7640867829322815,
-1.3019260168075562,
0.6064421534538269,
-0.12336557358503342,
-0.05276831239461899,
-0.13722681999206543,
0.27318212389945984,
0.6851588487625122,
0.5215444564819336,
-0.2952226400375366,
-0.23935171961784363,
-0.7805559039115906,
-0.41599175333976746,
0.007769749499857426,
-0.40438637137413025,
0.09974653273820877,
-0.6079264879226685,
0.46197226643562317,
0.1810399293899536,
0.0457959845662117,
0.4507818818092346,
-0.2776944041252136,
-0.06524336338043213,
-0.23961611092090607,
0.614332914352417,
0.7320994138717651,
-0.49665191769599915,
-0.1534658670425415,
0.2886815071105957,
-0.7548032999038696,
-0.08251293748617172,
0.2103775143623352,
-0.0019492468563839793,
-0.10485098510980606,
0.22453279793262482,
0.49745288491249084,
0.1255425065755844,
-0.4248567223548889,
0.37964144349098206,
-0.1372336596250534,
-0.19292813539505005,
-1.106846809387207,
-0.1520070880651474,
-0.5096361041069031,
-0.18065375089645386,
0.724733293056488,
-0.1603473722934723,
0.581464946269989,
-0.06550008058547974,
0.29603442549705505,
-0.1955728530883789,
-0.3419014513492584,
-0.08034615963697433,
0.9582381844520569,
0.3863579332828522,
-0.25637146830558777,
1.089429497718811,
0.1159815564751625,
-0.4041394293308258,
0.3948109745979309,
0.31000253558158875,
0.936869740486145,
-0.5696893334388733,
0.29926106333732605,
0.4600669741630554,
0.3374681770801544,
-0.12380462884902954,
0.5725178718566895,
-0.15793858468532562,
0.07849488407373428,
-0.5662758350372314,
-0.4519520103931427,
-0.5751091241836548,
0.25437435507774353,
-1.0965101718902588,
0.29333069920539856,
-0.7577837705612183,
0.4585815966129303,
-0.307037889957428,
0.039790451526641846,
-0.5482098460197449,
0.5692881345748901,
-0.28725770115852356,
1.532523274421692,
-0.934010922908783,
0.8151373267173767,
1.021578073501587,
-0.6924821734428406,
-0.6378515362739563,
0.032629236578941345,
0.009815829806029797,
-0.8373810648918152,
0.5984595417976379,
0.3653290867805481,
0.5195403695106506,
-0.02268434502184391,
-1.0347923040390015,
-1.1057778596878052,
0.6341419816017151,
-0.008460626937448978,
-0.06146117299795151,
0.07465432584285736,
0.3757399022579193,
0.3099827170372009,
-0.15603813529014587,
0.08908216655254364,
0.6353915333747864,
0.6447993516921997,
-0.2622567117214203,
-0.9236776232719421,
-0.21011506021022797,
-0.7922540903091431,
0.22723183035850525,
0.260663777589798,
-0.8091679215431213,
0.726277768611908,
0.8315305709838867,
0.0375395230948925,
0.022746149450540543,
1.0326026678085327,
0.10053718835115433,
0.21487733721733093,
0.47669073939323425,
0.4139222502708435,
0.16069254279136658,
0.03143567591905594,
1.3720818758010864,
-0.48383983969688416,
-0.028166713193058968,
0.7477332353591919,
-0.3713625371456146,
0.6015377640724182,
0.6497985124588013,
-0.17729097604751587,
0.4117245376110077,
0.8458945155143738,
0.01716027222573757,
0.4517471492290497,
-0.24339808523654938,
-0.21056288480758667,
-0.1421670913696289,
-0.3186793923377991,
-0.4699589014053345,
0.26291391253471375,
0.36410701274871826,
0.24954718351364136,
-0.4159160256385803,
0.5352301001548767,
-0.06264308840036392,
0.025305986404418945,
-0.41821280121803284,
0.6848694086074829,
-0.21970300376415253,
-0.4299621284008026,
0.6359907984733582,
-0.530781090259552,
0.7523133158683777,
-0.6052843332290649,
-0.14452484250068665,
-0.516684353351593,
0.07441716641187668,
-0.2872568964958191,
-0.9131231904029846,
0.6076166033744812,
-0.47825533151626587,
0.11207715421915054,
-0.09100428968667984,
0.6658885478973389,
-0.7042896151542664,
-0.6274765729904175,
0.005619383882731199,
-0.30564084649086,
0.5073332786560059,
-0.04009278491139412,
-0.9486814737319946,
0.35940101742744446,
-0.1365722417831421,
-0.24794280529022217,
0.3228382468223572,
0.021065307781100273,
-0.3809644877910614,
0.8419027328491211,
0.20050761103630066,
0.005902353674173355,
0.23906292021274567,
-0.5387175679206848,
0.6522648334503174,
-0.3783216178417206,
-0.7354789972305298,
-0.2166292667388916,
0.4957279860973358,
-0.5695753693580627,
-0.7446942329406738,
1.093514323234558,
1.1131749153137207,
1.154737114906311,
-0.2954770028591156,
1.0850391387939453,
-0.5308560729026794,
0.8397320508956909,
-0.05655780807137489,
0.5204998850822449,
-0.4842061698436737,
-0.6835456490516663,
-0.02998986653983593,
-1.011104702949524,
-0.4056871235370636,
0.6603305339813232,
-0.15998856723308563,
-0.375630646944046,
0.5336024761199951,
0.3340897262096405,
-0.4070722162723541,
0.19107668101787567,
0.22312070429325104,
0.23551291227340698,
-0.06084718555212021,
0.2886626422405243,
0.09912680834531784,
-0.8309568166732788,
0.6485313177108765,
-0.8203022480010986,
-0.2111022174358368,
-0.09964605420827866,
-0.573628842830658,
-0.881030797958374,
-0.9049689173698425,
-0.3460935950279236,
-0.2810560464859009,
0.20644767582416534,
1.2991563081741333,
0.5761083364486694,
-0.9944381713867188,
-0.4139033854007721,
-0.3052286207675934,
-0.32315900921821594,
-0.1364794820547104,
-0.3001801371574402,
0.3839356005191803,
-0.14934489130973816,
-0.6743135452270508,
0.4840783476829529,
0.47724857926368713,
-0.07472548633813858,
0.14214225113391876,
0.12478792667388916,
-0.34894514083862305,
0.3493752181529999,
0.513322651386261,
0.8283628225326538,
-0.5618080496788025,
0.007255871314555407,
-0.5452258586883545,
-0.06968273967504501,
0.11628879606723785,
0.4958266317844391,
-0.49890246987342834,
0.15840443968772888,
0.6397202014923096,
0.36905521154403687,
0.5087811350822449,
-0.017631269991397858,
0.5698117017745972,
-0.606187105178833,
1.004636287689209,
0.061228882521390915,
0.2514353096485138,
0.22649091482162476,
-0.45393282175064087,
0.8906196355819702,
0.18262991309165955,
-0.7554776072502136,
-0.928930401802063,
0.017072612419724464,
-1.278977870941162,
-0.13252019882202148,
0.7957783341407776,
0.09808649122714996,
-0.8099456429481506,
-0.2556478977203369,
-0.601599931716919,
0.3633010983467102,
-0.2876562774181366,
0.45008939504623413,
0.36231157183647156,
0.32655033469200134,
-0.39311227202415466,
-0.5736232399940491,
0.7256177663803101,
0.312555193901062,
-0.7163292169570923,
-0.1727505922317505,
0.28279560804367065,
0.08727812021970749,
-0.22179412841796875,
0.4418502151966095,
-0.31047144532203674,
0.46729421615600586,
0.09144628047943115,
0.1697462946176529,
0.006738314405083656,
-0.3113671541213989,
-0.12842507660388947,
0.33779099583625793,
-0.34869855642318726,
-0.3959200978279114
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
abhishek/autonlp-data-imdb_eval | abhishek | 2021-04-28T14:46:54Z | 292 | 0 | null | [
"region:us"
] | 2021-04-28T14:46:54Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227645754814148,
-0.22568479180335999,
0.8622263669967651,
0.43461522459983826,
-0.52829909324646,
0.7012971639633179,
0.7915719747543335,
0.07618614286184311,
0.774603009223938,
0.2563217282295227,
-0.7852813005447388,
-0.22573819756507874,
-0.9104475975036621,
0.5715674161911011,
-0.3992327153682709,
0.5791246294975281,
-0.14494499564170837,
-0.10751135647296906,
0.28233814239501953,
-0.2768957316875458,
-0.5409227013587952,
-0.3685525059700012,
-1.1902779340744019,
0.061491698026657104,
0.5316582918167114,
0.743514358997345,
0.7584061622619629,
0.3652168810367584,
0.643257737159729,
0.39322906732559204,
-0.231389120221138,
0.48270541429519653,
-0.04171793907880783,
0.0026038705836981535,
-0.3524438440799713,
-0.5516899824142456,
-0.28596577048301697,
0.07584768533706665,
1.096130132675171,
0.9666873812675476,
-0.28466421365737915,
0.05330856889486313,
-0.30636167526245117,
0.3308892846107483,
-0.4973427355289459,
0.3054097294807434,
-0.022506216540932655,
0.16318757832050323,
-0.704151451587677,
-0.5535351634025574,
0.012795033864676952,
-0.7361212968826294,
0.17926514148712158,
-0.6900812387466431,
0.8269097208976746,
0.18583209812641144,
1.1533749103546143,
0.14819422364234924,
-0.4624859392642975,
-0.8161761164665222,
-0.6538985371589661,
0.5711163282394409,
-0.32703715562820435,
0.3968023657798767,
0.7028226256370544,
-0.048573337495326996,
-0.9820331335067749,
-0.6745738983154297,
-0.46466246247291565,
0.2923974096775055,
0.3540281355381012,
-0.3411684036254883,
-0.17522093653678894,
-0.30589917302131653,
0.15791958570480347,
0.1281142681837082,
-0.48419976234436035,
-0.5543919205665588,
-0.547515869140625,
-0.39602571725845337,
0.6206656694412231,
0.34829503297805786,
0.24291737377643585,
-0.18884189426898956,
-0.3228582441806793,
0.0880165845155716,
-0.41608554124832153,
0.3402574062347412,
0.6335517168045044,
0.711402416229248,
-0.5811446309089661,
0.5602157711982727,
-0.049275897443294525,
0.7439709901809692,
0.11445585638284683,
-0.2747812569141388,
0.4146060049533844,
-0.14724673330783844,
0.055171847343444824,
0.42263513803482056,
0.3152443468570709,
0.28413069248199463,
-0.3273696303367615,
0.20322275161743164,
-0.32151490449905396,
-0.3049626648426056,
-0.2233218252658844,
-0.29490745067596436,
-0.35921788215637207,
0.5492295026779175,
-0.3314018249511719,
-0.4285552501678467,
1.1431758403778076,
-0.42007699608802795,
-0.7302228808403015,
0.33156365156173706,
0.40652117133140564,
-0.0994473472237587,
-0.37146514654159546,
-0.052260853350162506,
-0.8458787202835083,
-0.00790744461119175,
0.7491178512573242,
-0.7198969125747681,
0.33717358112335205,
0.47280627489089966,
0.741721510887146,
0.1965060532093048,
-0.14034466445446014,
-0.4294945299625397,
0.2971963882446289,
-0.8659994006156921,
0.6320174336433411,
-0.20135276019573212,
-1.0051976442337036,
0.11150483042001724,
0.8971704244613647,
-0.3789643347263336,
-1.2094870805740356,
1.0605157613754272,
-0.6887932419776917,
0.16017864644527435,
-0.6767609119415283,
-0.14661164581775665,
-0.07118469476699829,
-0.005095955915749073,
-0.6088155508041382,
0.7567099332809448,
0.5872676968574524,
-0.49952778220176697,
0.21429462730884552,
-0.2602984309196472,
-0.3915135860443115,
0.38824939727783203,
-0.0793546810746193,
-0.21858906745910645,
0.7138336896896362,
-0.6647078394889832,
-0.2693284749984741,
0.2942773103713989,
0.23689350485801697,
-0.357060968875885,
-0.793192446231842,
0.08478079736232758,
-0.05786222219467163,
1.5507503747940063,
-0.03868860378861427,
-0.35861143469810486,
-0.6793836951255798,
-1.1506236791610718,
-0.07070811837911606,
0.6886887550354004,
-0.9194992184638977,
-0.27839499711990356,
-0.046410247683525085,
-0.26169371604919434,
0.0899493545293808,
0.7390591502189636,
-1.119404911994934,
0.28327250480651855,
-0.050927065312862396,
-0.22794730961322784,
0.8271061182022095,
0.1538720428943634,
0.24758882820606232,
0.14913466572761536,
0.4295872151851654,
0.5277255773544312,
0.11115183681249619,
0.6835882663726807,
-0.3472035229206085,
-0.9694353938102722,
0.6154633164405823,
0.25266438722610474,
0.8121451139450073,
-0.49945372343063354,
0.2685092091560364,
0.2702546715736389,
-0.3409683108329773,
-0.5682377815246582,
-0.310282826423645,
0.09025713056325912,
0.14930608868598938,
0.11142496764659882,
-0.5721707344055176,
-0.6576128005981445,
-0.9689135551452637,
-0.13590654730796814,
-0.43143755197525024,
-0.35715678334236145,
0.2100687474012375,
0.5792907476425171,
-1.1975533962249756,
0.4128877520561218,
-0.7705622911453247,
-0.703874409198761,
-0.010655621066689491,
-0.1933809369802475,
0.7540653944015503,
0.43240174651145935,
0.5033961534500122,
-0.6397145390510559,
-0.5661987066268921,
-0.22470159828662872,
-1.0333740711212158,
-0.13280484080314636,
0.24819664657115936,
0.3065737783908844,
-0.1342328041791916,
-0.2744964361190796,
-0.48740261793136597,
0.8100383877754211,
0.14789214730262756,
-0.5391897559165955,
0.5220769643783569,
-0.3020317554473877,
0.17224839329719543,
-0.6369158029556274,
-0.0691685602068901,
-0.6616761684417725,
-0.0009067110950127244,
-0.36083078384399414,
-0.5737436413764954,
0.14772333204746246,
0.07017548382282257,
-0.16065415740013123,
0.2880837619304657,
-0.909276008605957,
-0.0010854422580450773,
-0.744221568107605,
0.37907224893569946,
0.0639476627111435,
-0.3145084083080292,
-0.017516743391752243,
1.000038743019104,
0.7784457206726074,
-0.3848040699958801,
0.7217439413070679,
0.4440040588378906,
0.19036099314689636,
0.7630518674850464,
-0.18725158274173737,
0.16478213667869568,
-0.5245421528816223,
-0.12161099910736084,
-0.8887605667114258,
-1.0982943773269653,
0.7320572137832642,
-0.6114250421524048,
0.36542850732803345,
-0.42778605222702026,
0.2589159309864044,
-0.6919258832931519,
-0.038853395730257034,
0.4808599054813385,
-0.05936374515295029,
-0.6863952875137329,
0.5232571363449097,
0.4531749188899994,
-0.2019244134426117,
-0.6609036922454834,
-0.5301570296287537,
0.39365914463996887,
0.6154113411903381,
-0.16390396654605865,
0.06878498196601868,
0.14941087365150452,
-0.5441920757293701,
-0.040802545845508575,
-0.3869187533855438,
-0.4576674997806549,
0.05422405153512955,
0.13053379952907562,
-0.005750161595642567,
-0.40482011437416077,
-0.08680257946252823,
-0.35842010378837585,
-0.4656125009059906,
0.21876463294029236,
0.30119529366493225,
-0.04096344858407974,
-0.42599743604660034,
-0.36198148131370544,
-0.8881808519363403,
0.6719611883163452,
0.5370280146598816,
0.05281474441289902,
0.7555550336837769,
0.16819244623184204,
-0.801498293876648,
-0.13532206416130066,
-0.17607054114341736,
0.2696835994720459,
-0.5588056445121765,
0.13849826157093048,
-0.013484805822372437,
-0.06374907493591309,
0.2629791498184204,
0.25386205315589905,
-0.4300558567047119,
0.927625298500061,
-0.26152747869491577,
-0.3592526614665985,
0.7960182428359985,
0.5974737405776978,
0.4958309531211853,
0.16503198444843292,
-0.044541094452142715,
0.9007097482681274,
-1.196651816368103,
-0.6563171744346619,
-0.7409546375274658,
-0.15945661067962646,
-0.43510857224464417,
-0.0321057066321373,
0.6254417300224304,
0.29009905457496643,
-0.13333925604820251,
0.47563934326171875,
-0.5243490934371948,
0.3556032180786133,
1.0119839906692505,
0.3574867248535156,
0.34357017278671265,
-0.7570232152938843,
-0.25157779455184937,
-0.14024296402931213,
-0.9998159408569336,
-0.2631372809410095,
0.8871029615402222,
0.2275265008211136,
0.8444608449935913,
0.5992542505264282,
0.6784538626670837,
0.136723130941391,
0.2523833215236664,
-0.305902898311615,
0.39202871918678284,
0.43760839104652405,
-1.040114164352417,
-0.42758411169052124,
0.02141888067126274,
-0.9703332185745239,
-0.14227578043937683,
-0.03495054319500923,
-0.42617106437683105,
0.7681738138198853,
0.00016635804786346853,
-0.4076710641384125,
0.7732735872268677,
-0.4555833339691162,
0.7562878727912903,
-0.4473649859428406,
-0.026638653129339218,
0.4699098467826843,
-0.707064151763916,
0.4677433967590332,
0.12878736853599548,
0.6205845475196838,
-0.015571946278214455,
-0.04078621417284012,
0.7104931473731995,
-0.9129164814949036,
0.25438612699508667,
-0.6348398923873901,
0.22421303391456604,
0.24246959388256073,
0.5160625576972961,
0.5969962477684021,
0.4371241629123688,
0.10119915008544922,
-0.23920848965644836,
0.04115789383649826,
-0.8241121172904968,
-0.21050670742988586,
0.6975144147872925,
-0.7186897397041321,
-0.6864195466041565,
-1.2355334758758545,
0.14438661932945251,
0.2734704911708832,
0.3893047273159027,
0.7959297895431519,
0.5714079141616821,
0.12895449995994568,
0.6805254220962524,
0.9888579249382019,
-0.06885591894388199,
0.916691780090332,
0.3224475085735321,
0.09175165742635727,
-0.2194489687681198,
0.703682541847229,
0.2662784457206726,
-0.2470790147781372,
-0.11939744651317596,
0.20913469791412354,
-0.11069414764642715,
-0.5917618870735168,
-0.4999074339866638,
0.3701755702495575,
-0.6731783747673035,
-0.1830393373966217,
-0.6243732571601868,
-0.6043766736984253,
-0.5117589235305786,
0.0692739263176918,
-0.7147684097290039,
0.23979082703590393,
-0.7753568887710571,
-0.10574901103973389,
0.04323358088731766,
0.9792002439498901,
-0.5893120765686035,
0.5805228352546692,
-1.12185800075531,
0.19345775246620178,
-0.07949890196323395,
0.792106032371521,
0.2139579802751541,
-0.7344390153884888,
-0.39754199981689453,
-0.11592598259449005,
-0.37299054861068726,
-1.3576757907867432,
0.21404962241649628,
-0.24541422724723816,
0.2309398353099823,
0.6145407557487488,
0.13977040350437164,
0.5258244276046753,
-0.3432632088661194,
0.7029102444648743,
-0.057016827166080475,
-0.7069293856620789,
0.7934491038322449,
-0.5026893615722656,
0.4963533282279968,
0.9766002893447876,
0.5333840250968933,
-0.7984007596969604,
0.0357406847178936,
-1.041122555732727,
-0.600869357585907,
0.38426393270492554,
0.1192895919084549,
-0.03601125627756119,
-0.665955662727356,
-0.054019927978515625,
-0.16143806278705597,
0.6043741703033447,
-1.0390695333480835,
-0.785835862159729,
0.25766894221305847,
0.5277299284934998,
0.08168502151966095,
-0.5653401613235474,
0.2088075876235962,
-0.5444163084030151,
1.0657776594161987,
0.45109352469444275,
0.32744958996772766,
0.8406059145927429,
0.4649237096309662,
-0.38231605291366577,
0.09252502024173737,
0.7662692070007324,
0.6666228771209717,
-0.5239795446395874,
-0.2908027172088623,
-0.0882752314209938,
-0.9143400192260742,
0.05927503854036331,
0.1116887554526329,
-0.013456095941364765,
0.9082115292549133,
0.579308032989502,
0.253970205783844,
0.4514276385307312,
-0.7264610528945923,
0.8859445452690125,
-0.1495419293642044,
-0.1247284859418869,
-1.0677239894866943,
0.19486205279827118,
-0.23984935879707336,
0.5006400346755981,
1.0061331987380981,
0.525004506111145,
-0.047630541026592255,
-0.814338207244873,
-0.014736384153366089,
0.6939173936843872,
-0.7091119289398193,
-0.17449775338172913,
0.9448539614677429,
0.38471025228500366,
-1.295304536819458,
1.106776475906372,
-0.5381773710250854,
-0.5603317618370056,
0.9121302366256714,
0.5229570269584656,
1.1221849918365479,
-0.44204193353652954,
0.0008675057324580848,
0.2662239074707031,
0.4137844443321228,
0.5423170328140259,
1.0869632959365845,
0.43141356110572815,
-0.7931072115898132,
0.8826581835746765,
-0.24776068329811096,
-0.40361127257347107,
-0.053475700318813324,
-0.42859864234924316,
0.16892209649085999,
-0.4406189024448395,
-0.10712965577840805,
-0.3444185256958008,
0.2854307293891907,
-0.70720374584198,
0.42807644605636597,
-0.08385642617940903,
0.8653066754341125,
-0.8553729057312012,
0.47207602858543396,
0.6354700326919556,
-0.33373481035232544,
-0.8508192300796509,
-0.26198476552963257,
-0.1144845262169838,
-0.6389466524124146,
0.30214792490005493,
-0.45541054010391235,
0.044398874044418335,
0.09623479843139648,
-0.6491509675979614,
-1.1778273582458496,
0.9093631505966187,
-0.6396117210388184,
-0.2784458100795746,
0.20463958382606506,
-0.1151471883058548,
0.28811654448509216,
-0.2524648904800415,
0.010661328211426735,
0.4187661111354828,
0.7489396333694458,
0.28446561098098755,
-0.7727053761482239,
-0.36948859691619873,
0.0015033691888675094,
-0.44474759697914124,
0.7582973837852478,
-0.6002098917961121,
1.1840776205062866,
-0.556353747844696,
-0.05965423583984375,
0.4438447952270508,
0.24690861999988556,
0.21076245605945587,
0.6629217267036438,
0.144208163022995,
0.7282259464263916,
1.0701210498809814,
-0.4083522856235504,
0.881180465221405,
0.26432785391807556,
0.4743083417415619,
0.7238510251045227,
-0.6487718820571899,
0.7513747811317444,
0.3181043267250061,
-0.5682927966117859,
0.9228019714355469,
1.290606141090393,
-0.15699152648448944,
0.80793696641922,
0.051364265382289886,
-1.0815999507904053,
0.32583361864089966,
-0.20724761486053467,
-0.7530062198638916,
0.31502565741539,
0.19055864214897156,
-0.6920987367630005,
-0.5770313739776611,
-0.2404651641845703,
-0.35662829875946045,
-0.11552873998880386,
-0.763173520565033,
0.6720565557479858,
-0.01696927472949028,
-0.5103673934936523,
0.18857470154762268,
0.28775009512901306,
0.17368444800376892,
-0.5235736966133118,
-0.029393965378403664,
-0.22823575139045715,
0.2660652697086334,
-0.5670853853225708,
-0.5234523415565491,
0.5724437236785889,
-0.32430148124694824,
-0.5343252420425415,
0.181474968791008,
0.7635870575904846,
-0.16923785209655762,
-0.4515411853790283,
0.3247268795967102,
0.6959530115127563,
0.16658467054367065,
0.42502790689468384,
-0.23511283099651337,
0.2448059767484665,
-0.08044827729463577,
-0.06651593744754791,
0.27714747190475464,
0.3449171781539917,
0.22435645759105682,
0.44501352310180664,
0.432856947183609,
-0.018087303265929222,
-0.10736559331417084,
-0.38282057642936707,
0.41249361634254456,
-0.9542784690856934,
-0.5713290572166443,
-0.630710780620575,
0.2740667760372162,
-0.023154327645897865,
-1.0836422443389893,
0.41451746225357056,
1.4406688213348389,
1.0359984636306763,
-0.4756380617618561,
1.0672271251678467,
-0.21818462014198303,
0.9594789743423462,
0.4148314893245697,
0.5420438051223755,
-0.6030403971672058,
0.038353081792593,
-0.43644052743911743,
-1.0769634246826172,
-0.3571633994579315,
0.4539390206336975,
-0.02289981208741665,
-0.3429867625236511,
0.8725717663764954,
0.5887162685394287,
-0.3347362279891968,
-0.11728022992610931,
0.04848663881421089,
-0.029941599816083908,
-0.12433874607086182,
0.5145372152328491,
0.764839768409729,
-0.9344298243522644,
-0.10680411010980606,
-0.21577700972557068,
-0.6382728815078735,
-0.5047284364700317,
-0.9632002711296082,
-0.12959381937980652,
-0.16037842631340027,
0.03534334897994995,
-0.5662809014320374,
0.002556905150413513,
1.2083250284194946,
0.5684951543807983,
-1.1113994121551514,
-0.5303782224655151,
0.33718499541282654,
0.39204245805740356,
-0.1874789297580719,
-0.24202406406402588,
0.2984571158885956,
0.1538221836090088,
-0.5908879041671753,
0.6875662803649902,
0.8089626431465149,
0.20888905227184296,
0.19554781913757324,
0.15893003344535828,
-0.8229468464851379,
-0.1491343379020691,
0.1744047999382019,
0.9450566172599792,
-0.9398531913757324,
-0.7114846110343933,
-0.03168468177318573,
-0.2709487974643707,
-0.05765697360038757,
0.17102089524269104,
-0.4046342968940735,
0.5180684924125671,
0.34591469168663025,
0.49933499097824097,
0.056160878390073776,
-0.05474642664194107,
0.5409556031227112,
-0.9069051742553711,
0.09425970166921616,
0.41343608498573303,
0.4154110848903656,
-0.4000871181488037,
-0.5910195112228394,
0.6713417172431946,
1.0073974132537842,
-0.6594864130020142,
-0.8743263483047485,
-0.19846680760383606,
-1.0016000270843506,
0.04189697653055191,
0.6762756109237671,
0.5009528994560242,
-0.48065176606178284,
-0.4174492359161377,
-0.5617400407791138,
-0.1254679411649704,
-0.13699708878993988,
0.76216059923172,
1.1796802282333374,
-0.7432100772857666,
0.07975788414478302,
-1.0386393070220947,
0.6594987511634827,
-0.2419460564851761,
-0.3457580506801605,
-0.4864429533481598,
0.3832802176475525,
0.3523699641227722,
0.44048118591308594,
0.6148120164871216,
0.14084689319133759,
0.8338428735733032,
0.31260576844215393,
-0.17026856541633606,
0.2698982357978821,
-0.4559198319911957,
-0.02893332578241825,
-0.05796259641647339,
0.3101596236228943,
-1.026215672492981
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
abhishek/autonlp-data-prodigy-10 | abhishek | 2022-10-25T09:07:06Z | 292 | 0 | null | [
"language:en",
"region:us"
] | 2022-10-25T09:07:06Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
---
# AutoNLP Dataset for project: prodigy-10
## 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 prodigy-10.
### Languages
The BCP-47 code for the dataset's language is en.
## Dataset Structure
### Data Instances
A sample from this dataset looks as follows:
```json
[
{
"tags": [
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8
],
"tokens": [
"tory",
"backing",
"for",
"i",
"d",
"cards",
"the",
"tories",
"are",
"to",
"back",
"controversial",
"government",
"plans",
"to",
"introduce",
"i",
"d",
"cards",
".",
" ",
"the",
"shadow",
"cabinet",
"revealed",
"its",
"support",
"ahead",
"of",
"next",
"week",
"s",
"commons",
"vote",
"on",
"a",
"bill",
"to",
"introduce",
"compulsory",
"i",
"d.",
"the",
"decision",
"follows",
"a",
" ",
"tough",
"meeting",
" ",
"where",
"some",
"senior",
"tories",
"argued",
"vociferously",
"against",
"the",
"move",
" ",
"party",
"sources",
"told",
"the",
"bbc",
".",
"the",
"bill",
" ",
"which",
"ministers",
"claim",
"will",
"tackle",
"crime",
" ",
"terrorism",
"and",
"illegal",
"immigration",
" ",
"is",
"expected",
"to",
"be",
"opposed",
"by",
"the",
"liberal",
"democrats",
".",
" ",
"they",
"have",
"said",
"the",
"scheme",
"is",
" ",
"deeply",
"flawed",
" ",
"and",
"a",
"waste",
"of",
"money",
".",
"sources",
"within",
"the",
"conservative",
"party",
"told",
"the",
"bbc",
"michael",
"howard",
"has",
"always",
"been",
"in",
"favour",
"of",
"i",
"d",
"cards",
" ",
"and",
"tried",
"to",
"introduce",
"them",
"when",
"he",
"was",
"home",
"secretary",
".",
"the",
"party",
"has",
"been",
" ",
"agnostic",
" ",
"on",
"the",
"issue",
"until",
"now",
"but",
"had",
"now",
"decided",
"to",
"come",
"off",
"the",
"fence",
" ",
"the",
"tory",
"source",
"said",
".",
"despite",
"giving",
"their",
"backing",
"to",
"i",
"d",
"cards",
" ",
"the",
"conservatives",
"insisted",
"they",
"would",
"hold",
"ministers",
"to",
"account",
"over",
"the",
"precise",
"purpose",
"of",
"the",
"scheme",
".",
" ",
"they",
"said",
"they",
"would",
"also",
"press",
"labour",
"over",
"whether",
"objectives",
"could",
"be",
"met",
"and",
"whether",
"the",
"home",
"office",
"would",
"deliver",
"them",
".",
"and",
"they",
"pledged",
"to",
"assess",
"the",
"cost",
"effectiveness",
"of",
"i",
"d",
"cards",
"and",
"whether",
"people",
"s",
"privacy",
"would",
"be",
"properly",
"protected",
".",
" ",
"it",
"is",
"important",
"to",
"remember",
"that",
"this",
"bill",
"will",
"take",
"a",
"decade",
"to",
"come",
"into",
"full",
"effect",
" ",
"a",
"spokesman",
"said",
".",
" ",
"it",
"will",
"do",
"nothing",
"to",
"solve",
"the",
"immediate",
"problems",
"of",
"rising",
"crime",
"and",
"uncontrolled",
"immigration",
".",
" ",
"lib",
"dem",
"home",
"affairs",
"spokesman",
"mark",
"oaten",
"said",
":",
" ",
"this",
"has",
"all",
"the",
"signs",
"of",
"michael",
"howard",
"overruling",
"colleagues",
" ",
"concerns",
"over",
"i",
"d",
"cards",
".",
" ",
"the",
"tories",
"should",
"have",
"the",
"courage",
"to",
"try",
"and",
"change",
"public",
"opinion",
"not",
"follow",
"it",
".",
" ",
"the",
"new",
"chairman",
"of",
"the",
"bar",
"council",
" ",
"guy",
"mansfield",
"qc",
"warned",
"there",
"was",
"a",
"real",
"risk",
"that",
"people",
"on",
"the",
" ",
"margins",
"of",
"society",
" ",
"would",
"be",
"driven",
"into",
"the",
"hands",
"of",
"extremists",
".",
" ",
"what",
"is",
"going",
"to",
"happen",
"to",
"young",
"asian",
"men",
"when",
"there",
"has",
"been",
"a",
"bomb",
"gone",
"off",
"somewhere",
" ",
"they",
"are",
"going",
"to",
"be",
"stopped",
".",
"if",
"they",
"haven",
"t",
"[",
"i",
"d",
"cards",
"]",
"they",
"are",
"going",
"to",
"be",
"detained",
"."
]
},
{
"tags": [
2,
6,
8,
8,
0,
8,
0,
8,
8,
8,
2,
6,
6,
8,
8,
8,
8,
8,
8,
8,
8,
8,
0,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
1,
5,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
0,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
0,
8,
8,
8,
0,
8,
2,
6,
8,
2,
6,
8,
8,
8,
8,
8,
8,
8,
8,
0,
8,
8,
8,
8,
8,
8,
8,
8,
2,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
0,
8,
2,
6,
6,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
0,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
0,
8,
2,
6,
6,
8,
8,
8,
0,
8,
2,
6,
8,
8,
8,
8,
2,
6,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
2,
8,
8,
8,
8,
8,
2,
6,
8,
8,
8,
8,
8,
8,
8,
8,
0,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
2,
6,
8,
8,
2,
8,
8,
0,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
2,
6,
8,
8,
0,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
8,
2,
6,
8,
8,
8,
8,
8,
8,
8,
2,
6,
8
],
"tokens": [
"o",
"gara",
"revels",
"in",
"ireland",
"victory",
"ireland",
"fly",
"-",
"half",
"ronan",
"o",
"gara",
"hailed",
"his",
"side",
"s",
"19",
"-",
"13",
"victory",
"over",
"england",
"as",
"a",
" ",
"special",
" ",
"win",
".",
" ",
"the",
"munster",
"number",
"10",
"kicked",
"a",
"total",
"of",
"14",
"points",
" ",
"including",
"two",
"drop",
"goals",
" ",
"to",
"help",
"keep",
"alive",
"their",
"grand",
"slam",
"hopes",
".",
"he",
"told",
"bbc",
"sport",
":",
" ",
"we",
"made",
"hard",
"work",
"of",
"it",
"but",
"it",
"s",
"still",
"special",
"to",
"beat",
"england",
".",
" ",
"i",
"had",
"three",
"chances",
"to",
"win",
"the",
"game",
"but",
"didn",
"t.",
"we",
"have",
"work",
"to",
"do",
"after",
"this",
"but",
"we",
"never",
"take",
"a",
"victory",
"over",
"england",
"lightly",
".",
" ",
"ireland",
"hooker",
"shane",
"byrne",
"echoed",
"o",
"gara",
"s",
"comments",
"but",
"admitted",
"the",
"game",
"had",
"been",
"england",
"s",
"best",
"outing",
"in",
"the",
"six",
"nations",
".",
"byrne",
"said",
":",
" ",
"it",
"was",
"a",
"really",
" ",
"really",
"hard",
"game",
"but",
"from",
"one",
"to",
"15",
"in",
"our",
"team",
"we",
"worked",
"really",
" ",
"really",
"hard",
".",
" ",
"we",
"just",
"had",
"to",
"stick",
"to",
"our",
"defensive",
"pattern",
" ",
"trust",
"ourselves",
"and",
"trust",
"those",
"around",
"us",
".",
"all",
"round",
"it",
"was",
"fantastic",
".",
" ",
"ireland",
"captain",
"brian",
"o",
"driscoll",
" ",
"who",
"scored",
"his",
"side",
"s",
"only",
"try",
" ",
"said",
":",
" ",
"we",
"are",
"delighted",
" ",
"we",
"felt",
"if",
"we",
"performed",
"well",
"then",
"we",
"would",
"win",
"but",
"with",
"england",
"also",
"having",
"played",
"very",
"well",
"it",
"makes",
"it",
"all",
"the",
"sweeter",
".",
" ",
"we",
"did",
"get",
"the",
"bounce",
"of",
"the",
"ball",
"and",
"some",
"days",
"that",
"happens",
"and",
"you",
"ve",
"just",
"got",
"to",
"jump",
"on",
"the",
"back",
"of",
"it",
".",
" ",
"ireland",
"coach",
"eddie",
"o",
"sullivan",
"was",
"surprised",
"that",
"england",
"coach",
"andy",
"robinson",
"said",
"he",
"was",
"certain",
"mark",
"cueto",
"was",
"onside",
"for",
"a",
"disallowed",
"try",
"just",
"before",
"the",
"break",
".",
" ",
"andy",
"was",
"sitting",
"two",
"yards",
"from",
"me",
"and",
"i",
"couldn",
"t",
"see",
"whether",
"he",
"was",
"offside",
"or",
"not",
"so",
"i",
"don",
"t",
"know",
"how",
"andy",
"could",
"have",
"known",
" ",
"said",
"o",
"sullivan",
".",
" ",
"what",
"i",
"do",
"know",
"is",
"that",
"england",
"played",
"well",
"and",
"when",
"that",
"happens",
"it",
"makes",
"a",
"very",
"good",
"victory",
"for",
"us",
".",
" ",
"we",
"had",
"to",
"defend",
"for",
"long",
"periods",
"and",
"that",
"is",
"all",
"good",
"for",
"the",
"confidence",
"of",
"the",
"team",
".",
" ",
"i",
"think",
"our",
"try",
"was",
"very",
"well",
"worked",
" ",
"it",
"was",
"a",
"gem",
" ",
"as",
"good",
"a",
"try",
"as",
"we",
"have",
"scored",
"for",
"a",
"while",
".",
" ",
"o",
"sullivan",
"also",
"rejected",
"robinson",
"s",
"contention",
"england",
"dominated",
"the",
"forward",
"play",
".",
" ",
"i",
"think",
"we",
"lost",
"one",
"lineout",
"and",
"they",
"lost",
"four",
"or",
"five",
"so",
"i",
"don",
"t",
"know",
"how",
"that",
"adds",
"up",
"to",
"domination",
" ",
"he",
"said",
".",
"o",
"driscoll",
"also",
"insisted",
"ireland",
"were",
"happy",
"to",
"handle",
"the",
"pressure",
"of",
"being",
"considered",
"favourites",
"to",
"win",
"the",
"six",
"nations",
"title",
".",
" ",
"this",
"season",
"for",
"the",
"first",
"time",
"we",
"have",
"been",
"able",
"to",
"play",
"with",
"the",
"favourites",
" ",
"tag",
" ",
"he",
"said",
".",
" ",
"hopefully",
"we",
"have",
"proved",
"that",
"today",
"and",
"can",
"continue",
"to",
"keep",
"doing",
"so",
".",
" ",
"as",
"for",
"my",
"try",
"it",
"was",
"a",
"move",
"we",
"had",
"worked",
"on",
"all",
"week",
".",
"there",
"was",
"a",
"bit",
"of",
"magic",
"from",
"geordan",
"murphy",
"and",
"it",
"was",
"a",
"great",
"break",
"from",
"denis",
"hickie",
"."
]
}
]
```
### Dataset Fields
The dataset has the following fields (also called "features"):
```json
{
"tags": "Sequence(feature=ClassLabel(num_classes=9, names=['B-LOCATION', 'B-ORG', 'B-PERSON', 'B-PRODUCT', 'I-LOCATION', 'I-ORG', 'I-PERSON', 'I-PRODUCT', 'O'], names_file=None, id=None), length=-1, id=None)",
"tokens": "Sequence(feature=Value(dtype='string', id=None), length=-1, 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 | 186 |
| valid | 58 |
| [
-0.6302211284637451,
-0.24883797764778137,
0.4834219813346863,
0.44550377130508423,
-0.43216487765312195,
0.40848276019096375,
0.15042847394943237,
-0.15307781100273132,
0.8134179711341858,
0.7271684408187866,
-0.5909947752952576,
-0.5653309226036072,
-0.5908656716346741,
0.33631131052970886,
-0.2808403968811035,
0.9286854267120361,
0.21456369757652283,
0.1710972636938095,
0.36554795503616333,
0.05579988658428192,
-0.3504427969455719,
0.04697863757610321,
-0.4110852777957916,
-0.09051232039928436,
0.2568961977958679,
0.3843890428543091,
1.0633097887039185,
1.0064061880111694,
0.623946487903595,
0.29480430483818054,
-0.3502640128135681,
0.18247352540493011,
-0.17230172455310822,
-0.628850519657135,
-0.34403225779533386,
-0.47672149538993835,
-0.7170699834823608,
0.06655867397785187,
0.44398361444473267,
0.8680292963981628,
-0.10965936630964279,
0.32178622484207153,
0.031001228839159012,
1.0423897504806519,
-0.49452370405197144,
0.5067684054374695,
-0.7986454963684082,
0.11983679980039597,
-0.15667882561683655,
-0.46820029616355896,
0.1295621246099472,
-0.43313515186309814,
0.005623827688395977,
-0.6139981746673584,
0.0936613529920578,
0.5831601619720459,
1.1809872388839722,
-0.18032722175121307,
-0.5003182291984558,
-0.5556337237358093,
-0.22756384313106537,
0.6848936676979065,
-0.9874459505081177,
0.5200483798980713,
0.695570707321167,
0.015807699412107468,
-0.3605329096317291,
-0.864795982837677,
-0.9766324162483215,
0.08530352264642715,
-0.5532714128494263,
0.670256495475769,
-0.25655311346054077,
0.13219934701919556,
0.42327722907066345,
0.6368710398674011,
-0.665952205657959,
-0.40808701515197754,
-0.7018092274665833,
-0.25129178166389465,
0.6788239479064941,
0.2951298654079437,
0.32306569814682007,
-0.6706361174583435,
-0.5159451365470886,
0.19237105548381805,
-0.7986429929733276,
0.4055286645889282,
0.49101102352142334,
0.2360086888074875,
-0.5588299632072449,
0.7048993110656738,
-0.14410872757434845,
0.815455436706543,
0.3707893192768097,
-0.4081293046474457,
0.1522802710533142,
-0.8778167963027954,
-0.20351585745811462,
-0.17994676530361176,
0.7473711967468262,
0.913439154624939,
-0.02512902393937111,
-0.19475187361240387,
-0.0041514295153319836,
0.059125639498233795,
0.09315627068281174,
-0.5493744611740112,
-0.39931851625442505,
0.7987252473831177,
-0.6300435066223145,
-0.19973784685134888,
0.1689467579126358,
-0.9074822664260864,
-0.06248033046722412,
-0.12183088809251785,
0.24574080109596252,
-0.32681211829185486,
-0.11397949606180191,
0.04630514234304428,
-0.37197786569595337,
0.38518795371055603,
0.19565634429454803,
-1.1047723293304443,
0.4844507575035095,
0.7893363237380981,
0.642309844493866,
0.07008691132068634,
-0.31276994943618774,
-0.11648958176374435,
0.5186941623687744,
-0.7731804847717285,
0.9265685081481934,
-0.477932870388031,
-0.7237411141395569,
0.010453813709318638,
0.6704605221748352,
-0.023675838485360146,
-0.22420574724674225,
0.726987361907959,
-0.3642904758453369,
0.4797365665435791,
-0.5801776051521301,
-0.5430788397789001,
-0.21157795190811157,
0.4464406669139862,
-0.8657276034355164,
0.8801849484443665,
-0.10915929824113846,
-0.66585773229599,
0.5641705393791199,
-0.8201537728309631,
-0.7071271538734436,
0.06626966595649719,
-0.2963576018810272,
-0.43797755241394043,
-0.07926589995622635,
-0.0013475138694047928,
0.2387339174747467,
-0.6735855340957642,
0.21319173276424408,
0.1777367740869522,
-0.08180966228246689,
0.10808200389146805,
-0.24718353152275085,
1.4582353830337524,
0.30382683873176575,
-0.6074283719062805,
0.13846392929553986,
-1.016087293624878,
0.05584806948900223,
0.022441441193223,
-0.15865115821361542,
0.010807712562382221,
-0.18117856979370117,
-0.11503573507070541,
0.14839832484722137,
0.24423125386238098,
-0.6660397052764893,
0.3438061475753784,
-0.719571590423584,
0.730121910572052,
0.7000822424888611,
0.425908625125885,
0.5325572490692139,
-0.8288695216178894,
0.5499656796455383,
0.13636210560798645,
0.17315134406089783,
-0.20747248828411102,
-0.8496236801147461,
-0.7027755379676819,
-0.167242631316185,
0.2179364562034607,
0.8830315470695496,
-0.11500684171915054,
1.0920332670211792,
-0.3227211833000183,
-0.5853907465934753,
-0.6037995219230652,
-0.20595261454582214,
0.29844385385513306,
0.35116711258888245,
0.3963848054409027,
-0.2877386212348938,
-0.6126242876052856,
-0.879221498966217,
-0.508694589138031,
-0.5231049060821533,
0.45311039686203003,
0.516810953617096,
0.9088341593742371,
0.17575260996818542,
0.9692067503929138,
-0.6238559484481812,
-0.3991445004940033,
-0.023695988580584526,
-0.02825991064310074,
0.7373975515365601,
0.41274747252464294,
0.5250237584114075,
-1.0451871156692505,
-0.7469140887260437,
0.13708770275115967,
-0.4238700270652771,
0.4112515151500702,
-0.2852866053581238,
-0.20112921297550201,
-0.16443988680839539,
0.15409238636493683,
-0.5720528364181519,
0.6588432788848877,
0.3351476192474365,
-0.7659492492675781,
0.3413342833518982,
-0.37910231947898865,
0.46698176860809326,
-1.4018759727478027,
0.09837723523378372,
-0.7008942365646362,
-0.04124656319618225,
-0.5506989359855652,
-0.22966298460960388,
0.3767409324645996,
0.0766545757651329,
-0.4217453598976135,
0.767261266708374,
-0.6925235986709595,
0.13820795714855194,
0.01931820996105671,
-0.2057453691959381,
0.13126341998577118,
0.28104740381240845,
-0.028092309832572937,
0.7984684705734253,
0.6162852644920349,
-0.5127497911453247,
0.7133834958076477,
0.26320892572402954,
-0.34685683250427246,
0.7740027904510498,
-0.37831181287765503,
-0.20801948010921478,
-0.23390425741672516,
0.30794304609298706,
-1.3586357831954956,
-0.4295634925365448,
0.4215331971645355,
-0.46613791584968567,
0.0406828410923481,
-0.19641166925430298,
-0.32069331407546997,
-0.9744357466697693,
-0.3731347322463989,
-0.03163556009531021,
0.3630911707878113,
-0.12345659732818604,
0.5756430625915527,
0.5664209127426147,
0.27309396862983704,
-0.9618732929229736,
-0.7356535792350769,
0.2869216799736023,
-0.06556963920593262,
-0.46893101930618286,
0.7283644676208496,
-0.2310563027858734,
-0.18764132261276245,
0.44701680541038513,
-0.12873344123363495,
-0.09141556918621063,
0.20600613951683044,
0.21006998419761658,
0.1509208232164383,
0.26944440603256226,
-0.39902234077453613,
-0.15045569837093353,
-0.1348758041858673,
-0.09417937695980072,
-0.08721564710140228,
0.7492337822914124,
0.04845220595598221,
-0.4816988706588745,
-0.42195969820022583,
0.4473010301589966,
0.687941312789917,
-0.40448257327079773,
0.5361323356628418,
0.4217199683189392,
-0.5849273800849915,
-0.03511452674865723,
-0.5261820554733276,
-0.22554098069667816,
-0.46030378341674805,
0.07061593234539032,
-0.528128445148468,
-0.5880750417709351,
0.9591494202613831,
0.01959601789712906,
0.4356767535209656,
0.8849291205406189,
0.637122631072998,
-0.41441524028778076,
0.6452339291572571,
0.05563490465283394,
-0.13798287510871887,
0.045444000512361526,
-0.6485961079597473,
0.0973435565829277,
-0.41696596145629883,
-0.5399129390716553,
-0.6933391690254211,
-0.39910656213760376,
-0.7689465880393982,
-0.4245412349700928,
0.11277638375759125,
0.07724714279174805,
-0.2578108608722687,
0.63901287317276,
-0.7172743678092957,
0.6074190139770508,
0.5738523006439209,
-0.15071174502372742,
0.2006520926952362,
-0.16217544674873352,
-0.45074206590652466,
-0.19649535417556763,
-0.6544563174247742,
-0.28514325618743896,
1.211092472076416,
0.018804531544446945,
0.46103575825691223,
0.6112221479415894,
0.671485960483551,
0.5268789529800415,
0.2627416253089905,
-0.5531159043312073,
0.6315135955810547,
0.08895204961299896,
-1.2368130683898926,
-0.2319004386663437,
-0.14630542695522308,
-1.381350040435791,
0.12101811915636063,
-0.24789197742938995,
-0.7418017387390137,
0.472406268119812,
0.015548999421298504,
-0.7086958289146423,
0.5888620018959045,
-0.4547501802444458,
0.8518655896186829,
-0.396363228559494,
-0.36642393469810486,
-0.19406719505786896,
-0.9159654378890991,
0.3438057601451874,
0.27478355169296265,
0.7361018061637878,
-0.34507933259010315,
-0.2505934238433838,
0.7857356071472168,
-0.6391746997833252,
0.7035666108131409,
0.08542902022600174,
-0.032521188259124756,
0.4110432267189026,
-0.16944892704486847,
0.9314101934432983,
0.25507840514183044,
0.18861225247383118,
-0.11428754031658173,
0.1093069538474083,
-0.2918991148471832,
-0.3615720570087433,
0.9622843265533447,
-0.8146223425865173,
-0.8457269668579102,
-1.0650140047073364,
-0.1979767084121704,
0.3458430767059326,
0.40196913480758667,
0.48783740401268005,
0.5126299262046814,
0.09124337136745453,
0.3607172966003418,
0.45949065685272217,
0.1119137778878212,
0.8534815907478333,
0.7561613917350769,
-0.30300867557525635,
-1.17180597782135,
0.9762524366378784,
0.5838816165924072,
0.06395925581455231,
0.43653371930122375,
0.2409694790840149,
-0.6799209117889404,
-0.6019435524940491,
-0.31068331003189087,
0.09305361658334732,
-0.37685680389404297,
-0.44382694363594055,
-0.6936171054840088,
-0.023191850632429123,
-0.8957604765892029,
-0.3688107430934906,
-0.3283118009567261,
-0.3062807321548462,
-0.4081268906593323,
-0.3443725109100342,
0.5841801166534424,
0.5988762378692627,
-0.35979384183883667,
0.13971801102161407,
-0.8728665709495544,
0.5917868614196777,
0.397932231426239,
0.5388845801353455,
-0.48000338673591614,
-0.27353280782699585,
0.07915037125349045,
-0.21050876379013062,
-0.4350419342517853,
-1.5303547382354736,
0.5211157202720642,
0.27985721826553345,
0.6633290648460388,
0.4325099289417267,
0.33258897066116333,
1.0739309787750244,
-0.7419745922088623,
1.1796952486038208,
0.5478408336639404,
-0.9612244963645935,
0.41494911909103394,
-0.397393137216568,
-0.1324453502893448,
0.6484264135360718,
0.5948138236999512,
-0.7717745304107666,
-0.3079525828361511,
-1.1649361848831177,
-1.1380776166915894,
0.5410786271095276,
0.36887285113334656,
0.27003082633018494,
-0.2593975365161896,
0.22526401281356812,
-0.17214179039001465,
0.49177804589271545,
-0.9521260261535645,
-1.1273401975631714,
-0.26411229372024536,
-0.22263967990875244,
0.4794926643371582,
-0.22057107090950012,
-0.556210458278656,
-0.3118790090084076,
0.4816896617412567,
0.18783752620220184,
0.4109133780002594,
0.44044485688209534,
0.17167016863822937,
-0.4850213825702667,
0.6149994134902954,
0.9229081869125366,
1.4383530616760254,
-0.491350919008255,
0.21677561104297638,
0.15165802836418152,
-0.5320579409599304,
0.41606107354164124,
0.15002405643463135,
-0.47229304909706116,
0.015226874500513077,
0.6857100129127502,
0.4655419886112213,
0.34928545355796814,
-0.18501955270767212,
0.39049017429351807,
0.20605385303497314,
-0.43704846501350403,
-0.9147462844848633,
-0.2114287167787552,
0.07980314642190933,
0.13353785872459412,
0.6886617541313171,
0.10905987024307251,
0.22845657169818878,
-1.1623607873916626,
0.41828441619873047,
0.7119298577308655,
-0.2958483099937439,
-0.2317982167005539,
0.8633434772491455,
0.09133683145046234,
-0.7540053725242615,
-0.15912394225597382,
-0.3437613546848297,
-0.6671448945999146,
0.6971821188926697,
0.5119839310646057,
0.8437207341194153,
-0.32629844546318054,
0.13181470334529877,
0.7195866107940674,
0.7945322394371033,
0.057547587901353836,
1.1921314001083374,
0.16757430136203766,
-0.5438442230224609,
-0.31358015537261963,
-0.497446745634079,
-0.2938113212585449,
0.25353774428367615,
-0.5773545503616333,
-0.035673633217811584,
-0.8727551698684692,
-0.5687297582626343,
-0.059035707265138626,
0.53699791431427,
-0.7653037309646606,
0.48738327622413635,
-0.2756292223930359,
1.0295476913452148,
-0.7736650109291077,
0.7302201390266418,
0.5515337586402893,
-0.5851409435272217,
-1.0268049240112305,
-0.13204623758792877,
-0.17049846053123474,
-0.737813413143158,
0.27294620871543884,
-0.12320829182863235,
0.37229448556900024,
0.11301115155220032,
-0.43524619936943054,
-1.265317678451538,
1.1710538864135742,
0.06793005019426346,
-0.7400466799736023,
-0.12722869217395782,
0.20906446874141693,
0.19917945563793182,
-0.030282268300652504,
0.6905506253242493,
0.6060101389884949,
1.014549970626831,
-0.06953172385692596,
-0.980588972568512,
0.15776433050632477,
-0.32567834854125977,
-0.34659701585769653,
0.10971853882074356,
-1.1160327196121216,
0.9705939292907715,
0.01993417739868164,
-0.13805803656578064,
-0.14162755012512207,
0.8732659816741943,
0.23028017580509186,
0.204592764377594,
0.5664156079292297,
0.7679363489151001,
0.9879957437515259,
-0.5048109889030457,
1.0428260564804077,
-0.8828360438346863,
0.37212979793548584,
0.7711492776870728,
-0.02333218790590763,
0.6453166007995605,
0.37712129950523376,
-0.7136654257774353,
0.1897270381450653,
0.7303165793418884,
-0.18289393186569214,
0.8213614821434021,
0.30173176527023315,
-0.2489197701215744,
0.021070055663585663,
-0.01049994956701994,
-0.708374559879303,
0.4661937355995178,
0.5647987127304077,
-0.6261976957321167,
-0.06990417838096619,
-0.42217257618904114,
0.2559148371219635,
-0.026696743443608284,
-0.4641827344894409,
0.9600305557250977,
-0.0650068148970604,
-0.7364616990089417,
0.6118026971817017,
-0.1284530758857727,
0.415914922952652,
-0.7394558191299438,
0.08958271145820618,
-0.1498700976371765,
0.10879386961460114,
-0.4570932984352112,
-1.1379913091659546,
0.32770055532455444,
-0.13567008078098297,
-0.228891521692276,
-0.2547900974750519,
0.3722498416900635,
-0.2944405674934387,
-0.6057603359222412,
0.19257190823554993,
0.5003455877304077,
0.0009888435015454888,
0.521233081817627,
-1.0154082775115967,
-0.22526659071445465,
0.14098411798477173,
-0.3765440881252289,
0.06286657601594925,
0.4564986228942871,
0.24772681295871735,
0.43139365315437317,
0.9284508228302002,
0.45493897795677185,
0.24421365559101105,
-0.5153838396072388,
0.9227583408355713,
-1.3636242151260376,
-0.5773661136627197,
-0.9511864185333252,
0.5021865963935852,
-0.302864134311676,
-0.6800705790519714,
1.0730385780334473,
0.9299518465995789,
0.6793164014816284,
0.07612533867359161,
0.6644421219825745,
-0.3607530891895294,
0.6575306057929993,
-0.4447079598903656,
0.9989917278289795,
-0.5822373032569885,
-0.07528527081012726,
-0.27687665820121765,
-1.0134673118591309,
-0.4919661581516266,
0.7246995568275452,
-0.4712611436843872,
-0.028156915679574013,
0.7305699586868286,
0.7454185485839844,
0.09448736906051636,
0.17091278731822968,
0.2924756705760956,
0.38155123591423035,
0.17165221273899078,
0.303702175617218,
0.664371907711029,
-0.46830615401268005,
0.7343397736549377,
-0.7421458959579468,
0.27537786960601807,
-0.05644644796848297,
-0.9689785838127136,
-0.7035530209541321,
-0.6843776702880859,
-0.3422684073448181,
-0.6128211617469788,
0.13993021845817566,
1.196923851966858,
0.6163128614425659,
-1.0156445503234863,
-0.619366466999054,
-0.3940295875072479,
0.11213880032300949,
-0.32129937410354614,
-0.17898011207580566,
0.8855609893798828,
0.1352980136871338,
-0.9003649353981018,
0.3563346862792969,
0.32776159048080444,
0.0031461522448807955,
-0.17788246273994446,
0.1708497703075409,
-0.25663232803344727,
0.46384215354919434,
0.4471425712108612,
0.5396116375923157,
-1.178710699081421,
-0.49815574288368225,
-0.1503564566373825,
-0.2335904836654663,
0.17930711805820465,
0.3423914611339569,
-0.4665684401988983,
0.5648307204246521,
0.7040430307388306,
0.1392938792705536,
0.24611715972423553,
0.08585327118635178,
0.23671337962150574,
-0.47682392597198486,
0.23438982665538788,
0.2653760612010956,
0.5537186861038208,
-0.019131405279040337,
-0.2817367911338806,
0.8132472634315491,
0.5143651962280273,
-0.4526921212673187,
-1.0299041271209717,
0.06859312206506729,
-1.2162275314331055,
-0.008429533801972866,
0.9977952837944031,
-0.23738040030002594,
-0.5937116146087646,
-0.3404206931591034,
-0.23729830980300903,
0.2172502875328064,
-0.5611666440963745,
0.5237281322479248,
0.7882297039031982,
0.07212136685848236,
-0.2217782884836197,
-0.50067538022995,
0.8258839249610901,
0.23424550890922546,
-0.9760264754295349,
-0.013362206518650055,
0.18913625180721283,
0.14139534533023834,
0.44827184081077576,
0.9061742424964905,
-0.35135549306869507,
0.18125422298908234,
-0.000007804947927070316,
-0.2209928035736084,
0.11009153723716736,
-0.050918255001306534,
0.16755668818950653,
0.3910132348537445,
-0.2678735554218292,
-0.10946567356586456
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
abidlabs/crowdsourced-speech2 | abidlabs | 2022-01-21T15:44:22Z | 292 | 0 | null | [
"region:us"
] | 2022-01-21T15:44:22Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227645754814148,
-0.22568479180335999,
0.8622264862060547,
0.43461528420448303,
-0.52829909324646,
0.7012971639633179,
0.7915720343589783,
0.07618614286184311,
0.774603009223938,
0.2563217282295227,
-0.7852813005447388,
-0.22573819756507874,
-0.9104477167129517,
0.5715674161911011,
-0.3992327153682709,
0.5791246294975281,
-0.14494498074054718,
-0.10751134157180786,
0.28233814239501953,
-0.2768957316875458,
-0.5409227609634399,
-0.3685525059700012,
-1.1902780532836914,
0.061491698026657104,
0.5316582918167114,
0.7435142993927002,
0.7584062218666077,
0.3652168810367584,
0.643257737159729,
0.39322906732559204,
-0.231389120221138,
0.48270541429519653,
-0.04171793907880783,
0.0026038766372948885,
-0.3524438440799713,
-0.5516899824142456,
-0.28596580028533936,
0.07584768533706665,
1.096130132675171,
0.9666873812675476,
-0.28466421365737915,
0.05330856889486313,
-0.30636167526245117,
0.3308892846107483,
-0.4973427355289459,
0.3054097294807434,
-0.022506212815642357,
0.16318757832050323,
-0.704151451587677,
-0.5535351634025574,
0.012795033864676952,
-0.7361212968826294,
0.17926514148712158,
-0.6900812387466431,
0.8269097208976746,
0.18583208322525024,
1.1533749103546143,
0.14819422364234924,
-0.4624859392642975,
-0.8161761164665222,
-0.6538985371589661,
0.5711163878440857,
-0.32703715562820435,
0.3968023657798767,
0.7028225660324097,
-0.048573337495326996,
-0.9820331335067749,
-0.6745738387107849,
-0.4646624028682709,
0.2923974096775055,
0.3540281355381012,
-0.3411684036254883,
-0.17522093653678894,
-0.30589917302131653,
0.15791957080364227,
0.1281142681837082,
-0.48419976234436035,
-0.5543919801712036,
-0.547515869140625,
-0.39602574706077576,
0.6206656694412231,
0.34829503297805786,
0.24291737377643585,
-0.18884189426898956,
-0.3228582441806793,
0.0880165845155716,
-0.41608554124832153,
0.3402574062347412,
0.6335517168045044,
0.711402416229248,
-0.5811445713043213,
0.5602157711982727,
-0.049275897443294525,
0.7439709901809692,
0.11445585638284683,
-0.2747812569141388,
0.4146060049533844,
-0.14724673330783844,
0.055171847343444824,
0.42263513803482056,
0.3152443468570709,
0.284130722284317,
-0.3273696303367615,
0.20322275161743164,
-0.32151490449905396,
-0.3049626648426056,
-0.2233218252658844,
-0.29490745067596436,
-0.35921788215637207,
0.5492295622825623,
-0.3314017951488495,
-0.4285551905632019,
1.1431758403778076,
-0.42007699608802795,
-0.7302228808403015,
0.33156365156173706,
0.40652117133140564,
-0.0994473397731781,
-0.37146514654159546,
-0.052260853350162506,
-0.8458786010742188,
-0.007907438091933727,
0.749117910861969,
-0.7198969125747681,
0.33717361092567444,
0.47280627489089966,
0.741721510887146,
0.1965060532093048,
-0.14034466445446014,
-0.4294945299625397,
0.2971963882446289,
-0.8659994006156921,
0.6320174932479858,
-0.2013527899980545,
-1.0051976442337036,
0.11150483042001724,
0.8971704244613647,
-0.3789643347263336,
-1.2094870805740356,
1.0605157613754272,
-0.6887932419776917,
0.16017864644527435,
-0.6767609119415283,
-0.14661164581775665,
-0.0711846798658371,
-0.005095955915749073,
-0.6088155508041382,
0.7567099332809448,
0.5872676968574524,
-0.4995277523994446,
0.2142946422100067,
-0.2602984309196472,
-0.3915135860443115,
0.38824939727783203,
-0.0793546810746193,
-0.21858903765678406,
0.7138336896896362,
-0.6647078394889832,
-0.2693285048007965,
0.2942773103713989,
0.23689353466033936,
-0.357060968875885,
-0.793192446231842,
0.08478078991174698,
-0.05786222219467163,
1.5507503747940063,
-0.03868861123919487,
-0.35861143469810486,
-0.6793837547302246,
-1.1506236791610718,
-0.07070811837911606,
0.6886887550354004,
-0.9194992184638977,
-0.27839499711990356,
-0.046410251408815384,
-0.26169371604919434,
0.0899493545293808,
0.7390591502189636,
-1.119404911994934,
0.28327250480651855,
-0.0509270615875721,
-0.22794727981090546,
0.8271061182022095,
0.1538720428943634,
0.24758882820606232,
0.14913466572761536,
0.4295872747898102,
0.5277255773544312,
0.11115183681249619,
0.6835883259773254,
-0.3472035229206085,
-0.9694353938102722,
0.6154633164405823,
0.25266438722610474,
0.8121451139450073,
-0.49945372343063354,
0.2685092091560364,
0.2702546715736389,
-0.3409683108329773,
-0.5682377219200134,
-0.31028279662132263,
0.09025713056325912,
0.14930610358715057,
0.11142496764659882,
-0.5721707344055176,
-0.6576128005981445,
-0.9689136743545532,
-0.13590654730796814,
-0.43143755197525024,
-0.35715675354003906,
0.2100687474012375,
0.5792906880378723,
-1.197553277015686,
0.4128877520561218,
-0.7705622911453247,
-0.7038743495941162,
-0.010655623860657215,
-0.1933809518814087,
0.7540653944015503,
0.43240171670913696,
0.5033961534500122,
-0.6397145390510559,
-0.5661987066268921,
-0.22470159828662872,
-1.0333740711212158,
-0.13280484080314636,
0.24819664657115936,
0.3065738081932068,
-0.1342327892780304,
-0.2744964063167572,
-0.48740261793136597,
0.8100383877754211,
0.14789216220378876,
-0.5391896963119507,
0.5220770239830017,
-0.3020317256450653,
0.17224839329719543,
-0.6369158029556274,
-0.0691685602068901,
-0.6616761684417725,
-0.0009067117935046554,
-0.36083078384399414,
-0.5737435817718506,
0.14772331714630127,
0.07017547637224197,
-0.16065414249897003,
0.2880837917327881,
-0.909276008605957,
-0.001085443771444261,
-0.744221568107605,
0.37907224893569946,
0.06394767016172409,
-0.3145084083080292,
-0.017516745254397392,
1.000038743019104,
0.7784457206726074,
-0.3848040699958801,
0.7217439413070679,
0.4440040588378906,
0.19036099314689636,
0.7630518674850464,
-0.18725158274173737,
0.16478213667869568,
-0.5245421528816223,
-0.12161099910736084,
-0.8887605667114258,
-1.0982943773269653,
0.7320572137832642,
-0.61142498254776,
0.36542850732803345,
-0.42778611183166504,
0.25891590118408203,
-0.6919258832931519,
-0.038853395730257034,
0.4808599054813385,
-0.05936374515295029,
-0.6863952875137329,
0.5232571363449097,
0.453174889087677,
-0.2019244134426117,
-0.6609036326408386,
-0.5301569700241089,
0.39365917444229126,
0.6154112815856934,
-0.16390395164489746,
0.06878498196601868,
0.14941087365150452,
-0.5441920757293701,
-0.040802545845508575,
-0.3869187533855438,
-0.45766744017601013,
0.054224055260419846,
0.13053379952907562,
-0.005750161595642567,
-0.404820054769516,
-0.08680257946252823,
-0.35842007398605347,
-0.4656125009059906,
0.21876463294029236,
0.30119529366493225,
-0.04096343368291855,
-0.42599743604660034,
-0.36198148131370544,
-0.8881809115409851,
0.6719611883163452,
0.5370280146598816,
0.05281474441289902,
0.7555550932884216,
0.16819243133068085,
-0.801498293876648,
-0.13532207906246185,
-0.17607054114341736,
0.2696835994720459,
-0.5588056445121765,
0.13849826157093048,
-0.01348480861634016,
-0.06374907493591309,
0.2629791498184204,
0.25386205315589905,
-0.4300558567047119,
0.927625298500061,
-0.26152747869491577,
-0.3592526614665985,
0.7960182428359985,
0.5974737405776978,
0.4958309233188629,
0.16503198444843292,
-0.044541098177433014,
0.9007097482681274,
-1.196651816368103,
-0.6563172340393066,
-0.740954577922821,
-0.15945661067962646,
-0.43510857224464417,
-0.0321057066321373,
0.6254417300224304,
0.29009905457496643,
-0.13333925604820251,
0.47563934326171875,
-0.5243490934371948,
0.3556032180786133,
1.01198410987854,
0.357486754655838,
0.34357017278671265,
-0.7570232152938843,
-0.25157779455184937,
-0.14024297893047333,
-0.9998160600662231,
-0.2631372809410095,
0.8871029019355774,
0.2275265008211136,
0.8444608449935913,
0.5992542505264282,
0.6784538626670837,
0.136723130941391,
0.2523833215236664,
-0.305902898311615,
0.3920287489891052,
0.43760839104652405,
-1.040114164352417,
-0.427584171295166,
0.02141888067126274,
-0.9703332781791687,
-0.14227578043937683,
-0.03495054692029953,
-0.42617106437683105,
0.7681738138198853,
0.00016635804786346853,
-0.40767112374305725,
0.7732735872268677,
-0.455583393573761,
0.7562879323959351,
-0.4473649859428406,
-0.02663865126669407,
0.4699098467826843,
-0.707064151763916,
0.4677433967590332,
0.12878736853599548,
0.6205845475196838,
-0.015571946278214455,
-0.04078621417284012,
0.7104930877685547,
-0.912916362285614,
0.25438612699508667,
-0.6348398923873901,
0.22421303391456604,
0.24246959388256073,
0.5160625576972961,
0.5969963073730469,
0.4371241629123688,
0.10119915008544922,
-0.23920850455760956,
0.04115789383649826,
-0.8241121172904968,
-0.21050667762756348,
0.6975144147872925,
-0.7186897397041321,
-0.6864195466041565,
-1.2355334758758545,
0.14438661932945251,
0.27347052097320557,
0.3893046975135803,
0.7959297895431519,
0.5714079141616821,
0.12895449995994568,
0.6805253624916077,
0.9888579249382019,
-0.06885592639446259,
0.916691780090332,
0.3224475085735321,
0.09175165742635727,
-0.21944895386695862,
0.703682541847229,
0.2662784457206726,
-0.24707898497581482,
-0.11939744651317596,
0.20913469791412354,
-0.11069414764642715,
-0.5917618870735168,
-0.4999074935913086,
0.3701755404472351,
-0.6731783151626587,
-0.1830393373966217,
-0.6243732571601868,
-0.6043766736984253,
-0.5117589235305786,
0.0692739263176918,
-0.7147683501243591,
0.23979082703590393,
-0.7753568887710571,
-0.10574901103973389,
0.043233584612607956,
0.9792002439498901,
-0.5893121361732483,
0.5805228352546692,
-1.12185800075531,
0.19345775246620178,
-0.07949890196323395,
0.792106032371521,
0.2139579802751541,
-0.7344390153884888,
-0.39754197001457214,
-0.11592598259449005,
-0.37299054861068726,
-1.3576757907867432,
0.21404962241649628,
-0.24541425704956055,
0.2309398651123047,
0.6145407557487488,
0.13977038860321045,
0.5258244276046753,
-0.3432632088661194,
0.7029102444648743,
-0.05701681971549988,
-0.7069293856620789,
0.7934491038322449,
-0.5026893615722656,
0.4963533282279968,
0.9766002893447876,
0.5333840250968933,
-0.7984007596969604,
0.0357406847178936,
-1.041122555732727,
-0.6008694171905518,
0.38426393270492554,
0.1192895919084549,
-0.036011260002851486,
-0.665955662727356,
-0.05401992052793503,
-0.16143806278705597,
0.6043741703033447,
-1.0390695333480835,
-0.785835862159729,
0.25766894221305847,
0.527729868888855,
0.08168502151966095,
-0.5653401613235474,
0.2088075578212738,
-0.5444163084030151,
1.0657776594161987,
0.4510935842990875,
0.32744958996772766,
0.8406059145927429,
0.4649236798286438,
-0.38231605291366577,
0.09252502024173737,
0.7662692070007324,
0.6666229367256165,
-0.5239795446395874,
-0.2908026874065399,
-0.0882752314209938,
-0.9143400192260742,
0.05927504226565361,
0.11168874800205231,
-0.013456094078719616,
0.9082115292549133,
0.579308032989502,
0.253970205783844,
0.4514276385307312,
-0.7264610528945923,
0.8859445452690125,
-0.1495419293642044,
-0.1247284859418869,
-1.0677239894866943,
0.19486205279827118,
-0.23984935879707336,
0.5006400346755981,
1.0061330795288086,
0.525004506111145,
-0.047630541026592255,
-0.814338207244873,
-0.014736393466591835,
0.6939173936843872,
-0.7091119885444641,
-0.17449776828289032,
0.9448539614677429,
0.38471025228500366,
-1.295304536819458,
1.106776475906372,
-0.5381773710250854,
-0.5603318214416504,
0.9121303558349609,
0.5229570269584656,
1.1221849918365479,
-0.44204193353652954,
0.0008675068384036422,
0.2662239074707031,
0.4137844443321228,
0.5423170328140259,
1.086963176727295,
0.43141356110572815,
-0.7931071519851685,
0.8826581835746765,
-0.24776068329811096,
-0.40361127257347107,
-0.053475700318813324,
-0.4285985827445984,
0.16892209649085999,
-0.44061893224716187,
-0.10712965577840805,
-0.3444185256958008,
0.2854307293891907,
-0.70720374584198,
0.42807650566101074,
-0.08385643362998962,
0.8653066754341125,
-0.8553729057312012,
0.47207602858543396,
0.6354700326919556,
-0.33373481035232544,
-0.8508192300796509,
-0.2619847357273102,
-0.1144845262169838,
-0.6389466524124146,
0.30214792490005493,
-0.45541056990623474,
0.04439886659383774,
0.09623479843139648,
-0.6491509079933167,
-1.1778273582458496,
0.9093630909919739,
-0.6396117210388184,
-0.2784458100795746,
0.20463955402374268,
-0.1151471734046936,
0.28811654448509216,
-0.2524648904800415,
0.010661326348781586,
0.4187661111354828,
0.7489396333694458,
0.28446558117866516,
-0.7727053761482239,
-0.36948859691619873,
0.0015033691888675094,
-0.44474759697914124,
0.7582973837852478,
-0.6002099514007568,
1.1840776205062866,
-0.556353747844696,
-0.05965423583984375,
0.4438447952270508,
0.24690861999988556,
0.21076245605945587,
0.6629217267036438,
0.144208163022995,
0.7282260060310364,
1.0701210498809814,
-0.4083523154258728,
0.881180465221405,
0.26432785391807556,
0.47430840134620667,
0.7238510251045227,
-0.6487718820571899,
0.7513748407363892,
0.3181042969226837,
-0.5682927966117859,
0.9228019714355469,
1.290606141090393,
-0.15699151158332825,
0.8079370260238647,
0.05136425420641899,
-1.0815999507904053,
0.32583364844322205,
-0.20724764466285706,
-0.7530062794685364,
0.31502565741539,
0.19055864214897156,
-0.6920987367630005,
-0.5770313739776611,
-0.2404651641845703,
-0.35662832856178284,
-0.11552872508764267,
-0.763173520565033,
0.6720565557479858,
-0.01696927472949028,
-0.5103673934936523,
0.18857470154762268,
0.2877500653266907,
0.17368444800376892,
-0.5235736966133118,
-0.029393965378403664,
-0.22823575139045715,
0.2660652697086334,
-0.5670853853225708,
-0.5234523415565491,
0.5724437236785889,
-0.32430148124694824,
-0.5343252420425415,
0.1814749836921692,
0.7635869979858398,
-0.1692378669977188,
-0.4515411853790283,
0.3247268795967102,
0.6959530115127563,
0.16658465564250946,
0.42502784729003906,
-0.23511283099651337,
0.2448059767484665,
-0.08044828474521637,
-0.06651593744754791,
0.27714747190475464,
0.3449171483516693,
0.22435645759105682,
0.44501352310180664,
0.432856947183609,
-0.018087303265929222,
-0.10736560821533203,
-0.38282057642936707,
0.41249361634254456,
-0.9542783498764038,
-0.5713291168212891,
-0.630710780620575,
0.2740667760372162,
-0.023154327645897865,
-1.0836422443389893,
0.41451749205589294,
1.4406688213348389,
1.0359984636306763,
-0.4756380617618561,
1.0672271251678467,
-0.21818462014198303,
0.9594789743423462,
0.4148315489292145,
0.5420438051223755,
-0.6030403971672058,
0.038353078067302704,
-0.43644046783447266,
-1.0769634246826172,
-0.3571633994579315,
0.4539390504360199,
-0.02289981208741665,
-0.3429867625236511,
0.8725717663764954,
0.5887162089347839,
-0.3347362279891968,
-0.11728024482727051,
0.04848664999008179,
-0.02994159795343876,
-0.12433876097202301,
0.5145372152328491,
0.7648398280143738,
-0.9344298243522644,
-0.10680411010980606,
-0.21577700972557068,
-0.6382728815078735,
-0.5047284364700317,
-0.9632003903388977,
-0.12959381937980652,
-0.16037844121456146,
0.03534334897994995,
-0.5662809610366821,
0.002556905150413513,
1.2083250284194946,
0.5684951543807983,
-1.1113994121551514,
-0.5303782224655151,
0.33718496561050415,
0.39204245805740356,
-0.1874789297580719,
-0.24202406406402588,
0.2984570860862732,
0.1538221836090088,
-0.5908879041671753,
0.6875662803649902,
0.8089626431465149,
0.20888905227184296,
0.19554781913757324,
0.15893003344535828,
-0.8229469060897827,
-0.14913435280323029,
0.1744047999382019,
0.9450566172599792,
-0.939853310585022,
-0.7114846110343933,
-0.03168468549847603,
-0.2709487974643707,
-0.05765698105096817,
0.17102089524269104,
-0.4046342968940735,
0.5180684924125671,
0.34591469168663025,
0.49933499097824097,
0.056160878390073776,
-0.054746419191360474,
0.5409556031227112,
-0.9069050550460815,
0.09425969421863556,
0.41343602538108826,
0.4154110848903656,
-0.4000871777534485,
-0.5910195112228394,
0.6713417172431946,
1.0073974132537842,
-0.6594864130020142,
-0.8743263483047485,
-0.19846680760383606,
-1.0016000270843506,
0.04189697653055191,
0.6762756109237671,
0.5009528994560242,
-0.48065176606178284,
-0.4174492359161377,
-0.5617400407791138,
-0.1254679411649704,
-0.13699710369110107,
0.76216059923172,
1.1796802282333374,
-0.7432100772857666,
0.07975788414478302,
-1.0386393070220947,
0.6594986915588379,
-0.2419460266828537,
-0.3457580506801605,
-0.4864429533481598,
0.3832802176475525,
0.3523699641227722,
0.44048118591308594,
0.6148120164871216,
0.14084689319133759,
0.8338428735733032,
0.31260576844215393,
-0.17026858031749725,
0.2698982357978821,
-0.4559198319911957,
-0.02893332578241825,
-0.05796258896589279,
0.3101596236228943,
-1.026215672492981
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
alperiox/autonlp-data-user-review-classification | alperiox | 2022-10-25T09:07:13Z | 292 | 0 | null | [
"task_categories:text-classification",
"language:en",
"region:us"
] | 2022-10-25T09:07:13Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
task_categories:
- text-classification
---
# AutoNLP Dataset for project: user-review-classification
## 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 user-review-classification.
### Languages
The BCP-47 code for the dataset's language is en.
## Dataset Structure
### Data Instances
A sample from this dataset looks as follows:
```json
[
{
"text": "awful",
"target": 3
},
{
"text": "it says you can only read three stories a month and yet everything i clicked on was blank and now it[...]",
"target": 2
}
]
```
### Dataset Fields
The dataset has the following fields (also called "features"):
```json
{
"target": "ClassLabel(num_classes=4, names=['CONTENT', 'INTERFACE', 'SUBSCRIPTION', 'USER_EXPERIENCE'], 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 | 275 |
| valid | 71 |
| [
-0.38101449608802795,
-0.054100532084703445,
0.18308576941490173,
0.2347823828458786,
-0.25183358788490295,
0.19311852753162384,
0.026897961273789406,
-0.28215867280960083,
0.4234485924243927,
0.5249985456466675,
-0.5047812461853027,
-0.8564561605453491,
-0.2969643473625183,
0.4491797387599945,
-0.38996008038520813,
1.301105260848999,
-0.2451673299074173,
-0.36326760053634644,
0.055145587772130966,
-0.21330134570598602,
-0.37037888169288635,
-0.38311466574668884,
-0.42786654829978943,
-0.08801708370447159,
0.4388246536254883,
0.46528589725494385,
0.7649825215339661,
0.981112003326416,
0.31980225443840027,
0.27888545393943787,
0.15922579169273376,
0.029359739273786545,
-0.06264032423496246,
-0.26516133546829224,
0.05344526469707489,
-0.3931860029697418,
-0.4397183656692505,
0.09819039702415466,
0.6695750951766968,
0.7145520448684692,
0.09247036278247833,
0.17834626138210297,
0.12785682082176208,
0.7122659087181091,
-0.5349759459495544,
0.41072866320610046,
-0.49640995264053345,
0.3983541429042816,
0.05340414494276047,
-0.18404407799243927,
-0.07867636531591415,
-0.42414581775665283,
0.19397972524166107,
-0.47367969155311584,
0.6209691166877747,
0.3081032931804657,
1.2576349973678589,
0.15050141513347626,
-0.4575623869895935,
-0.24996763467788696,
-0.18920256197452545,
0.6449562907218933,
-0.8326351642608643,
0.08837437629699707,
0.7638360857963562,
0.11859524995088577,
0.03588791564106941,
-0.570637583732605,
-0.8465721607208252,
-0.18142053484916687,
-0.3577672839164734,
0.1502983570098877,
-0.07892364263534546,
-0.09750804305076599,
0.32999491691589355,
0.44456952810287476,
-1.0808789730072021,
0.10125593841075897,
-0.777197539806366,
-0.5286638736724854,
1.0250869989395142,
0.39739251136779785,
0.2027251124382019,
-0.7699047327041626,
-0.3107309341430664,
-0.15747855603694916,
-0.3218088150024414,
-0.07980890572071075,
0.6463852524757385,
0.3224364221096039,
-0.45608222484588623,
0.9090406894683838,
-0.6320549249649048,
0.9149889349937439,
-0.13943420350551605,
0.13226954638957977,
0.8510788083076477,
-0.4563465416431427,
-0.5157666802406311,
0.14009281992912292,
1.1480562686920166,
0.5420981645584106,
0.08707524836063385,
-0.026189064607024193,
0.05862059071660042,
-0.010308020748198032,
0.15225735306739807,
-0.5050399303436279,
-0.5842432975769043,
0.6949354410171509,
-0.6506578922271729,
-0.45310619473457336,
-0.04978708550333977,
-0.757764458656311,
-0.16727924346923828,
-0.13777540624141693,
0.3319661617279053,
-0.26787179708480835,
-0.11490928381681442,
0.45859941840171814,
0.0929766297340393,
-0.06009291484951973,
0.3728385269641876,
-0.8691998720169067,
0.07496796548366547,
0.00463468860834837,
0.855448842048645,
-0.4406616687774658,
-0.6016944646835327,
0.04175378754734993,
0.00456746481359005,
-0.059309057891368866,
0.7538869976997375,
-0.021992381662130356,
-0.23575448989868164,
0.16869089007377625,
0.4400060772895813,
-0.24396060407161713,
-0.4927196502685547,
0.6610490083694458,
-0.4638109803199768,
0.6080054044723511,
-0.2861042618751526,
-0.3179515302181244,
-0.3090410828590393,
0.44940170645713806,
-0.8782523274421692,
1.1479531526565552,
0.4295237958431244,
-0.677006721496582,
0.7839014530181885,
-0.7561008930206299,
-0.43212226033210754,
0.1290968507528305,
-0.01491345651447773,
-0.6581774950027466,
-0.10329873114824295,
0.10256092995405197,
0.48140862584114075,
0.060787443071603775,
-0.0921287089586258,
-0.4467984139919281,
-0.07216826826334,
0.1417243778705597,
-0.4090352952480316,
1.0267164707183838,
0.3040590286254883,
-0.11216667294502258,
-0.1357463151216507,
-1.3163315057754517,
0.10655111074447632,
0.2241848260164261,
-0.6145601868629456,
-0.01581265591084957,
-0.2724495828151703,
0.3524869382381439,
0.49201300740242004,
0.21857285499572754,
-0.668181300163269,
0.5252179503440857,
-0.48836401104927063,
0.15640760958194733,
0.26372605562210083,
0.09712100774049759,
0.27502864599227905,
-0.13492467999458313,
0.330172598361969,
0.36688879132270813,
0.16704067587852478,
0.04886665567755699,
-0.28625059127807617,
-1.0047855377197266,
0.08993060141801834,
0.30831506848335266,
0.31144171953201294,
-0.3645281195640564,
1.2701257467269897,
0.061107438057661057,
-0.19946540892124176,
-0.634515643119812,
0.11197547614574432,
-0.21336308121681213,
0.7288174629211426,
0.6066780090332031,
-0.5368736386299133,
-0.5104585886001587,
-1.0625594854354858,
0.11598185449838638,
-0.19794759154319763,
-0.04483714699745178,
0.04545358940958977,
0.7062783241271973,
-0.17472966015338898,
1.072001576423645,
-0.8250730633735657,
-0.6349325776100159,
-0.3756663501262665,
0.3324498236179352,
0.5145804286003113,
0.5190597176551819,
0.3957584500312805,
-0.6034886837005615,
-0.7212071418762207,
-0.39417076110839844,
-0.7140420079231262,
-0.20448891818523407,
-0.43255922198295593,
-0.016740959137678146,
0.2757824957370758,
0.027092959731817245,
-0.5597844123840332,
0.8777292966842651,
0.2926768362522125,
-0.6116958260536194,
0.5727028250694275,
-0.17774155735969543,
0.11114103347063065,
-0.9128807783126831,
0.16676965355873108,
-0.1119040697813034,
-0.14817604422569275,
-0.2935413420200348,
-0.5771238207817078,
0.1551837921142578,
0.008122260682284832,
-0.3552527129650116,
0.22486011683940887,
-0.45144492387771606,
-0.10184513032436371,
-0.5472148060798645,
0.02977917529642582,
0.35187414288520813,
0.629917562007904,
0.1353001594543457,
0.24794870615005493,
0.5084609389305115,
-0.5642972588539124,
0.6747390627861023,
0.5513342618942261,
-0.5079838037490845,
0.3072241246700287,
-0.41215068101882935,
-0.17654818296432495,
-0.05179884657263756,
0.330756276845932,
-1.1599316596984863,
-0.5378906726837158,
0.46074652671813965,
-0.37985941767692566,
0.12085949629545212,
-0.2486361861228943,
-0.9085655212402344,
-0.5128575563430786,
-0.1249355599284172,
0.25650373101234436,
-0.05817166343331337,
-0.2985079288482666,
0.40439966320991516,
0.15860389173030853,
0.20978154242038727,
-0.5621200799942017,
-0.9262040853500366,
0.07688943296670914,
0.11231216043233871,
-0.2990483343601227,
0.14084492623806,
-0.29014289379119873,
0.4658691883087158,
0.2887572944164276,
-0.09509088099002838,
-0.27512699365615845,
-0.15704938769340515,
0.017607659101486206,
0.44534844160079956,
0.15226872265338898,
-0.15121224522590637,
0.02083819918334484,
-0.22775898873806,
0.11757231503725052,
-0.13186347484588623,
0.7421926856040955,
0.008120101876556873,
-0.4273841381072998,
-0.42784321308135986,
0.022591482847929,
0.3811590373516083,
-0.025713099166750908,
0.7438138127326965,
0.7020139694213867,
-0.3188285827636719,
-0.25057119131088257,
-0.43515515327453613,
0.2013641744852066,
-0.4518437683582306,
0.3955020010471344,
-0.21493759751319885,
-0.611301064491272,
0.4866389334201813,
0.44967254996299744,
0.12607352435588837,
1.0382393598556519,
0.5914185643196106,
-0.470685750246048,
0.9619008302688599,
0.2882460355758667,
-0.11524942517280579,
-0.03149057924747467,
-0.536444365978241,
0.014818958006799221,
-0.7409526705741882,
-0.573455274105072,
-0.4200506806373596,
-0.4421318769454956,
-0.6772640943527222,
-0.00974041037261486,
0.3174186050891876,
-0.023798083886504173,
-0.28040072321891785,
0.7102301716804504,
-0.9090465903282166,
0.5536720156669617,
0.47970566153526306,
0.028667697682976723,
0.2819245755672455,
0.11503259092569351,
-0.34601059556007385,
0.0017288465751335025,
-0.8262448906898499,
-0.08403853327035904,
1.187893271446228,
0.35015833377838135,
0.4753402769565582,
-0.005713256075978279,
0.6696691513061523,
0.4544384777545929,
0.012732261791825294,
-0.6413636803627014,
0.5884272456169128,
0.07065880298614502,
-0.7685524821281433,
-0.333732008934021,
-0.2912866473197937,
-1.1870732307434082,
0.06916657090187073,
-0.27258872985839844,
-0.7276220321655273,
0.5964863896369934,
0.059692297130823135,
-0.41310781240463257,
0.263224720954895,
-0.45499178767204285,
0.8913179636001587,
-0.3236273527145386,
-0.21118353307247162,
0.015670834109187126,
-0.8425464034080505,
0.17938874661922455,
-0.11626556515693665,
-0.19393597543239594,
-0.3983262777328491,
0.10047101229429245,
0.6800333857536316,
-0.7203240394592285,
0.827755868434906,
-0.07204049080610275,
0.1916695535182953,
0.28070226311683655,
-0.057570766657590866,
0.43560630083084106,
0.15487982332706451,
0.05737653747200966,
0.25772368907928467,
-0.02048998512327671,
-0.2651183307170868,
-0.43934059143066406,
0.5547441840171814,
-0.9140228629112244,
0.09079661965370178,
-0.9849227070808411,
-0.4016628861427307,
-0.16325488686561584,
0.3182516396045685,
0.38399583101272583,
0.2469099462032318,
0.26377782225608826,
0.36436450481414795,
0.5507645010948181,
-0.48899760842323303,
0.7790026068687439,
0.8182268738746643,
-0.1102655827999115,
-0.6668384671211243,
0.6737738847732544,
0.16784712672233582,
-0.05006832629442215,
0.3132919371128082,
0.0004478719783946872,
-0.7558543086051941,
-0.5695035457611084,
-0.4844742715358734,
0.21467089653015137,
-0.7176240086555481,
-0.410005658864975,
-0.8750208020210266,
-0.549934983253479,
-0.4469955265522003,
0.12589651346206665,
-0.3203357756137848,
-0.5164867043495178,
-0.58812415599823,
-0.29717400670051575,
0.1555778682231903,
0.38062432408332825,
-0.4546739459037781,
0.3712124526500702,
-0.8055617809295654,
0.39508217573165894,
0.06161252036690712,
0.6840164065361023,
-0.14432474970817566,
-0.6401235461235046,
-0.7445580959320068,
-0.46612632274627686,
-0.29573649168014526,
-0.8760733008384705,
0.7958624958992004,
-0.15836548805236816,
0.3055106997489929,
0.22612358629703522,
0.07823561877012253,
0.38757434487342834,
-0.46626630425453186,
0.8227314352989197,
0.2769923508167267,
-0.678756833076477,
0.656116247177124,
-0.2602675259113312,
0.4863024353981018,
1.0945758819580078,
0.7025026679039001,
-0.6083989143371582,
-0.1968579739332199,
-0.8643537163734436,
-1.0851460695266724,
0.8727051615715027,
0.4518332779407501,
-0.1693117916584015,
0.16574230790138245,
0.19210655987262726,
0.13353116810321808,
0.5614595413208008,
-1.1768476963043213,
-0.6793710589408875,
-0.4467334747314453,
-0.3553241789340973,
0.2743645906448364,
-0.25742998719215393,
-0.2831878364086151,
-0.3862094283103943,
0.6633583307266235,
-0.14326298236846924,
0.23603644967079163,
0.27807360887527466,
-0.16871006786823273,
-0.09770417958498001,
0.1342160850763321,
0.3047257363796234,
0.5288885235786438,
-0.5268346071243286,
-0.16467991471290588,
0.06758499145507812,
-0.6428068280220032,
0.15885035693645477,
0.3048440217971802,
-0.17500807344913483,
0.22176429629325867,
0.4264884293079376,
0.8629999160766602,
-0.0026560809928923845,
-0.17030563950538635,
0.580175518989563,
0.09009825438261032,
-0.4009627401828766,
-0.5716609358787537,
0.23744355142116547,
-0.44017040729522705,
-0.08086234331130981,
0.5628629326820374,
0.02935929410159588,
0.3873922526836395,
-0.14274318516254425,
0.35130053758621216,
-0.06575749069452286,
-0.060605186969041824,
-0.1910213977098465,
0.6083879470825195,
-0.03001396171748638,
0.09519918262958527,
0.7252280116081238,
-0.19457800686359406,
-0.39503711462020874,
0.6658926606178284,
0.23529557883739471,
1.138458013534546,
0.20515041053295135,
0.32883715629577637,
0.6541968584060669,
0.6972702145576477,
0.12621529400348663,
0.4463706314563751,
-0.03251311928033829,
-0.9165684580802917,
-0.4196677803993225,
-0.9990807771682739,
-0.39410194754600525,
0.7353204488754272,
-0.7672048211097717,
0.479342520236969,
-0.4138132631778717,
0.023034704849123955,
-0.09576021879911423,
0.4750164747238159,
-1.001860499382019,
0.8406583070755005,
0.219802126288414,
0.964877724647522,
-1.0986648797988892,
0.772204577922821,
0.4137752950191498,
-0.7758788466453552,
-0.902500569820404,
-0.11875550448894501,
-0.024814151227474213,
-0.7221936583518982,
0.7895673513412476,
0.05666910111904144,
0.5661419034004211,
-0.11101365834474564,
-0.68260258436203,
-1.1078829765319824,
0.8874742984771729,
-0.31264060735702515,
-0.6680743098258972,
0.09165974706411362,
0.7052624821662903,
0.6508049964904785,
-0.3390572667121887,
0.5456568002700806,
0.502941370010376,
0.48626017570495605,
-0.08149094879627228,
-0.8744253516197205,
-0.08039376139640808,
-0.19888080656528473,
-0.4205244183540344,
-0.15346075594425201,
-0.9930797815322876,
0.5721147060394287,
0.26102662086486816,
0.24774765968322754,
-0.3128250539302826,
0.8638008832931519,
0.2895708680152893,
0.37958183884620667,
0.7866089940071106,
0.7122437357902527,
0.4728916585445404,
-0.2243899405002594,
0.6454514265060425,
-0.320882648229599,
0.7348813414573669,
1.0651146173477173,
-0.47357895970344543,
0.5641670823097229,
-0.08660724014043808,
-0.3450799286365509,
0.8001360297203064,
0.8877335786819458,
-0.8760005831718445,
0.6623532772064209,
0.12326202541589737,
-0.06714474409818649,
0.029802214354276657,
0.2734294533729553,
-0.28468388319015503,
0.6655064821243286,
0.13222424685955048,
-0.5576035976409912,
-0.2967444360256195,
-0.037066750228405,
0.027483170852065086,
-0.559071958065033,
-0.08603601157665253,
0.5528886914253235,
-0.28828781843185425,
-0.378095805644989,
0.46113264560699463,
0.011737292632460594,
0.4764063060283661,
-0.8466542959213257,
0.1324547976255417,
-0.25136032700538635,
-0.2244003862142563,
-0.617160975933075,
-1.0182950496673584,
0.4995153844356537,
-0.04045700654387474,
-0.4991610646247864,
-0.13261128962039948,
0.7601198554039001,
-0.6404426097869873,
-0.5087668299674988,
0.04779259115457535,
0.3003813326358795,
0.30948981642723083,
0.25122934579849243,
-1.0935730934143066,
0.1001986712217331,
0.3884710669517517,
-0.3693219721317291,
0.36750727891921997,
0.2950063645839691,
0.3953658938407898,
0.5026189684867859,
0.6905707120895386,
0.45350760221481323,
-0.0964755117893219,
0.09024469554424286,
0.7639949321746826,
-0.9437196254730225,
-0.7225779891014099,
-0.5882894396781921,
0.7398975491523743,
-0.4246175289154053,
-0.6455734968185425,
0.7069854140281677,
1.2994564771652222,
0.935257077217102,
-0.041912589222192764,
1.0972886085510254,
-0.25744685530662537,
0.7700075507164001,
-0.5290032625198364,
1.0171990394592285,
-0.7755280137062073,
0.2393646389245987,
-0.0005532787181437016,
-0.8366950154304504,
-0.365984708070755,
0.5316326022148132,
-0.05585290491580963,
0.12695488333702087,
0.8774415850639343,
0.48627370595932007,
-0.16393806040287018,
0.0100995022803545,
0.18102668225765228,
0.39783111214637756,
0.05583527311682701,
0.36847734451293945,
0.4401421546936035,
-0.6111554503440857,
0.6009477972984314,
-0.5516112446784973,
-0.11128757148981094,
-0.19404131174087524,
-1.0243606567382812,
-0.928452730178833,
-0.50426185131073,
-0.6326292753219604,
-0.7023101449012756,
-0.3526241183280945,
1.021134853363037,
0.5800994038581848,
-1.2307196855545044,
-0.29511916637420654,
-0.09098132699728012,
-0.20046862959861755,
0.09190905839204788,
-0.3950072228908539,
0.9252562522888184,
-0.3094066083431244,
-0.8026244640350342,
0.4954775869846344,
0.2646198272705078,
0.14782167971134186,
-0.36383065581321716,
0.42491573095321655,
-0.15450970828533173,
-0.41746193170547485,
0.2835988998413086,
0.5486587285995483,
-0.27816084027290344,
-0.0167591143399477,
-0.3750009834766388,
-0.12247473746538162,
0.3851615786552429,
0.31784674525260925,
-0.7363099455833435,
0.6226499676704407,
0.7061776518821716,
0.355116605758667,
0.706829309463501,
-0.18097709119319916,
0.4173257350921631,
-0.9550634622573853,
0.04593447968363762,
0.352622926235199,
0.4712376892566681,
0.15533846616744995,
-0.5128978490829468,
0.6137438416481018,
0.6199053525924683,
-0.7029694318771362,
-0.8313623666763306,
-0.16435472667217255,
-1.1035940647125244,
-0.0052048079669475555,
1.1504929065704346,
0.16285626590251923,
-0.05709918215870857,
-0.5724724531173706,
0.05024814233183861,
0.30481013655662537,
-0.41962093114852905,
0.9625016450881958,
0.8948896527290344,
-0.4985513687133789,
-0.13131499290466309,
-0.6995722651481628,
0.7350625991821289,
0.4014463424682617,
-1.0439761877059937,
-0.23105791211128235,
0.47985175251960754,
0.39375039935112,
0.21358931064605713,
0.4971774220466614,
-0.07246645539999008,
0.163272425532341,
-0.219010129570961,
0.3027586340904236,
-0.18115556240081787,
-0.4289529025554657,
-0.4991092085838318,
0.35279545187950134,
-0.4796866774559021,
-0.3742794096469879
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
athar/QA | athar | 2021-10-24T17:30:33Z | 292 | 0 | null | [
"region:us"
] | 2021-10-24T17:30:33Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227645754814148,
-0.22568479180335999,
0.8622264862060547,
0.43461528420448303,
-0.52829909324646,
0.7012971639633179,
0.7915720343589783,
0.07618614286184311,
0.774603009223938,
0.2563217282295227,
-0.7852813005447388,
-0.22573819756507874,
-0.9104477167129517,
0.5715674161911011,
-0.3992327153682709,
0.5791246294975281,
-0.14494498074054718,
-0.10751134157180786,
0.28233814239501953,
-0.2768957316875458,
-0.5409227609634399,
-0.3685525059700012,
-1.1902780532836914,
0.061491698026657104,
0.5316582918167114,
0.7435142993927002,
0.7584062218666077,
0.3652168810367584,
0.643257737159729,
0.39322906732559204,
-0.231389120221138,
0.48270541429519653,
-0.04171793907880783,
0.0026038766372948885,
-0.3524438440799713,
-0.5516899824142456,
-0.28596580028533936,
0.07584768533706665,
1.096130132675171,
0.9666873812675476,
-0.28466421365737915,
0.05330856889486313,
-0.30636167526245117,
0.3308892846107483,
-0.4973427355289459,
0.3054097294807434,
-0.022506212815642357,
0.16318757832050323,
-0.704151451587677,
-0.5535351634025574,
0.012795033864676952,
-0.7361212968826294,
0.17926514148712158,
-0.6900812387466431,
0.8269097208976746,
0.18583208322525024,
1.1533749103546143,
0.14819422364234924,
-0.4624859392642975,
-0.8161761164665222,
-0.6538985371589661,
0.5711163878440857,
-0.32703715562820435,
0.3968023657798767,
0.7028225660324097,
-0.048573337495326996,
-0.9820331335067749,
-0.6745738387107849,
-0.4646624028682709,
0.2923974096775055,
0.3540281355381012,
-0.3411684036254883,
-0.17522093653678894,
-0.30589917302131653,
0.15791957080364227,
0.1281142681837082,
-0.48419976234436035,
-0.5543919801712036,
-0.547515869140625,
-0.39602574706077576,
0.6206656694412231,
0.34829503297805786,
0.24291737377643585,
-0.18884189426898956,
-0.3228582441806793,
0.0880165845155716,
-0.41608554124832153,
0.3402574062347412,
0.6335517168045044,
0.711402416229248,
-0.5811445713043213,
0.5602157711982727,
-0.049275897443294525,
0.7439709901809692,
0.11445585638284683,
-0.2747812569141388,
0.4146060049533844,
-0.14724673330783844,
0.055171847343444824,
0.42263513803482056,
0.3152443468570709,
0.284130722284317,
-0.3273696303367615,
0.20322275161743164,
-0.32151490449905396,
-0.3049626648426056,
-0.2233218252658844,
-0.29490745067596436,
-0.35921788215637207,
0.5492295622825623,
-0.3314017951488495,
-0.4285551905632019,
1.1431758403778076,
-0.42007699608802795,
-0.7302228808403015,
0.33156365156173706,
0.40652117133140564,
-0.0994473397731781,
-0.37146514654159546,
-0.052260853350162506,
-0.8458786010742188,
-0.007907438091933727,
0.749117910861969,
-0.7198969125747681,
0.33717361092567444,
0.47280627489089966,
0.741721510887146,
0.1965060532093048,
-0.14034466445446014,
-0.4294945299625397,
0.2971963882446289,
-0.8659994006156921,
0.6320174932479858,
-0.2013527899980545,
-1.0051976442337036,
0.11150483042001724,
0.8971704244613647,
-0.3789643347263336,
-1.2094870805740356,
1.0605157613754272,
-0.6887932419776917,
0.16017864644527435,
-0.6767609119415283,
-0.14661164581775665,
-0.0711846798658371,
-0.005095955915749073,
-0.6088155508041382,
0.7567099332809448,
0.5872676968574524,
-0.4995277523994446,
0.2142946422100067,
-0.2602984309196472,
-0.3915135860443115,
0.38824939727783203,
-0.0793546810746193,
-0.21858903765678406,
0.7138336896896362,
-0.6647078394889832,
-0.2693285048007965,
0.2942773103713989,
0.23689353466033936,
-0.357060968875885,
-0.793192446231842,
0.08478078991174698,
-0.05786222219467163,
1.5507503747940063,
-0.03868861123919487,
-0.35861143469810486,
-0.6793837547302246,
-1.1506236791610718,
-0.07070811837911606,
0.6886887550354004,
-0.9194992184638977,
-0.27839499711990356,
-0.046410251408815384,
-0.26169371604919434,
0.0899493545293808,
0.7390591502189636,
-1.119404911994934,
0.28327250480651855,
-0.0509270615875721,
-0.22794727981090546,
0.8271061182022095,
0.1538720428943634,
0.24758882820606232,
0.14913466572761536,
0.4295872747898102,
0.5277255773544312,
0.11115183681249619,
0.6835883259773254,
-0.3472035229206085,
-0.9694353938102722,
0.6154633164405823,
0.25266438722610474,
0.8121451139450073,
-0.49945372343063354,
0.2685092091560364,
0.2702546715736389,
-0.3409683108329773,
-0.5682377219200134,
-0.31028279662132263,
0.09025713056325912,
0.14930610358715057,
0.11142496764659882,
-0.5721707344055176,
-0.6576128005981445,
-0.9689136743545532,
-0.13590654730796814,
-0.43143755197525024,
-0.35715675354003906,
0.2100687474012375,
0.5792906880378723,
-1.197553277015686,
0.4128877520561218,
-0.7705622911453247,
-0.7038743495941162,
-0.010655623860657215,
-0.1933809518814087,
0.7540653944015503,
0.43240171670913696,
0.5033961534500122,
-0.6397145390510559,
-0.5661987066268921,
-0.22470159828662872,
-1.0333740711212158,
-0.13280484080314636,
0.24819664657115936,
0.3065738081932068,
-0.1342327892780304,
-0.2744964063167572,
-0.48740261793136597,
0.8100383877754211,
0.14789216220378876,
-0.5391896963119507,
0.5220770239830017,
-0.3020317256450653,
0.17224839329719543,
-0.6369158029556274,
-0.0691685602068901,
-0.6616761684417725,
-0.0009067117935046554,
-0.36083078384399414,
-0.5737435817718506,
0.14772331714630127,
0.07017547637224197,
-0.16065414249897003,
0.2880837917327881,
-0.909276008605957,
-0.001085443771444261,
-0.744221568107605,
0.37907224893569946,
0.06394767016172409,
-0.3145084083080292,
-0.017516745254397392,
1.000038743019104,
0.7784457206726074,
-0.3848040699958801,
0.7217439413070679,
0.4440040588378906,
0.19036099314689636,
0.7630518674850464,
-0.18725158274173737,
0.16478213667869568,
-0.5245421528816223,
-0.12161099910736084,
-0.8887605667114258,
-1.0982943773269653,
0.7320572137832642,
-0.61142498254776,
0.36542850732803345,
-0.42778611183166504,
0.25891590118408203,
-0.6919258832931519,
-0.038853395730257034,
0.4808599054813385,
-0.05936374515295029,
-0.6863952875137329,
0.5232571363449097,
0.453174889087677,
-0.2019244134426117,
-0.6609036326408386,
-0.5301569700241089,
0.39365917444229126,
0.6154112815856934,
-0.16390395164489746,
0.06878498196601868,
0.14941087365150452,
-0.5441920757293701,
-0.040802545845508575,
-0.3869187533855438,
-0.45766744017601013,
0.054224055260419846,
0.13053379952907562,
-0.005750161595642567,
-0.404820054769516,
-0.08680257946252823,
-0.35842007398605347,
-0.4656125009059906,
0.21876463294029236,
0.30119529366493225,
-0.04096343368291855,
-0.42599743604660034,
-0.36198148131370544,
-0.8881809115409851,
0.6719611883163452,
0.5370280146598816,
0.05281474441289902,
0.7555550932884216,
0.16819243133068085,
-0.801498293876648,
-0.13532207906246185,
-0.17607054114341736,
0.2696835994720459,
-0.5588056445121765,
0.13849826157093048,
-0.01348480861634016,
-0.06374907493591309,
0.2629791498184204,
0.25386205315589905,
-0.4300558567047119,
0.927625298500061,
-0.26152747869491577,
-0.3592526614665985,
0.7960182428359985,
0.5974737405776978,
0.4958309233188629,
0.16503198444843292,
-0.044541098177433014,
0.9007097482681274,
-1.196651816368103,
-0.6563172340393066,
-0.740954577922821,
-0.15945661067962646,
-0.43510857224464417,
-0.0321057066321373,
0.6254417300224304,
0.29009905457496643,
-0.13333925604820251,
0.47563934326171875,
-0.5243490934371948,
0.3556032180786133,
1.01198410987854,
0.357486754655838,
0.34357017278671265,
-0.7570232152938843,
-0.25157779455184937,
-0.14024297893047333,
-0.9998160600662231,
-0.2631372809410095,
0.8871029019355774,
0.2275265008211136,
0.8444608449935913,
0.5992542505264282,
0.6784538626670837,
0.136723130941391,
0.2523833215236664,
-0.305902898311615,
0.3920287489891052,
0.43760839104652405,
-1.040114164352417,
-0.427584171295166,
0.02141888067126274,
-0.9703332781791687,
-0.14227578043937683,
-0.03495054692029953,
-0.42617106437683105,
0.7681738138198853,
0.00016635804786346853,
-0.40767112374305725,
0.7732735872268677,
-0.455583393573761,
0.7562879323959351,
-0.4473649859428406,
-0.02663865126669407,
0.4699098467826843,
-0.707064151763916,
0.4677433967590332,
0.12878736853599548,
0.6205845475196838,
-0.015571946278214455,
-0.04078621417284012,
0.7104930877685547,
-0.912916362285614,
0.25438612699508667,
-0.6348398923873901,
0.22421303391456604,
0.24246959388256073,
0.5160625576972961,
0.5969963073730469,
0.4371241629123688,
0.10119915008544922,
-0.23920850455760956,
0.04115789383649826,
-0.8241121172904968,
-0.21050667762756348,
0.6975144147872925,
-0.7186897397041321,
-0.6864195466041565,
-1.2355334758758545,
0.14438661932945251,
0.27347052097320557,
0.3893046975135803,
0.7959297895431519,
0.5714079141616821,
0.12895449995994568,
0.6805253624916077,
0.9888579249382019,
-0.06885592639446259,
0.916691780090332,
0.3224475085735321,
0.09175165742635727,
-0.21944895386695862,
0.703682541847229,
0.2662784457206726,
-0.24707898497581482,
-0.11939744651317596,
0.20913469791412354,
-0.11069414764642715,
-0.5917618870735168,
-0.4999074935913086,
0.3701755404472351,
-0.6731783151626587,
-0.1830393373966217,
-0.6243732571601868,
-0.6043766736984253,
-0.5117589235305786,
0.0692739263176918,
-0.7147683501243591,
0.23979082703590393,
-0.7753568887710571,
-0.10574901103973389,
0.043233584612607956,
0.9792002439498901,
-0.5893121361732483,
0.5805228352546692,
-1.12185800075531,
0.19345775246620178,
-0.07949890196323395,
0.792106032371521,
0.2139579802751541,
-0.7344390153884888,
-0.39754197001457214,
-0.11592598259449005,
-0.37299054861068726,
-1.3576757907867432,
0.21404962241649628,
-0.24541425704956055,
0.2309398651123047,
0.6145407557487488,
0.13977038860321045,
0.5258244276046753,
-0.3432632088661194,
0.7029102444648743,
-0.05701681971549988,
-0.7069293856620789,
0.7934491038322449,
-0.5026893615722656,
0.4963533282279968,
0.9766002893447876,
0.5333840250968933,
-0.7984007596969604,
0.0357406847178936,
-1.041122555732727,
-0.6008694171905518,
0.38426393270492554,
0.1192895919084549,
-0.036011260002851486,
-0.665955662727356,
-0.05401992052793503,
-0.16143806278705597,
0.6043741703033447,
-1.0390695333480835,
-0.785835862159729,
0.25766894221305847,
0.527729868888855,
0.08168502151966095,
-0.5653401613235474,
0.2088075578212738,
-0.5444163084030151,
1.0657776594161987,
0.4510935842990875,
0.32744958996772766,
0.8406059145927429,
0.4649236798286438,
-0.38231605291366577,
0.09252502024173737,
0.7662692070007324,
0.6666229367256165,
-0.5239795446395874,
-0.2908026874065399,
-0.0882752314209938,
-0.9143400192260742,
0.05927504226565361,
0.11168874800205231,
-0.013456094078719616,
0.9082115292549133,
0.579308032989502,
0.253970205783844,
0.4514276385307312,
-0.7264610528945923,
0.8859445452690125,
-0.1495419293642044,
-0.1247284859418869,
-1.0677239894866943,
0.19486205279827118,
-0.23984935879707336,
0.5006400346755981,
1.0061330795288086,
0.525004506111145,
-0.047630541026592255,
-0.814338207244873,
-0.014736393466591835,
0.6939173936843872,
-0.7091119885444641,
-0.17449776828289032,
0.9448539614677429,
0.38471025228500366,
-1.295304536819458,
1.106776475906372,
-0.5381773710250854,
-0.5603318214416504,
0.9121303558349609,
0.5229570269584656,
1.1221849918365479,
-0.44204193353652954,
0.0008675068384036422,
0.2662239074707031,
0.4137844443321228,
0.5423170328140259,
1.086963176727295,
0.43141356110572815,
-0.7931071519851685,
0.8826581835746765,
-0.24776068329811096,
-0.40361127257347107,
-0.053475700318813324,
-0.4285985827445984,
0.16892209649085999,
-0.44061893224716187,
-0.10712965577840805,
-0.3444185256958008,
0.2854307293891907,
-0.70720374584198,
0.42807650566101074,
-0.08385643362998962,
0.8653066754341125,
-0.8553729057312012,
0.47207602858543396,
0.6354700326919556,
-0.33373481035232544,
-0.8508192300796509,
-0.2619847357273102,
-0.1144845262169838,
-0.6389466524124146,
0.30214792490005493,
-0.45541056990623474,
0.04439886659383774,
0.09623479843139648,
-0.6491509079933167,
-1.1778273582458496,
0.9093630909919739,
-0.6396117210388184,
-0.2784458100795746,
0.20463955402374268,
-0.1151471734046936,
0.28811654448509216,
-0.2524648904800415,
0.010661326348781586,
0.4187661111354828,
0.7489396333694458,
0.28446558117866516,
-0.7727053761482239,
-0.36948859691619873,
0.0015033691888675094,
-0.44474759697914124,
0.7582973837852478,
-0.6002099514007568,
1.1840776205062866,
-0.556353747844696,
-0.05965423583984375,
0.4438447952270508,
0.24690861999988556,
0.21076245605945587,
0.6629217267036438,
0.144208163022995,
0.7282260060310364,
1.0701210498809814,
-0.4083523154258728,
0.881180465221405,
0.26432785391807556,
0.47430840134620667,
0.7238510251045227,
-0.6487718820571899,
0.7513748407363892,
0.3181042969226837,
-0.5682927966117859,
0.9228019714355469,
1.290606141090393,
-0.15699151158332825,
0.8079370260238647,
0.05136425420641899,
-1.0815999507904053,
0.32583364844322205,
-0.20724764466285706,
-0.7530062794685364,
0.31502565741539,
0.19055864214897156,
-0.6920987367630005,
-0.5770313739776611,
-0.2404651641845703,
-0.35662832856178284,
-0.11552872508764267,
-0.763173520565033,
0.6720565557479858,
-0.01696927472949028,
-0.5103673934936523,
0.18857470154762268,
0.2877500653266907,
0.17368444800376892,
-0.5235736966133118,
-0.029393965378403664,
-0.22823575139045715,
0.2660652697086334,
-0.5670853853225708,
-0.5234523415565491,
0.5724437236785889,
-0.32430148124694824,
-0.5343252420425415,
0.1814749836921692,
0.7635869979858398,
-0.1692378669977188,
-0.4515411853790283,
0.3247268795967102,
0.6959530115127563,
0.16658465564250946,
0.42502784729003906,
-0.23511283099651337,
0.2448059767484665,
-0.08044828474521637,
-0.06651593744754791,
0.27714747190475464,
0.3449171483516693,
0.22435645759105682,
0.44501352310180664,
0.432856947183609,
-0.018087303265929222,
-0.10736560821533203,
-0.38282057642936707,
0.41249361634254456,
-0.9542783498764038,
-0.5713291168212891,
-0.630710780620575,
0.2740667760372162,
-0.023154327645897865,
-1.0836422443389893,
0.41451749205589294,
1.4406688213348389,
1.0359984636306763,
-0.4756380617618561,
1.0672271251678467,
-0.21818462014198303,
0.9594789743423462,
0.4148315489292145,
0.5420438051223755,
-0.6030403971672058,
0.038353078067302704,
-0.43644046783447266,
-1.0769634246826172,
-0.3571633994579315,
0.4539390504360199,
-0.02289981208741665,
-0.3429867625236511,
0.8725717663764954,
0.5887162089347839,
-0.3347362279891968,
-0.11728024482727051,
0.04848664999008179,
-0.02994159795343876,
-0.12433876097202301,
0.5145372152328491,
0.7648398280143738,
-0.9344298243522644,
-0.10680411010980606,
-0.21577700972557068,
-0.6382728815078735,
-0.5047284364700317,
-0.9632003903388977,
-0.12959381937980652,
-0.16037844121456146,
0.03534334897994995,
-0.5662809610366821,
0.002556905150413513,
1.2083250284194946,
0.5684951543807983,
-1.1113994121551514,
-0.5303782224655151,
0.33718496561050415,
0.39204245805740356,
-0.1874789297580719,
-0.24202406406402588,
0.2984570860862732,
0.1538221836090088,
-0.5908879041671753,
0.6875662803649902,
0.8089626431465149,
0.20888905227184296,
0.19554781913757324,
0.15893003344535828,
-0.8229469060897827,
-0.14913435280323029,
0.1744047999382019,
0.9450566172599792,
-0.939853310585022,
-0.7114846110343933,
-0.03168468549847603,
-0.2709487974643707,
-0.05765698105096817,
0.17102089524269104,
-0.4046342968940735,
0.5180684924125671,
0.34591469168663025,
0.49933499097824097,
0.056160878390073776,
-0.054746419191360474,
0.5409556031227112,
-0.9069050550460815,
0.09425969421863556,
0.41343602538108826,
0.4154110848903656,
-0.4000871777534485,
-0.5910195112228394,
0.6713417172431946,
1.0073974132537842,
-0.6594864130020142,
-0.8743263483047485,
-0.19846680760383606,
-1.0016000270843506,
0.04189697653055191,
0.6762756109237671,
0.5009528994560242,
-0.48065176606178284,
-0.4174492359161377,
-0.5617400407791138,
-0.1254679411649704,
-0.13699710369110107,
0.76216059923172,
1.1796802282333374,
-0.7432100772857666,
0.07975788414478302,
-1.0386393070220947,
0.6594986915588379,
-0.2419460266828537,
-0.3457580506801605,
-0.4864429533481598,
0.3832802176475525,
0.3523699641227722,
0.44048118591308594,
0.6148120164871216,
0.14084689319133759,
0.8338428735733032,
0.31260576844215393,
-0.17026858031749725,
0.2698982357978821,
-0.4559198319911957,
-0.02893332578241825,
-0.05796258896589279,
0.3101596236228943,
-1.026215672492981
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
biu-nlp/qamr | biu-nlp | 2021-10-20T07:10:13Z | 292 | 0 | null | [
"region:us"
] | 2021-10-20T07:10:13Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227645754814148,
-0.22568479180335999,
0.8622264862060547,
0.43461528420448303,
-0.52829909324646,
0.7012971639633179,
0.7915720343589783,
0.07618614286184311,
0.774603009223938,
0.2563217282295227,
-0.7852813005447388,
-0.22573819756507874,
-0.9104477167129517,
0.5715674161911011,
-0.3992327153682709,
0.5791246294975281,
-0.14494498074054718,
-0.10751134157180786,
0.28233814239501953,
-0.2768957316875458,
-0.5409227609634399,
-0.3685525059700012,
-1.1902780532836914,
0.061491698026657104,
0.5316582918167114,
0.7435142993927002,
0.7584062218666077,
0.3652168810367584,
0.643257737159729,
0.39322906732559204,
-0.231389120221138,
0.48270541429519653,
-0.04171793907880783,
0.0026038766372948885,
-0.3524438440799713,
-0.5516899824142456,
-0.28596580028533936,
0.07584768533706665,
1.096130132675171,
0.9666873812675476,
-0.28466421365737915,
0.05330856889486313,
-0.30636167526245117,
0.3308892846107483,
-0.4973427355289459,
0.3054097294807434,
-0.022506212815642357,
0.16318757832050323,
-0.704151451587677,
-0.5535351634025574,
0.012795033864676952,
-0.7361212968826294,
0.17926514148712158,
-0.6900812387466431,
0.8269097208976746,
0.18583208322525024,
1.1533749103546143,
0.14819422364234924,
-0.4624859392642975,
-0.8161761164665222,
-0.6538985371589661,
0.5711163878440857,
-0.32703715562820435,
0.3968023657798767,
0.7028225660324097,
-0.048573337495326996,
-0.9820331335067749,
-0.6745738387107849,
-0.4646624028682709,
0.2923974096775055,
0.3540281355381012,
-0.3411684036254883,
-0.17522093653678894,
-0.30589917302131653,
0.15791957080364227,
0.1281142681837082,
-0.48419976234436035,
-0.5543919801712036,
-0.547515869140625,
-0.39602574706077576,
0.6206656694412231,
0.34829503297805786,
0.24291737377643585,
-0.18884189426898956,
-0.3228582441806793,
0.0880165845155716,
-0.41608554124832153,
0.3402574062347412,
0.6335517168045044,
0.711402416229248,
-0.5811445713043213,
0.5602157711982727,
-0.049275897443294525,
0.7439709901809692,
0.11445585638284683,
-0.2747812569141388,
0.4146060049533844,
-0.14724673330783844,
0.055171847343444824,
0.42263513803482056,
0.3152443468570709,
0.284130722284317,
-0.3273696303367615,
0.20322275161743164,
-0.32151490449905396,
-0.3049626648426056,
-0.2233218252658844,
-0.29490745067596436,
-0.35921788215637207,
0.5492295622825623,
-0.3314017951488495,
-0.4285551905632019,
1.1431758403778076,
-0.42007699608802795,
-0.7302228808403015,
0.33156365156173706,
0.40652117133140564,
-0.0994473397731781,
-0.37146514654159546,
-0.052260853350162506,
-0.8458786010742188,
-0.007907438091933727,
0.749117910861969,
-0.7198969125747681,
0.33717361092567444,
0.47280627489089966,
0.741721510887146,
0.1965060532093048,
-0.14034466445446014,
-0.4294945299625397,
0.2971963882446289,
-0.8659994006156921,
0.6320174932479858,
-0.2013527899980545,
-1.0051976442337036,
0.11150483042001724,
0.8971704244613647,
-0.3789643347263336,
-1.2094870805740356,
1.0605157613754272,
-0.6887932419776917,
0.16017864644527435,
-0.6767609119415283,
-0.14661164581775665,
-0.0711846798658371,
-0.005095955915749073,
-0.6088155508041382,
0.7567099332809448,
0.5872676968574524,
-0.4995277523994446,
0.2142946422100067,
-0.2602984309196472,
-0.3915135860443115,
0.38824939727783203,
-0.0793546810746193,
-0.21858903765678406,
0.7138336896896362,
-0.6647078394889832,
-0.2693285048007965,
0.2942773103713989,
0.23689353466033936,
-0.357060968875885,
-0.793192446231842,
0.08478078991174698,
-0.05786222219467163,
1.5507503747940063,
-0.03868861123919487,
-0.35861143469810486,
-0.6793837547302246,
-1.1506236791610718,
-0.07070811837911606,
0.6886887550354004,
-0.9194992184638977,
-0.27839499711990356,
-0.046410251408815384,
-0.26169371604919434,
0.0899493545293808,
0.7390591502189636,
-1.119404911994934,
0.28327250480651855,
-0.0509270615875721,
-0.22794727981090546,
0.8271061182022095,
0.1538720428943634,
0.24758882820606232,
0.14913466572761536,
0.4295872747898102,
0.5277255773544312,
0.11115183681249619,
0.6835883259773254,
-0.3472035229206085,
-0.9694353938102722,
0.6154633164405823,
0.25266438722610474,
0.8121451139450073,
-0.49945372343063354,
0.2685092091560364,
0.2702546715736389,
-0.3409683108329773,
-0.5682377219200134,
-0.31028279662132263,
0.09025713056325912,
0.14930610358715057,
0.11142496764659882,
-0.5721707344055176,
-0.6576128005981445,
-0.9689136743545532,
-0.13590654730796814,
-0.43143755197525024,
-0.35715675354003906,
0.2100687474012375,
0.5792906880378723,
-1.197553277015686,
0.4128877520561218,
-0.7705622911453247,
-0.7038743495941162,
-0.010655623860657215,
-0.1933809518814087,
0.7540653944015503,
0.43240171670913696,
0.5033961534500122,
-0.6397145390510559,
-0.5661987066268921,
-0.22470159828662872,
-1.0333740711212158,
-0.13280484080314636,
0.24819664657115936,
0.3065738081932068,
-0.1342327892780304,
-0.2744964063167572,
-0.48740261793136597,
0.8100383877754211,
0.14789216220378876,
-0.5391896963119507,
0.5220770239830017,
-0.3020317256450653,
0.17224839329719543,
-0.6369158029556274,
-0.0691685602068901,
-0.6616761684417725,
-0.0009067117935046554,
-0.36083078384399414,
-0.5737435817718506,
0.14772331714630127,
0.07017547637224197,
-0.16065414249897003,
0.2880837917327881,
-0.909276008605957,
-0.001085443771444261,
-0.744221568107605,
0.37907224893569946,
0.06394767016172409,
-0.3145084083080292,
-0.017516745254397392,
1.000038743019104,
0.7784457206726074,
-0.3848040699958801,
0.7217439413070679,
0.4440040588378906,
0.19036099314689636,
0.7630518674850464,
-0.18725158274173737,
0.16478213667869568,
-0.5245421528816223,
-0.12161099910736084,
-0.8887605667114258,
-1.0982943773269653,
0.7320572137832642,
-0.61142498254776,
0.36542850732803345,
-0.42778611183166504,
0.25891590118408203,
-0.6919258832931519,
-0.038853395730257034,
0.4808599054813385,
-0.05936374515295029,
-0.6863952875137329,
0.5232571363449097,
0.453174889087677,
-0.2019244134426117,
-0.6609036326408386,
-0.5301569700241089,
0.39365917444229126,
0.6154112815856934,
-0.16390395164489746,
0.06878498196601868,
0.14941087365150452,
-0.5441920757293701,
-0.040802545845508575,
-0.3869187533855438,
-0.45766744017601013,
0.054224055260419846,
0.13053379952907562,
-0.005750161595642567,
-0.404820054769516,
-0.08680257946252823,
-0.35842007398605347,
-0.4656125009059906,
0.21876463294029236,
0.30119529366493225,
-0.04096343368291855,
-0.42599743604660034,
-0.36198148131370544,
-0.8881809115409851,
0.6719611883163452,
0.5370280146598816,
0.05281474441289902,
0.7555550932884216,
0.16819243133068085,
-0.801498293876648,
-0.13532207906246185,
-0.17607054114341736,
0.2696835994720459,
-0.5588056445121765,
0.13849826157093048,
-0.01348480861634016,
-0.06374907493591309,
0.2629791498184204,
0.25386205315589905,
-0.4300558567047119,
0.927625298500061,
-0.26152747869491577,
-0.3592526614665985,
0.7960182428359985,
0.5974737405776978,
0.4958309233188629,
0.16503198444843292,
-0.044541098177433014,
0.9007097482681274,
-1.196651816368103,
-0.6563172340393066,
-0.740954577922821,
-0.15945661067962646,
-0.43510857224464417,
-0.0321057066321373,
0.6254417300224304,
0.29009905457496643,
-0.13333925604820251,
0.47563934326171875,
-0.5243490934371948,
0.3556032180786133,
1.01198410987854,
0.357486754655838,
0.34357017278671265,
-0.7570232152938843,
-0.25157779455184937,
-0.14024297893047333,
-0.9998160600662231,
-0.2631372809410095,
0.8871029019355774,
0.2275265008211136,
0.8444608449935913,
0.5992542505264282,
0.6784538626670837,
0.136723130941391,
0.2523833215236664,
-0.305902898311615,
0.3920287489891052,
0.43760839104652405,
-1.040114164352417,
-0.427584171295166,
0.02141888067126274,
-0.9703332781791687,
-0.14227578043937683,
-0.03495054692029953,
-0.42617106437683105,
0.7681738138198853,
0.00016635804786346853,
-0.40767112374305725,
0.7732735872268677,
-0.455583393573761,
0.7562879323959351,
-0.4473649859428406,
-0.02663865126669407,
0.4699098467826843,
-0.707064151763916,
0.4677433967590332,
0.12878736853599548,
0.6205845475196838,
-0.015571946278214455,
-0.04078621417284012,
0.7104930877685547,
-0.912916362285614,
0.25438612699508667,
-0.6348398923873901,
0.22421303391456604,
0.24246959388256073,
0.5160625576972961,
0.5969963073730469,
0.4371241629123688,
0.10119915008544922,
-0.23920850455760956,
0.04115789383649826,
-0.8241121172904968,
-0.21050667762756348,
0.6975144147872925,
-0.7186897397041321,
-0.6864195466041565,
-1.2355334758758545,
0.14438661932945251,
0.27347052097320557,
0.3893046975135803,
0.7959297895431519,
0.5714079141616821,
0.12895449995994568,
0.6805253624916077,
0.9888579249382019,
-0.06885592639446259,
0.916691780090332,
0.3224475085735321,
0.09175165742635727,
-0.21944895386695862,
0.703682541847229,
0.2662784457206726,
-0.24707898497581482,
-0.11939744651317596,
0.20913469791412354,
-0.11069414764642715,
-0.5917618870735168,
-0.4999074935913086,
0.3701755404472351,
-0.6731783151626587,
-0.1830393373966217,
-0.6243732571601868,
-0.6043766736984253,
-0.5117589235305786,
0.0692739263176918,
-0.7147683501243591,
0.23979082703590393,
-0.7753568887710571,
-0.10574901103973389,
0.043233584612607956,
0.9792002439498901,
-0.5893121361732483,
0.5805228352546692,
-1.12185800075531,
0.19345775246620178,
-0.07949890196323395,
0.792106032371521,
0.2139579802751541,
-0.7344390153884888,
-0.39754197001457214,
-0.11592598259449005,
-0.37299054861068726,
-1.3576757907867432,
0.21404962241649628,
-0.24541425704956055,
0.2309398651123047,
0.6145407557487488,
0.13977038860321045,
0.5258244276046753,
-0.3432632088661194,
0.7029102444648743,
-0.05701681971549988,
-0.7069293856620789,
0.7934491038322449,
-0.5026893615722656,
0.4963533282279968,
0.9766002893447876,
0.5333840250968933,
-0.7984007596969604,
0.0357406847178936,
-1.041122555732727,
-0.6008694171905518,
0.38426393270492554,
0.1192895919084549,
-0.036011260002851486,
-0.665955662727356,
-0.05401992052793503,
-0.16143806278705597,
0.6043741703033447,
-1.0390695333480835,
-0.785835862159729,
0.25766894221305847,
0.527729868888855,
0.08168502151966095,
-0.5653401613235474,
0.2088075578212738,
-0.5444163084030151,
1.0657776594161987,
0.4510935842990875,
0.32744958996772766,
0.8406059145927429,
0.4649236798286438,
-0.38231605291366577,
0.09252502024173737,
0.7662692070007324,
0.6666229367256165,
-0.5239795446395874,
-0.2908026874065399,
-0.0882752314209938,
-0.9143400192260742,
0.05927504226565361,
0.11168874800205231,
-0.013456094078719616,
0.9082115292549133,
0.579308032989502,
0.253970205783844,
0.4514276385307312,
-0.7264610528945923,
0.8859445452690125,
-0.1495419293642044,
-0.1247284859418869,
-1.0677239894866943,
0.19486205279827118,
-0.23984935879707336,
0.5006400346755981,
1.0061330795288086,
0.525004506111145,
-0.047630541026592255,
-0.814338207244873,
-0.014736393466591835,
0.6939173936843872,
-0.7091119885444641,
-0.17449776828289032,
0.9448539614677429,
0.38471025228500366,
-1.295304536819458,
1.106776475906372,
-0.5381773710250854,
-0.5603318214416504,
0.9121303558349609,
0.5229570269584656,
1.1221849918365479,
-0.44204193353652954,
0.0008675068384036422,
0.2662239074707031,
0.4137844443321228,
0.5423170328140259,
1.086963176727295,
0.43141356110572815,
-0.7931071519851685,
0.8826581835746765,
-0.24776068329811096,
-0.40361127257347107,
-0.053475700318813324,
-0.4285985827445984,
0.16892209649085999,
-0.44061893224716187,
-0.10712965577840805,
-0.3444185256958008,
0.2854307293891907,
-0.70720374584198,
0.42807650566101074,
-0.08385643362998962,
0.8653066754341125,
-0.8553729057312012,
0.47207602858543396,
0.6354700326919556,
-0.33373481035232544,
-0.8508192300796509,
-0.2619847357273102,
-0.1144845262169838,
-0.6389466524124146,
0.30214792490005493,
-0.45541056990623474,
0.04439886659383774,
0.09623479843139648,
-0.6491509079933167,
-1.1778273582458496,
0.9093630909919739,
-0.6396117210388184,
-0.2784458100795746,
0.20463955402374268,
-0.1151471734046936,
0.28811654448509216,
-0.2524648904800415,
0.010661326348781586,
0.4187661111354828,
0.7489396333694458,
0.28446558117866516,
-0.7727053761482239,
-0.36948859691619873,
0.0015033691888675094,
-0.44474759697914124,
0.7582973837852478,
-0.6002099514007568,
1.1840776205062866,
-0.556353747844696,
-0.05965423583984375,
0.4438447952270508,
0.24690861999988556,
0.21076245605945587,
0.6629217267036438,
0.144208163022995,
0.7282260060310364,
1.0701210498809814,
-0.4083523154258728,
0.881180465221405,
0.26432785391807556,
0.47430840134620667,
0.7238510251045227,
-0.6487718820571899,
0.7513748407363892,
0.3181042969226837,
-0.5682927966117859,
0.9228019714355469,
1.290606141090393,
-0.15699151158332825,
0.8079370260238647,
0.05136425420641899,
-1.0815999507904053,
0.32583364844322205,
-0.20724764466285706,
-0.7530062794685364,
0.31502565741539,
0.19055864214897156,
-0.6920987367630005,
-0.5770313739776611,
-0.2404651641845703,
-0.35662832856178284,
-0.11552872508764267,
-0.763173520565033,
0.6720565557479858,
-0.01696927472949028,
-0.5103673934936523,
0.18857470154762268,
0.2877500653266907,
0.17368444800376892,
-0.5235736966133118,
-0.029393965378403664,
-0.22823575139045715,
0.2660652697086334,
-0.5670853853225708,
-0.5234523415565491,
0.5724437236785889,
-0.32430148124694824,
-0.5343252420425415,
0.1814749836921692,
0.7635869979858398,
-0.1692378669977188,
-0.4515411853790283,
0.3247268795967102,
0.6959530115127563,
0.16658465564250946,
0.42502784729003906,
-0.23511283099651337,
0.2448059767484665,
-0.08044828474521637,
-0.06651593744754791,
0.27714747190475464,
0.3449171483516693,
0.22435645759105682,
0.44501352310180664,
0.432856947183609,
-0.018087303265929222,
-0.10736560821533203,
-0.38282057642936707,
0.41249361634254456,
-0.9542783498764038,
-0.5713291168212891,
-0.630710780620575,
0.2740667760372162,
-0.023154327645897865,
-1.0836422443389893,
0.41451749205589294,
1.4406688213348389,
1.0359984636306763,
-0.4756380617618561,
1.0672271251678467,
-0.21818462014198303,
0.9594789743423462,
0.4148315489292145,
0.5420438051223755,
-0.6030403971672058,
0.038353078067302704,
-0.43644046783447266,
-1.0769634246826172,
-0.3571633994579315,
0.4539390504360199,
-0.02289981208741665,
-0.3429867625236511,
0.8725717663764954,
0.5887162089347839,
-0.3347362279891968,
-0.11728024482727051,
0.04848664999008179,
-0.02994159795343876,
-0.12433876097202301,
0.5145372152328491,
0.7648398280143738,
-0.9344298243522644,
-0.10680411010980606,
-0.21577700972557068,
-0.6382728815078735,
-0.5047284364700317,
-0.9632003903388977,
-0.12959381937980652,
-0.16037844121456146,
0.03534334897994995,
-0.5662809610366821,
0.002556905150413513,
1.2083250284194946,
0.5684951543807983,
-1.1113994121551514,
-0.5303782224655151,
0.33718496561050415,
0.39204245805740356,
-0.1874789297580719,
-0.24202406406402588,
0.2984570860862732,
0.1538221836090088,
-0.5908879041671753,
0.6875662803649902,
0.8089626431465149,
0.20888905227184296,
0.19554781913757324,
0.15893003344535828,
-0.8229469060897827,
-0.14913435280323029,
0.1744047999382019,
0.9450566172599792,
-0.939853310585022,
-0.7114846110343933,
-0.03168468549847603,
-0.2709487974643707,
-0.05765698105096817,
0.17102089524269104,
-0.4046342968940735,
0.5180684924125671,
0.34591469168663025,
0.49933499097824097,
0.056160878390073776,
-0.054746419191360474,
0.5409556031227112,
-0.9069050550460815,
0.09425969421863556,
0.41343602538108826,
0.4154110848903656,
-0.4000871777534485,
-0.5910195112228394,
0.6713417172431946,
1.0073974132537842,
-0.6594864130020142,
-0.8743263483047485,
-0.19846680760383606,
-1.0016000270843506,
0.04189697653055191,
0.6762756109237671,
0.5009528994560242,
-0.48065176606178284,
-0.4174492359161377,
-0.5617400407791138,
-0.1254679411649704,
-0.13699710369110107,
0.76216059923172,
1.1796802282333374,
-0.7432100772857666,
0.07975788414478302,
-1.0386393070220947,
0.6594986915588379,
-0.2419460266828537,
-0.3457580506801605,
-0.4864429533481598,
0.3832802176475525,
0.3523699641227722,
0.44048118591308594,
0.6148120164871216,
0.14084689319133759,
0.8338428735733032,
0.31260576844215393,
-0.17026858031749725,
0.2698982357978821,
-0.4559198319911957,
-0.02893332578241825,
-0.05796258896589279,
0.3101596236228943,
-1.026215672492981
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
damlab/HIV_V3_bodysite | damlab | 2022-02-08T21:12:25Z | 292 | 0 | null | [
"region:us"
] | 2022-02-08T21:12:25Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | # Dataset Description
## Dataset Summary
This dataset was derived from the Los Alamos National Laboratory HIV sequence (LANL) database.
It contains 5,510 unique V3 sequences, each annotated with its corresponding bodysite that it was associated with.
Supported Tasks and Leaderboards: None
Languages: English
## Dataset Structure
### Data Instances
Data Instances: Each column represents the protein amino acid sequence of the HIV V3 loop.
The ID field indicates the Genbank reference ID for future cross-referencing.
There are 2,935 total V3 sequences, with 91% being CCR5 tropic and 23% CXCR4 tropic.
Data Fields: ID, sequence, fold, periphery-tcell, periphery-monocyte, CNS, lung, breast-milk, gastric, male-genitals, female-genitals, umbilical-cord, organ
Data Splits: None
## Dataset Creation
Curation Rationale:
Initial Data Collection and Normalization: Dataset was downloaded and curated on 12/20/2021.
## Considerations for Using the Data
Social Impact of Dataset: This dataset can be used to study the mechanism by which HIV V3 loops allow for study of HIV compartmentalization.
Discussion of Biases: DDue 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.
Additionally, this dataset is highly biased to peripheral T-cells.
## Additional Information:
- Dataset Curators: Will Dampier
- Citation Information: TBA
---
license: mit
--- | [
-0.12293076515197754,
-0.2602373957633972,
0.1953505128622055,
0.0864047035574913,
-0.16931316256523132,
0.14158020913600922,
0.2660541832447052,
-0.244075208902359,
0.1869417279958725,
0.3934065103530884,
-0.5099173188209534,
-0.7216457724571228,
-0.36451199650764465,
0.43350258469581604,
-0.7141427993774414,
1.075657606124878,
0.09823046624660492,
0.2343861162662506,
0.14385958015918732,
-0.5053478479385376,
-0.2480112761259079,
-0.22245153784751892,
0.002623500069603324,
-0.14926524460315704,
0.8856281638145447,
0.863651692867279,
0.3586398661136627,
0.6951885223388672,
0.3061878979206085,
0.050497572869062424,
0.137241929769516,
-0.22064001858234406,
-0.9465295076370239,
-0.3199197053909302,
-0.00020358235633466393,
-0.1668110191822052,
-0.7111643552780151,
-0.24459527432918549,
0.5838482975959778,
0.4978090524673462,
-0.216408833861351,
0.46134549379348755,
-0.2591313123703003,
0.6794965863227844,
-0.6909414529800415,
-0.40103718638420105,
-0.4606497883796692,
0.23696917295455933,
-0.8856621384620667,
0.12086644768714905,
-0.16206757724285126,
-0.3507612645626068,
0.6685019731521606,
-0.2273484617471695,
0.3383389711380005,
0.007111551705747843,
0.7777456045150757,
-0.10464101284742355,
-0.4596075117588043,
0.2721579372882843,
-0.2250070869922638,
0.4502805471420288,
-0.5348148941993713,
0.45275020599365234,
0.27392879128456116,
0.0983368307352066,
0.09418195486068726,
-0.44132399559020996,
-0.20792993903160095,
0.13022646307945251,
0.09134551137685776,
-0.23723435401916504,
-0.012041752226650715,
-0.14588159322738647,
0.3356569707393646,
0.3359968662261963,
-0.68669193983078,
-0.015064289793372154,
-1.0706470012664795,
-0.22193697094917297,
0.8161163926124573,
0.2026371955871582,
0.18782787024974823,
0.023614102974534035,
-0.3823816180229187,
0.05789608880877495,
-1.0476669073104858,
0.17631162703037262,
0.19216614961624146,
0.08443888276815414,
-0.41782552003860474,
0.862151563167572,
-0.1846911609172821,
0.6311796307563782,
-0.242669939994812,
-0.06660191714763641,
0.7397792339324951,
-0.6541759967803955,
-0.2519024908542633,
0.14495402574539185,
0.9098854660987854,
0.5220493674278259,
0.036676809191703796,
0.1536569595336914,
0.034431975334882736,
-0.7982307076454163,
0.3114386200904846,
-0.7330981492996216,
-0.26518017053604126,
0.31136757135391235,
-0.4638616740703583,
-0.2398817092180252,
0.26200830936431885,
-0.6543402671813965,
-0.15084412693977356,
-0.09739026427268982,
0.2152385413646698,
-0.2601410448551178,
0.04787290468811989,
0.018797433003783226,
-0.2575187087059021,
0.516510546207428,
0.028499452397227287,
-0.2070588916540146,
0.484085351228714,
-0.04017570614814758,
0.7771394848823547,
-0.6378079056739807,
-0.15154646337032318,
-0.24849292635917664,
0.4016735553741455,
0.052433259785175323,
0.5101608037948608,
-0.3470688462257385,
-0.6551501154899597,
0.10719790309667587,
0.22878605127334595,
0.42498132586479187,
-0.36665287613868713,
0.3496049642562866,
-0.2996092438697815,
0.14579704403877258,
-0.7715725302696228,
-0.269212931394577,
-0.1448875069618225,
-0.16746973991394043,
-0.7451592087745667,
0.5885536670684814,
0.1378481090068817,
-0.646744430065155,
0.5012314915657043,
-0.47517532110214233,
-0.4949966073036194,
0.06184452399611473,
-0.08272195607423782,
-0.6270690560340881,
-0.14727196097373962,
0.34869667887687683,
0.2769169807434082,
-0.41535693407058716,
0.11163017898797989,
-0.44815993309020996,
-0.24293792247772217,
0.1265573799610138,
0.02503805421292782,
0.5593384504318237,
-0.07219267636537552,
-0.2552582919597626,
0.16226646304130554,
-0.9470877051353455,
-0.16023463010787964,
-0.1822700947523117,
-0.0909724235534668,
0.08659698069095612,
-0.23080511391162872,
0.1780257523059845,
0.08232121914625168,
0.09229815751314163,
-0.6986840963363647,
0.502676248550415,
0.024265741929411888,
0.0007780750165693462,
0.7147309184074402,
0.16675971448421478,
0.09132961183786392,
-0.4021000564098358,
0.2820260524749756,
0.44998741149902344,
0.4090196192264557,
0.43315261602401733,
-0.6870580315589905,
-0.38323140144348145,
-0.0837705135345459,
0.08854105323553085,
0.6229211091995239,
-0.6099446415901184,
0.08733922243118286,
-0.26123684644699097,
-0.298605352640152,
-0.3213784694671631,
0.10993055254220963,
0.6517172455787659,
0.34798792004585266,
0.6872038245201111,
-0.41851547360420227,
-0.623128354549408,
-1.2236603498458862,
0.22369873523712158,
0.09566320478916168,
-0.09259258210659027,
0.31677791476249695,
0.7501826286315918,
-0.001019235118292272,
0.7116555571556091,
-0.5053626298904419,
-0.5920889377593994,
-0.18650312721729279,
-0.3235253691673279,
0.30636632442474365,
0.3663766086101532,
0.36301639676094055,
-0.497007817029953,
-0.14944438636302948,
-0.21697674691677094,
-0.6081140637397766,
-0.2824377417564392,
0.21977746486663818,
-0.2302045375108719,
-0.06383975595235825,
0.06824808567762375,
-0.006032047793269157,
0.8182756304740906,
0.06312456727027893,
-0.23575575649738312,
0.3471118211746216,
-0.056421224027872086,
0.028581082820892334,
-0.7595124244689941,
0.17661766707897186,
0.18100838363170624,
-0.07501302659511566,
-0.6510201096534729,
-0.4477770924568176,
0.033625658601522446,
0.30345726013183594,
-0.6790815591812134,
0.08556170016527176,
-0.3127534091472626,
-0.34576186537742615,
0.0897466391324997,
-0.14556671679019928,
0.059625688940286636,
0.3107459545135498,
-0.1802501678466797,
0.8991134762763977,
0.32696396112442017,
-0.43784472346305847,
0.23589447140693665,
0.5209414958953857,
-0.22505182027816772,
0.46401986479759216,
-1.0324090719223022,
0.1963941603899002,
0.0882568359375,
0.3563990294933319,
-0.33878085017204285,
-0.39470943808555603,
0.15876562893390656,
-0.269514262676239,
0.023782987147569656,
0.12177862226963043,
0.18366166949272156,
-0.4033372700214386,
-0.6304522752761841,
0.8731186389923096,
0.2720004916191101,
0.025741389021277428,
-0.2160377949476242,
0.5630666613578796,
0.3705052435398102,
-1.109297752380371,
-0.6020006537437439,
-0.09848334640264511,
0.01993316411972046,
-0.33774885535240173,
0.44289591908454895,
0.08394236117601395,
-0.229159414768219,
-0.088714599609375,
-0.07480727136135101,
0.10518056899309158,
-0.2629110515117645,
0.3193913698196411,
0.27999192476272583,
0.026565728709101677,
-0.1825796663761139,
-0.270373672246933,
0.4318907558917999,
-0.15830357372760773,
-0.36425134539604187,
0.18630772829055786,
0.010257101617753506,
-0.3485974967479706,
-0.34612327814102173,
0.558966875076294,
0.40901362895965576,
-0.07334545254707336,
0.7043362259864807,
0.5848576426506042,
-0.5411994457244873,
0.030172470957040787,
-0.3336833417415619,
0.17084090411663055,
-0.23268628120422363,
0.18341600894927979,
-0.36705467104911804,
-0.6448163390159607,
0.7443175911903381,
0.7678727507591248,
0.03375007212162018,
0.4128127694129944,
0.7577131390571594,
0.2366238385438919,
0.4959120750427246,
0.3863099217414856,
-0.18270990252494812,
0.2282489687204361,
-0.7013618350028992,
0.06270888447761536,
-1.2270371913909912,
-0.5953242778778076,
-0.4353671669960022,
-0.3592343330383301,
-0.48904654383659363,
-0.5807791352272034,
0.5064408779144287,
-0.30417129397392273,
-0.4660806953907013,
0.4906931519508362,
-0.21183446049690247,
0.3976964056491852,
0.3838087022304535,
0.4429943561553955,
-0.051223285496234894,
-0.3629515469074249,
-0.0715368241071701,
0.24142976105213165,
-0.47707799077033997,
-0.21343420445919037,
1.5545635223388672,
0.27584198117256165,
0.5014180541038513,
0.49852892756462097,
0.5645933747291565,
0.5932016968727112,
0.29247769713401794,
-0.2752619981765747,
0.43602243065834045,
-0.03462973237037659,
-0.6121938824653625,
-0.15203914046287537,
-0.13787858188152313,
-0.9136365056037903,
-0.5035874247550964,
-0.0999431386590004,
-0.9892377853393555,
0.7884261012077332,
-0.20685969293117523,
-0.3677282929420471,
0.14589226245880127,
-0.4556272327899933,
0.7302172183990479,
0.26161661744117737,
-0.6074671149253845,
0.23782142996788025,
-1.087654948234558,
0.7037400603294373,
-0.15768980979919434,
0.073024682700634,
-0.11208025366067886,
-0.06819964945316315,
0.5991250872612,
-0.8099169731140137,
0.49455106258392334,
0.014330883510410786,
-0.04753676801919937,
-0.04529684782028198,
-0.33567482233047485,
0.16004601120948792,
0.5020513534545898,
-0.21354949474334717,
0.31417903304100037,
0.022384149953722954,
-0.8448103070259094,
-0.06512834876775742,
0.7561260461807251,
-1.046609878540039,
-0.5930955410003662,
-0.34229153394699097,
-0.2695777118206024,
0.11599213629961014,
0.0013686586171388626,
0.6158262491226196,
0.7895299792289734,
0.0024180628824979067,
0.25445467233657837,
0.620624840259552,
-0.33608970046043396,
0.39002370834350586,
0.23981517553329468,
-0.2852380573749542,
-0.8115208148956299,
0.6254739165306091,
0.2115827053785324,
0.4108830988407135,
0.38886570930480957,
-0.15713438391685486,
-0.4322727918624878,
-0.8761222958564758,
-0.4200965166091919,
-0.09288665652275085,
-0.354082852602005,
-0.4444865882396698,
-0.5661101937294006,
-0.2503907084465027,
-0.4343525171279907,
-0.09292522072792053,
-0.06202767789363861,
-0.057583536952733994,
-0.2860074043273926,
-0.3787826895713806,
0.48579883575439453,
0.9596256613731384,
-0.12986420094966888,
-0.024192839860916138,
-0.8006235361099243,
0.4765567481517792,
0.07175060361623764,
0.2790161967277527,
-0.3955675959587097,
-0.32874444127082825,
-0.34136056900024414,
0.13417111337184906,
-0.25083139538764954,
-1.1792962551116943,
0.38826891779899597,
0.4713924825191498,
0.4753775894641876,
0.1697349101305008,
-0.027267372235655785,
0.764553964138031,
-0.27947330474853516,
1.2752808332443237,
-0.18125592172145844,
-0.8374042510986328,
0.5999383926391602,
-0.6368511319160461,
0.3394578695297241,
0.5738822817802429,
0.24181431531906128,
-0.025973526760935783,
-0.34367823600769043,
-0.8099917769432068,
-1.033131718635559,
0.716282069683075,
0.812249481678009,
-0.5715227723121643,
-0.006273646838963032,
0.23973646759986877,
0.1671379953622818,
0.2747839093208313,
-0.7397732138633728,
-0.8094286918640137,
-0.1563510149717331,
0.11924578994512558,
-0.0813041627407074,
-0.30221521854400635,
-0.5554459691047668,
-0.5042506456375122,
0.8728498816490173,
-0.014950106851756573,
0.42587316036224365,
0.6505597233772278,
-0.11761318892240524,
-0.10693120956420898,
0.020071210339665413,
1.1219466924667358,
0.94099360704422,
-0.5295114517211914,
0.05910904332995415,
0.2762981057167053,
-0.8290485143661499,
0.3994857966899872,
-0.07736001163721085,
-0.2749137282371521,
-0.2024213969707489,
0.4819568991661072,
0.646155834197998,
-0.21452635526657104,
-0.4006234109401703,
0.4306142330169678,
-0.2130116969347,
-0.06641329079866409,
-0.20542487502098083,
-0.11335211247205734,
-0.3475385308265686,
0.22306117415428162,
0.6604867577552795,
0.00813353806734085,
0.5143334865570068,
-0.21351715922355652,
0.5859428644180298,
-0.02622128836810589,
-0.3890018165111542,
-0.3925759196281433,
0.5277043581008911,
0.1431594341993332,
-0.3683193325996399,
0.5326382517814636,
0.1177152618765831,
-0.18188871443271637,
0.5957882404327393,
0.44062840938568115,
0.947530210018158,
0.09594464302062988,
0.20447266101837158,
0.5803748965263367,
0.10416672378778458,
0.11512646824121475,
0.5390440225601196,
0.17199963331222534,
-0.448562890291214,
-0.22009971737861633,
-0.5373738408088684,
-0.2511049807071686,
0.4173682928085327,
-0.8005235195159912,
0.4917764961719513,
-0.2261529415845871,
0.03734684735536575,
-0.1117694303393364,
0.09449265152215958,
-0.5350222587585449,
0.06223826855421066,
0.30000466108322144,
0.9768015146255493,
-0.7390469312667847,
1.057417392730713,
0.6961264610290527,
-0.24829380214214325,
-0.6747936606407166,
0.05644894763827324,
0.251483291387558,
-0.5679047107696533,
0.5216830372810364,
0.09728275239467621,
0.0741795152425766,
-0.36141660809516907,
-0.5259166955947876,
-0.7460265755653381,
1.2666544914245605,
0.09574520587921143,
-0.5932853817939758,
0.22635817527770996,
0.16023153066635132,
0.4397915303707123,
-0.4569123089313507,
0.2568923532962799,
0.6812111735343933,
0.23256602883338928,
0.08851177245378494,
-0.8630369305610657,
0.026504747569561005,
-0.40177029371261597,
0.2971755862236023,
0.22637206315994263,
-0.5503652691841125,
0.5491267442703247,
-0.4123726785182953,
0.22726179659366608,
-0.02810710109770298,
0.7374606728553772,
0.44109398126602173,
0.2805180549621582,
0.07239425182342529,
0.7534931302070618,
0.4749995470046997,
-0.25454550981521606,
0.673191487789154,
-0.1412493735551834,
0.027161916717886925,
0.838997483253479,
-0.3103336691856384,
0.4260847568511963,
0.5542487502098083,
-0.39741793274879456,
0.4595720171928406,
0.6831285953521729,
0.1598271280527115,
0.5976616144180298,
0.4008803963661194,
-0.23852339386940002,
0.21456274390220642,
-0.279726505279541,
-0.7391745448112488,
0.22104346752166748,
0.41185349225997925,
-0.2587151825428009,
-0.0014195793773978949,
0.07239049673080444,
-0.17979976534843445,
-0.5352214574813843,
-0.23779720067977905,
0.7023122310638428,
-0.12083182483911514,
-0.27721741795539856,
0.42184871435165405,
-0.4466607868671417,
0.12396251410245895,
-0.2614952623844147,
-0.09087396413087845,
-0.326926052570343,
0.09108627587556839,
-0.3570401668548584,
-0.9941037893295288,
0.24655309319496155,
-0.047313276678323746,
-0.07372159510850906,
-0.01992114819586277,
0.25894349813461304,
-0.20983479917049408,
-0.4241410791873932,
-0.027401387691497803,
0.41329532861709595,
-0.07372201979160309,
0.5893501043319702,
-0.41753432154655457,
0.23336918652057648,
0.2278367429971695,
-0.16827239096164703,
0.18272437155246735,
0.40928712487220764,
-0.12720997631549835,
0.5043945908546448,
0.32947301864624023,
0.17254573106765747,
-0.2078646868467331,
0.26804739236831665,
0.7925117015838623,
-0.8423535823822021,
0.15543995797634125,
-0.8352020978927612,
0.7016966938972473,
-0.41647377610206604,
-0.574289858341217,
0.6226280927658081,
0.9199026226997375,
0.9015991687774658,
-0.059635844081640244,
0.46147388219833374,
-0.15936525166034698,
0.09648309648036957,
-0.3346444070339203,
0.3422442674636841,
-0.35440048575401306,
0.5325342416763306,
-0.403513640165329,
-0.644950270652771,
-0.49737197160720825,
0.1734362095594406,
-0.10995163768529892,
-0.226594477891922,
0.4377133548259735,
0.5941266417503357,
0.24070830643177032,
0.11165140569210052,
0.14123381674289703,
0.19211870431900024,
0.5141727328300476,
0.5739752054214478,
0.3615528643131256,
-0.691612720489502,
0.10270579904317856,
-0.31656312942504883,
-0.003377822693437338,
-0.19512821733951569,
-0.8441086411476135,
-0.620615541934967,
-0.8052029013633728,
-0.45820552110671997,
-0.7928996682167053,
0.4223923087120056,
0.913623571395874,
0.7247913479804993,
-0.9456290602684021,
-0.5027776956558228,
0.04922240972518921,
0.46648067235946655,
-0.04874304309487343,
-0.10912273824214935,
0.08080749213695526,
0.22963301837444305,
-0.24498051404953003,
0.18932221829891205,
0.423855721950531,
0.16146379709243774,
-0.2633714973926544,
0.19408442080020905,
-0.6736719608306885,
-0.29391005635261536,
0.446603000164032,
0.4182036519050598,
-0.5514807105064392,
-0.6747182607650757,
0.22138547897338867,
-0.12121079117059708,
0.214283749461174,
0.36329296231269836,
-0.6831299066543579,
0.043202754110097885,
0.5262947678565979,
0.04502241685986519,
0.46657252311706543,
-0.23708319664001465,
1.0051395893096924,
-0.6929759979248047,
-0.09019055962562561,
0.00833170022815466,
0.5361506342887878,
0.20327281951904297,
-0.238856241106987,
0.5115761160850525,
0.5257649421691895,
-0.7582881450653076,
-0.8908313512802124,
0.14351049065589905,
-1.2048497200012207,
0.1895902156829834,
1.2072831392288208,
0.08240868151187897,
-0.3700743019580841,
-0.36355993151664734,
-0.2373276799917221,
0.2827870845794678,
-0.6159051060676575,
0.37319067120552063,
0.42077162861824036,
-0.3902338743209839,
-0.34081295132637024,
-0.27585694193840027,
0.7272747159004211,
-0.22816845774650574,
-0.8587316274642944,
-0.18409954011440277,
0.5460261702537537,
0.28211215138435364,
-0.11987670511007309,
0.5689325928688049,
-0.2080966830253601,
0.18452860414981842,
-0.45220112800598145,
0.06894057989120483,
0.3207224905490875,
-0.347445547580719,
-0.3109908103942871,
0.36741501092910767,
-0.21397845447063446,
-0.24533359706401825
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
echarlaix/gqa | echarlaix | 2022-02-01T10:44:11Z | 292 | 0 | null | [
"license:apache-2.0",
"region:us"
] | 2022-02-01T10:44:11Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
license: apache-2.0
---
| [
-0.1285335123538971,
-0.1861683875322342,
0.6529128551483154,
0.49436232447624207,
-0.19319400191307068,
0.23607441782951355,
0.36072009801864624,
0.05056373029947281,
0.5793656706809998,
0.7400146722793579,
-0.650810182094574,
-0.23784008622169495,
-0.7102247476577759,
-0.04782553389668465,
-0.38947567343711853,
0.8470754623413086,
-0.09598255157470703,
0.024005301296710968,
0.04711989313364029,
-0.1431780606508255,
-0.6121035814285278,
-0.04771772027015686,
-1.052453637123108,
-0.06787454336881638,
0.30022722482681274,
0.5120980143547058,
0.827591061592102,
0.396028608083725,
0.5030559301376343,
1.7515556812286377,
-0.08836911618709564,
-0.22754397988319397,
-0.45892009139060974,
0.42230671644210815,
-0.3327728509902954,
-0.4213376045227051,
-0.2624169588088989,
-0.07449327409267426,
0.32380378246307373,
0.7903715968132019,
-0.3810409903526306,
0.19328100979328156,
-0.22438451647758484,
1.0082244873046875,
-0.8202077150344849,
0.2263088971376419,
-0.1669832170009613,
0.14053183794021606,
0.042308785021305084,
-0.1459192931652069,
-0.132632315158844,
-0.6440047025680542,
0.06469497084617615,
-0.8995957374572754,
0.10274903476238251,
-0.044610701501369476,
0.8789557218551636,
0.21909034252166748,
-0.5102370381355286,
-0.0459778755903244,
-0.6883591413497925,
1.0972505807876587,
-0.17556053400039673,
0.7615716457366943,
0.45078057050704956,
0.4528845548629761,
-0.5849325656890869,
-1.178217887878418,
-0.444186270236969,
-0.13578970730304718,
0.14722752571105957,
0.3055606484413147,
-0.34530261158943176,
-0.022343739867210388,
0.10801080614328384,
0.5610312819480896,
-0.5003757476806641,
-0.3119601309299469,
-0.957992672920227,
-0.18164905905723572,
0.6820485591888428,
0.3193078637123108,
0.8340443968772888,
0.18731552362442017,
-0.7347202301025391,
0.12866359949111938,
-1.3239705562591553,
0.07650737464427948,
0.6465021371841431,
0.2394677698612213,
-0.5545985102653503,
0.8594784736633301,
-0.285879909992218,
0.6262495517730713,
0.27284637093544006,
-0.11645288020372391,
0.27842551469802856,
-0.23030714690685272,
-0.27350643277168274,
0.03308771923184395,
0.3459731340408325,
0.8204494714736938,
0.1624859869480133,
-0.019984528422355652,
-0.22124026715755463,
0.002071946859359741,
0.26844531297683716,
-0.7935100793838501,
-0.4712666869163513,
0.1926693618297577,
-0.5589529871940613,
-0.09108539670705795,
0.43270164728164673,
-1.097684383392334,
-0.4812983572483063,
-0.18798448145389557,
0.05468184873461723,
-0.5451682209968567,
-0.36979442834854126,
0.07273299992084503,
-0.7925408482551575,
-0.12434210628271103,
0.5709508657455444,
-0.6230251789093018,
0.43974602222442627,
0.5336250066757202,
0.786163330078125,
0.23303917050361633,
-0.2361360788345337,
-0.6695016622543335,
0.48848265409469604,
-0.8661869764328003,
0.36860689520835876,
-0.30737850069999695,
-0.8298647403717041,
-0.09631016105413437,
0.5393157005310059,
0.2066487818956375,
-0.665324866771698,
0.7074040770530701,
-0.549697995185852,
-0.07806510478258133,
-0.4308289587497711,
-0.24321980774402618,
0.17460422217845917,
0.11115413904190063,
-0.6238906979560852,
0.9402236342430115,
0.5551110506057739,
-0.5841096639633179,
0.3170124292373657,
-0.4869508147239685,
-0.6865580081939697,
0.2674822211265564,
-0.008751265704631805,
-0.04715294390916824,
0.32795268297195435,
-0.15983977913856506,
-0.0020515620708465576,
0.10505715012550354,
0.008300501853227615,
-0.21891629695892334,
-0.47863084077835083,
0.06349922716617584,
0.15165063738822937,
1.2536829710006714,
0.40836217999458313,
-0.37718790769577026,
-0.13140133023262024,
-1.0526151657104492,
0.02543264627456665,
0.05050137639045715,
-0.42306792736053467,
-0.2504563331604004,
-0.14882251620292664,
-0.20381605625152588,
0.4307262599468231,
0.21184733510017395,
-0.8131154775619507,
0.22643575072288513,
-0.20640233159065247,
0.3644976019859314,
0.8222091197967529,
0.2703099548816681,
0.39760541915893555,
-0.6625280380249023,
0.6563136577606201,
0.2076185643672943,
0.49590179324150085,
0.3540418744087219,
-0.3845820426940918,
-0.9641578197479248,
-0.4421607553958893,
-0.10117406398057938,
0.2975529730319977,
-0.7744959592819214,
0.584731936454773,
0.012979187071323395,
-0.5836696028709412,
-0.4465281069278717,
-0.15488091111183167,
0.2755323648452759,
-0.06606610864400864,
0.033349379897117615,
-0.4049781262874603,
-0.7394410371780396,
-1.0127897262573242,
-0.13788102567195892,
-0.5021383762359619,
-0.2189284861087799,
0.3160586953163147,
0.26177433133125305,
-0.3429007828235626,
0.761074960231781,
-0.605928361415863,
-0.7040645480155945,
-0.13973550498485565,
-0.09959849715232849,
0.618772029876709,
0.9297672510147095,
0.7491389513015747,
-0.7224891781806946,
-0.8973815441131592,
-0.05623132735490799,
-0.5420036911964417,
-0.020043618977069855,
0.03815015032887459,
-0.18260695040225983,
-0.10514965653419495,
0.22352561354637146,
-0.6100800037384033,
0.8851075172424316,
0.43224942684173584,
-0.6815470457077026,
0.521058976650238,
-0.4444415867328644,
0.607380211353302,
-0.8642836213111877,
-0.2911486029624939,
-0.1682354062795639,
-0.1976117193698883,
-0.7090163826942444,
0.1941153109073639,
-0.30022329092025757,
-0.3302987813949585,
-0.7474029064178467,
0.5274896025657654,
-0.9497008919715881,
-0.1878155767917633,
-0.33672797679901123,
-0.03423091769218445,
0.258078396320343,
0.19490550458431244,
-0.2356022596359253,
0.8900527954101562,
0.9160481691360474,
-0.7121304869651794,
0.5487284064292908,
0.3930913209915161,
-0.1920015811920166,
0.713123619556427,
-0.3887737989425659,
0.05162034556269646,
-0.12344932556152344,
0.14374586939811707,
-1.1263889074325562,
-0.5611576437950134,
0.13677352666854858,
-0.7127033472061157,
0.1768694370985031,
-0.16556863486766815,
-0.09428544342517853,
-0.6608470678329468,
-0.33806464076042175,
0.25910061597824097,
0.48612281680107117,
-0.4796994924545288,
0.6188153028488159,
0.5728035569190979,
0.026518523693084717,
-0.5307413935661316,
-0.7206829786300659,
0.20418179035186768,
0.03964628279209137,
-0.5569695234298706,
0.3011685907840729,
0.006543658673763275,
-0.6622449159622192,
-0.37112465500831604,
-0.26354193687438965,
-0.6043857336044312,
-0.22679749131202698,
0.7826980352401733,
0.11994287371635437,
-0.09012241661548615,
-0.20310327410697937,
-0.3199535310268402,
-0.061674781143665314,
0.3048747181892395,
-0.07575264573097229,
0.7232831716537476,
-0.3362368941307068,
-0.17849993705749512,
-0.8877336382865906,
0.6527547836303711,
0.9970458745956421,
0.09446781873703003,
0.8066442012786865,
0.463242769241333,
-0.356474369764328,
-0.13046561181545258,
-0.3535457253456116,
-0.15120631456375122,
-0.6857743859291077,
-0.1806795597076416,
-0.5322473645210266,
-0.5411435961723328,
0.40530624985694885,
0.10101401060819626,
-0.0021039992570877075,
0.5167040824890137,
0.25336092710494995,
-0.28806865215301514,
0.7550323605537415,
1.0343408584594727,
0.13917939364910126,
0.36029139161109924,
-0.28547197580337524,
0.6341596841812134,
-0.8329949378967285,
-0.34052106738090515,
-0.4548071026802063,
-0.2563583254814148,
-0.3121439814567566,
-0.1075083538889885,
0.5791015028953552,
0.28182128071784973,
-0.4463469982147217,
0.12506772577762604,
-0.5994209051132202,
0.6587362289428711,
0.6273985505104065,
0.5719729661941528,
0.1997300386428833,
-0.46199458837509155,
0.19982901215553284,
0.048167064785957336,
-0.45745572447776794,
-0.4009109139442444,
0.7711146473884583,
0.239962637424469,
0.8364018201828003,
0.20927003026008606,
0.4957771599292755,
0.3337545692920685,
0.25280603766441345,
-0.6318972110748291,
0.20098070800304413,
-0.222828209400177,
-1.2459607124328613,
-0.2064269483089447,
-0.16551266610622406,
-1.0080578327178955,
-0.11792004108428955,
-0.18289004266262054,
-0.8406614661216736,
0.2665729522705078,
-0.19225698709487915,
-0.6640642285346985,
0.520614504814148,
-0.5103870630264282,
0.6934709548950195,
-0.23555895686149597,
-0.2817087173461914,
0.11930041760206223,
-0.6889921426773071,
0.5254610776901245,
0.3667148947715759,
0.29168447852134705,
-0.3796895146369934,
-0.3192877471446991,
0.5068991184234619,
-0.8812236785888672,
0.44081082940101624,
-0.10565068572759628,
0.1942814439535141,
0.5358878374099731,
0.4153590202331543,
0.38239675760269165,
0.2869906723499298,
-0.24593809247016907,
-0.23415403068065643,
0.2250344157218933,
-0.7581348419189453,
-0.2775455117225647,
0.9095457792282104,
-0.7519429922103882,
-0.8586916923522949,
-0.6954255104064941,
-0.30645009875297546,
0.2886526584625244,
0.02781439572572708,
0.7154765129089355,
0.6456883549690247,
-0.18821007013320923,
0.23777063190937042,
0.720821738243103,
-0.014694413170218468,
0.723556399345398,
0.29411089420318604,
-0.4056652784347534,
-0.6169788241386414,
0.718232274055481,
0.26270464062690735,
0.05162703990936279,
0.028327442705631256,
0.3058736324310303,
-0.17546680569648743,
-0.1507863998413086,
-0.6318317651748657,
-0.0639532208442688,
-0.7465732097625732,
-0.09279482066631317,
-0.7541394829750061,
-0.2507745921611786,
-0.7114589214324951,
-0.8068138360977173,
-0.708016037940979,
-0.45604345202445984,
-0.4301196336746216,
-0.2335222214460373,
0.5163102746009827,
1.1627084016799927,
-0.26131507754325867,
0.8011049628257751,
-0.8900954723358154,
0.41936272382736206,
0.4969545006752014,
0.7519727945327759,
-0.11060971021652222,
-0.6746928691864014,
-0.07836240530014038,
-0.5338752269744873,
-0.29485076665878296,
-1.01569664478302,
0.31774672865867615,
-0.036885976791381836,
0.4053717255592346,
0.4293888807296753,
0.2519032955169678,
0.4939274191856384,
-0.3007313311100006,
1.1130690574645996,
0.7274303436279297,
-0.8033815026283264,
0.5195285677909851,
-0.7634995579719543,
0.16122232377529144,
0.9363659024238586,
0.544775128364563,
-0.4417074918746948,
-0.15113961696624756,
-1.0259764194488525,
-0.8431367874145508,
0.5963038206100464,
0.15439960360527039,
0.01684429496526718,
0.018214639276266098,
0.03168323636054993,
0.29466331005096436,
0.3591306209564209,
-0.784728467464447,
-0.824022650718689,
-0.13851124048233032,
0.25803354382514954,
0.3145602345466614,
-0.16485458612442017,
-0.3003879189491272,
-0.6116158366203308,
0.8711379766464233,
0.1828640252351761,
0.3546237349510193,
0.12073374539613724,
0.04369324818253517,
-0.35506951808929443,
0.14787019789218903,
0.5523004531860352,
1.2529062032699585,
-0.4098334312438965,
0.3673911392688751,
0.1751268208026886,
-0.6540066599845886,
0.6494988203048706,
-0.30363473296165466,
-0.021784666925668716,
0.6203134655952454,
0.17760910093784332,
0.2852843105792999,
0.3155992031097412,
-0.36214208602905273,
0.6047801971435547,
-0.029422320425510406,
-0.17758524417877197,
-0.7005689144134521,
0.15866941213607788,
0.029349908232688904,
0.27508044242858887,
0.43920302391052246,
0.2444339096546173,
0.08246828615665436,
-1.0602877140045166,
0.571104884147644,
0.24493856728076935,
-0.8676615953445435,
-0.30110111832618713,
0.7047960758209229,
0.40753939747810364,
-0.47599589824676514,
0.38749027252197266,
0.012702763080596924,
-0.671023964881897,
0.5987740755081177,
0.551040768623352,
0.7569668292999268,
-0.4702425003051758,
0.30880242586135864,
0.624560534954071,
0.06711313128471375,
0.20550544559955597,
0.6923208236694336,
0.03149370476603508,
-0.44738680124282837,
0.23022504150867462,
-0.5986737012863159,
-0.1468992531299591,
0.13735288381576538,
-0.804742693901062,
0.3515333831310272,
-0.9312610030174255,
-0.24089904129505157,
0.08751519024372101,
0.11761170625686646,
-0.6130950450897217,
0.6674697995185852,
-0.00852571427822113,
0.9280482530593872,
-0.8549090623855591,
0.962628960609436,
0.8559577465057373,
-0.31830841302871704,
-0.7709447145462036,
-0.3355675935745239,
0.0201396644115448,
-0.6660529375076294,
0.7108281850814819,
-0.18973003327846527,
-0.41207355260849,
-0.0932389348745346,
-0.6229831576347351,
-1.0003738403320312,
0.03062039613723755,
0.017416149377822876,
-0.46250253915786743,
0.44547978043556213,
-0.5157256722450256,
0.32896745204925537,
-0.19169752299785614,
0.30509495735168457,
0.771946907043457,
0.7958443760871887,
0.22960850596427917,
-0.6354780197143555,
-0.44666823744773865,
-0.010275822132825851,
-0.1668277382850647,
0.45458102226257324,
-1.071097493171692,
0.9677367210388184,
-0.46525776386260986,
-0.34733179211616516,
0.2706637978553772,
0.7977622747421265,
0.253851056098938,
0.3524123430252075,
0.621953547000885,
0.9016802310943604,
0.36450058221817017,
-0.311782568693161,
0.7276740670204163,
0.2426334023475647,
0.41525477170944214,
0.736419677734375,
-0.22712194919586182,
0.5403842329978943,
0.890641450881958,
-0.7861624360084534,
0.5381764769554138,
0.7879026532173157,
0.16047346591949463,
0.7758153676986694,
0.5944147706031799,
-0.6119515895843506,
-0.11859343945980072,
-0.14641447365283966,
-0.617155909538269,
0.1979750394821167,
0.052926838397979736,
-0.11974767595529556,
-0.28460121154785156,
-0.13567432761192322,
0.12295038253068924,
0.2836456894874573,
-0.5959329605102539,
0.606866180896759,
0.34341561794281006,
-0.6328276991844177,
0.21025121212005615,
-0.2577953636646271,
0.6709502935409546,
-0.5978153944015503,
0.027336426079273224,
-0.2269938588142395,
0.41810357570648193,
-0.4618743360042572,
-1.007582426071167,
0.47138315439224243,
-0.29202455282211304,
-0.4055127203464508,
-0.26942431926727295,
0.8072373867034912,
-0.2213389277458191,
-0.5572863221168518,
0.37486088275909424,
0.13466545939445496,
0.4147361218929291,
0.4014603793621063,
-0.5487300157546997,
0.04779018461704254,
0.13760170340538025,
-0.200618177652359,
0.3601188361644745,
0.29737287759780884,
0.25488775968551636,
0.7100129127502441,
0.5052477121353149,
0.22198741137981415,
0.2569434344768524,
-0.18668603897094727,
0.8387457728385925,
-0.9102790355682373,
-0.8167629241943359,
-0.9497329592704773,
0.38498955965042114,
0.025727245956659317,
-0.8801437616348267,
0.7920297384262085,
0.7652614116668701,
0.5113964080810547,
-0.48778945207595825,
0.4755285680294037,
-0.32647913694381714,
0.5047132968902588,
-0.13870932161808014,
1.0010888576507568,
-0.7607624530792236,
-0.2958727478981018,
-0.030553333461284637,
-0.9216437935829163,
-0.2533755898475647,
0.5375738143920898,
0.15408295392990112,
-0.1460803896188736,
0.4385911226272583,
0.44216352701187134,
0.02217365987598896,
0.2522309720516205,
0.32861030101776123,
0.06042800843715668,
0.14508432149887085,
0.5510439872741699,
1.0931134223937988,
-0.4339442849159241,
0.18694785237312317,
-0.49234768748283386,
-0.45362502336502075,
-0.4153490960597992,
-0.9548052549362183,
-0.664030909538269,
-0.48185425996780396,
-0.2973938286304474,
-0.5915577411651611,
0.11726413667201996,
0.9300881028175354,
0.9018136262893677,
-0.625672459602356,
-0.41243696212768555,
0.2571353614330292,
0.3029336929321289,
-0.22954161465168,
-0.14626723527908325,
0.273649662733078,
-0.00640781968832016,
-0.7211176156997681,
0.39309418201446533,
0.8079767227172852,
0.3887123465538025,
0.08443966507911682,
-0.07217182219028473,
-0.4407084584236145,
0.02610129863023758,
0.5373559594154358,
0.5729556083679199,
-0.6281191110610962,
-0.4099642038345337,
-0.5328325629234314,
-0.21386754512786865,
0.15529415011405945,
0.4807758927345276,
-0.5166380405426025,
0.32661089301109314,
0.8128958940505981,
0.1701769381761551,
0.7187885642051697,
-0.00224892795085907,
0.667864203453064,
-0.897024929523468,
0.44462692737579346,
0.3953385651111603,
0.5681867599487305,
0.0899801105260849,
-0.7339168787002563,
0.9820244908332825,
0.4967435598373413,
-0.6334061026573181,
-1.003425121307373,
0.030799120664596558,
-1.1931143999099731,
-0.37881767749786377,
0.9890837669372559,
-0.09595773369073868,
-0.9597456455230713,
-0.36448919773101807,
-0.3677719235420227,
0.07989602535963058,
-0.33809781074523926,
0.35498178005218506,
0.8268190026283264,
-0.2538067698478699,
-0.2204189896583557,
-0.9505574703216553,
0.47529521584510803,
0.31025224924087524,
-0.5886626839637756,
-0.05114410072565079,
0.32939082384109497,
0.4523683488368988,
0.3009698987007141,
0.5239561200141907,
0.104281947016716,
0.8970535397529602,
0.25200384855270386,
0.30491432547569275,
-0.045266687870025635,
-0.5900777578353882,
-0.016066333279013634,
0.26214760541915894,
0.04487806558609009,
-0.6869444251060486
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
flax-community/conceptual-12m-multilingual-marian-es | flax-community | 2021-07-21T19:35:31Z | 292 | 0 | null | [
"region:us"
] | 2021-07-21T19:35:31Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227645754814148,
-0.22568479180335999,
0.8622264862060547,
0.43461528420448303,
-0.52829909324646,
0.7012971639633179,
0.7915720343589783,
0.07618614286184311,
0.774603009223938,
0.2563217282295227,
-0.7852813005447388,
-0.22573819756507874,
-0.9104477167129517,
0.5715674161911011,
-0.3992327153682709,
0.5791246294975281,
-0.14494498074054718,
-0.10751134157180786,
0.28233814239501953,
-0.2768957316875458,
-0.5409227609634399,
-0.3685525059700012,
-1.1902780532836914,
0.061491698026657104,
0.5316582918167114,
0.7435142993927002,
0.7584062218666077,
0.3652168810367584,
0.643257737159729,
0.39322906732559204,
-0.231389120221138,
0.48270541429519653,
-0.04171793907880783,
0.0026038766372948885,
-0.3524438440799713,
-0.5516899824142456,
-0.28596580028533936,
0.07584768533706665,
1.096130132675171,
0.9666873812675476,
-0.28466421365737915,
0.05330856889486313,
-0.30636167526245117,
0.3308892846107483,
-0.4973427355289459,
0.3054097294807434,
-0.022506212815642357,
0.16318757832050323,
-0.704151451587677,
-0.5535351634025574,
0.012795033864676952,
-0.7361212968826294,
0.17926514148712158,
-0.6900812387466431,
0.8269097208976746,
0.18583208322525024,
1.1533749103546143,
0.14819422364234924,
-0.4624859392642975,
-0.8161761164665222,
-0.6538985371589661,
0.5711163878440857,
-0.32703715562820435,
0.3968023657798767,
0.7028225660324097,
-0.048573337495326996,
-0.9820331335067749,
-0.6745738387107849,
-0.4646624028682709,
0.2923974096775055,
0.3540281355381012,
-0.3411684036254883,
-0.17522093653678894,
-0.30589917302131653,
0.15791957080364227,
0.1281142681837082,
-0.48419976234436035,
-0.5543919801712036,
-0.547515869140625,
-0.39602574706077576,
0.6206656694412231,
0.34829503297805786,
0.24291737377643585,
-0.18884189426898956,
-0.3228582441806793,
0.0880165845155716,
-0.41608554124832153,
0.3402574062347412,
0.6335517168045044,
0.711402416229248,
-0.5811445713043213,
0.5602157711982727,
-0.049275897443294525,
0.7439709901809692,
0.11445585638284683,
-0.2747812569141388,
0.4146060049533844,
-0.14724673330783844,
0.055171847343444824,
0.42263513803482056,
0.3152443468570709,
0.284130722284317,
-0.3273696303367615,
0.20322275161743164,
-0.32151490449905396,
-0.3049626648426056,
-0.2233218252658844,
-0.29490745067596436,
-0.35921788215637207,
0.5492295622825623,
-0.3314017951488495,
-0.4285551905632019,
1.1431758403778076,
-0.42007699608802795,
-0.7302228808403015,
0.33156365156173706,
0.40652117133140564,
-0.0994473397731781,
-0.37146514654159546,
-0.052260853350162506,
-0.8458786010742188,
-0.007907438091933727,
0.749117910861969,
-0.7198969125747681,
0.33717361092567444,
0.47280627489089966,
0.741721510887146,
0.1965060532093048,
-0.14034466445446014,
-0.4294945299625397,
0.2971963882446289,
-0.8659994006156921,
0.6320174932479858,
-0.2013527899980545,
-1.0051976442337036,
0.11150483042001724,
0.8971704244613647,
-0.3789643347263336,
-1.2094870805740356,
1.0605157613754272,
-0.6887932419776917,
0.16017864644527435,
-0.6767609119415283,
-0.14661164581775665,
-0.0711846798658371,
-0.005095955915749073,
-0.6088155508041382,
0.7567099332809448,
0.5872676968574524,
-0.4995277523994446,
0.2142946422100067,
-0.2602984309196472,
-0.3915135860443115,
0.38824939727783203,
-0.0793546810746193,
-0.21858903765678406,
0.7138336896896362,
-0.6647078394889832,
-0.2693285048007965,
0.2942773103713989,
0.23689353466033936,
-0.357060968875885,
-0.793192446231842,
0.08478078991174698,
-0.05786222219467163,
1.5507503747940063,
-0.03868861123919487,
-0.35861143469810486,
-0.6793837547302246,
-1.1506236791610718,
-0.07070811837911606,
0.6886887550354004,
-0.9194992184638977,
-0.27839499711990356,
-0.046410251408815384,
-0.26169371604919434,
0.0899493545293808,
0.7390591502189636,
-1.119404911994934,
0.28327250480651855,
-0.0509270615875721,
-0.22794727981090546,
0.8271061182022095,
0.1538720428943634,
0.24758882820606232,
0.14913466572761536,
0.4295872747898102,
0.5277255773544312,
0.11115183681249619,
0.6835883259773254,
-0.3472035229206085,
-0.9694353938102722,
0.6154633164405823,
0.25266438722610474,
0.8121451139450073,
-0.49945372343063354,
0.2685092091560364,
0.2702546715736389,
-0.3409683108329773,
-0.5682377219200134,
-0.31028279662132263,
0.09025713056325912,
0.14930610358715057,
0.11142496764659882,
-0.5721707344055176,
-0.6576128005981445,
-0.9689136743545532,
-0.13590654730796814,
-0.43143755197525024,
-0.35715675354003906,
0.2100687474012375,
0.5792906880378723,
-1.197553277015686,
0.4128877520561218,
-0.7705622911453247,
-0.7038743495941162,
-0.010655623860657215,
-0.1933809518814087,
0.7540653944015503,
0.43240171670913696,
0.5033961534500122,
-0.6397145390510559,
-0.5661987066268921,
-0.22470159828662872,
-1.0333740711212158,
-0.13280484080314636,
0.24819664657115936,
0.3065738081932068,
-0.1342327892780304,
-0.2744964063167572,
-0.48740261793136597,
0.8100383877754211,
0.14789216220378876,
-0.5391896963119507,
0.5220770239830017,
-0.3020317256450653,
0.17224839329719543,
-0.6369158029556274,
-0.0691685602068901,
-0.6616761684417725,
-0.0009067117935046554,
-0.36083078384399414,
-0.5737435817718506,
0.14772331714630127,
0.07017547637224197,
-0.16065414249897003,
0.2880837917327881,
-0.909276008605957,
-0.001085443771444261,
-0.744221568107605,
0.37907224893569946,
0.06394767016172409,
-0.3145084083080292,
-0.017516745254397392,
1.000038743019104,
0.7784457206726074,
-0.3848040699958801,
0.7217439413070679,
0.4440040588378906,
0.19036099314689636,
0.7630518674850464,
-0.18725158274173737,
0.16478213667869568,
-0.5245421528816223,
-0.12161099910736084,
-0.8887605667114258,
-1.0982943773269653,
0.7320572137832642,
-0.61142498254776,
0.36542850732803345,
-0.42778611183166504,
0.25891590118408203,
-0.6919258832931519,
-0.038853395730257034,
0.4808599054813385,
-0.05936374515295029,
-0.6863952875137329,
0.5232571363449097,
0.453174889087677,
-0.2019244134426117,
-0.6609036326408386,
-0.5301569700241089,
0.39365917444229126,
0.6154112815856934,
-0.16390395164489746,
0.06878498196601868,
0.14941087365150452,
-0.5441920757293701,
-0.040802545845508575,
-0.3869187533855438,
-0.45766744017601013,
0.054224055260419846,
0.13053379952907562,
-0.005750161595642567,
-0.404820054769516,
-0.08680257946252823,
-0.35842007398605347,
-0.4656125009059906,
0.21876463294029236,
0.30119529366493225,
-0.04096343368291855,
-0.42599743604660034,
-0.36198148131370544,
-0.8881809115409851,
0.6719611883163452,
0.5370280146598816,
0.05281474441289902,
0.7555550932884216,
0.16819243133068085,
-0.801498293876648,
-0.13532207906246185,
-0.17607054114341736,
0.2696835994720459,
-0.5588056445121765,
0.13849826157093048,
-0.01348480861634016,
-0.06374907493591309,
0.2629791498184204,
0.25386205315589905,
-0.4300558567047119,
0.927625298500061,
-0.26152747869491577,
-0.3592526614665985,
0.7960182428359985,
0.5974737405776978,
0.4958309233188629,
0.16503198444843292,
-0.044541098177433014,
0.9007097482681274,
-1.196651816368103,
-0.6563172340393066,
-0.740954577922821,
-0.15945661067962646,
-0.43510857224464417,
-0.0321057066321373,
0.6254417300224304,
0.29009905457496643,
-0.13333925604820251,
0.47563934326171875,
-0.5243490934371948,
0.3556032180786133,
1.01198410987854,
0.357486754655838,
0.34357017278671265,
-0.7570232152938843,
-0.25157779455184937,
-0.14024297893047333,
-0.9998160600662231,
-0.2631372809410095,
0.8871029019355774,
0.2275265008211136,
0.8444608449935913,
0.5992542505264282,
0.6784538626670837,
0.136723130941391,
0.2523833215236664,
-0.305902898311615,
0.3920287489891052,
0.43760839104652405,
-1.040114164352417,
-0.427584171295166,
0.02141888067126274,
-0.9703332781791687,
-0.14227578043937683,
-0.03495054692029953,
-0.42617106437683105,
0.7681738138198853,
0.00016635804786346853,
-0.40767112374305725,
0.7732735872268677,
-0.455583393573761,
0.7562879323959351,
-0.4473649859428406,
-0.02663865126669407,
0.4699098467826843,
-0.707064151763916,
0.4677433967590332,
0.12878736853599548,
0.6205845475196838,
-0.015571946278214455,
-0.04078621417284012,
0.7104930877685547,
-0.912916362285614,
0.25438612699508667,
-0.6348398923873901,
0.22421303391456604,
0.24246959388256073,
0.5160625576972961,
0.5969963073730469,
0.4371241629123688,
0.10119915008544922,
-0.23920850455760956,
0.04115789383649826,
-0.8241121172904968,
-0.21050667762756348,
0.6975144147872925,
-0.7186897397041321,
-0.6864195466041565,
-1.2355334758758545,
0.14438661932945251,
0.27347052097320557,
0.3893046975135803,
0.7959297895431519,
0.5714079141616821,
0.12895449995994568,
0.6805253624916077,
0.9888579249382019,
-0.06885592639446259,
0.916691780090332,
0.3224475085735321,
0.09175165742635727,
-0.21944895386695862,
0.703682541847229,
0.2662784457206726,
-0.24707898497581482,
-0.11939744651317596,
0.20913469791412354,
-0.11069414764642715,
-0.5917618870735168,
-0.4999074935913086,
0.3701755404472351,
-0.6731783151626587,
-0.1830393373966217,
-0.6243732571601868,
-0.6043766736984253,
-0.5117589235305786,
0.0692739263176918,
-0.7147683501243591,
0.23979082703590393,
-0.7753568887710571,
-0.10574901103973389,
0.043233584612607956,
0.9792002439498901,
-0.5893121361732483,
0.5805228352546692,
-1.12185800075531,
0.19345775246620178,
-0.07949890196323395,
0.792106032371521,
0.2139579802751541,
-0.7344390153884888,
-0.39754197001457214,
-0.11592598259449005,
-0.37299054861068726,
-1.3576757907867432,
0.21404962241649628,
-0.24541425704956055,
0.2309398651123047,
0.6145407557487488,
0.13977038860321045,
0.5258244276046753,
-0.3432632088661194,
0.7029102444648743,
-0.05701681971549988,
-0.7069293856620789,
0.7934491038322449,
-0.5026893615722656,
0.4963533282279968,
0.9766002893447876,
0.5333840250968933,
-0.7984007596969604,
0.0357406847178936,
-1.041122555732727,
-0.6008694171905518,
0.38426393270492554,
0.1192895919084549,
-0.036011260002851486,
-0.665955662727356,
-0.05401992052793503,
-0.16143806278705597,
0.6043741703033447,
-1.0390695333480835,
-0.785835862159729,
0.25766894221305847,
0.527729868888855,
0.08168502151966095,
-0.5653401613235474,
0.2088075578212738,
-0.5444163084030151,
1.0657776594161987,
0.4510935842990875,
0.32744958996772766,
0.8406059145927429,
0.4649236798286438,
-0.38231605291366577,
0.09252502024173737,
0.7662692070007324,
0.6666229367256165,
-0.5239795446395874,
-0.2908026874065399,
-0.0882752314209938,
-0.9143400192260742,
0.05927504226565361,
0.11168874800205231,
-0.013456094078719616,
0.9082115292549133,
0.579308032989502,
0.253970205783844,
0.4514276385307312,
-0.7264610528945923,
0.8859445452690125,
-0.1495419293642044,
-0.1247284859418869,
-1.0677239894866943,
0.19486205279827118,
-0.23984935879707336,
0.5006400346755981,
1.0061330795288086,
0.525004506111145,
-0.047630541026592255,
-0.814338207244873,
-0.014736393466591835,
0.6939173936843872,
-0.7091119885444641,
-0.17449776828289032,
0.9448539614677429,
0.38471025228500366,
-1.295304536819458,
1.106776475906372,
-0.5381773710250854,
-0.5603318214416504,
0.9121303558349609,
0.5229570269584656,
1.1221849918365479,
-0.44204193353652954,
0.0008675068384036422,
0.2662239074707031,
0.4137844443321228,
0.5423170328140259,
1.086963176727295,
0.43141356110572815,
-0.7931071519851685,
0.8826581835746765,
-0.24776068329811096,
-0.40361127257347107,
-0.053475700318813324,
-0.4285985827445984,
0.16892209649085999,
-0.44061893224716187,
-0.10712965577840805,
-0.3444185256958008,
0.2854307293891907,
-0.70720374584198,
0.42807650566101074,
-0.08385643362998962,
0.8653066754341125,
-0.8553729057312012,
0.47207602858543396,
0.6354700326919556,
-0.33373481035232544,
-0.8508192300796509,
-0.2619847357273102,
-0.1144845262169838,
-0.6389466524124146,
0.30214792490005493,
-0.45541056990623474,
0.04439886659383774,
0.09623479843139648,
-0.6491509079933167,
-1.1778273582458496,
0.9093630909919739,
-0.6396117210388184,
-0.2784458100795746,
0.20463955402374268,
-0.1151471734046936,
0.28811654448509216,
-0.2524648904800415,
0.010661326348781586,
0.4187661111354828,
0.7489396333694458,
0.28446558117866516,
-0.7727053761482239,
-0.36948859691619873,
0.0015033691888675094,
-0.44474759697914124,
0.7582973837852478,
-0.6002099514007568,
1.1840776205062866,
-0.556353747844696,
-0.05965423583984375,
0.4438447952270508,
0.24690861999988556,
0.21076245605945587,
0.6629217267036438,
0.144208163022995,
0.7282260060310364,
1.0701210498809814,
-0.4083523154258728,
0.881180465221405,
0.26432785391807556,
0.47430840134620667,
0.7238510251045227,
-0.6487718820571899,
0.7513748407363892,
0.3181042969226837,
-0.5682927966117859,
0.9228019714355469,
1.290606141090393,
-0.15699151158332825,
0.8079370260238647,
0.05136425420641899,
-1.0815999507904053,
0.32583364844322205,
-0.20724764466285706,
-0.7530062794685364,
0.31502565741539,
0.19055864214897156,
-0.6920987367630005,
-0.5770313739776611,
-0.2404651641845703,
-0.35662832856178284,
-0.11552872508764267,
-0.763173520565033,
0.6720565557479858,
-0.01696927472949028,
-0.5103673934936523,
0.18857470154762268,
0.2877500653266907,
0.17368444800376892,
-0.5235736966133118,
-0.029393965378403664,
-0.22823575139045715,
0.2660652697086334,
-0.5670853853225708,
-0.5234523415565491,
0.5724437236785889,
-0.32430148124694824,
-0.5343252420425415,
0.1814749836921692,
0.7635869979858398,
-0.1692378669977188,
-0.4515411853790283,
0.3247268795967102,
0.6959530115127563,
0.16658465564250946,
0.42502784729003906,
-0.23511283099651337,
0.2448059767484665,
-0.08044828474521637,
-0.06651593744754791,
0.27714747190475464,
0.3449171483516693,
0.22435645759105682,
0.44501352310180664,
0.432856947183609,
-0.018087303265929222,
-0.10736560821533203,
-0.38282057642936707,
0.41249361634254456,
-0.9542783498764038,
-0.5713291168212891,
-0.630710780620575,
0.2740667760372162,
-0.023154327645897865,
-1.0836422443389893,
0.41451749205589294,
1.4406688213348389,
1.0359984636306763,
-0.4756380617618561,
1.0672271251678467,
-0.21818462014198303,
0.9594789743423462,
0.4148315489292145,
0.5420438051223755,
-0.6030403971672058,
0.038353078067302704,
-0.43644046783447266,
-1.0769634246826172,
-0.3571633994579315,
0.4539390504360199,
-0.02289981208741665,
-0.3429867625236511,
0.8725717663764954,
0.5887162089347839,
-0.3347362279891968,
-0.11728024482727051,
0.04848664999008179,
-0.02994159795343876,
-0.12433876097202301,
0.5145372152328491,
0.7648398280143738,
-0.9344298243522644,
-0.10680411010980606,
-0.21577700972557068,
-0.6382728815078735,
-0.5047284364700317,
-0.9632003903388977,
-0.12959381937980652,
-0.16037844121456146,
0.03534334897994995,
-0.5662809610366821,
0.002556905150413513,
1.2083250284194946,
0.5684951543807983,
-1.1113994121551514,
-0.5303782224655151,
0.33718496561050415,
0.39204245805740356,
-0.1874789297580719,
-0.24202406406402588,
0.2984570860862732,
0.1538221836090088,
-0.5908879041671753,
0.6875662803649902,
0.8089626431465149,
0.20888905227184296,
0.19554781913757324,
0.15893003344535828,
-0.8229469060897827,
-0.14913435280323029,
0.1744047999382019,
0.9450566172599792,
-0.939853310585022,
-0.7114846110343933,
-0.03168468549847603,
-0.2709487974643707,
-0.05765698105096817,
0.17102089524269104,
-0.4046342968940735,
0.5180684924125671,
0.34591469168663025,
0.49933499097824097,
0.056160878390073776,
-0.054746419191360474,
0.5409556031227112,
-0.9069050550460815,
0.09425969421863556,
0.41343602538108826,
0.4154110848903656,
-0.4000871777534485,
-0.5910195112228394,
0.6713417172431946,
1.0073974132537842,
-0.6594864130020142,
-0.8743263483047485,
-0.19846680760383606,
-1.0016000270843506,
0.04189697653055191,
0.6762756109237671,
0.5009528994560242,
-0.48065176606178284,
-0.4174492359161377,
-0.5617400407791138,
-0.1254679411649704,
-0.13699710369110107,
0.76216059923172,
1.1796802282333374,
-0.7432100772857666,
0.07975788414478302,
-1.0386393070220947,
0.6594986915588379,
-0.2419460266828537,
-0.3457580506801605,
-0.4864429533481598,
0.3832802176475525,
0.3523699641227722,
0.44048118591308594,
0.6148120164871216,
0.14084689319133759,
0.8338428735733032,
0.31260576844215393,
-0.17026858031749725,
0.2698982357978821,
-0.4559198319911957,
-0.02893332578241825,
-0.05796258896589279,
0.3101596236228943,
-1.026215672492981
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
gabtan99/pex-conversations | gabtan99 | 2022-10-20T19:34:29Z | 292 | 1 | null | [
"task_ids:dialogue-modeling",
"task_ids:language-modeling",
"multilinguality:multilingual",
"size_categories:unknown",
"source_datasets:original",
"language:tl",
"language:fil",
"license:unknown",
"multi-turn",
"region:us"
] | 2022-10-20T19:34:29Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- tl
- fil
license:
- unknown
multilinguality:
- multilingual
size_categories:
- unknown
source_datasets:
- original
task_categories:
- sequence-modeling
task_ids:
- dialogue-modeling
- language-modeling
pretty_name: PEx Conversations
tags:
- multi-turn
---
# PinoyExchange (PEx) Conversations Dataset
# Summary
PEx Conversations is a dataset composed of collected threads from PinoyExchange.com (Consisting of Tagalog, English, or Taglish responses).
The corpus consists of 45K total scraped threads from 8 subforums. The data only consists of the user message which means any images, videos, links, or any embdedded html are not collected in the scraping process. All characters have been transliterated to its closest ASCII representation, and unicode errors were fixed.
# Format
The data is categorized per category. The objects in the list is composed of:
* category - the category of the threads
* conversations - the list of threads
The threads inside conversations have recursive structure consisting of the following:
* text - This is the response/reply/prompt
* replies - This is a list of the replies to this prompt. The replies inside the list has a structure with the same text and replies component.
# Subforum percentages
The amount of data per subforum are as follows:
* Small Talk - 5K conversations with 1.16M utterances
* Food & Drinks - 8.2K conversations with 273K utterances
* Health & Wellness - 6.3K conversations with 93K utterances
* Body & Fitness - 3.9K conversations with 94K utterances
* Home & Garden - 3.6K conversations with 71K utterances
* Style & Fashion - 9.7K conversations with 197K utterances
* Travel & Leisure - 7.3K conversations with 431K utterances
* Visas & Immigration - 1.1K conversations with 99K utterances
# Model Research
[Tagalog DialoGPT](https://huggingface.co/gabtan99/dialogpt-tagalog-medium) | [
-0.2790972590446472,
-0.7802147269248962,
0.46944954991340637,
0.4670979678630829,
-0.35828688740730286,
0.24194611608982086,
-0.10911576449871063,
-0.3564753830432892,
0.5264910459518433,
0.7106120586395264,
-0.7770010828971863,
-0.6917155981063843,
-0.29295721650123596,
0.2082837074995041,
-0.24739964306354523,
1.3504499197006226,
0.39902934432029724,
-0.3969864845275879,
0.05480240285396576,
0.21653519570827484,
-0.29900896549224854,
-0.4493168592453003,
-0.5696684122085571,
-0.04773437976837158,
0.1600876897573471,
0.808887243270874,
0.393299400806427,
0.21824313700199127,
0.1799411177635193,
0.20410804450511932,
-0.11667350679636002,
0.03282468393445015,
-0.8700423836708069,
-0.20952458679676056,
-0.6073728799819946,
-0.6225834488868713,
-0.8507985472679138,
0.0658479705452919,
0.28148072957992554,
0.9747405052185059,
-0.19916297495365143,
0.3617173135280609,
0.31122028827667236,
0.2645169198513031,
-0.22848722338676453,
0.37234193086624146,
-0.9792898297309875,
-0.19512370228767395,
-0.14633788168430328,
0.08388350903987885,
-0.3893771171569824,
-0.22757743299007416,
0.37664535641670227,
-0.4816298186779022,
0.025990888476371765,
0.10133565962314606,
0.9912919402122498,
-0.1566007286310196,
-0.46585795283317566,
-0.46818122267723083,
-0.35871922969818115,
1.096494436264038,
-0.7581053376197815,
0.20070402324199677,
0.8714022040367126,
-0.13279005885124207,
-0.07256483286619186,
-0.5468392968177795,
-0.6329033374786377,
0.6123640537261963,
-0.23855994641780853,
0.30831295251846313,
-0.5223644971847534,
0.024610765278339386,
0.01115686446428299,
0.44669997692108154,
-0.6968593597412109,
-0.21477730572223663,
-0.7486253380775452,
0.15830382704734802,
0.9702845811843872,
0.43045467138290405,
0.07702438533306122,
-0.5015978813171387,
-0.497615784406662,
-0.009765147231519222,
-0.6337404251098633,
0.2751936912536621,
0.491056352853775,
0.21806296706199646,
-0.39464330673217773,
0.5177206993103027,
-0.2988045811653137,
0.41803890466690063,
0.31482282280921936,
-0.6388898491859436,
0.47160711884498596,
-1.0802356004714966,
-0.26365530490875244,
0.009588189423084259,
1.2096531391143799,
0.8283838629722595,
0.16332188248634338,
0.29099228978157043,
0.20940245687961578,
-0.2938232719898224,
-0.019917726516723633,
-0.6666153073310852,
-0.4301724433898926,
0.5574014186859131,
-0.8715099692344666,
-0.14760419726371765,
0.35848158597946167,
-1.272437572479248,
-0.061532046645879745,
-0.03129345923662186,
-0.2808988392353058,
-0.14074932038784027,
-0.5192419290542603,
0.2206004410982132,
0.03975864127278328,
0.05033028498291969,
0.1790243238210678,
-0.7902883887290955,
0.5712988972663879,
0.7370491027832031,
0.638191819190979,
-0.021469861268997192,
-0.20730635523796082,
0.08698403090238571,
-0.3244438171386719,
-0.33631500601768494,
1.151594638824463,
-0.7512204051017761,
-0.8008268475532532,
-0.2685726583003998,
0.5989137887954712,
-0.6835595369338989,
-0.6939104795455933,
0.8972556591033936,
0.16037516295909882,
0.18672552704811096,
-0.44173958897590637,
-0.40025606751441956,
-0.2784014046192169,
0.26215219497680664,
-0.2381710559129715,
1.2376964092254639,
-0.06141616031527519,
-0.7008093595504761,
0.34118443727493286,
-0.44009098410606384,
-0.3456932604312897,
-0.07293996214866638,
-0.13056132197380066,
-0.17805801331996918,
-0.13520482182502747,
0.18224231898784637,
0.5143797397613525,
-0.4318244457244873,
0.3975856602191925,
-0.20871269702911377,
-0.47091081738471985,
0.4581136107444763,
-0.16869057714939117,
0.7925868630409241,
0.41504770517349243,
-0.42777732014656067,
0.013232697732746601,
-0.7949134111404419,
-0.16948509216308594,
-0.10692604631185532,
-0.2482217699289322,
-0.43335652351379395,
0.14470233023166656,
-0.07854490727186203,
0.28338488936424255,
0.12602950632572174,
-1.0649889707565308,
0.26398709416389465,
-0.7992041707038879,
0.3936658501625061,
0.8191664218902588,
0.17885902523994446,
0.25449860095977783,
-0.502101719379425,
0.5525392293930054,
0.2896154522895813,
0.32478225231170654,
-0.5923640727996826,
-0.9086426496505737,
-0.5670137405395508,
-0.004210131708532572,
-0.20622321963310242,
0.7499538660049438,
-0.5416140556335449,
0.5722302794456482,
-0.4025477170944214,
-0.7022522687911987,
-0.40560516715049744,
0.0201603714376688,
0.356869101524353,
0.6176540851593018,
-0.004914522636681795,
-0.0546710304915905,
-0.6592448353767395,
-1.0651694536209106,
0.007850571535527706,
-0.6817505955696106,
-0.040095437318086624,
0.8116929531097412,
0.5835050344467163,
-0.07095316797494888,
0.9530766010284424,
-0.5389845371246338,
0.13802595436573029,
-0.2548084259033203,
0.06264632940292358,
0.9304507374763489,
0.2532523572444916,
0.6601675152778625,
-0.6618165969848633,
-1.131441593170166,
0.025865010917186737,
-0.1552978903055191,
-0.46863481402397156,
-0.2861783802509308,
-0.2712322175502777,
0.03338414430618286,
0.10809861123561859,
-0.5141903162002563,
0.6989526748657227,
0.5958799719810486,
-0.6574022769927979,
0.505323052406311,
0.372484415769577,
0.3579848110675812,
-1.3355718851089478,
0.06880070269107819,
-0.22145667672157288,
-0.1347295045852661,
-0.24595968425273895,
-0.6419422626495361,
-0.2909858524799347,
-0.3970301151275635,
-0.5205061435699463,
0.5163856744766235,
-0.24793218076229095,
0.23500661551952362,
-0.22266091406345367,
-0.10259805619716644,
-0.053577013313770294,
0.754721999168396,
0.1263837367296219,
1.1071721315383911,
0.7742747068405151,
-0.49580276012420654,
0.4530273973941803,
0.6663015484809875,
-0.15529988706111908,
0.7063665986061096,
-0.9168170690536499,
0.29542672634124756,
0.26240211725234985,
0.2602132260799408,
-1.2622255086898804,
-0.024101076647639275,
0.5750508904457092,
-0.388885498046875,
-0.3686109185218811,
-0.29017698764801025,
-0.3592027425765991,
-0.3488014340400696,
-0.6029262542724609,
0.2182902693748474,
0.39465588331222534,
-0.4198591709136963,
0.15655307471752167,
0.725974977016449,
-0.9290305972099304,
-0.4439670145511627,
-0.315598726272583,
-0.020620595663785934,
-0.16005606949329376,
-0.681495189666748,
0.3950134515762329,
-0.46912577748298645,
-0.3107928931713104,
0.012799731455743313,
-0.016962893307209015,
-0.10316342115402222,
-0.37899407744407654,
0.5710914134979248,
0.12548041343688965,
-0.06547272205352783,
0.09000890702009201,
0.12245571613311768,
0.052383724600076675,
0.03362787887454033,
-0.0889347717165947,
1.203049659729004,
-0.17759336531162262,
-0.3221955895423889,
-0.5778186321258545,
0.7001620531082153,
0.47935470938682556,
0.125956192612648,
0.8954227566719055,
0.2621823847293854,
-0.19511373341083527,
0.09924359619617462,
-0.45193570852279663,
-0.07255829870700836,
-0.40834125876426697,
0.2774077355861664,
-0.5454897284507751,
-0.7665925025939941,
0.9091132283210754,
0.020716417580842972,
0.11112003028392792,
0.6087148189544678,
0.5138732194900513,
-0.17082802951335907,
1.100212812423706,
0.4927147924900055,
-0.18237555027008057,
0.24644681811332703,
0.04944657161831856,
0.3586210310459137,
-0.43148931860923767,
-0.6338186860084534,
-0.6037309169769287,
-0.38461771607398987,
-0.7828937768936157,
-0.356031596660614,
0.1122618317604065,
-0.2236882597208023,
-0.1964067667722702,
0.5530245900154114,
-0.3305124342441559,
0.5148941278457642,
0.6492267847061157,
0.24402113258838654,
0.2858685553073883,
0.20426388084888458,
0.24272994697093964,
-0.40703946352005005,
-0.7714752554893494,
-0.5907508134841919,
1.4911863803863525,
0.4215655028820038,
1.2449058294296265,
-0.1976822316646576,
0.40351155400276184,
0.07860729098320007,
-0.12867917120456696,
-0.7442612648010254,
0.641991376876831,
-0.2711457312107086,
-0.552112340927124,
0.2809268832206726,
-0.5517997145652771,
-1.119149088859558,
-0.33973392844200134,
-0.003954531159251928,
-1.115083932876587,
0.7427803874015808,
-0.25567013025283813,
-0.41634106636047363,
0.47483792901039124,
-0.6164394617080688,
0.8534245491027832,
-0.13459599018096924,
-0.1282893270254135,
-0.03835458680987358,
-0.5809195041656494,
0.2324405014514923,
-0.12136722356081009,
0.10802911967039108,
-0.3689105808734894,
0.11548484116792679,
1.1410640478134155,
-0.5966247320175171,
1.2051204442977905,
0.11664911359548569,
-0.11509975045919418,
0.5681958794593811,
-0.24941286444664001,
0.2771221101284027,
0.2715437412261963,
0.023282894864678383,
0.3352065682411194,
0.3918759524822235,
-0.5168888568878174,
-0.052532847970724106,
0.6039649844169617,
-0.7698913216590881,
-0.19958744943141937,
-0.4451966881752014,
-0.38073402643203735,
-0.09584052115678787,
0.08650825917720795,
0.47541508078575134,
0.20322296023368835,
-0.105534128844738,
0.5161445736885071,
0.6895418763160706,
-0.5605127811431885,
0.20692268013954163,
0.5321500897407532,
-0.42434415221214294,
-0.44580674171447754,
0.8095022439956665,
0.07165911048650742,
0.07378057390451431,
0.266569584608078,
0.05104006454348564,
-0.4631425440311432,
-0.1513165682554245,
0.056307222694158554,
0.6131461262702942,
-0.2564631402492523,
-0.2920927107334137,
-0.9371511936187744,
-0.1526486873626709,
-0.7648363709449768,
0.2104840874671936,
-0.590715229511261,
-0.19637781381607056,
-0.12807069718837738,
-0.2763591706752777,
0.22647269070148468,
0.7425881624221802,
0.05862010642886162,
0.7494606375694275,
-0.7569612860679626,
-0.19166624546051025,
0.389997273683548,
0.2309536635875702,
-0.5622929930686951,
-0.46741539239883423,
-0.12025519460439682,
0.274757444858551,
-0.31918954849243164,
-1.079169750213623,
0.6630822420120239,
0.4846312701702118,
0.5482591986656189,
0.6835812330245972,
0.30809682607650757,
0.9060940742492676,
-0.1545640081167221,
1.085895299911499,
0.0891755074262619,
-0.8507105112075806,
0.9667022824287415,
-0.4924422800540924,
-0.17499372363090515,
0.6190288662910461,
0.6500235199928284,
-0.7504777908325195,
-0.17118224501609802,
-1.1128278970718384,
-0.8744078874588013,
0.8157018423080444,
0.25590234994888306,
0.43401065468788147,
-0.32133808732032776,
0.13322103023529053,
0.46072709560394287,
0.4663640260696411,
-0.5982593297958374,
-0.22350747883319855,
-0.08182264119386673,
-0.1980672925710678,
0.0343756377696991,
-0.7197831273078918,
-0.19133399426937103,
-0.38392990827560425,
0.7639985084533691,
-0.003573295660316944,
0.37686726450920105,
0.2164296656847,
0.37465789914131165,
-0.06920761615037918,
0.4590335488319397,
0.5686038136482239,
1.1877409219741821,
-0.48857536911964417,
0.09203895181417465,
-0.03741662949323654,
-0.7183740139007568,
-0.22073183953762054,
0.07503649592399597,
0.0539935864508152,
0.20789743959903717,
0.19091521203517914,
1.0102534294128418,
0.25317147374153137,
-1.2999510765075684,
0.5093205571174622,
-0.31371620297431946,
-0.16867218911647797,
-0.45399653911590576,
-0.08259120583534241,
-0.2024085968732834,
0.1900501400232315,
0.5302765369415283,
-0.10838958621025085,
-0.006355167832225561,
-0.7727283239364624,
0.3210194408893585,
-0.16070814430713654,
-0.38321641087532043,
-0.7557631134986877,
0.47233322262763977,
0.31189724802970886,
-0.05579653009772301,
0.8120480179786682,
0.0000317691192321945,
-0.5972362756729126,
0.35080093145370483,
0.6369476914405823,
0.5229825377464294,
-0.3026178777217865,
0.47373539209365845,
0.6521211266517639,
0.37150073051452637,
0.35394424200057983,
0.7585936188697815,
0.024112295359373093,
-0.7295343279838562,
-0.29611411690711975,
-0.800455629825592,
-0.4969840347766876,
0.33945614099502563,
-0.6579142212867737,
-0.014697002246975899,
-0.33507758378982544,
-0.20188215374946594,
-0.33531424403190613,
0.19751429557800293,
-0.3565652668476105,
-0.04259354621171951,
-0.3088632822036743,
0.9062938690185547,
-1.265132188796997,
0.6768364906311035,
0.9945034980773926,
-0.3164671063423157,
-0.9904894232749939,
-0.2106057107448578,
0.04523227736353874,
-0.7741475105285645,
0.488363116979599,
-0.116573765873909,
0.49771758913993835,
-0.28467857837677,
-0.7405230402946472,
-0.5472170114517212,
0.7632012963294983,
0.3037736117839813,
-0.7054075002670288,
0.27980881929397583,
0.4294418394565582,
0.352741003036499,
-0.41250237822532654,
0.41897910833358765,
0.7131629586219788,
0.22764557600021362,
-0.00008028510637814179,
-1.7580896615982056,
-0.3512845039367676,
-1.0375347137451172,
-0.5669542551040649,
-0.08170309662818909,
-0.9095597267150879,
1.3301249742507935,
0.460375040769577,
-0.25623998045921326,
0.10822730511426926,
0.12854325771331787,
0.4891081154346466,
0.6224802732467651,
0.7249362468719482,
0.6645024418830872,
0.6560134887695312,
-0.3423440158367157,
0.9246875643730164,
-0.2119360715150833,
0.620926558971405,
1.1034424304962158,
-0.16826455295085907,
0.8854994773864746,
0.3918226361274719,
-0.6835947036743164,
0.49096542596817017,
1.10623037815094,
0.3111675977706909,
0.2101629078388214,
-0.4848480522632599,
-0.23978513479232788,
-0.22907134890556335,
-0.601152777671814,
-0.4588327407836914,
0.6634730696678162,
0.5956814289093018,
-0.5697135329246521,
-0.034813035279512405,
0.10928446054458618,
0.48164302110671997,
-0.03580649197101593,
-0.3155956566333771,
0.9445793032646179,
-0.05109444633126259,
-0.6138609051704407,
0.3351546823978424,
-0.4101927876472473,
0.8072420954704285,
-0.6271390914916992,
-0.16765479743480682,
-0.6090915203094482,
0.1870146095752716,
-0.32751885056495667,
-1.2593938112258911,
0.47728633880615234,
0.21129706501960754,
-0.2705767750740051,
-0.44933873414993286,
0.9385690689086914,
-0.5666265487670898,
-0.5996140241622925,
0.05746416002511978,
0.5837298035621643,
0.6937320232391357,
-0.4103451371192932,
-0.8916484713554382,
0.28414109349250793,
0.26780712604522705,
0.013343661092221737,
0.09360366314649582,
0.2745848298072815,
0.24291524291038513,
0.4095030725002289,
0.6209398508071899,
0.18913675844669342,
0.19500291347503662,
-0.29920071363449097,
0.9301193952560425,
-0.6748237609863281,
-0.8565198183059692,
-0.6253562569618225,
0.42446187138557434,
-0.49340304732322693,
-0.43013861775398254,
0.9293113350868225,
0.9094914197921753,
1.0249499082565308,
0.03578877076506615,
0.6362049579620361,
-0.25412222743034363,
1.2380430698394775,
-0.18274123966693878,
0.6554113030433655,
-0.35029295086860657,
0.3683883249759674,
-0.5672935843467712,
-0.958566427230835,
0.46283024549484253,
0.8079489469528198,
-0.5236091613769531,
-0.29742154479026794,
0.5212787389755249,
0.8681845664978027,
-0.2883703410625458,
0.402752161026001,
0.057853810489177704,
0.43730223178863525,
0.17862027883529663,
0.7894079089164734,
0.8349940776824951,
-0.6708897352218628,
0.9043260216712952,
-0.8250280022621155,
-0.31517839431762695,
0.05567300692200661,
-0.47335126996040344,
-0.9694157242774963,
-0.8031286001205444,
-0.42108970880508423,
-0.23872099816799164,
-0.08812754601240158,
0.8479838371276855,
1.0052999258041382,
-1.053541898727417,
-0.7627934217453003,
0.1570907086133957,
0.10125984996557236,
0.009910169057548046,
-0.3889670670032501,
0.39126554131507874,
0.0910625234246254,
-1.1943190097808838,
0.6036958694458008,
0.33859574794769287,
-0.3232972025871277,
0.4058947265148163,
0.024630529806017876,
-0.45511874556541443,
-0.011593553237617016,
0.7930658459663391,
0.3380621075630188,
-0.47708430886268616,
-0.13993492722511292,
0.5234245657920837,
0.19100068509578705,
0.26705271005630493,
0.7010066509246826,
-0.6635389924049377,
0.49262532591819763,
0.7442444562911987,
0.29030799865722656,
0.4826785624027252,
0.32673993706703186,
0.4123930335044861,
-0.8519099950790405,
0.4345780909061432,
0.11065187305212021,
0.36479854583740234,
-0.15073634684085846,
-0.337646484375,
0.6469025015830994,
0.7519393563270569,
-0.6761554479598999,
-0.9689837098121643,
-0.059965580701828,
-1.3627077341079712,
-0.17563879489898682,
0.8839512467384338,
-0.3696163594722748,
-0.2679710388183594,
-0.396334707736969,
-0.6072902679443359,
-0.2585614323616028,
-0.8436889052391052,
0.5168120861053467,
0.692758321762085,
-0.581034779548645,
-0.6242144107818604,
-0.3057510554790497,
0.047710537910461426,
0.4011397063732147,
-1.0467814207077026,
-0.05237496271729469,
0.2385915070772171,
0.369113028049469,
0.22137662768363953,
1.0317572355270386,
-0.01136764232069254,
0.050059109926223755,
0.07730263471603394,
-0.3846307396888733,
0.5697309970855713,
-0.24238498508930206,
0.2938481271266937,
0.14228065311908722,
-0.5415098667144775,
-0.2749539613723755
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
ghomasHudson/character_id | ghomasHudson | 2022-01-13T23:29:38Z | 292 | 0 | null | [
"region:us"
] | 2022-01-13T23:29:38Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227645754814148,
-0.22568479180335999,
0.8622263669967651,
0.43461522459983826,
-0.52829909324646,
0.7012971639633179,
0.7915719747543335,
0.07618614286184311,
0.774603009223938,
0.2563217282295227,
-0.7852813005447388,
-0.22573819756507874,
-0.9104475975036621,
0.5715674161911011,
-0.3992327153682709,
0.5791246294975281,
-0.14494499564170837,
-0.10751135647296906,
0.28233814239501953,
-0.2768957316875458,
-0.5409227013587952,
-0.3685525059700012,
-1.1902779340744019,
0.061491698026657104,
0.5316582918167114,
0.743514358997345,
0.7584061622619629,
0.3652168810367584,
0.643257737159729,
0.39322906732559204,
-0.231389120221138,
0.48270541429519653,
-0.04171793907880783,
0.0026038705836981535,
-0.3524438440799713,
-0.5516899824142456,
-0.28596577048301697,
0.07584768533706665,
1.096130132675171,
0.9666873812675476,
-0.28466421365737915,
0.05330856889486313,
-0.30636167526245117,
0.3308892846107483,
-0.4973427355289459,
0.3054097294807434,
-0.022506216540932655,
0.16318757832050323,
-0.704151451587677,
-0.5535351634025574,
0.012795033864676952,
-0.7361212968826294,
0.17926514148712158,
-0.6900812387466431,
0.8269097208976746,
0.18583209812641144,
1.1533749103546143,
0.14819422364234924,
-0.4624859392642975,
-0.8161761164665222,
-0.6538985371589661,
0.5711163282394409,
-0.32703715562820435,
0.3968023657798767,
0.7028226256370544,
-0.048573337495326996,
-0.9820331335067749,
-0.6745738983154297,
-0.46466246247291565,
0.2923974096775055,
0.3540281355381012,
-0.3411684036254883,
-0.17522093653678894,
-0.30589917302131653,
0.15791958570480347,
0.1281142681837082,
-0.48419976234436035,
-0.5543919205665588,
-0.547515869140625,
-0.39602571725845337,
0.6206656694412231,
0.34829503297805786,
0.24291737377643585,
-0.18884189426898956,
-0.3228582441806793,
0.0880165845155716,
-0.41608554124832153,
0.3402574062347412,
0.6335517168045044,
0.711402416229248,
-0.5811446309089661,
0.5602157711982727,
-0.049275897443294525,
0.7439709901809692,
0.11445585638284683,
-0.2747812569141388,
0.4146060049533844,
-0.14724673330783844,
0.055171847343444824,
0.42263513803482056,
0.3152443468570709,
0.28413069248199463,
-0.3273696303367615,
0.20322275161743164,
-0.32151490449905396,
-0.3049626648426056,
-0.2233218252658844,
-0.29490745067596436,
-0.35921788215637207,
0.5492295026779175,
-0.3314018249511719,
-0.4285552501678467,
1.1431758403778076,
-0.42007699608802795,
-0.7302228808403015,
0.33156365156173706,
0.40652117133140564,
-0.0994473472237587,
-0.37146514654159546,
-0.052260853350162506,
-0.8458787202835083,
-0.00790744461119175,
0.7491178512573242,
-0.7198969125747681,
0.33717358112335205,
0.47280627489089966,
0.741721510887146,
0.1965060532093048,
-0.14034466445446014,
-0.4294945299625397,
0.2971963882446289,
-0.8659994006156921,
0.6320174336433411,
-0.20135276019573212,
-1.0051976442337036,
0.11150483042001724,
0.8971704244613647,
-0.3789643347263336,
-1.2094870805740356,
1.0605157613754272,
-0.6887932419776917,
0.16017864644527435,
-0.6767609119415283,
-0.14661164581775665,
-0.07118469476699829,
-0.005095955915749073,
-0.6088155508041382,
0.7567099332809448,
0.5872676968574524,
-0.49952778220176697,
0.21429462730884552,
-0.2602984309196472,
-0.3915135860443115,
0.38824939727783203,
-0.0793546810746193,
-0.21858906745910645,
0.7138336896896362,
-0.6647078394889832,
-0.2693284749984741,
0.2942773103713989,
0.23689350485801697,
-0.357060968875885,
-0.793192446231842,
0.08478079736232758,
-0.05786222219467163,
1.5507503747940063,
-0.03868860378861427,
-0.35861143469810486,
-0.6793836951255798,
-1.1506236791610718,
-0.07070811837911606,
0.6886887550354004,
-0.9194992184638977,
-0.27839499711990356,
-0.046410247683525085,
-0.26169371604919434,
0.0899493545293808,
0.7390591502189636,
-1.119404911994934,
0.28327250480651855,
-0.050927065312862396,
-0.22794730961322784,
0.8271061182022095,
0.1538720428943634,
0.24758882820606232,
0.14913466572761536,
0.4295872151851654,
0.5277255773544312,
0.11115183681249619,
0.6835882663726807,
-0.3472035229206085,
-0.9694353938102722,
0.6154633164405823,
0.25266438722610474,
0.8121451139450073,
-0.49945372343063354,
0.2685092091560364,
0.2702546715736389,
-0.3409683108329773,
-0.5682377815246582,
-0.310282826423645,
0.09025713056325912,
0.14930608868598938,
0.11142496764659882,
-0.5721707344055176,
-0.6576128005981445,
-0.9689135551452637,
-0.13590654730796814,
-0.43143755197525024,
-0.35715678334236145,
0.2100687474012375,
0.5792907476425171,
-1.1975533962249756,
0.4128877520561218,
-0.7705622911453247,
-0.703874409198761,
-0.010655621066689491,
-0.1933809369802475,
0.7540653944015503,
0.43240174651145935,
0.5033961534500122,
-0.6397145390510559,
-0.5661987066268921,
-0.22470159828662872,
-1.0333740711212158,
-0.13280484080314636,
0.24819664657115936,
0.3065737783908844,
-0.1342328041791916,
-0.2744964361190796,
-0.48740261793136597,
0.8100383877754211,
0.14789214730262756,
-0.5391897559165955,
0.5220769643783569,
-0.3020317554473877,
0.17224839329719543,
-0.6369158029556274,
-0.0691685602068901,
-0.6616761684417725,
-0.0009067110950127244,
-0.36083078384399414,
-0.5737436413764954,
0.14772333204746246,
0.07017548382282257,
-0.16065415740013123,
0.2880837619304657,
-0.909276008605957,
-0.0010854422580450773,
-0.744221568107605,
0.37907224893569946,
0.0639476627111435,
-0.3145084083080292,
-0.017516743391752243,
1.000038743019104,
0.7784457206726074,
-0.3848040699958801,
0.7217439413070679,
0.4440040588378906,
0.19036099314689636,
0.7630518674850464,
-0.18725158274173737,
0.16478213667869568,
-0.5245421528816223,
-0.12161099910736084,
-0.8887605667114258,
-1.0982943773269653,
0.7320572137832642,
-0.6114250421524048,
0.36542850732803345,
-0.42778605222702026,
0.2589159309864044,
-0.6919258832931519,
-0.038853395730257034,
0.4808599054813385,
-0.05936374515295029,
-0.6863952875137329,
0.5232571363449097,
0.4531749188899994,
-0.2019244134426117,
-0.6609036922454834,
-0.5301570296287537,
0.39365914463996887,
0.6154113411903381,
-0.16390396654605865,
0.06878498196601868,
0.14941087365150452,
-0.5441920757293701,
-0.040802545845508575,
-0.3869187533855438,
-0.4576674997806549,
0.05422405153512955,
0.13053379952907562,
-0.005750161595642567,
-0.40482011437416077,
-0.08680257946252823,
-0.35842010378837585,
-0.4656125009059906,
0.21876463294029236,
0.30119529366493225,
-0.04096344858407974,
-0.42599743604660034,
-0.36198148131370544,
-0.8881808519363403,
0.6719611883163452,
0.5370280146598816,
0.05281474441289902,
0.7555550336837769,
0.16819244623184204,
-0.801498293876648,
-0.13532206416130066,
-0.17607054114341736,
0.2696835994720459,
-0.5588056445121765,
0.13849826157093048,
-0.013484805822372437,
-0.06374907493591309,
0.2629791498184204,
0.25386205315589905,
-0.4300558567047119,
0.927625298500061,
-0.26152747869491577,
-0.3592526614665985,
0.7960182428359985,
0.5974737405776978,
0.4958309531211853,
0.16503198444843292,
-0.044541094452142715,
0.9007097482681274,
-1.196651816368103,
-0.6563171744346619,
-0.7409546375274658,
-0.15945661067962646,
-0.43510857224464417,
-0.0321057066321373,
0.6254417300224304,
0.29009905457496643,
-0.13333925604820251,
0.47563934326171875,
-0.5243490934371948,
0.3556032180786133,
1.0119839906692505,
0.3574867248535156,
0.34357017278671265,
-0.7570232152938843,
-0.25157779455184937,
-0.14024296402931213,
-0.9998159408569336,
-0.2631372809410095,
0.8871029615402222,
0.2275265008211136,
0.8444608449935913,
0.5992542505264282,
0.6784538626670837,
0.136723130941391,
0.2523833215236664,
-0.305902898311615,
0.39202871918678284,
0.43760839104652405,
-1.040114164352417,
-0.42758411169052124,
0.02141888067126274,
-0.9703332185745239,
-0.14227578043937683,
-0.03495054319500923,
-0.42617106437683105,
0.7681738138198853,
0.00016635804786346853,
-0.4076710641384125,
0.7732735872268677,
-0.4555833339691162,
0.7562878727912903,
-0.4473649859428406,
-0.026638653129339218,
0.4699098467826843,
-0.707064151763916,
0.4677433967590332,
0.12878736853599548,
0.6205845475196838,
-0.015571946278214455,
-0.04078621417284012,
0.7104931473731995,
-0.9129164814949036,
0.25438612699508667,
-0.6348398923873901,
0.22421303391456604,
0.24246959388256073,
0.5160625576972961,
0.5969962477684021,
0.4371241629123688,
0.10119915008544922,
-0.23920848965644836,
0.04115789383649826,
-0.8241121172904968,
-0.21050670742988586,
0.6975144147872925,
-0.7186897397041321,
-0.6864195466041565,
-1.2355334758758545,
0.14438661932945251,
0.2734704911708832,
0.3893047273159027,
0.7959297895431519,
0.5714079141616821,
0.12895449995994568,
0.6805254220962524,
0.9888579249382019,
-0.06885591894388199,
0.916691780090332,
0.3224475085735321,
0.09175165742635727,
-0.2194489687681198,
0.703682541847229,
0.2662784457206726,
-0.2470790147781372,
-0.11939744651317596,
0.20913469791412354,
-0.11069414764642715,
-0.5917618870735168,
-0.4999074339866638,
0.3701755702495575,
-0.6731783747673035,
-0.1830393373966217,
-0.6243732571601868,
-0.6043766736984253,
-0.5117589235305786,
0.0692739263176918,
-0.7147684097290039,
0.23979082703590393,
-0.7753568887710571,
-0.10574901103973389,
0.04323358088731766,
0.9792002439498901,
-0.5893120765686035,
0.5805228352546692,
-1.12185800075531,
0.19345775246620178,
-0.07949890196323395,
0.792106032371521,
0.2139579802751541,
-0.7344390153884888,
-0.39754199981689453,
-0.11592598259449005,
-0.37299054861068726,
-1.3576757907867432,
0.21404962241649628,
-0.24541422724723816,
0.2309398353099823,
0.6145407557487488,
0.13977040350437164,
0.5258244276046753,
-0.3432632088661194,
0.7029102444648743,
-0.057016827166080475,
-0.7069293856620789,
0.7934491038322449,
-0.5026893615722656,
0.4963533282279968,
0.9766002893447876,
0.5333840250968933,
-0.7984007596969604,
0.0357406847178936,
-1.041122555732727,
-0.600869357585907,
0.38426393270492554,
0.1192895919084549,
-0.03601125627756119,
-0.665955662727356,
-0.054019927978515625,
-0.16143806278705597,
0.6043741703033447,
-1.0390695333480835,
-0.785835862159729,
0.25766894221305847,
0.5277299284934998,
0.08168502151966095,
-0.5653401613235474,
0.2088075876235962,
-0.5444163084030151,
1.0657776594161987,
0.45109352469444275,
0.32744958996772766,
0.8406059145927429,
0.4649237096309662,
-0.38231605291366577,
0.09252502024173737,
0.7662692070007324,
0.6666228771209717,
-0.5239795446395874,
-0.2908027172088623,
-0.0882752314209938,
-0.9143400192260742,
0.05927503854036331,
0.1116887554526329,
-0.013456095941364765,
0.9082115292549133,
0.579308032989502,
0.253970205783844,
0.4514276385307312,
-0.7264610528945923,
0.8859445452690125,
-0.1495419293642044,
-0.1247284859418869,
-1.0677239894866943,
0.19486205279827118,
-0.23984935879707336,
0.5006400346755981,
1.0061331987380981,
0.525004506111145,
-0.047630541026592255,
-0.814338207244873,
-0.014736384153366089,
0.6939173936843872,
-0.7091119289398193,
-0.17449775338172913,
0.9448539614677429,
0.38471025228500366,
-1.295304536819458,
1.106776475906372,
-0.5381773710250854,
-0.5603317618370056,
0.9121302366256714,
0.5229570269584656,
1.1221849918365479,
-0.44204193353652954,
0.0008675057324580848,
0.2662239074707031,
0.4137844443321228,
0.5423170328140259,
1.0869632959365845,
0.43141356110572815,
-0.7931072115898132,
0.8826581835746765,
-0.24776068329811096,
-0.40361127257347107,
-0.053475700318813324,
-0.42859864234924316,
0.16892209649085999,
-0.4406189024448395,
-0.10712965577840805,
-0.3444185256958008,
0.2854307293891907,
-0.70720374584198,
0.42807644605636597,
-0.08385642617940903,
0.8653066754341125,
-0.8553729057312012,
0.47207602858543396,
0.6354700326919556,
-0.33373481035232544,
-0.8508192300796509,
-0.26198476552963257,
-0.1144845262169838,
-0.6389466524124146,
0.30214792490005493,
-0.45541054010391235,
0.044398874044418335,
0.09623479843139648,
-0.6491509675979614,
-1.1778273582458496,
0.9093631505966187,
-0.6396117210388184,
-0.2784458100795746,
0.20463958382606506,
-0.1151471883058548,
0.28811654448509216,
-0.2524648904800415,
0.010661328211426735,
0.4187661111354828,
0.7489396333694458,
0.28446561098098755,
-0.7727053761482239,
-0.36948859691619873,
0.0015033691888675094,
-0.44474759697914124,
0.7582973837852478,
-0.6002098917961121,
1.1840776205062866,
-0.556353747844696,
-0.05965423583984375,
0.4438447952270508,
0.24690861999988556,
0.21076245605945587,
0.6629217267036438,
0.144208163022995,
0.7282259464263916,
1.0701210498809814,
-0.4083522856235504,
0.881180465221405,
0.26432785391807556,
0.4743083417415619,
0.7238510251045227,
-0.6487718820571899,
0.7513747811317444,
0.3181043267250061,
-0.5682927966117859,
0.9228019714355469,
1.290606141090393,
-0.15699152648448944,
0.80793696641922,
0.051364265382289886,
-1.0815999507904053,
0.32583361864089966,
-0.20724761486053467,
-0.7530062198638916,
0.31502565741539,
0.19055864214897156,
-0.6920987367630005,
-0.5770313739776611,
-0.2404651641845703,
-0.35662829875946045,
-0.11552873998880386,
-0.763173520565033,
0.6720565557479858,
-0.01696927472949028,
-0.5103673934936523,
0.18857470154762268,
0.28775009512901306,
0.17368444800376892,
-0.5235736966133118,
-0.029393965378403664,
-0.22823575139045715,
0.2660652697086334,
-0.5670853853225708,
-0.5234523415565491,
0.5724437236785889,
-0.32430148124694824,
-0.5343252420425415,
0.181474968791008,
0.7635870575904846,
-0.16923785209655762,
-0.4515411853790283,
0.3247268795967102,
0.6959530115127563,
0.16658467054367065,
0.42502790689468384,
-0.23511283099651337,
0.2448059767484665,
-0.08044827729463577,
-0.06651593744754791,
0.27714747190475464,
0.3449171781539917,
0.22435645759105682,
0.44501352310180664,
0.432856947183609,
-0.018087303265929222,
-0.10736559331417084,
-0.38282057642936707,
0.41249361634254456,
-0.9542784690856934,
-0.5713290572166443,
-0.630710780620575,
0.2740667760372162,
-0.023154327645897865,
-1.0836422443389893,
0.41451746225357056,
1.4406688213348389,
1.0359984636306763,
-0.4756380617618561,
1.0672271251678467,
-0.21818462014198303,
0.9594789743423462,
0.4148314893245697,
0.5420438051223755,
-0.6030403971672058,
0.038353081792593,
-0.43644052743911743,
-1.0769634246826172,
-0.3571633994579315,
0.4539390206336975,
-0.02289981208741665,
-0.3429867625236511,
0.8725717663764954,
0.5887162685394287,
-0.3347362279891968,
-0.11728022992610931,
0.04848663881421089,
-0.029941599816083908,
-0.12433874607086182,
0.5145372152328491,
0.764839768409729,
-0.9344298243522644,
-0.10680411010980606,
-0.21577700972557068,
-0.6382728815078735,
-0.5047284364700317,
-0.9632002711296082,
-0.12959381937980652,
-0.16037842631340027,
0.03534334897994995,
-0.5662809014320374,
0.002556905150413513,
1.2083250284194946,
0.5684951543807983,
-1.1113994121551514,
-0.5303782224655151,
0.33718499541282654,
0.39204245805740356,
-0.1874789297580719,
-0.24202406406402588,
0.2984571158885956,
0.1538221836090088,
-0.5908879041671753,
0.6875662803649902,
0.8089626431465149,
0.20888905227184296,
0.19554781913757324,
0.15893003344535828,
-0.8229468464851379,
-0.1491343379020691,
0.1744047999382019,
0.9450566172599792,
-0.9398531913757324,
-0.7114846110343933,
-0.03168468177318573,
-0.2709487974643707,
-0.05765697360038757,
0.17102089524269104,
-0.4046342968940735,
0.5180684924125671,
0.34591469168663025,
0.49933499097824097,
0.056160878390073776,
-0.05474642664194107,
0.5409556031227112,
-0.9069051742553711,
0.09425970166921616,
0.41343608498573303,
0.4154110848903656,
-0.4000871181488037,
-0.5910195112228394,
0.6713417172431946,
1.0073974132537842,
-0.6594864130020142,
-0.8743263483047485,
-0.19846680760383606,
-1.0016000270843506,
0.04189697653055191,
0.6762756109237671,
0.5009528994560242,
-0.48065176606178284,
-0.4174492359161377,
-0.5617400407791138,
-0.1254679411649704,
-0.13699708878993988,
0.76216059923172,
1.1796802282333374,
-0.7432100772857666,
0.07975788414478302,
-1.0386393070220947,
0.6594987511634827,
-0.2419460564851761,
-0.3457580506801605,
-0.4864429533481598,
0.3832802176475525,
0.3523699641227722,
0.44048118591308594,
0.6148120164871216,
0.14084689319133759,
0.8338428735733032,
0.31260576844215393,
-0.17026856541633606,
0.2698982357978821,
-0.4559198319911957,
-0.02893332578241825,
-0.05796259641647339,
0.3101596236228943,
-1.026215672492981
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
gj1997/trial | gj1997 | 2022-02-23T05:29:09Z | 292 | 0 | null | [
"region:us"
] | 2022-02-23T05:29:09Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | Entry not found | [
-0.3227645754814148,
-0.22568479180335999,
0.8622263669967651,
0.43461522459983826,
-0.52829909324646,
0.7012971639633179,
0.7915719747543335,
0.07618614286184311,
0.774603009223938,
0.2563217282295227,
-0.7852813005447388,
-0.22573819756507874,
-0.9104475975036621,
0.5715674161911011,
-0.3992327153682709,
0.5791246294975281,
-0.14494499564170837,
-0.10751135647296906,
0.28233814239501953,
-0.2768957316875458,
-0.5409227013587952,
-0.3685525059700012,
-1.1902779340744019,
0.061491698026657104,
0.5316582918167114,
0.743514358997345,
0.7584061622619629,
0.3652168810367584,
0.643257737159729,
0.39322906732559204,
-0.231389120221138,
0.48270541429519653,
-0.04171793907880783,
0.0026038705836981535,
-0.3524438440799713,
-0.5516899824142456,
-0.28596577048301697,
0.07584768533706665,
1.096130132675171,
0.9666873812675476,
-0.28466421365737915,
0.05330856889486313,
-0.30636167526245117,
0.3308892846107483,
-0.4973427355289459,
0.3054097294807434,
-0.022506216540932655,
0.16318757832050323,
-0.704151451587677,
-0.5535351634025574,
0.012795033864676952,
-0.7361212968826294,
0.17926514148712158,
-0.6900812387466431,
0.8269097208976746,
0.18583209812641144,
1.1533749103546143,
0.14819422364234924,
-0.4624859392642975,
-0.8161761164665222,
-0.6538985371589661,
0.5711163282394409,
-0.32703715562820435,
0.3968023657798767,
0.7028226256370544,
-0.048573337495326996,
-0.9820331335067749,
-0.6745738983154297,
-0.46466246247291565,
0.2923974096775055,
0.3540281355381012,
-0.3411684036254883,
-0.17522093653678894,
-0.30589917302131653,
0.15791958570480347,
0.1281142681837082,
-0.48419976234436035,
-0.5543919205665588,
-0.547515869140625,
-0.39602571725845337,
0.6206656694412231,
0.34829503297805786,
0.24291737377643585,
-0.18884189426898956,
-0.3228582441806793,
0.0880165845155716,
-0.41608554124832153,
0.3402574062347412,
0.6335517168045044,
0.711402416229248,
-0.5811446309089661,
0.5602157711982727,
-0.049275897443294525,
0.7439709901809692,
0.11445585638284683,
-0.2747812569141388,
0.4146060049533844,
-0.14724673330783844,
0.055171847343444824,
0.42263513803482056,
0.3152443468570709,
0.28413069248199463,
-0.3273696303367615,
0.20322275161743164,
-0.32151490449905396,
-0.3049626648426056,
-0.2233218252658844,
-0.29490745067596436,
-0.35921788215637207,
0.5492295026779175,
-0.3314018249511719,
-0.4285552501678467,
1.1431758403778076,
-0.42007699608802795,
-0.7302228808403015,
0.33156365156173706,
0.40652117133140564,
-0.0994473472237587,
-0.37146514654159546,
-0.052260853350162506,
-0.8458787202835083,
-0.00790744461119175,
0.7491178512573242,
-0.7198969125747681,
0.33717358112335205,
0.47280627489089966,
0.741721510887146,
0.1965060532093048,
-0.14034466445446014,
-0.4294945299625397,
0.2971963882446289,
-0.8659994006156921,
0.6320174336433411,
-0.20135276019573212,
-1.0051976442337036,
0.11150483042001724,
0.8971704244613647,
-0.3789643347263336,
-1.2094870805740356,
1.0605157613754272,
-0.6887932419776917,
0.16017864644527435,
-0.6767609119415283,
-0.14661164581775665,
-0.07118469476699829,
-0.005095955915749073,
-0.6088155508041382,
0.7567099332809448,
0.5872676968574524,
-0.49952778220176697,
0.21429462730884552,
-0.2602984309196472,
-0.3915135860443115,
0.38824939727783203,
-0.0793546810746193,
-0.21858906745910645,
0.7138336896896362,
-0.6647078394889832,
-0.2693284749984741,
0.2942773103713989,
0.23689350485801697,
-0.357060968875885,
-0.793192446231842,
0.08478079736232758,
-0.05786222219467163,
1.5507503747940063,
-0.03868860378861427,
-0.35861143469810486,
-0.6793836951255798,
-1.1506236791610718,
-0.07070811837911606,
0.6886887550354004,
-0.9194992184638977,
-0.27839499711990356,
-0.046410247683525085,
-0.26169371604919434,
0.0899493545293808,
0.7390591502189636,
-1.119404911994934,
0.28327250480651855,
-0.050927065312862396,
-0.22794730961322784,
0.8271061182022095,
0.1538720428943634,
0.24758882820606232,
0.14913466572761536,
0.4295872151851654,
0.5277255773544312,
0.11115183681249619,
0.6835882663726807,
-0.3472035229206085,
-0.9694353938102722,
0.6154633164405823,
0.25266438722610474,
0.8121451139450073,
-0.49945372343063354,
0.2685092091560364,
0.2702546715736389,
-0.3409683108329773,
-0.5682377815246582,
-0.310282826423645,
0.09025713056325912,
0.14930608868598938,
0.11142496764659882,
-0.5721707344055176,
-0.6576128005981445,
-0.9689135551452637,
-0.13590654730796814,
-0.43143755197525024,
-0.35715678334236145,
0.2100687474012375,
0.5792907476425171,
-1.1975533962249756,
0.4128877520561218,
-0.7705622911453247,
-0.703874409198761,
-0.010655621066689491,
-0.1933809369802475,
0.7540653944015503,
0.43240174651145935,
0.5033961534500122,
-0.6397145390510559,
-0.5661987066268921,
-0.22470159828662872,
-1.0333740711212158,
-0.13280484080314636,
0.24819664657115936,
0.3065737783908844,
-0.1342328041791916,
-0.2744964361190796,
-0.48740261793136597,
0.8100383877754211,
0.14789214730262756,
-0.5391897559165955,
0.5220769643783569,
-0.3020317554473877,
0.17224839329719543,
-0.6369158029556274,
-0.0691685602068901,
-0.6616761684417725,
-0.0009067110950127244,
-0.36083078384399414,
-0.5737436413764954,
0.14772333204746246,
0.07017548382282257,
-0.16065415740013123,
0.2880837619304657,
-0.909276008605957,
-0.0010854422580450773,
-0.744221568107605,
0.37907224893569946,
0.0639476627111435,
-0.3145084083080292,
-0.017516743391752243,
1.000038743019104,
0.7784457206726074,
-0.3848040699958801,
0.7217439413070679,
0.4440040588378906,
0.19036099314689636,
0.7630518674850464,
-0.18725158274173737,
0.16478213667869568,
-0.5245421528816223,
-0.12161099910736084,
-0.8887605667114258,
-1.0982943773269653,
0.7320572137832642,
-0.6114250421524048,
0.36542850732803345,
-0.42778605222702026,
0.2589159309864044,
-0.6919258832931519,
-0.038853395730257034,
0.4808599054813385,
-0.05936374515295029,
-0.6863952875137329,
0.5232571363449097,
0.4531749188899994,
-0.2019244134426117,
-0.6609036922454834,
-0.5301570296287537,
0.39365914463996887,
0.6154113411903381,
-0.16390396654605865,
0.06878498196601868,
0.14941087365150452,
-0.5441920757293701,
-0.040802545845508575,
-0.3869187533855438,
-0.4576674997806549,
0.05422405153512955,
0.13053379952907562,
-0.005750161595642567,
-0.40482011437416077,
-0.08680257946252823,
-0.35842010378837585,
-0.4656125009059906,
0.21876463294029236,
0.30119529366493225,
-0.04096344858407974,
-0.42599743604660034,
-0.36198148131370544,
-0.8881808519363403,
0.6719611883163452,
0.5370280146598816,
0.05281474441289902,
0.7555550336837769,
0.16819244623184204,
-0.801498293876648,
-0.13532206416130066,
-0.17607054114341736,
0.2696835994720459,
-0.5588056445121765,
0.13849826157093048,
-0.013484805822372437,
-0.06374907493591309,
0.2629791498184204,
0.25386205315589905,
-0.4300558567047119,
0.927625298500061,
-0.26152747869491577,
-0.3592526614665985,
0.7960182428359985,
0.5974737405776978,
0.4958309531211853,
0.16503198444843292,
-0.044541094452142715,
0.9007097482681274,
-1.196651816368103,
-0.6563171744346619,
-0.7409546375274658,
-0.15945661067962646,
-0.43510857224464417,
-0.0321057066321373,
0.6254417300224304,
0.29009905457496643,
-0.13333925604820251,
0.47563934326171875,
-0.5243490934371948,
0.3556032180786133,
1.0119839906692505,
0.3574867248535156,
0.34357017278671265,
-0.7570232152938843,
-0.25157779455184937,
-0.14024296402931213,
-0.9998159408569336,
-0.2631372809410095,
0.8871029615402222,
0.2275265008211136,
0.8444608449935913,
0.5992542505264282,
0.6784538626670837,
0.136723130941391,
0.2523833215236664,
-0.305902898311615,
0.39202871918678284,
0.43760839104652405,
-1.040114164352417,
-0.42758411169052124,
0.02141888067126274,
-0.9703332185745239,
-0.14227578043937683,
-0.03495054319500923,
-0.42617106437683105,
0.7681738138198853,
0.00016635804786346853,
-0.4076710641384125,
0.7732735872268677,
-0.4555833339691162,
0.7562878727912903,
-0.4473649859428406,
-0.026638653129339218,
0.4699098467826843,
-0.707064151763916,
0.4677433967590332,
0.12878736853599548,
0.6205845475196838,
-0.015571946278214455,
-0.04078621417284012,
0.7104931473731995,
-0.9129164814949036,
0.25438612699508667,
-0.6348398923873901,
0.22421303391456604,
0.24246959388256073,
0.5160625576972961,
0.5969962477684021,
0.4371241629123688,
0.10119915008544922,
-0.23920848965644836,
0.04115789383649826,
-0.8241121172904968,
-0.21050670742988586,
0.6975144147872925,
-0.7186897397041321,
-0.6864195466041565,
-1.2355334758758545,
0.14438661932945251,
0.2734704911708832,
0.3893047273159027,
0.7959297895431519,
0.5714079141616821,
0.12895449995994568,
0.6805254220962524,
0.9888579249382019,
-0.06885591894388199,
0.916691780090332,
0.3224475085735321,
0.09175165742635727,
-0.2194489687681198,
0.703682541847229,
0.2662784457206726,
-0.2470790147781372,
-0.11939744651317596,
0.20913469791412354,
-0.11069414764642715,
-0.5917618870735168,
-0.4999074339866638,
0.3701755702495575,
-0.6731783747673035,
-0.1830393373966217,
-0.6243732571601868,
-0.6043766736984253,
-0.5117589235305786,
0.0692739263176918,
-0.7147684097290039,
0.23979082703590393,
-0.7753568887710571,
-0.10574901103973389,
0.04323358088731766,
0.9792002439498901,
-0.5893120765686035,
0.5805228352546692,
-1.12185800075531,
0.19345775246620178,
-0.07949890196323395,
0.792106032371521,
0.2139579802751541,
-0.7344390153884888,
-0.39754199981689453,
-0.11592598259449005,
-0.37299054861068726,
-1.3576757907867432,
0.21404962241649628,
-0.24541422724723816,
0.2309398353099823,
0.6145407557487488,
0.13977040350437164,
0.5258244276046753,
-0.3432632088661194,
0.7029102444648743,
-0.057016827166080475,
-0.7069293856620789,
0.7934491038322449,
-0.5026893615722656,
0.4963533282279968,
0.9766002893447876,
0.5333840250968933,
-0.7984007596969604,
0.0357406847178936,
-1.041122555732727,
-0.600869357585907,
0.38426393270492554,
0.1192895919084549,
-0.03601125627756119,
-0.665955662727356,
-0.054019927978515625,
-0.16143806278705597,
0.6043741703033447,
-1.0390695333480835,
-0.785835862159729,
0.25766894221305847,
0.5277299284934998,
0.08168502151966095,
-0.5653401613235474,
0.2088075876235962,
-0.5444163084030151,
1.0657776594161987,
0.45109352469444275,
0.32744958996772766,
0.8406059145927429,
0.4649237096309662,
-0.38231605291366577,
0.09252502024173737,
0.7662692070007324,
0.6666228771209717,
-0.5239795446395874,
-0.2908027172088623,
-0.0882752314209938,
-0.9143400192260742,
0.05927503854036331,
0.1116887554526329,
-0.013456095941364765,
0.9082115292549133,
0.579308032989502,
0.253970205783844,
0.4514276385307312,
-0.7264610528945923,
0.8859445452690125,
-0.1495419293642044,
-0.1247284859418869,
-1.0677239894866943,
0.19486205279827118,
-0.23984935879707336,
0.5006400346755981,
1.0061331987380981,
0.525004506111145,
-0.047630541026592255,
-0.814338207244873,
-0.014736384153366089,
0.6939173936843872,
-0.7091119289398193,
-0.17449775338172913,
0.9448539614677429,
0.38471025228500366,
-1.295304536819458,
1.106776475906372,
-0.5381773710250854,
-0.5603317618370056,
0.9121302366256714,
0.5229570269584656,
1.1221849918365479,
-0.44204193353652954,
0.0008675057324580848,
0.2662239074707031,
0.4137844443321228,
0.5423170328140259,
1.0869632959365845,
0.43141356110572815,
-0.7931072115898132,
0.8826581835746765,
-0.24776068329811096,
-0.40361127257347107,
-0.053475700318813324,
-0.42859864234924316,
0.16892209649085999,
-0.4406189024448395,
-0.10712965577840805,
-0.3444185256958008,
0.2854307293891907,
-0.70720374584198,
0.42807644605636597,
-0.08385642617940903,
0.8653066754341125,
-0.8553729057312012,
0.47207602858543396,
0.6354700326919556,
-0.33373481035232544,
-0.8508192300796509,
-0.26198476552963257,
-0.1144845262169838,
-0.6389466524124146,
0.30214792490005493,
-0.45541054010391235,
0.044398874044418335,
0.09623479843139648,
-0.6491509675979614,
-1.1778273582458496,
0.9093631505966187,
-0.6396117210388184,
-0.2784458100795746,
0.20463958382606506,
-0.1151471883058548,
0.28811654448509216,
-0.2524648904800415,
0.010661328211426735,
0.4187661111354828,
0.7489396333694458,
0.28446561098098755,
-0.7727053761482239,
-0.36948859691619873,
0.0015033691888675094,
-0.44474759697914124,
0.7582973837852478,
-0.6002098917961121,
1.1840776205062866,
-0.556353747844696,
-0.05965423583984375,
0.4438447952270508,
0.24690861999988556,
0.21076245605945587,
0.6629217267036438,
0.144208163022995,
0.7282259464263916,
1.0701210498809814,
-0.4083522856235504,
0.881180465221405,
0.26432785391807556,
0.4743083417415619,
0.7238510251045227,
-0.6487718820571899,
0.7513747811317444,
0.3181043267250061,
-0.5682927966117859,
0.9228019714355469,
1.290606141090393,
-0.15699152648448944,
0.80793696641922,
0.051364265382289886,
-1.0815999507904053,
0.32583361864089966,
-0.20724761486053467,
-0.7530062198638916,
0.31502565741539,
0.19055864214897156,
-0.6920987367630005,
-0.5770313739776611,
-0.2404651641845703,
-0.35662829875946045,
-0.11552873998880386,
-0.763173520565033,
0.6720565557479858,
-0.01696927472949028,
-0.5103673934936523,
0.18857470154762268,
0.28775009512901306,
0.17368444800376892,
-0.5235736966133118,
-0.029393965378403664,
-0.22823575139045715,
0.2660652697086334,
-0.5670853853225708,
-0.5234523415565491,
0.5724437236785889,
-0.32430148124694824,
-0.5343252420425415,
0.181474968791008,
0.7635870575904846,
-0.16923785209655762,
-0.4515411853790283,
0.3247268795967102,
0.6959530115127563,
0.16658467054367065,
0.42502790689468384,
-0.23511283099651337,
0.2448059767484665,
-0.08044827729463577,
-0.06651593744754791,
0.27714747190475464,
0.3449171781539917,
0.22435645759105682,
0.44501352310180664,
0.432856947183609,
-0.018087303265929222,
-0.10736559331417084,
-0.38282057642936707,
0.41249361634254456,
-0.9542784690856934,
-0.5713290572166443,
-0.630710780620575,
0.2740667760372162,
-0.023154327645897865,
-1.0836422443389893,
0.41451746225357056,
1.4406688213348389,
1.0359984636306763,
-0.4756380617618561,
1.0672271251678467,
-0.21818462014198303,
0.9594789743423462,
0.4148314893245697,
0.5420438051223755,
-0.6030403971672058,
0.038353081792593,
-0.43644052743911743,
-1.0769634246826172,
-0.3571633994579315,
0.4539390206336975,
-0.02289981208741665,
-0.3429867625236511,
0.8725717663764954,
0.5887162685394287,
-0.3347362279891968,
-0.11728022992610931,
0.04848663881421089,
-0.029941599816083908,
-0.12433874607086182,
0.5145372152328491,
0.764839768409729,
-0.9344298243522644,
-0.10680411010980606,
-0.21577700972557068,
-0.6382728815078735,
-0.5047284364700317,
-0.9632002711296082,
-0.12959381937980652,
-0.16037842631340027,
0.03534334897994995,
-0.5662809014320374,
0.002556905150413513,
1.2083250284194946,
0.5684951543807983,
-1.1113994121551514,
-0.5303782224655151,
0.33718499541282654,
0.39204245805740356,
-0.1874789297580719,
-0.24202406406402588,
0.2984571158885956,
0.1538221836090088,
-0.5908879041671753,
0.6875662803649902,
0.8089626431465149,
0.20888905227184296,
0.19554781913757324,
0.15893003344535828,
-0.8229468464851379,
-0.1491343379020691,
0.1744047999382019,
0.9450566172599792,
-0.9398531913757324,
-0.7114846110343933,
-0.03168468177318573,
-0.2709487974643707,
-0.05765697360038757,
0.17102089524269104,
-0.4046342968940735,
0.5180684924125671,
0.34591469168663025,
0.49933499097824097,
0.056160878390073776,
-0.05474642664194107,
0.5409556031227112,
-0.9069051742553711,
0.09425970166921616,
0.41343608498573303,
0.4154110848903656,
-0.4000871181488037,
-0.5910195112228394,
0.6713417172431946,
1.0073974132537842,
-0.6594864130020142,
-0.8743263483047485,
-0.19846680760383606,
-1.0016000270843506,
0.04189697653055191,
0.6762756109237671,
0.5009528994560242,
-0.48065176606178284,
-0.4174492359161377,
-0.5617400407791138,
-0.1254679411649704,
-0.13699708878993988,
0.76216059923172,
1.1796802282333374,
-0.7432100772857666,
0.07975788414478302,
-1.0386393070220947,
0.6594987511634827,
-0.2419460564851761,
-0.3457580506801605,
-0.4864429533481598,
0.3832802176475525,
0.3523699641227722,
0.44048118591308594,
0.6148120164871216,
0.14084689319133759,
0.8338428735733032,
0.31260576844215393,
-0.17026856541633606,
0.2698982357978821,
-0.4559198319911957,
-0.02893332578241825,
-0.05796259641647339,
0.3101596236228943,
-1.026215672492981
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/asdfgfa | huggingartists | 2022-10-25T09:24:00Z | 292 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:24:00Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
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.6314160227775574,
-0.5099818706512451,
0.04641583561897278,
0.32352346181869507,
-0.2136314958333969,
-0.07518744468688965,
-0.34034135937690735,
-0.4255167543888092,
0.8299930691719055,
0.36035171151161194,
-0.9044775366783142,
-0.8006459474563599,
-0.5738678574562073,
0.15977352857589722,
-0.13814163208007812,
1.329545259475708,
-0.24886485934257507,
-0.3284815847873688,
-0.461751252412796,
-0.27098238468170166,
-0.230665385723114,
-0.2843446135520935,
-0.29168617725372314,
-0.4070897102355957,
0.3531363308429718,
0.5269571542739868,
0.7437773942947388,
0.9151608943939209,
0.4817044138908386,
0.3523365259170532,
-0.1252707839012146,
-0.061067938804626465,
-0.3630921244621277,
-0.15575523674488068,
0.17475232481956482,
-0.3059404194355011,
-0.6906800270080566,
0.26583048701286316,
0.5553091168403625,
0.484377920627594,
-0.09739316254854202,
0.5205709934234619,
0.04546195641160011,
0.8833782076835632,
-0.3020731210708618,
0.5005057454109192,
-0.20552632212638855,
-0.1476133167743683,
-0.31524065136909485,
0.050964340567588806,
0.234571173787117,
-0.6450626254081726,
-0.01977519877254963,
-0.8161410093307495,
0.11856701970100403,
-0.07211126387119293,
1.0084980726242065,
0.14590725302696228,
0.11476265639066696,
-0.2823137938976288,
-0.10495051741600037,
0.4783293306827545,
-0.599095344543457,
-0.03472324460744858,
0.634065568447113,
0.10308807343244553,
-0.00869050808250904,
-0.6043846011161804,
-0.6900333166122437,
0.12392217665910721,
-0.19433729350566864,
0.1835014522075653,
-0.07882679253816605,
-0.3023284077644348,
0.5987113118171692,
0.6622751951217651,
-0.5529671311378479,
-0.3036697804927826,
-0.5157228708267212,
-0.08710141479969025,
1.2184792757034302,
0.10242076218128204,
0.4347136914730072,
-0.512436032295227,
-0.18424847722053528,
-0.4578547477722168,
-0.2689969539642334,
0.3368622362613678,
0.5692960023880005,
0.48134666681289673,
-0.9773866534233093,
0.6332579851150513,
-0.1618313491344452,
0.5172808766365051,
0.12375903129577637,
-0.06236691772937775,
0.8219011425971985,
-0.38056808710098267,
-0.15741688013076782,
-0.14987464249134064,
1.0447479486465454,
0.6757001280784607,
0.22430400550365448,
0.10253212600946426,
-0.08684062212705612,
0.06303758919239044,
-0.18302041292190552,
-0.8320960402488708,
-0.47441062331199646,
0.6268875002861023,
-0.6006114482879639,
-0.5966596603393555,
0.10613175481557846,
-1.0850023031234741,
-0.25653013586997986,
-0.3486388623714447,
0.29450303316116333,
-0.3344389498233795,
-0.5544873476028442,
0.11360403150320053,
-0.2792689800262451,
0.1603318452835083,
0.04814610257744789,
-0.6450189352035522,
0.24104762077331543,
0.6031931638717651,
0.7366290092468262,
0.20289748907089233,
-0.33204299211502075,
-0.2900313138961792,
-0.19266754388809204,
-0.09919803589582443,
0.6939904093742371,
-0.3456767797470093,
-0.40646493434906006,
-0.11647243797779083,
0.35565876960754395,
-0.1149497851729393,
-0.32315024733543396,
0.9220656752586365,
0.07672467827796936,
0.2292303889989853,
-0.6747636795043945,
-0.4599728584289551,
-0.09456707537174225,
0.27552759647369385,
-0.7692013382911682,
1.1209344863891602,
0.30714136362075806,
-1.0110559463500977,
0.23638297617435455,
-0.8581917881965637,
-0.3620315194129944,
-0.023384939879179,
0.020005693659186363,
-0.8051292300224304,
-0.1940053105354309,
0.21061739325523376,
0.7064663171768188,
-0.3540274202823639,
0.06897605210542679,
-0.6149906516075134,
-0.1258157640695572,
0.3313150703907013,
0.26772692799568176,
1.206691861152649,
0.07297495007514954,
-0.1360636055469513,
0.13136981427669525,
-0.9976568818092346,
0.096354179084301,
0.5253288149833679,
-0.19987626373767853,
-0.10283520072698593,
-0.3026895523071289,
0.5057581067085266,
0.24301466345787048,
0.07404430955648422,
-0.5433369874954224,
0.45154646039009094,
-0.17252805829048157,
0.42395517230033875,
0.7474319338798523,
-0.02478109300136566,
0.30138882994651794,
-0.6485870480537415,
0.4526100754737854,
0.03517014533281326,
0.2889389991760254,
-0.009983940981328487,
-0.5687753558158875,
-0.4687633216381073,
-0.24858346581459045,
0.3985525071620941,
0.4424757659435272,
-0.6933538317680359,
0.9721357226371765,
-0.3465937376022339,
-0.7781299352645874,
-0.5890428423881531,
0.15961380302906036,
0.179158553481102,
0.5057332515716553,
0.3566277325153351,
-0.42124226689338684,
-0.5504040718078613,
-0.6099379658699036,
0.10996168851852417,
-0.26467517018318176,
0.15112577378749847,
0.4118562340736389,
0.8477668166160583,
-0.24361753463745117,
0.8368567824363708,
-0.7288089990615845,
-0.29331615567207336,
-0.18960170447826385,
-0.25645434856414795,
0.3524986505508423,
0.8243355751037598,
0.7515214085578918,
-0.8757980465888977,
-0.5023621916770935,
-0.28538936376571655,
-0.7222504019737244,
-0.12146984040737152,
-0.012240475974977016,
-0.25438234210014343,
0.0114187803119421,
0.08383720368146896,
-0.7788926959037781,
0.5490940809249878,
0.45493772625923157,
-0.7303319573402405,
0.5897223353385925,
0.08603139966726303,
0.022226382046937943,
-1.2579361200332642,
0.4457268714904785,
0.24433554708957672,
0.03872251138091087,
-0.5916755199432373,
-0.12752026319503784,
-0.09813188016414642,
-0.058445993810892105,
0.030598897486925125,
0.6216897964477539,
-0.33970221877098083,
0.22730612754821777,
0.08484703302383423,
0.039677560329437256,
0.1079830452799797,
0.45872628688812256,
-0.0388408824801445,
0.23552097380161285,
1.020857572555542,
-0.3577163815498352,
0.6293457746505737,
0.687285840511322,
-0.17031191289424896,
0.8560876250267029,
-0.7680321931838989,
0.06360030919313431,
-0.26511481404304504,
0.4004361927509308,
-0.8030253648757935,
-0.5682932138442993,
0.7941206693649292,
-0.6994321942329407,
0.48929232358932495,
-0.24130681157112122,
-0.6342054605484009,
-0.7940354347229004,
-0.6593021154403687,
0.16508983075618744,
0.48547640442848206,
-0.4130468964576721,
0.4575600028038025,
0.5765759944915771,
0.029682446271181107,
-0.3487296998500824,
-0.7586677670478821,
-0.20020300149917603,
-0.4091232717037201,
-0.8388847708702087,
0.33459916710853577,
-0.3976876735687256,
-0.05297140032052994,
0.1703151911497116,
0.13389703631401062,
0.09349606931209564,
0.042240582406520844,
0.3918096721172333,
0.24428735673427582,
0.036630380898714066,
-0.003707421477884054,
-0.08879779279232025,
-0.22237902879714966,
0.16492585837841034,
-0.14157722890377045,
0.20869901776313782,
-0.22465595602989197,
-0.14213018119335175,
-0.5723005533218384,
0.22957538068294525,
0.4104885756969452,
-0.245744526386261,
0.6149355173110962,
0.8510364294052124,
-0.3428591191768646,
-0.011080688796937466,
-0.49028924107551575,
-0.11317765712738037,
-0.4189753532409668,
0.0009268605499528348,
-0.23338337242603302,
-0.5527206063270569,
0.9697090983390808,
0.22141848504543304,
0.09415571391582489,
0.6673082113265991,
0.46244898438453674,
-0.035535264760255814,
0.6005575060844421,
0.42933791875839233,
-0.2673473060131073,
0.46730443835258484,
-0.6687784194946289,
-0.29595568776130676,
-0.8397855758666992,
-0.4079495072364807,
-0.5020995736122131,
-0.5316340327262878,
-0.8369129300117493,
-0.5065674185752869,
0.13496525585651398,
0.14398904144763947,
-0.19311343133449554,
0.37051329016685486,
-0.9382973909378052,
0.3021771013736725,
0.36111393570899963,
0.19552598893642426,
-0.1026807501912117,
0.1133863553404808,
0.07989432662725449,
0.15667705237865448,
-0.542888343334198,
-0.21568697690963745,
1.2142329216003418,
0.5652499794960022,
0.5474834442138672,
-0.1103539988398552,
0.827494204044342,
0.012616029940545559,
0.2719016969203949,
-0.5345842242240906,
0.46283629536628723,
-0.05525819957256317,
-0.5200374126434326,
-0.17516443133354187,
-0.5068846940994263,
-0.8397679328918457,
-0.1353088766336441,
-0.40820157527923584,
-0.6671274900436401,
0.5187117457389832,
0.11367302387952805,
-0.2552034258842468,
0.3714320659637451,
-0.5999910235404968,
0.8888657093048096,
-0.029174039140343666,
-0.4288129210472107,
0.32359108328819275,
-0.9918528199195862,
0.21546941995620728,
0.17389507591724396,
0.25194671750068665,
-0.38342130184173584,
0.10215932875871658,
1.041284441947937,
-0.7930705547332764,
0.879274845123291,
-0.4811018407344818,
0.15269555151462555,
0.5644344091415405,
-0.34575536847114563,
0.4233091473579407,
0.10902554541826248,
-0.2668062448501587,
0.3102841079235077,
0.08927944302558899,
-0.4456099271774292,
-0.47992080450057983,
0.6726087927818298,
-0.7227053046226501,
0.05467313155531883,
-0.35577189922332764,
-0.49351194500923157,
0.011194698512554169,
0.18418654799461365,
0.2143252193927765,
0.38473057746887207,
0.025467416271567345,
0.15314999222755432,
0.45312681794166565,
-0.1392149031162262,
0.25382256507873535,
0.0427376851439476,
-0.1788620948791504,
-0.7828473448753357,
0.9540866613388062,
0.1935349404811859,
-0.02667378820478916,
-0.07959567755460739,
0.442684531211853,
-0.38568609952926636,
-0.14266014099121094,
-0.6674392819404602,
0.5040314793586731,
-0.4533731937408447,
-0.38798290491104126,
-0.5439760684967041,
-0.14440760016441345,
-0.649362325668335,
-0.16574405133724213,
-0.20739346742630005,
-0.5281859040260315,
-0.34667739272117615,
-0.2293686717748642,
1.0634851455688477,
0.5076414942741394,
-0.7208876609802246,
0.14777493476867676,
-0.4913654029369354,
0.29486799240112305,
-0.04088422656059265,
0.673652708530426,
-0.05624997988343239,
-0.30031755566596985,
-0.19594863057136536,
0.06224498152732849,
-0.21455305814743042,
-0.6634597182273865,
0.23636280000209808,
0.0017740826588124037,
0.36710983514785767,
0.16916534304618835,
0.1019243597984314,
0.7184780836105347,
-0.0349581278860569,
0.660297155380249,
0.2505350112915039,
-0.7686850428581238,
0.6447523832321167,
-0.5088316202163696,
0.1366291344165802,
0.7803491950035095,
0.3889586627483368,
-0.5437379479408264,
-0.007470465265214443,
-0.9480078220367432,
-0.8684221506118774,
0.8236947655677795,
0.4145241379737854,
0.015487328171730042,
0.26705262064933777,
0.6351385712623596,
-0.14758244156837463,
0.3171021342277527,
-0.6676733493804932,
-0.8582186102867126,
-0.4293486773967743,
-0.381862998008728,
-0.08808539062738419,
-0.08670532703399658,
-0.31228598952293396,
-0.6918355226516724,
0.7869725823402405,
-0.24905060231685638,
0.30058926343917847,
0.383211612701416,
0.4290378987789154,
-0.3254702389240265,
-0.10828418284654617,
0.24079777300357819,
0.3266502916812897,
-0.2577623426914215,
-0.35337841510772705,
-0.18006297945976257,
-0.6102044582366943,
-0.13157349824905396,
0.606531023979187,
-0.3584699034690857,
-0.13508062064647675,
0.3328803777694702,
0.878635823726654,
-0.02143050543963909,
-0.2605249285697937,
0.5902119874954224,
-0.10564928501844406,
-0.38840222358703613,
-0.4160909950733185,
-0.02748703770339489,
0.1710023730993271,
0.20146746933460236,
0.03080771490931511,
0.09307348728179932,
-0.053208447992801666,
-0.4099090099334717,
0.4429484009742737,
0.2480338215827942,
-0.3512394428253174,
-0.5385968089103699,
0.5868626832962036,
0.07475149631500244,
-0.07597313821315765,
0.5053042769432068,
-0.1753258854150772,
-0.6134169697761536,
0.7787867784500122,
0.12013215571641922,
0.8397362232208252,
-0.15304851531982422,
0.345939964056015,
0.7406283020973206,
0.1855432093143463,
-0.0934995710849762,
0.5847825407981873,
-0.23115520179271698,
-0.6275008320808411,
-0.0251168105751276,
-0.6623977422714233,
-0.08844314515590668,
0.08030214160680771,
-0.9096652269363403,
0.424396812915802,
-0.5036866068840027,
-0.18818357586860657,
0.00528621906414628,
0.4836721420288086,
-0.7612912058830261,
0.24451538920402527,
-0.0068581597879529,
1.080541729927063,
-1.1388825178146362,
0.4434605538845062,
0.7709252834320068,
-0.7064245343208313,
-1.1778589487075806,
-0.07627250999212265,
0.2303311824798584,
-0.56877201795578,
0.17335163056850433,
0.21139606833457947,
0.5749831199645996,
-0.1388968676328659,
-0.8967161774635315,
-0.6778599619865417,
1.2211400270462036,
0.06504178792238235,
-0.13192681968212128,
0.2830658257007599,
0.12281689792871475,
0.6547159552574158,
-0.37658563256263733,
0.28818050026893616,
0.6688233613967896,
0.7253766655921936,
0.38893672823905945,
-0.7385513782501221,
0.3144076466560364,
-0.6825093626976013,
-0.2337973564863205,
0.030980214476585388,
-1.0206496715545654,
0.6354608535766602,
-0.2042805552482605,
-0.024135660380125046,
0.038712479174137115,
0.6852271556854248,
0.4933439791202545,
0.4652549624443054,
0.4841194748878479,
0.8137109875679016,
0.8766916990280151,
-0.31982138752937317,
1.19792640209198,
-0.19511200487613678,
0.6026747822761536,
0.8357547521591187,
0.021176829934120178,
0.5536777377128601,
0.21707604825496674,
-0.36083537340164185,
0.5196370482444763,
0.707587480545044,
-0.4480621814727783,
0.20234744250774384,
0.40290117263793945,
0.03368361294269562,
-0.04872520640492439,
-0.24836893379688263,
-0.6066033840179443,
0.3363571763038635,
0.2834897041320801,
-0.3306756913661957,
0.04026667773723602,
-0.04972991347312927,
0.37786972522735596,
-0.010569506324827671,
-0.25408244132995605,
0.6596620082855225,
0.07564885169267654,
-0.3358199894428253,
0.5098730325698853,
-0.2489653378725052,
0.6777916550636292,
-0.5602039098739624,
0.133231058716774,
-0.1074753850698471,
0.08904605358839035,
-0.667392909526825,
-1.0849170684814453,
0.4112797677516937,
-0.06634543091058731,
-0.3279435336589813,
-0.30000656843185425,
0.706730842590332,
-0.5238900780677795,
-0.8404543399810791,
0.25570449233055115,
0.1907932162284851,
0.3185059428215027,
0.12745817005634308,
-1.3252313137054443,
0.550991952419281,
0.15788203477859497,
-0.48220452666282654,
0.1597350537776947,
0.5365002751350403,
0.18647390604019165,
0.5230467915534973,
0.709046483039856,
0.24042467772960663,
-0.2783188819885254,
0.06710035353899002,
1.1458406448364258,
-0.5538219213485718,
-0.5075240731239319,
-0.6198647022247314,
0.9039967060089111,
-0.3416290581226349,
-0.366054505109787,
0.6626307964324951,
0.7739877700805664,
0.8703694343566895,
0.008036745712161064,
0.8179176449775696,
-0.6471221446990967,
0.6730583310127258,
-0.24704693257808685,
0.9922258257865906,
-0.7693431377410889,
-0.12691181898117065,
-0.7351511716842651,
-0.566276490688324,
-0.428244411945343,
0.6990941166877747,
-0.19577614963054657,
0.24714846909046173,
0.2575998604297638,
0.9112787246704102,
0.011012079194188118,
0.18042980134487152,
-0.2634581923484802,
0.32013818621635437,
0.29304012656211853,
0.4789230525493622,
0.35406553745269775,
-0.9010576605796814,
0.2917078733444214,
-0.7744070291519165,
-0.3144707977771759,
0.07100429385900497,
-0.8785567879676819,
-0.894288182258606,
-0.9905886650085449,
-0.7434507012367249,
-0.7519103288650513,
-0.3361285924911499,
1.1053290367126465,
0.7091125249862671,
-0.8091391921043396,
-0.2666994333267212,
0.1458277702331543,
0.2567066550254822,
-0.07339111715555191,
-0.32301801443099976,
0.6985180974006653,
0.40731003880500793,
-0.6079294681549072,
-0.15497039258480072,
-0.03961838781833649,
0.22641827166080475,
-0.02789517678320408,
-0.07590987533330917,
-0.1345559060573578,
-0.30199068784713745,
0.31965550780296326,
0.4858606159687042,
-0.33708253502845764,
-0.08643705397844315,
-0.3426764905452728,
0.12777452170848846,
0.1591825932264328,
0.5018094182014465,
-0.5006019473075867,
0.26675841212272644,
0.6467570662498474,
0.31510016322135925,
0.39459028840065,
0.23195180296897888,
0.08911170065402985,
-0.519923746585846,
0.06061026081442833,
-0.050396330654621124,
0.3261309266090393,
0.4872366189956665,
-0.5009115934371948,
0.8105528354644775,
0.5842796564102173,
-0.5562739968299866,
-0.8792939782142639,
-0.2118707299232483,
-1.2865396738052368,
0.15019069612026215,
1.0958794355392456,
-0.05983690172433853,
-0.5866076946258545,
0.10147182643413544,
-0.15485380589962006,
0.13182681798934937,
-0.5619547963142395,
0.46699485182762146,
0.553905189037323,
-0.11505473405122757,
0.1367814689874649,
-0.34975191950798035,
0.7046899795532227,
-0.05665484443306923,
-0.9848379492759705,
0.2357265055179596,
0.43762636184692383,
0.505558967590332,
0.3684871196746826,
0.8170548677444458,
-0.2623397707939148,
0.046156950294971466,
0.006938963662832975,
0.3077548146247864,
-0.24124084413051605,
0.014648071490228176,
-0.43123313784599304,
-0.0807240679860115,
-0.4440860450267792,
-0.14873655140399933
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/drake | huggingartists | 2022-10-25T09:28:02Z | 292 | 3 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:28:02Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/drake"
## 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:** 6.063474 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/631b206379b60df5e1da90e84d35fdbe.1000x1000x1.png')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/drake">
<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">Drake</div>
<a href="https://genius.com/artists/drake">
<div style="text-align: center; font-size: 14px;">@drake</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/drake).
### 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/drake")
```
## 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|
|------:|---------:|---:|
|1298| -| -|
'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/drake")
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.5960530638694763,
-0.46376579999923706,
0.07781486958265305,
0.3138117492198944,
-0.20811444520950317,
0.02259749546647072,
-0.29506707191467285,
-0.4511038362979889,
0.8781293034553528,
0.3230944871902466,
-0.953904390335083,
-0.8129791021347046,
-0.5756210088729858,
0.11802087724208832,
-0.1335657387971878,
1.2856560945510864,
-0.16725413501262665,
-0.4589724540710449,
-0.25849974155426025,
-0.24862633645534515,
-0.29036933183670044,
-0.3417312502861023,
-0.3677960932254791,
-0.3383956849575043,
0.41765835881233215,
0.4330069124698639,
0.7605948448181152,
0.909996747970581,
0.5162271857261658,
0.34438037872314453,
-0.06958475708961487,
0.0008181866141967475,
-0.4072067141532898,
-0.09623979777097702,
0.17549771070480347,
-0.2693755626678467,
-0.6591450572013855,
0.26623159646987915,
0.525779664516449,
0.3295559883117676,
-0.0459630973637104,
0.4453081786632538,
0.0506986603140831,
0.8089931011199951,
-0.27175554633140564,
0.4957965016365051,
-0.27170538902282715,
-0.16320940852165222,
-0.30279821157455444,
0.018963245674967766,
0.21269378066062927,
-0.5889427065849304,
-0.0008806168916635215,
-0.7757039070129395,
0.06994958966970444,
0.0014018715592101216,
1.0152767896652222,
0.10892949253320694,
0.13253262639045715,
-0.21599189937114716,
-0.18305625021457672,
0.5476464629173279,
-0.6162062287330627,
-0.0023327642120420933,
0.5356995463371277,
0.12359987944364548,
0.058604516088962555,
-0.7150481939315796,
-0.6245916485786438,
0.0688949003815651,
-0.1669314056634903,
0.2907697558403015,
-0.1990865170955658,
-0.26791200041770935,
0.5624761581420898,
0.523689329624176,
-0.5043232440948486,
-0.24441786110401154,
-0.5440418720245361,
-0.12656164169311523,
1.196589469909668,
0.1274995058774948,
0.4614367187023163,
-0.49712491035461426,
-0.20771484076976776,
-0.4157230854034424,
-0.26550111174583435,
0.3585442900657654,
0.540342390537262,
0.45485490560531616,
-1.0133044719696045,
0.5783197283744812,
-0.14423389732837677,
0.5568627119064331,
0.09491755068302155,
-0.06566747277975082,
0.8103770017623901,
-0.3574044108390808,
-0.1260925978422165,
-0.1522171050310135,
1.1225383281707764,
0.6628013849258423,
0.17717649042606354,
0.05801016464829445,
-0.07341525703668594,
0.056731630116701126,
-0.13246645033359528,
-0.8070657253265381,
-0.4412069022655487,
0.6610949039459229,
-0.5827767848968506,
-0.584309458732605,
0.15434378385543823,
-0.9201750755310059,
-0.21792592108249664,
-0.2811090648174286,
0.2619141936302185,
-0.3670223653316498,
-0.4853784739971161,
0.12670589983463287,
-0.308389276266098,
0.14193189144134521,
0.024597816169261932,
-0.5999221205711365,
0.1906706541776657,
0.6019161343574524,
0.7668941020965576,
0.17934852838516235,
-0.32554733753204346,
-0.2549726963043213,
-0.20043960213661194,
-0.09050887078046799,
0.596376359462738,
-0.2592638432979584,
-0.30219319462776184,
-0.15398946404457092,
0.3318607211112976,
-0.048368170857429504,
-0.27034538984298706,
0.9430178999900818,
0.06302934139966965,
0.09760431200265884,
-0.6152966022491455,
-0.38947075605392456,
0.017845069989562035,
0.2855764627456665,
-0.7824431657791138,
1.1111267805099487,
0.3481450378894806,
-0.9687758684158325,
0.1602795571088791,
-0.8227303624153137,
-0.325018972158432,
0.07989688962697983,
0.018621744588017464,
-0.7553224563598633,
-0.20269453525543213,
0.2518632709980011,
0.7146463990211487,
-0.30331793427467346,
0.03837859258055687,
-0.5706800818443298,
-0.11303627490997314,
0.40235722064971924,
0.21782797574996948,
1.201276183128357,
0.09681753814220428,
-0.15456831455230713,
0.1001996099948883,
-0.9066290259361267,
0.16908305883407593,
0.4083596467971802,
-0.1086459532380104,
-0.09724854677915573,
-0.22199808061122894,
0.4070957601070404,
0.306988000869751,
0.05086497589945793,
-0.6042308211326599,
0.4360964000225067,
-0.1801934838294983,
0.5620901584625244,
0.6993854641914368,
0.013699151575565338,
0.2931492328643799,
-0.6785072684288025,
0.37941083312034607,
0.011479392647743225,
0.4171822965145111,
0.037126533687114716,
-0.61046302318573,
-0.4260454773902893,
-0.2823762595653534,
0.3191705346107483,
0.4429642856121063,
-0.7130101323127747,
0.9448317289352417,
-0.32242250442504883,
-0.787307620048523,
-0.661296546459198,
0.12572789192199707,
0.1722523421049118,
0.5135050415992737,
0.3765003979206085,
-0.40424928069114685,
-0.6372728943824768,
-0.6592278480529785,
0.10277045518159866,
-0.2696380019187927,
0.1438215672969818,
0.42881813645362854,
0.8343084454536438,
-0.2713065445423126,
0.858256459236145,
-0.6873177886009216,
-0.25698134303092957,
-0.28563931584358215,
-0.26853954792022705,
0.393515020608902,
0.7746724486351013,
0.7630105018615723,
-0.8695030212402344,
-0.4394831955432892,
-0.33503714203834534,
-0.7124603390693665,
-0.12425028532743454,
-0.07066220790147781,
-0.2913617491722107,
-0.05678360164165497,
0.15589196979999542,
-0.6860040426254272,
0.5936555862426758,
0.5089545249938965,
-0.6103888750076294,
0.5179498195648193,
0.08907627314329147,
0.0010286858305335045,
-1.2172319889068604,
0.313703328371048,
0.2568364143371582,
0.060052257031202316,
-0.6181128025054932,
-0.17885629832744598,
-0.0502808652818203,
-0.04087216034531593,
-0.10530432313680649,
0.6323054432868958,
-0.2964550256729126,
0.28919199109077454,
0.12846159934997559,
0.08958842605352402,
0.10134200751781464,
0.4609442949295044,
-0.05312762036919594,
0.2632639706134796,
0.9716302752494812,
-0.39816468954086304,
0.7015719413757324,
0.6150726079940796,
-0.17502173781394958,
0.769995927810669,
-0.8615407347679138,
0.037293460220098495,
-0.26013419032096863,
0.41327306628227234,
-0.8547544479370117,
-0.5149112939834595,
0.8462944626808167,
-0.7353237271308899,
0.3496793508529663,
-0.27295997738838196,
-0.5237535834312439,
-0.843498945236206,
-0.7012661695480347,
0.16770359873771667,
0.5315196514129639,
-0.42206263542175293,
0.41763773560523987,
0.5453792214393616,
0.09438751637935638,
-0.412270724773407,
-0.8343256711959839,
-0.1365877240896225,
-0.34109801054000854,
-0.8346031904220581,
0.47172555327415466,
-0.3578927516937256,
-0.09732634574174881,
0.16165919601917267,
0.10664104670286179,
0.12724915146827698,
-0.008068332448601723,
0.4446618854999542,
0.33436673879623413,
0.1114538162946701,
0.01118193194270134,
-0.10869960486888885,
-0.20697712898254395,
0.15391786396503448,
-0.2568485736846924,
0.25257956981658936,
-0.2534807622432709,
-0.10994255542755127,
-0.6452104449272156,
0.15293830633163452,
0.46140047907829285,
-0.2660771608352661,
0.6717230677604675,
0.791924774646759,
-0.26614993810653687,
-0.06669388711452484,
-0.45411786437034607,
-0.15237480401992798,
-0.41267916560173035,
0.026512201875448227,
-0.19313310086727142,
-0.574525773525238,
0.9521014094352722,
0.2671137750148773,
0.12933684885501862,
0.6939061284065247,
0.4416491687297821,
-0.09769483655691147,
0.6547516584396362,
0.34255680441856384,
-0.3129604160785675,
0.5082455277442932,
-0.7585497498512268,
-0.16624179482460022,
-0.9151276350021362,
-0.4387419521808624,
-0.5113059878349304,
-0.5969589948654175,
-0.8795046210289001,
-0.4496283233165741,
0.18537113070487976,
0.12839719653129578,
-0.23000316321849823,
0.44437846541404724,
-0.9554628729820251,
0.25153714418411255,
0.40292516350746155,
0.3197888731956482,
-0.149016872048378,
0.06796224415302277,
0.1201288253068924,
0.09313152730464935,
-0.5886008143424988,
-0.18400482833385468,
1.1923491954803467,
0.49166741967201233,
0.5715517997741699,
-0.08352282643318176,
0.8452497124671936,
0.04529117792844772,
0.2767445743083954,
-0.5486036539077759,
0.4499756991863251,
-0.025851603597402573,
-0.5072876811027527,
-0.17440439760684967,
-0.512299120426178,
-0.8583422303199768,
-0.17047575116157532,
-0.45305436849594116,
-0.7075167894363403,
0.4833841025829315,
0.08699218928813934,
-0.2776881158351898,
0.3921346068382263,
-0.574718177318573,
0.8438171148300171,
-0.14451614022254944,
-0.43035435676574707,
0.3856602907180786,
-1.0300198793411255,
0.1955745667219162,
0.23859892785549164,
0.2538510859012604,
-0.3627326786518097,
0.01121904980391264,
1.0413178205490112,
-0.8115929961204529,
0.9009509682655334,
-0.3517761826515198,
0.1774403154850006,
0.5858610272407532,
-0.38548949360847473,
0.46163079142570496,
0.16900332272052765,
-0.23702126741409302,
0.29868292808532715,
-0.012606197968125343,
-0.4191204905509949,
-0.5009057521820068,
0.7007484436035156,
-0.7782194018363953,
0.12016721814870834,
-0.3908151388168335,
-0.5171557068824768,
0.05541668459773064,
0.12174706906080246,
0.32324910163879395,
0.4256129562854767,
0.07564301043748856,
0.12278297543525696,
0.4613325595855713,
-0.17058075964450836,
0.3058861792087555,
0.024701960384845734,
-0.10315842181444168,
-0.7769079804420471,
0.9071944952011108,
0.16083161532878876,
0.024554893374443054,
-0.03619726374745369,
0.41474467515945435,
-0.404531329870224,
-0.1879928559064865,
-0.5497499704360962,
0.4789561629295349,
-0.3891373574733734,
-0.4046652317047119,
-0.5165201425552368,
-0.24716705083847046,
-0.6601815819740295,
-0.1511557400226593,
-0.22180195152759552,
-0.5050267577171326,
-0.30634090304374695,
-0.20955350995063782,
1.0617462396621704,
0.4659321904182434,
-0.6759936213493347,
0.16009025275707245,
-0.5054208040237427,
0.35321149230003357,
-0.05309072881937027,
0.6329424381256104,
-0.09861050546169281,
-0.3367643356323242,
-0.10540936142206192,
0.11134433001279831,
-0.19594763219356537,
-0.6736233234405518,
0.2961120307445526,
-0.02577018365263939,
0.379212886095047,
0.08940254896879196,
0.1914493292570114,
0.6815978288650513,
0.002885024528950453,
0.6510021686553955,
0.27937689423561096,
-0.7655783891677856,
0.6778547763824463,
-0.4813806414604187,
0.15488062798976898,
0.7381231784820557,
0.3867229223251343,
-0.6345190405845642,
-0.1458122581243515,
-0.9881912469863892,
-0.9028334021568298,
0.7930052876472473,
0.46042293310165405,
0.043237924575805664,
0.2164706289768219,
0.6007672548294067,
-0.23350313305854797,
0.27955758571624756,
-0.7069741487503052,
-0.9037322998046875,
-0.4049793481826782,
-0.3724316358566284,
-0.04876192659139633,
-0.048970092087984085,
-0.2587123215198517,
-0.7122853994369507,
0.7855430245399475,
-0.1129462718963623,
0.32039913535118103,
0.4014480710029602,
0.4215638339519501,
-0.1580182909965515,
-0.031851064413785934,
0.25648608803749084,
0.38904517889022827,
-0.27151256799697876,
-0.3364979922771454,
-0.23451320827007294,
-0.6511996388435364,
-0.1410331130027771,
0.5227414965629578,
-0.4330047070980072,
-0.0655735433101654,
0.3372597098350525,
0.898886501789093,
0.0018437050748616457,
-0.2137969434261322,
0.5857161283493042,
-0.12830643355846405,
-0.45797833800315857,
-0.37455078959465027,
-0.01820838823914528,
0.13713791966438293,
0.2506451904773712,
0.10965222120285034,
0.1109388917684555,
-0.13130693137645721,
-0.45658254623413086,
0.4063814878463745,
0.23064659535884857,
-0.3791216313838959,
-0.4456213116645813,
0.6278321146965027,
0.10134416818618774,
-0.14190147817134857,
0.5539854764938354,
-0.19875173270702362,
-0.6585513949394226,
0.8083412051200867,
0.1083066537976265,
0.8146896958351135,
-0.09421654790639877,
0.3557755649089813,
0.7462322115898132,
0.27474644780158997,
-0.0915168970823288,
0.5850501656532288,
-0.15185225009918213,
-0.6376147866249084,
-0.09226309508085251,
-0.5601796507835388,
-0.08300074934959412,
0.17413799464702606,
-0.8270334601402283,
0.38215065002441406,
-0.5270887017250061,
-0.24161015450954437,
0.047489553689956665,
0.39683523774147034,
-0.732148289680481,
0.20577706396579742,
-0.04902937263250351,
1.0451551675796509,
-1.0687696933746338,
0.47282060980796814,
0.6579370498657227,
-0.6830918788909912,
-1.2604721784591675,
-0.1253691166639328,
0.20029792189598083,
-0.5814275741577148,
0.2518630623817444,
0.15504659712314606,
0.5143266916275024,
-0.07264711707830429,
-0.9546884894371033,
-0.6512574553489685,
1.1950068473815918,
0.05888909474015236,
-0.2500993609428406,
0.31485092639923096,
0.10350845009088516,
0.6336199641227722,
-0.372478187084198,
0.3517991304397583,
0.6434348821640015,
0.6654286980628967,
0.3338404893875122,
-0.6631481051445007,
0.27088090777397156,
-0.6013674736022949,
-0.20609669387340546,
0.0941736027598381,
-0.9624135494232178,
0.673459529876709,
-0.168295755982399,
-0.03498479723930359,
0.007472589146345854,
0.6310704350471497,
0.4185469150543213,
0.40731722116470337,
0.40001899003982544,
0.770950436592102,
0.8297528624534607,
-0.4074054956436157,
1.2199766635894775,
-0.2986987233161926,
0.6173015236854553,
0.8294297456741333,
0.04516449570655823,
0.5126884579658508,
0.21537825465202332,
-0.3173453211784363,
0.5117188692092896,
0.6048135161399841,
-0.4165419936180115,
0.23931121826171875,
0.4315817058086395,
-0.030688248574733734,
-0.008961055427789688,
-0.22551023960113525,
-0.6025680303573608,
0.28195855021476746,
0.23557822406291962,
-0.36424973607063293,
0.05531495437026024,
-0.017838647589087486,
0.32277336716651917,
-0.047534435987472534,
-0.3118104934692383,
0.5874782204627991,
0.025554122403264046,
-0.35453474521636963,
0.5358094573020935,
-0.18579132854938507,
0.7440459728240967,
-0.6270249485969543,
0.13085700571537018,
-0.11725658178329468,
0.11116118729114532,
-0.6597391366958618,
-1.1049127578735352,
0.35131335258483887,
-0.07093255966901779,
-0.2424212545156479,
-0.3711824119091034,
0.7368661165237427,
-0.45447051525115967,
-0.7871660590171814,
0.24197815358638763,
0.17961393296718597,
0.2875044643878937,
0.12138883769512177,
-1.3068393468856812,
0.6424206495285034,
0.1440264731645584,
-0.39615026116371155,
0.09979187697172165,
0.49322018027305603,
0.16327637434005737,
0.5474021434783936,
0.6996999382972717,
0.27189698815345764,
-0.20890606939792633,
0.12387120723724365,
1.095109462738037,
-0.5347273349761963,
-0.4442720413208008,
-0.7295746207237244,
0.8569113612174988,
-0.38380539417266846,
-0.42457640171051025,
0.6644060015678406,
0.7518075108528137,
0.8970530033111572,
0.03174739331007004,
0.8761611580848694,
-0.7062999606132507,
0.6619641184806824,
-0.18766599893569946,
0.9287931323051453,
-0.6682897806167603,
-0.020955292508006096,
-0.7388725280761719,
-0.5289496183395386,
-0.38002821803092957,
0.6737937927246094,
-0.18524092435836792,
0.19990606606006622,
0.27831441164016724,
0.8976674675941467,
0.041233137249946594,
0.13013695180416107,
-0.2768341302871704,
0.2906886637210846,
0.29605093598365784,
0.5794784426689148,
0.43712010979652405,
-0.9473703503608704,
0.3773057162761688,
-0.8074498176574707,
-0.33722901344299316,
0.09143582731485367,
-0.8391945958137512,
-0.8811181783676147,
-0.9501593112945557,
-0.6746528148651123,
-0.8034541010856628,
-0.25157272815704346,
1.070038080215454,
0.7187454700469971,
-0.6966170072555542,
-0.25253093242645264,
0.09175700694322586,
0.24592182040214539,
-0.12615180015563965,
-0.3175019919872284,
0.6297686100006104,
0.3900493383407593,
-0.5692557692527771,
-0.14664380252361298,
0.019157513976097107,
0.21128475666046143,
0.0665397047996521,
-0.13443772494792938,
-0.13689209520816803,
-0.32561442255973816,
0.3404831886291504,
0.5588442087173462,
-0.3540886640548706,
-0.11855335533618927,
-0.2306404858827591,
0.026447612792253494,
0.17413294315338135,
0.5212920904159546,
-0.5597278475761414,
0.17172002792358398,
0.6498869061470032,
0.3147585391998291,
0.47467178106307983,
0.22937488555908203,
0.010647209361195564,
-0.5383554697036743,
0.0658436194062233,
0.035939544439315796,
0.27556419372558594,
0.395654559135437,
-0.4457833468914032,
0.8038893938064575,
0.5476071238517761,
-0.4963171184062958,
-0.8004942536354065,
-0.1368659883737564,
-1.343319058418274,
0.11777651309967041,
1.0053091049194336,
-0.003986131399869919,
-0.5628799796104431,
0.06910435855388641,
-0.2099621742963791,
0.12683206796646118,
-0.5913535952568054,
0.4303344190120697,
0.49166515469551086,
-0.13913749158382416,
0.09777095913887024,
-0.3967169225215912,
0.6755478978157043,
-0.1046808660030365,
-0.9848167896270752,
0.16876471042633057,
0.36856237053871155,
0.46111631393432617,
0.3225337266921997,
0.817933976650238,
-0.24128055572509766,
0.05988240987062454,
-0.06993596255779266,
0.22740010917186737,
-0.2879815995693207,
-0.0032543351408094168,
-0.33078449964523315,
-0.16692033410072327,
-0.49501991271972656,
-0.21970923244953156
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/egor-letov | huggingartists | 2022-10-25T09:28:41Z | 292 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:28:41Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/egor-letov"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 0.673046 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/faa3dae99bf1fe365927608fd55c745a.330x330x1.jpg')">
</div>
</div>
<a href="https://huggingface.co/huggingartists/egor-letov">
<div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">🤖 HuggingArtists Model 🤖</div>
</a>
<div style="text-align: center; font-size: 16px; font-weight: 800">Егор Летов (Egor Letov)</div>
<a href="https://genius.com/artists/egor-letov">
<div style="text-align: center; font-size: 14px;">@egor-letov</div>
</a>
</div>
### Dataset Summary
The Lyrics dataset parsed from Genius. This dataset is designed to generate lyrics with HuggingArtists.
Model is available [here](https://huggingface.co/huggingartists/egor-letov).
### Supported Tasks and Leaderboards
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Languages
en
## How to use
How to load this dataset directly with the datasets library:
```python
from datasets import load_dataset
dataset = load_dataset("huggingartists/egor-letov")
```
## Dataset Structure
An example of 'train' looks as follows.
```
This example was too long and was cropped:
{
"text": "Look, I was gonna go easy on you\nNot to hurt your feelings\nBut I'm only going to get this one chance\nSomething's wrong, I can feel it..."
}
```
### Data Fields
The data fields are the same among all splits.
- `text`: a `string` feature.
### Data Splits
| train |validation|test|
|------:|---------:|---:|
|543| -| -|
'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-letov")
train_percentage = 0.9
validation_percentage = 0.07
test_percentage = 0.03
train, validation, test = np.split(datasets['train']['text'], [int(len(datasets['train']['text'])*train_percentage), int(len(datasets['train']['text'])*(train_percentage + validation_percentage))])
datasets = DatasetDict(
{
'train': Dataset.from_dict({'text': list(train)}),
'validation': Dataset.from_dict({'text': list(validation)}),
'test': Dataset.from_dict({'text': list(test)})
}
)
```
## Dataset Creation
### Curation Rationale
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Source Data
#### Initial Data Collection and Normalization
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the source language producers?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Annotations
#### Annotation process
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
#### Who are the annotators?
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Personal and Sensitive Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Considerations for Using the Data
### Social Impact of Dataset
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Discussion of Biases
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Other Known Limitations
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
## Additional Information
### Dataset Curators
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Licensing Information
[More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
### Citation Information
```
@InProceedings{huggingartists,
author={Aleksey Korshuk}
year=2021
}
```
## About
*Built by Aleksey Korshuk*
[](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.641396701335907,
-0.5042091608047485,
0.09147920459508896,
0.27742475271224976,
-0.234824076294899,
-0.015052040107548237,
-0.2982955873012543,
-0.43080994486808777,
0.8665516972541809,
0.31210699677467346,
-0.9115347266197205,
-0.8227869272232056,
-0.551685094833374,
0.12311950325965881,
-0.06633897870779037,
1.2693006992340088,
-0.19118069112300873,
-0.3283347487449646,
-0.29973459243774414,
-0.2639080584049225,
-0.2669592797756195,
-0.3304852843284607,
-0.31678807735443115,
-0.34390318393707275,
0.37314745783805847,
0.5293489694595337,
0.6788015961647034,
0.8802766799926758,
0.5171539783477783,
0.36302703619003296,
-0.0981285348534584,
-0.03006156161427498,
-0.35619598627090454,
-0.07952608913183212,
0.17744486033916473,
-0.27692466974258423,
-0.7196351289749146,
0.2154146134853363,
0.5805349946022034,
0.36320778727531433,
-0.10685157775878906,
0.483749121427536,
0.08132237941026688,
0.8791870474815369,
-0.28358179330825806,
0.4612431526184082,
-0.20258291065692902,
-0.1614985316991806,
-0.3028257489204407,
0.06441695243120193,
0.18750706315040588,
-0.6063167452812195,
-0.004141341894865036,
-0.7314454317092896,
0.03059460036456585,
0.005309596657752991,
1.0281486511230469,
0.06935124844312668,
0.13027217984199524,
-0.1989932358264923,
-0.1875535100698471,
0.5160706043243408,
-0.5646792054176331,
0.044432058930397034,
0.5740740299224854,
0.13942919671535492,
0.04114368185400963,
-0.6214821934700012,
-0.6408351063728333,
0.09132618457078934,
-0.14273329079151154,
0.3210122287273407,
-0.19817642867565155,
-0.3105974793434143,
0.4865446984767914,
0.5296112895011902,
-0.506334125995636,
-0.24946081638336182,
-0.5428551435470581,
-0.12027914077043533,
1.1558746099472046,
0.14211171865463257,
0.4261399507522583,
-0.5016269683837891,
-0.19860351085662842,
-0.4324397146701813,
-0.24784506857395172,
0.3489505648612976,
0.5774433612823486,
0.427715927362442,
-1.016073226928711,
0.6428772807121277,
-0.17929555475711823,
0.5392450094223022,
0.17141206562519073,
-0.0015481477603316307,
0.7863193154335022,
-0.38294917345046997,
-0.11922456324100494,
-0.13379476964473724,
1.0735231637954712,
0.6730973720550537,
0.1928252875804901,
0.0954754501581192,
-0.042004045099020004,
0.01415850967168808,
-0.13562573492527008,
-0.851012110710144,
-0.39963144063949585,
0.6508082747459412,
-0.5734928250312805,
-0.5877485871315002,
0.15375743806362152,
-1.00364089012146,
-0.18454192578792572,
-0.29241764545440674,
0.2652949392795563,
-0.4029898941516876,
-0.5355395674705505,
0.15887245535850525,
-0.2597530484199524,
0.17462126910686493,
0.051440052688121796,
-0.5643638372421265,
0.2280057966709137,
0.572283923625946,
0.7757066488265991,
0.23334938287734985,
-0.2930644154548645,
-0.303816020488739,
-0.196760356426239,
-0.12104447931051254,
0.6772141456604004,
-0.29768314957618713,
-0.344409704208374,
-0.1732921451330185,
0.34232738614082336,
-0.06935419887304306,
-0.252415269613266,
0.9122393131256104,
0.06189635768532753,
0.19152052700519562,
-0.6082303524017334,
-0.44913625717163086,
0.0034466839861124754,
0.2693541944026947,
-0.7398372888565063,
1.0523738861083984,
0.3243410587310791,
-1.0112953186035156,
0.19620341062545776,
-0.7843843698501587,
-0.2753858268260956,
0.05741177499294281,
0.06549409031867981,
-0.8104026317596436,
-0.18492074310779572,
0.1804833859205246,
0.7539869546890259,
-0.305829793214798,
-0.026836097240447998,
-0.5993919968605042,
-0.08037252724170685,
0.37070557475090027,
0.30055949091911316,
1.1393771171569824,
0.1131705716252327,
-0.13865043222904205,
0.09282952547073364,
-0.9165856838226318,
0.14755314588546753,
0.43737146258354187,
-0.1356586366891861,
-0.11859534680843353,
-0.22072343528270721,
0.42881321907043457,
0.30798715353012085,
0.04830604046583176,
-0.6316633820533752,
0.40331870317459106,
-0.21807540953159332,
0.4342145323753357,
0.7562918066978455,
-0.006250525359064341,
0.3350541591644287,
-0.6663548350334167,
0.4400511384010315,
0.05775190889835358,
0.3587935268878937,
0.012735718861222267,
-0.5243030786514282,
-0.4882183372974396,
-0.29026225209236145,
0.30937886238098145,
0.4513302445411682,
-0.6595759987831116,
1.0115941762924194,
-0.33712536096572876,
-0.8621777892112732,
-0.6413707137107849,
0.11322492361068726,
0.21450696885585785,
0.5035696625709534,
0.3580005466938019,
-0.4381563067436218,
-0.5839955806732178,
-0.6759124994277954,
0.05717642977833748,
-0.2714431881904602,
0.1926700621843338,
0.44312775135040283,
0.8334688544273376,
-0.23103217780590057,
0.8277279138565063,
-0.6590574979782104,
-0.30942949652671814,
-0.2785120904445648,
-0.35107192397117615,
0.3452436625957489,
0.8104264736175537,
0.6863852739334106,
-0.8484488129615784,
-0.5243409276008606,
-0.2403908371925354,
-0.7083112001419067,
-0.08246013522148132,
-0.025745518505573273,
-0.2703913748264313,
0.02171994559466839,
0.15212735533714294,
-0.7025032043457031,
0.5492787957191467,
0.4850405752658844,
-0.6933696269989014,
0.5797245502471924,
0.05494166538119316,
0.022752484306693077,
-1.2951414585113525,
0.37371137738227844,
0.28214892745018005,
-0.0049722688272595406,
-0.6104872226715088,
-0.19617176055908203,
-0.04298807308077812,
-0.0016004114877432585,
-0.10601282864809036,
0.6464417576789856,
-0.33400437235832214,
0.2938278019428253,
0.14789611101150513,
0.05468972027301788,
0.07409840077161789,
0.4232054352760315,
-0.07912302017211914,
0.2750994563102722,
1.030239224433899,
-0.3870508372783661,
0.6700366139411926,
0.6223899722099304,
-0.19671069085597992,
0.8780101537704468,
-0.8443728685379028,
0.04279877990484238,
-0.28605014085769653,
0.4093955457210541,
-0.8186359405517578,
-0.5773307085037231,
0.8438328504562378,
-0.7203792929649353,
0.40564799308776855,
-0.24333441257476807,
-0.5650765895843506,
-0.799053966999054,
-0.6770714521408081,
0.13457098603248596,
0.5540304183959961,
-0.3712298274040222,
0.452576607465744,
0.5827253460884094,
0.061326637864112854,
-0.3694233000278473,
-0.7488741874694824,
-0.15625761449337006,
-0.4137852191925049,
-0.8294652700424194,
0.4262221157550812,
-0.36637911200523376,
-0.11752016097307205,
0.16448546946048737,
0.1032312661409378,
0.11165346205234528,
-0.01674613356590271,
0.40788668394088745,
0.2932811975479126,
0.10015815496444702,
0.017578555271029472,
-0.08911962807178497,
-0.24796859920024872,
0.10731149464845657,
-0.21341466903686523,
0.27130815386772156,
-0.3548740744590759,
-0.12855789065361023,
-0.690650463104248,
0.1858258843421936,
0.46342936158180237,
-0.2514101266860962,
0.7152016758918762,
0.796995222568512,
-0.244087353348732,
-0.008873557671904564,
-0.5356477499008179,
-0.15638528764247894,
-0.42173027992248535,
0.04302876442670822,
-0.24581897258758545,
-0.5953606963157654,
0.959022045135498,
0.2171526551246643,
0.05401739850640297,
0.6718977093696594,
0.48413318395614624,
-0.07931928336620331,
0.6630328297615051,
0.40087175369262695,
-0.27633634209632874,
0.5047038793563843,
-0.6773626208305359,
-0.24317604303359985,
-0.9089707732200623,
-0.46498867869377136,
-0.4788243770599365,
-0.4897909164428711,
-0.842776358127594,
-0.442899614572525,
0.20565354824066162,
0.13402296602725983,
-0.2246520221233368,
0.4518207013607025,
-0.9466974139213562,
0.2912884056568146,
0.32134300470352173,
0.2796171009540558,
-0.14113932847976685,
0.07607007026672363,
0.06877417862415314,
0.12299932539463043,
-0.5783504247665405,
-0.2359800636768341,
1.1398526430130005,
0.49523085355758667,
0.54497891664505,
-0.08057653903961182,
0.8368977308273315,
0.019910044968128204,
0.22050510346889496,
-0.5139322280883789,
0.4927232265472412,
0.04452511668205261,
-0.48823991417884827,
-0.14862766861915588,
-0.48130834102630615,
-0.893136739730835,
-0.1390630453824997,
-0.40669137239456177,
-0.7241746783256531,
0.49388930201530457,
0.10801216214895248,
-0.23486396670341492,
0.38060277700424194,
-0.5921856760978699,
0.8272555470466614,
-0.04482964426279068,
-0.473877876996994,
0.276905357837677,
-1.036608338356018,
0.1604907065629959,
0.17922648787498474,
0.2669140100479126,
-0.37788087129592896,
0.038242559880018234,
1.0059493780136108,
-0.8161894679069519,
0.8897215723991394,
-0.36396533250808716,
0.17325548827648163,
0.5544988512992859,
-0.29256972670555115,
0.4659729599952698,
0.10495992004871368,
-0.2852950692176819,
0.31007519364356995,
0.025041114538908005,
-0.44825586676597595,
-0.42792999744415283,
0.6764602065086365,
-0.7431943416595459,
0.0559399351477623,
-0.3824405074119568,
-0.42674902081489563,
0.07871869206428528,
0.1501382738351822,
0.31174907088279724,
0.39305680990219116,
-0.01889217086136341,
0.13683882355690002,
0.44121694564819336,
-0.15581290423870087,
0.271092027425766,
0.044310759752988815,
-0.09152556210756302,
-0.778617262840271,
0.9201083779335022,
0.17521598935127258,
0.044336747378110886,
-0.07968249171972275,
0.4278988540172577,
-0.3549957573413849,
-0.09739840030670166,
-0.6079508066177368,
0.4954054653644562,
-0.3998066782951355,
-0.3913654386997223,
-0.538733184337616,
-0.18048058450222015,
-0.6350176930427551,
-0.1857677847146988,
-0.28219494223594666,
-0.4945773780345917,
-0.30332711338996887,
-0.21334290504455566,
1.0527359247207642,
0.47828274965286255,
-0.7151740789413452,
0.14269602298736572,
-0.5115315914154053,
0.2621074914932251,
-0.08187504857778549,
0.6583265662193298,
-0.08926285803318024,
-0.3238794803619385,
-0.2009437531232834,
0.08602967113256454,
-0.18044151365756989,
-0.6986963152885437,
0.30198583006858826,
-0.013260005973279476,
0.3654952645301819,
0.10468926280736923,
0.11243168264627457,
0.6714087724685669,
-0.08448543399572372,
0.6137650609016418,
0.287106990814209,
-0.8106482028961182,
0.6808392405509949,
-0.5277365446090698,
0.16547414660453796,
0.7334621548652649,
0.3846278488636017,
-0.63188236951828,
-0.13947893679141998,
-0.978382408618927,
-0.8595905900001526,
0.8243237137794495,
0.45937398076057434,
0.06902102380990982,
0.22735221683979034,
0.6169987916946411,
-0.2062671035528183,
0.24641746282577515,
-0.6603444814682007,
-0.885566234588623,
-0.4076177477836609,
-0.36098140478134155,
-0.04234427213668823,
-0.07798290252685547,
-0.22401940822601318,
-0.7134036421775818,
0.7976133823394775,
-0.11011914908885956,
0.34504473209381104,
0.46067386865615845,
0.41161057353019714,
-0.2362203747034073,
-0.021953238174319267,
0.2755616009235382,
0.3513881266117096,
-0.23286591470241547,
-0.3244641125202179,
-0.14518782496452332,
-0.6151721477508545,
-0.08438768982887268,
0.506783127784729,
-0.33144062757492065,
-0.1096026673913002,
0.28122687339782715,
0.8656225204467773,
-0.043327778577804565,
-0.23425889015197754,
0.6079021692276001,
-0.10388249158859253,
-0.41610732674598694,
-0.43803292512893677,
0.0013335651019588113,
0.15833337604999542,
0.26402053236961365,
0.05800500512123108,
0.10258462280035019,
-0.1157718375325203,
-0.3675239086151123,
0.4216001033782959,
0.2576718330383301,
-0.41570958495140076,
-0.5444973707199097,
0.6022068858146667,
0.05968274548649788,
-0.1477174013853073,
0.4778144359588623,
-0.18548624217510223,
-0.645526647567749,
0.7868890166282654,
0.10480829328298569,
0.8286224007606506,
-0.19519947469234467,
0.34392428398132324,
0.7527100443840027,
0.21713244915008545,
-0.06978069990873337,
0.535259485244751,
-0.19970282912254333,
-0.6527890563011169,
-0.06124250963330269,
-0.5896328091621399,
-0.08402591943740845,
0.07881400734186172,
-0.8509881496429443,
0.4475921392440796,
-0.47884249687194824,
-0.2265389859676361,
0.04628730192780495,
0.3645385205745697,
-0.7467607855796814,
0.17693965137004852,
-0.05264848843216896,
1.004408359527588,
-1.0374035835266113,
0.45933282375335693,
0.708703339099884,
-0.6517829895019531,
-1.1876745223999023,
-0.1206211969256401,
0.21366901695728302,
-0.5593227744102478,
0.2520488202571869,
0.19297334551811218,
0.4726813733577728,
-0.023402471095323563,
-0.9062144756317139,
-0.6729943752288818,
1.1709548234939575,
0.020151274278759956,
-0.2239241600036621,
0.34082502126693726,
0.07371976971626282,
0.6303987503051758,
-0.35797399282455444,
0.3111952543258667,
0.6109858751296997,
0.6851682662963867,
0.3052176833152771,
-0.7101274728775024,
0.2948850393295288,
-0.6497364044189453,
-0.24912258982658386,
0.08310124278068542,
-1.0426607131958008,
0.6166375279426575,
-0.16956304013729095,
-0.03234428912401199,
0.012155117467045784,
0.6383537650108337,
0.4261777400970459,
0.3774392604827881,
0.4440590441226959,
0.7690221071243286,
0.7905730605125427,
-0.3015763461589813,
1.2413227558135986,
-0.2679421603679657,
0.6230857372283936,
0.7637902498245239,
0.013349202461540699,
0.5038991570472717,
0.21363896131515503,
-0.3130629360675812,
0.563951849937439,
0.6331407427787781,
-0.4341912865638733,
0.22980478405952454,
0.3896338939666748,
-0.06746165454387665,
-0.09310395270586014,
-0.23921526968479156,
-0.5849601626396179,
0.32221922278404236,
0.2366155982017517,
-0.2891243100166321,
0.027983933687210083,
0.010309441015124321,
0.3804846405982971,
-0.04542788863182068,
-0.2531566917896271,
0.6661322712898254,
0.0418117381632328,
-0.36159971356391907,
0.4893009066581726,
-0.1865207850933075,
0.6784658432006836,
-0.5858957767486572,
0.16656842827796936,
-0.06875544041395187,
0.1479147970676422,
-0.5911300778388977,
-1.0732516050338745,
0.38806477189064026,
-0.0700734406709671,
-0.22687409818172455,
-0.34677812457084656,
0.7674316763877869,
-0.45330610871315,
-0.8139724135398865,
0.24058593809604645,
0.24392792582511902,
0.3389277756214142,
0.14597341418266296,
-1.2778669595718384,
0.557648241519928,
0.13249124586582184,
-0.4890159070491791,
0.1152539849281311,
0.4998343586921692,
0.1980617344379425,
0.5620570778846741,
0.6831398010253906,
0.26912757754325867,
-0.26295652985572815,
0.0441354364156723,
1.122550368309021,
-0.5319408178329468,
-0.4626859724521637,
-0.7769313454627991,
0.8991504907608032,
-0.37441501021385193,
-0.40550515055656433,
0.7232049703598022,
0.7534899115562439,
0.8567522168159485,
0.039040517061948776,
0.7995129823684692,
-0.6647933125495911,
0.6603500247001648,
-0.18414677679538727,
0.9669873714447021,
-0.7152102589607239,
-0.09337332099676132,
-0.7597424387931824,
-0.5476935505867004,
-0.4022386074066162,
0.6880107522010803,
-0.18437565863132477,
0.21942657232284546,
0.2613096237182617,
0.8974171876907349,
0.009108913131058216,
0.09475312381982803,
-0.24521121382713318,
0.3161720931529999,
0.2739485502243042,
0.5000358819961548,
0.4140431880950928,
-0.8933343291282654,
0.30729541182518005,
-0.7718624472618103,
-0.31137412786483765,
0.046123381704092026,
-0.827539324760437,
-0.894080638885498,
-0.9912747740745544,
-0.7020478844642639,
-0.8109124898910522,
-0.27073705196380615,
1.09261953830719,
0.7259588241577148,
-0.6767356991767883,
-0.25997817516326904,
0.047421012073755264,
0.24356701970100403,
-0.0596056692302227,
-0.315600723028183,
0.6685900092124939,
0.37141111493110657,
-0.6039677858352661,
-0.17092958092689514,
0.02504880540072918,
0.2508496344089508,
0.0599798858165741,
-0.12455254793167114,
-0.11078628897666931,
-0.26615163683891296,
0.326795369386673,
0.48087042570114136,
-0.33467018604278564,
-0.1143847107887268,
-0.21815553307533264,
0.04885033145546913,
0.17453286051750183,
0.46191397309303284,
-0.5409954786300659,
0.21658101677894592,
0.6293284296989441,
0.252666711807251,
0.4674810767173767,
0.2142171412706375,
0.03366769105195999,
-0.4977211654186249,
0.08997383713722229,
-0.005579344928264618,
0.30186927318573,
0.40227067470550537,
-0.4675946533679962,
0.7717248797416687,
0.5434732437133789,
-0.538934588432312,
-0.8318571448326111,
-0.14041964709758759,
-1.319270133972168,
0.11369866877794266,
1.064624309539795,
0.002464885823428631,
-0.5734628438949585,
0.07582885771989822,
-0.21010081470012665,
0.1453161984682083,
-0.5662626624107361,
0.433315247297287,
0.5434373617172241,
-0.10240733623504639,
0.1209050863981247,
-0.35067838430404663,
0.6451849937438965,
-0.010384717024862766,
-0.9920745491981506,
0.1931026726961136,
0.423618346452713,
0.47887882590293884,
0.30356934666633606,
0.809779703617096,
-0.2634769678115845,
0.0580403096973896,
-0.08797449618577957,
0.32412636280059814,
-0.25853094458580017,
0.021036885678768158,
-0.3825235366821289,
-0.1692858338356018,
-0.5063835382461548,
-0.18480026721954346
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/madonna | huggingartists | 2022-10-25T09:37:23Z | 292 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:37:23Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
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.598646342754364,
-0.5640408396720886,
0.03311863914132118,
0.29549098014831543,
-0.2432003766298294,
-0.027836257591843605,
-0.2798917591571808,
-0.4487226903438568,
0.7906340956687927,
0.3377191722393036,
-0.9256245493888855,
-0.8348256349563599,
-0.5776157975196838,
0.15239009261131287,
-0.1501084566116333,
1.2582694292068481,
-0.16392013430595398,
-0.28770312666893005,
-0.3311060965061188,
-0.20843727886676788,
-0.3166251480579376,
-0.30512070655822754,
-0.3002437651157379,
-0.26994386315345764,
0.36589759588241577,
0.5265706181526184,
0.6807509064674377,
0.9066939353942871,
0.5613720417022705,
0.3416453003883362,
-0.08654647320508957,
0.053058184683322906,
-0.4533986747264862,
-0.09045206010341644,
0.18421095609664917,
-0.2922804355621338,
-0.6898958683013916,
0.2534596025943756,
0.5715588927268982,
0.3838096857070923,
-0.06204158440232277,
0.48039498925209045,
0.0702466070652008,
0.8781707882881165,
-0.25447967648506165,
0.4671509563922882,
-0.29865673184394836,
-0.13102316856384277,
-0.2627551853656769,
0.015643009915947914,
0.17596285045146942,
-0.6059751510620117,
-0.020128091797232628,
-0.7436828017234802,
0.06217096000909805,
0.03590851277112961,
1.0386394262313843,
0.09832591563463211,
0.10994192212820053,
-0.21464002132415771,
-0.20170576870441437,
0.5928049087524414,
-0.5360713005065918,
0.014690078794956207,
0.5480014085769653,
0.13569648563861847,
0.008180378004908562,
-0.614459753036499,
-0.594321608543396,
0.05610086768865585,
-0.10562156140804291,
0.229037806391716,
-0.23331362009048462,
-0.416869193315506,
0.4871494472026825,
0.5570723414421082,
-0.4713464379310608,
-0.21644988656044006,
-0.5758954286575317,
-0.09175767004489899,
1.094849944114685,
0.1317911446094513,
0.41313475370407104,
-0.4658200144767761,
-0.26959332823753357,
-0.3558107018470764,
-0.38876840472221375,
0.3372471332550049,
0.53900545835495,
0.4232388138771057,
-1.0045382976531982,
0.6425570845603943,
-0.13327725231647491,
0.5802814364433289,
0.11996395885944366,
-0.05149483308196068,
0.7750709652900696,
-0.35867029428482056,
-0.119246706366539,
-0.14153382182121277,
1.0885857343673706,
0.6663164496421814,
0.21728752553462982,
0.11910499632358551,
-0.02127217873930931,
-0.00456146989017725,
-0.13124561309814453,
-0.8640895485877991,
-0.35203638672828674,
0.6607977151870728,
-0.6128607988357544,
-0.6021808981895447,
0.1533574014902115,
-0.9668452739715576,
-0.1768627017736435,
-0.3027169406414032,
0.26277652382850647,
-0.3785187005996704,
-0.45683470368385315,
0.1605813354253769,
-0.24213363230228424,
0.08220167458057404,
0.07401804625988007,
-0.5553954243659973,
0.14566554129123688,
0.623478889465332,
0.7797523736953735,
0.17977790534496307,
-0.2914004623889923,
-0.3069409728050232,
-0.15211622416973114,
-0.13107773661613464,
0.695000410079956,
-0.29249051213264465,
-0.3900904059410095,
-0.14349797368049622,
0.3449863791465759,
-0.05707305669784546,
-0.29614993929862976,
0.9145817160606384,
0.05373840034008026,
0.22565966844558716,
-0.5388255715370178,
-0.45518141984939575,
-0.02917408011853695,
0.2533774971961975,
-0.780322790145874,
1.0381931066513062,
0.29117465019226074,
-0.9771702289581299,
0.1873072385787964,
-0.8020328283309937,
-0.31463730335235596,
-0.02784881554543972,
0.07587765902280807,
-0.8234598636627197,
-0.16481222212314606,
0.1991235315799713,
0.7397087216377258,
-0.389249324798584,
0.02587020769715309,
-0.6024237871170044,
-0.14909811317920685,
0.4505396783351898,
0.1771402657032013,
1.2029972076416016,
0.1380918025970459,
-0.14367370307445526,
0.07129479199647903,
-0.9523171782493591,
0.08441541343927383,
0.41122135519981384,
-0.19305038452148438,
-0.061671189963817596,
-0.19832603633403778,
0.42560678720474243,
0.29191720485687256,
0.08591613918542862,
-0.5622856020927429,
0.41245195269584656,
-0.1291457712650299,
0.4622966945171356,
0.7582260370254517,
0.0005781432264484465,
0.2681984007358551,
-0.6491415500640869,
0.40367943048477173,
0.12545493245124817,
0.4193762242794037,
-0.015081794932484627,
-0.6150490641593933,
-0.5306733250617981,
-0.28106769919395447,
0.3047868311405182,
0.46249252557754517,
-0.6468490362167358,
0.9567568302154541,
-0.38521477580070496,
-0.8239755034446716,
-0.7096318602561951,
0.1673990935087204,
0.22010982036590576,
0.5886818766593933,
0.4001747667789459,
-0.4241199791431427,
-0.596587061882019,
-0.7472521662712097,
0.07825648039579391,
-0.24047960340976715,
0.15068908035755157,
0.47161853313446045,
0.8386223316192627,
-0.20906396210193634,
0.8055388927459717,
-0.6871559023857117,
-0.35726889967918396,
-0.22449132800102234,
-0.2853366732597351,
0.4032552242279053,
0.8582090139389038,
0.6679251790046692,
-0.8995456695556641,
-0.4881872832775116,
-0.27848708629608154,
-0.683867335319519,
-0.06920314580202103,
0.015275499783456326,
-0.3017542064189911,
0.00907971989363432,
0.09484309703111649,
-0.6345685124397278,
0.5225088596343994,
0.5032179951667786,
-0.6390586495399475,
0.5173400044441223,
0.06971456855535507,
0.11290604621171951,
-1.2779653072357178,
0.3571978509426117,
0.25594520568847656,
0.04076641425490379,
-0.629427969455719,
-0.2614786624908447,
-0.034856170415878296,
-0.021076509729027748,
-0.17294400930404663,
0.5422622561454773,
-0.34517669677734375,
0.3238752484321594,
0.1609887182712555,
-0.016504721716046333,
0.10506338626146317,
0.46576815843582153,
-0.036260563880205154,
0.32836395502090454,
1.048966646194458,
-0.3892507255077362,
0.60683274269104,
0.5980338454246521,
-0.27301526069641113,
0.9033946394920349,
-0.826447606086731,
0.07043831795454025,
-0.27494433522224426,
0.36957380175590515,
-0.8404605388641357,
-0.47543078660964966,
0.8030028939247131,
-0.7182230949401855,
0.41555795073509216,
-0.3084387183189392,
-0.5535820722579956,
-0.7695629000663757,
-0.6466194987297058,
0.13883048295974731,
0.5927122235298157,
-0.34926655888557434,
0.36895930767059326,
0.6569962501525879,
0.09008011966943741,
-0.36773204803466797,
-0.7765332460403442,
-0.09760113805532455,
-0.40954187512397766,
-0.8157572150230408,
0.39861661195755005,
-0.35510894656181335,
-0.08417119830846786,
0.12171021103858948,
0.17271532118320465,
0.035496365278959274,
-0.0018624127842485905,
0.415858656167984,
0.36383605003356934,
0.05029454454779625,
-0.011648685671389103,
-0.1265404373407364,
-0.2351512312889099,
0.0736980065703392,
-0.24924756586551666,
0.2559187114238739,
-0.2797003388404846,
-0.13965916633605957,
-0.6959445476531982,
0.2611549496650696,
0.4759892523288727,
-0.2736070156097412,
0.7006933093070984,
0.806334912776947,
-0.22772012650966644,
0.023346688598394394,
-0.5433557629585266,
-0.10894943028688431,
-0.40106937289237976,
0.03909754380583763,
-0.23343564569950104,
-0.6353533864021301,
0.891370952129364,
0.2686477303504944,
0.051874708384275436,
0.6685534119606018,
0.5211204290390015,
-0.07918313145637512,
0.7167143821716309,
0.3754933178424835,
-0.3069344460964203,
0.4919637143611908,
-0.715436577796936,
-0.2436080425977707,
-0.8804935216903687,
-0.47235286235809326,
-0.5788112282752991,
-0.507719874382019,
-0.8606312870979309,
-0.5344906449317932,
0.2501448690891266,
0.08694951981306076,
-0.22017428278923035,
0.42324045300483704,
-0.9183395504951477,
0.22460779547691345,
0.35573330521583557,
0.2858835756778717,
-0.07547637820243835,
0.14574842154979706,
0.14845485985279083,
0.1249561607837677,
-0.5883461833000183,
-0.248836949467659,
1.1420592069625854,
0.5078234076499939,
0.5743635296821594,
-0.07779443264007568,
0.764628529548645,
0.023969456553459167,
0.28497204184532166,
-0.4982144832611084,
0.4633885622024536,
-0.021853018552064896,
-0.5363713502883911,
-0.10385162383317947,
-0.5095211267471313,
-0.8966625928878784,
-0.140501469373703,
-0.4163196384906769,
-0.6830857396125793,
0.5465598106384277,
0.12277843803167343,
-0.1875913292169571,
0.38381227850914,
-0.584289014339447,
0.8416537642478943,
-0.059130966663360596,
-0.48221859335899353,
0.2906022071838379,
-0.9793611764907837,
0.18299241364002228,
0.18992125988006592,
0.3050798773765564,
-0.42750146985054016,
-0.020284481346607208,
1.0046755075454712,
-0.7900534272193909,
0.9045913815498352,
-0.328173965215683,
0.14004021883010864,
0.5741604566574097,
-0.2769385576248169,
0.44706061482429504,
0.0624387264251709,
-0.2639450430870056,
0.39400091767311096,
-0.06561306118965149,
-0.4348174035549164,
-0.41428282856941223,
0.7546426057815552,
-0.6972219944000244,
0.009041959419846535,
-0.2966926395893097,
-0.4875398576259613,
0.05656438693404198,
0.1476321518421173,
0.2836446166038513,
0.4083375036716461,
0.006897019688040018,
0.20654067397117615,
0.4659133553504944,
-0.13884778320789337,
0.23394304513931274,
0.09748239815235138,
-0.050106193870306015,
-0.7677990198135376,
0.9399822950363159,
0.1723269820213318,
0.033563461154699326,
0.02245386131107807,
0.421942800283432,
-0.3952670693397522,
-0.15694700181484222,
-0.6002566814422607,
0.43607306480407715,
-0.3817345201969147,
-0.37300652265548706,
-0.5337069034576416,
-0.10702645033597946,
-0.6319219470024109,
-0.10911393165588379,
-0.2431926727294922,
-0.5462283492088318,
-0.39674898982048035,
-0.1747496873140335,
1.0615243911743164,
0.4822356402873993,
-0.6571895480155945,
0.056315526366233826,
-0.5364060997962952,
0.28509998321533203,
-0.09532053023576736,
0.6264402270317078,
-0.07091408222913742,
-0.3454708456993103,
-0.19627642631530762,
0.09154649823904037,
-0.18467071652412415,
-0.7232099771499634,
0.2946406304836273,
0.0021715399343520403,
0.32396432757377625,
0.1443350911140442,
0.04536621272563934,
0.7141401171684265,
-0.1374351680278778,
0.6497670412063599,
0.3112255036830902,
-0.7690392136573792,
0.7050090432167053,
-0.5141212940216064,
0.09663113206624985,
0.7277541160583496,
0.4124830663204193,
-0.5989897847175598,
-0.15300217270851135,
-0.9499266147613525,
-0.840281069278717,
0.7625243067741394,
0.45789435505867004,
0.0682745948433876,
0.1924094706773758,
0.5012784600257874,
-0.17663784325122833,
0.328987717628479,
-0.6584510207176208,
-0.8826151490211487,
-0.39596301317214966,
-0.3406496047973633,
-0.08024662733078003,
-0.0951017439365387,
-0.2305024117231369,
-0.710175633430481,
0.7961507439613342,
-0.0712599977850914,
0.31158745288848877,
0.4156685769557953,
0.39100220799446106,
-0.23035554587841034,
-0.0167385321110487,
0.3014616370201111,
0.39176809787750244,
-0.2588333785533905,
-0.284807413816452,
-0.20514091849327087,
-0.5994638800621033,
-0.08154894411563873,
0.47450903058052063,
-0.3824555277824402,
-0.09720821678638458,
0.29024678468704224,
0.8837888836860657,
0.03712087124586105,
-0.2666795253753662,
0.5732584595680237,
-0.06605113297700882,
-0.33039718866348267,
-0.374735563993454,
0.019885636866092682,
0.13775262236595154,
0.16520491242408752,
0.09747659415006638,
0.07439021021127701,
-0.09010814875364304,
-0.4071918725967407,
0.4000157415866852,
0.2707199156284332,
-0.48647359013557434,
-0.44522324204444885,
0.6484848856925964,
0.06350304186344147,
-0.18584148585796356,
0.4846944510936737,
-0.06719546765089035,
-0.6154807806015015,
0.7733087539672852,
0.12611888349056244,
0.8186802864074707,
-0.16640529036521912,
0.3223981261253357,
0.7159929871559143,
0.20511944591999054,
-0.029633963480591774,
0.5382252335548401,
-0.18558070063591003,
-0.5981369018554688,
-0.025854161009192467,
-0.5964468121528625,
-0.06073084473609924,
0.08978959918022156,
-0.8251726031303406,
0.40893542766571045,
-0.4241291880607605,
-0.2149825543165207,
0.02161811850965023,
0.353254497051239,
-0.7631638646125793,
0.16224437952041626,
-0.1343299001455307,
1.0411921739578247,
-1.0369346141815186,
0.47983163595199585,
0.6426052451133728,
-0.7131560444831848,
-1.1929349899291992,
-0.20130494236946106,
0.20255132019519806,
-0.6349185109138489,
0.291500061750412,
0.17690123617649078,
0.5032910108566284,
-0.04300113767385483,
-0.9095147848129272,
-0.6748849153518677,
1.1500811576843262,
-0.007563635241240263,
-0.2205275297164917,
0.3807884454727173,
0.13127392530441284,
0.6270921230316162,
-0.45454150438308716,
0.2916511297225952,
0.6022964715957642,
0.7018888592720032,
0.3349248468875885,
-0.6885395646095276,
0.25905701518058777,
-0.6395325064659119,
-0.20699995756149292,
0.025000615045428276,
-0.9716041088104248,
0.7007318139076233,
-0.18105779588222504,
0.0021291826851665974,
0.05680352449417114,
0.6429364085197449,
0.43626514077186584,
0.33549952507019043,
0.4638577401638031,
0.7586525678634644,
0.7728466391563416,
-0.33713799715042114,
1.272824764251709,
-0.2909265160560608,
0.6079520583152771,
0.7452296614646912,
0.05686305835843086,
0.5483471155166626,
0.27536532282829285,
-0.3460177481174469,
0.5666305422782898,
0.6527203917503357,
-0.48250141739845276,
0.21797554194927216,
0.36596915125846863,
-0.03431948646903038,
-0.07141256332397461,
-0.3078526258468628,
-0.6044237017631531,
0.2811209261417389,
0.20964977145195007,
-0.3782441020011902,
0.039732471108436584,
-0.03529680520296097,
0.4067346453666687,
-0.09764422476291656,
-0.27403557300567627,
0.6113824248313904,
0.03352317959070206,
-0.41617804765701294,
0.5659030079841614,
-0.21842117607593536,
0.6640620231628418,
-0.5637191534042358,
0.09341645240783691,
-0.09904158860445023,
0.12647148966789246,
-0.5893704891204834,
-1.0696203708648682,
0.29876989126205444,
0.02176349237561226,
-0.2856205701828003,
-0.3488466441631317,
0.702141523361206,
-0.5137109756469727,
-0.8887869119644165,
0.150709867477417,
0.20025630295276642,
0.36375054717063904,
0.17419622838497162,
-1.3035167455673218,
0.6015690565109253,
0.1845640242099762,
-0.4369924068450928,
0.09705773741006851,
0.4862099587917328,
0.1795969009399414,
0.5693039894104004,
0.7599037289619446,
0.290142297744751,
-0.2410951554775238,
0.11859064549207687,
1.0810920000076294,
-0.5092594623565674,
-0.4497685432434082,
-0.7447736263275146,
0.9328930377960205,
-0.36707356572151184,
-0.3945060968399048,
0.7357434630393982,
0.8111545443534851,
0.8190245032310486,
-0.03038637898862362,
0.7509187459945679,
-0.6029261350631714,
0.7134524583816528,
-0.23348894715309143,
0.940238893032074,
-0.7481535077095032,
-0.019042473286390305,
-0.7351241707801819,
-0.5193151831626892,
-0.403738796710968,
0.6822707056999207,
-0.17597432434558868,
0.2025594711303711,
0.23692435026168823,
0.9674376249313354,
-0.004294936545193195,
0.07732770591974258,
-0.2481597363948822,
0.34874770045280457,
0.31759336590766907,
0.5670095086097717,
0.4606814682483673,
-0.8760852813720703,
0.3518676161766052,
-0.7552874088287354,
-0.32183292508125305,
0.004889849107712507,
-0.9025699496269226,
-0.8742963671684265,
-0.9936891198158264,
-0.672058641910553,
-0.7611632347106934,
-0.2937431335449219,
1.0274752378463745,
0.7363271117210388,
-0.7136707901954651,
-0.3129556179046631,
0.1189916729927063,
0.33419352769851685,
-0.055136095732450485,
-0.32117602229118347,
0.6930046677589417,
0.3852933347225189,
-0.675373911857605,
-0.10667143762111664,
0.063191257417202,
0.27048397064208984,
-0.02048720419406891,
-0.08013345301151276,
-0.12086214870214462,
-0.2943574786186218,
0.30643031001091003,
0.42611566185951233,
-0.3087708652019501,
-0.0916702002286911,
-0.23903028666973114,
0.06336408108472824,
0.2174898236989975,
0.5281761288642883,
-0.5181480050086975,
0.18854092061519623,
0.6437498927116394,
0.21878185868263245,
0.42834991216659546,
0.202776700258255,
0.04921329393982887,
-0.45350947976112366,
0.10108210891485214,
-0.004892969503998756,
0.32947462797164917,
0.43043962121009827,
-0.48211219906806946,
0.7419397234916687,
0.5472598671913147,
-0.4861334562301636,
-0.8696306943893433,
-0.1328010857105255,
-1.2965487241744995,
0.08469344675540924,
1.030916452407837,
-0.01083206944167614,
-0.6130597591400146,
0.06139853969216347,
-0.18283052742481232,
0.09992825984954834,
-0.5568470358848572,
0.46935567259788513,
0.5100387334823608,
-0.10987939685583115,
0.15432418882846832,
-0.3485739827156067,
0.6313963532447815,
-0.05405329167842865,
-0.9660641551017761,
0.12384413927793503,
0.4733699858188629,
0.507185697555542,
0.318847119808197,
0.7915971875190735,
-0.31772440671920776,
0.07172845304012299,
-0.12830252945423126,
0.2418554425239563,
-0.3281180262565613,
-0.02664385735988617,
-0.35497188568115234,
-0.0856066644191742,
-0.5230035185813904,
-0.20662690699100494
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/melanie-martinez | huggingartists | 2022-10-25T09:38:15Z | 292 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:38:15Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
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.6071684956550598,
-0.5333687663078308,
0.11810692399740219,
0.33421123027801514,
-0.23972654342651367,
-0.006861186120659113,
-0.27640607953071594,
-0.45075735449790955,
0.8551619052886963,
0.3547360301017761,
-0.9345220327377319,
-0.8835421800613403,
-0.591244101524353,
0.14359967410564423,
-0.12330570816993713,
1.2855675220489502,
-0.21170805394649506,
-0.34145453572273254,
-0.3248562812805176,
-0.21625079214572906,
-0.27973902225494385,
-0.32089635729789734,
-0.35393649339675903,
-0.3371428847312927,
0.3772554099559784,
0.4624723792076111,
0.7090950012207031,
0.8748065233230591,
0.5146823525428772,
0.34565603733062744,
-0.10743087530136108,
-0.00640854611992836,
-0.3634333908557892,
-0.11499470472335815,
0.17252375185489655,
-0.3232308030128479,
-0.6925362348556519,
0.24607697129249573,
0.5433105826377869,
0.4157092869281769,
-0.09962227195501328,
0.49961575865745544,
0.05595211312174797,
0.8330144882202148,
-0.26324746012687683,
0.5190554857254028,
-0.2614281475543976,
-0.12804320454597473,
-0.2785739004611969,
0.044273197650909424,
0.19247564673423767,
-0.6193943619728088,
-0.03680233284831047,
-0.7018895149230957,
0.07505344599485397,
-0.0191538967192173,
0.9906240701675415,
0.10304149985313416,
0.09741928428411484,
-0.17485648393630981,
-0.17155301570892334,
0.5019744038581848,
-0.6010185480117798,
-0.08346802741289139,
0.597667396068573,
0.15365292131900787,
0.00495652761310339,
-0.6379984617233276,
-0.6094995737075806,
0.0884893387556076,
-0.1541021317243576,
0.25786465406417847,
-0.2062624841928482,
-0.3058530390262604,
0.5584239959716797,
0.5215532183647156,
-0.501934289932251,
-0.2613513171672821,
-0.5200238823890686,
-0.11541416496038437,
1.1690213680267334,
0.18157552182674408,
0.4359917640686035,
-0.4457913339138031,
-0.17051121592521667,
-0.3464227616786957,
-0.26386791467666626,
0.35834506154060364,
0.5491103529930115,
0.45759478211402893,
-1.0342704057693481,
0.6430680751800537,
-0.15711863338947296,
0.5534109473228455,
0.12848827242851257,
-0.037140313535928726,
0.7993957996368408,
-0.38658034801483154,
-0.13895541429519653,
-0.15659590065479279,
1.0832889080047607,
0.6530559659004211,
0.1869523972272873,
0.08641444146633148,
-0.052027229219675064,
0.07479045540094376,
-0.15438517928123474,
-0.8476675152778625,
-0.40169858932495117,
0.6525799632072449,
-0.612665593624115,
-0.6026419401168823,
0.16859549283981323,
-0.9661024808883667,
-0.21620292961597443,
-0.323192834854126,
0.2562471926212311,
-0.3344550132751465,
-0.4878883957862854,
0.1592017114162445,
-0.26721298694610596,
0.08410478383302689,
0.0582246258854866,
-0.6215040683746338,
0.18770460784435272,
0.571315348148346,
0.7790839672088623,
0.23164531588554382,
-0.29402098059654236,
-0.2487155646085739,
-0.23869958519935608,
-0.12694573402404785,
0.633781909942627,
-0.28333964943885803,
-0.3519122302532196,
-0.1639002114534378,
0.38583627343177795,
-0.09446004778146744,
-0.30245593190193176,
0.9167103171348572,
0.09108578413724899,
0.18113170564174652,
-0.5945476293563843,
-0.3788791596889496,
0.023247212171554565,
0.24657931923866272,
-0.7648468613624573,
1.0973155498504639,
0.3466455340385437,
-1.0106925964355469,
0.18053069710731506,
-0.8039700388908386,
-0.2975957691669464,
-0.002410121727734804,
0.08539820462465286,
-0.793752908706665,
-0.17704389989376068,
0.2006162405014038,
0.737089216709137,
-0.32123175263404846,
0.04693032428622246,
-0.6221603751182556,
-0.14995823800563812,
0.40127280354499817,
0.19814233481884003,
1.2053495645523071,
0.08610141277313232,
-0.14622272551059723,
0.09491153061389923,
-0.9654051065444946,
0.11062344163656235,
0.45301374793052673,
-0.18425698578357697,
-0.07477563619613647,
-0.24363285303115845,
0.4168168306350708,
0.3335646092891693,
0.09757903963327408,
-0.5990219712257385,
0.4113902747631073,
-0.18001383543014526,
0.46608924865722656,
0.7241129875183105,
0.005836441181600094,
0.3148305118083954,
-0.6530892848968506,
0.4512689709663391,
0.0641888827085495,
0.3925328552722931,
-0.04782308638095856,
-0.5755075812339783,
-0.4554644823074341,
-0.2942444086074829,
0.32635700702667236,
0.45028582215309143,
-0.6576188802719116,
1.006323218345642,
-0.31153151392936707,
-0.823885440826416,
-0.6752977967262268,
0.12227744609117508,
0.17900310456752777,
0.5102411508560181,
0.3835570812225342,
-0.46491557359695435,
-0.6069321036338806,
-0.6464890837669373,
0.10969617962837219,
-0.22991308569908142,
0.15448039770126343,
0.44502466917037964,
0.8285435438156128,
-0.287713885307312,
0.8586328625679016,
-0.6794543266296387,
-0.2260298877954483,
-0.2263125777244568,
-0.29375067353248596,
0.4105810821056366,
0.7819421291351318,
0.7272591590881348,
-0.8342646956443787,
-0.5287798643112183,
-0.2695402204990387,
-0.7263822555541992,
-0.13327345252037048,
-0.03585520759224892,
-0.2856001555919647,
0.0013180716196075082,
0.11939692497253418,
-0.7291111946105957,
0.5849494934082031,
0.510062038898468,
-0.7130233645439148,
0.5546528100967407,
0.0855611264705658,
0.0028687806334346533,
-1.2607804536819458,
0.37701651453971863,
0.2600223422050476,
-0.0050786882638931274,
-0.5916029214859009,
-0.24662621319293976,
-0.07124973088502884,
-0.02541888691484928,
-0.10229776054620743,
0.6191916465759277,
-0.3283711075782776,
0.28255075216293335,
0.10165408253669739,
0.028472071513533592,
0.11229795217514038,
0.4672446846961975,
-0.07080880552530289,
0.26472362875938416,
1.0316898822784424,
-0.36221402883529663,
0.6692330241203308,
0.6068530678749084,
-0.21752606332302094,
0.8223753571510315,
-0.8063061833381653,
0.03218905255198479,
-0.3203524351119995,
0.4331253468990326,
-0.8479630947113037,
-0.5206407904624939,
0.8683356046676636,
-0.6789819598197937,
0.3846936523914337,
-0.26690927147865295,
-0.5423465967178345,
-0.8230039477348328,
-0.6478079557418823,
0.14161314070224762,
0.5023214817047119,
-0.4039100408554077,
0.38970378041267395,
0.5921750664710999,
0.02232404239475727,
-0.3991737365722656,
-0.7907989025115967,
-0.11564695090055466,
-0.38582655787467957,
-0.8129726052284241,
0.4385163486003876,
-0.3404790461063385,
-0.09058721363544464,
0.14707331359386444,
0.0826064869761467,
0.09585382789373398,
0.009853136725723743,
0.42089784145355225,
0.3332148492336273,
0.10159724205732346,
-0.007061564829200506,
-0.04980158433318138,
-0.2276984304189682,
0.14250251650810242,
-0.20296667516231537,
0.28170397877693176,
-0.2585078477859497,
-0.137268528342247,
-0.6719101071357727,
0.23333866894245148,
0.47575879096984863,
-0.24918317794799805,
0.7543226480484009,
0.8331793546676636,
-0.24288251996040344,
-0.013179667294025421,
-0.46955686807632446,
-0.14125686883926392,
-0.40227097272872925,
0.035482585430145264,
-0.23340445756912231,
-0.6114820837974548,
0.9674686789512634,
0.22068463265895844,
0.06425560265779495,
0.6544460654258728,
0.48853567242622375,
-0.06508686393499374,
0.7020561695098877,
0.3874940574169159,
-0.31384262442588806,
0.5285950303077698,
-0.6767296195030212,
-0.21396736800670624,
-0.8523862361907959,
-0.46602511405944824,
-0.529195249080658,
-0.49513188004493713,
-0.8535439372062683,
-0.46987852454185486,
0.1702154129743576,
0.11911534518003464,
-0.23621317744255066,
0.478872150182724,
-0.9162397980690002,
0.2481546401977539,
0.3454865515232086,
0.32918378710746765,
-0.11583567410707474,
0.0771319642663002,
0.08278817683458328,
0.14111709594726562,
-0.5912784934043884,
-0.2644791007041931,
1.1597013473510742,
0.5407496094703674,
0.5545497536659241,
-0.09425131231546402,
0.812786340713501,
0.06375768035650253,
0.23916684091091156,
-0.5297326445579529,
0.48520854115486145,
0.05732753872871399,
-0.5125414133071899,
-0.15690742433071136,
-0.5244712233543396,
-0.913853645324707,
-0.11959975957870483,
-0.448432058095932,
-0.722260057926178,
0.5175471901893616,
0.09732862561941147,
-0.23154617846012115,
0.33073100447654724,
-0.6069156527519226,
0.888370931148529,
-0.061914265155792236,
-0.45302829146385193,
0.3034766614437103,
-1.0387318134307861,
0.1818021982908249,
0.17358729243278503,
0.25368666648864746,
-0.4337257146835327,
0.02154696173965931,
0.9809223413467407,
-0.801657497882843,
0.9483550190925598,
-0.3675575852394104,
0.13680103421211243,
0.5931420922279358,
-0.3618827164173126,
0.4810370206832886,
0.10942104458808899,
-0.2754520773887634,
0.34342488646507263,
0.026765746995806694,
-0.4544941186904907,
-0.44348305463790894,
0.670437216758728,
-0.6946802139282227,
0.08054430037736893,
-0.34182310104370117,
-0.4490812420845032,
0.0623248852789402,
0.15311865508556366,
0.2713358402252197,
0.3619734048843384,
-0.011179054155945778,
0.09462343901395798,
0.40903550386428833,
-0.1394331008195877,
0.30916881561279297,
0.02274441160261631,
-0.1119602769613266,
-0.7517971396446228,
0.8890589475631714,
0.1529083251953125,
0.023690909147262573,
-0.05175682157278061,
0.3740052282810211,
-0.3810397982597351,
-0.12339775264263153,
-0.5740155577659607,
0.4896275997161865,
-0.3994015157222748,
-0.36882972717285156,
-0.5235973000526428,
-0.16945716738700867,
-0.6439443826675415,
-0.12518002092838287,
-0.2257554978132248,
-0.5223681330680847,
-0.3552156388759613,
-0.23158423602581024,
0.9916489720344543,
0.4174187481403351,
-0.6564269661903381,
0.1414678543806076,
-0.5412907600402832,
0.27142980694770813,
-0.09038452059030533,
0.6362479329109192,
-0.07580961287021637,
-0.3121521472930908,
-0.22502441704273224,
0.09254976361989975,
-0.1955518126487732,
-0.7140628099441528,
0.3226501941680908,
-0.07147853821516037,
0.3647475242614746,
0.13041570782661438,
0.08597417920827866,
0.6536168456077576,
-0.044203151017427444,
0.625184178352356,
0.3007794916629791,
-0.8000033497810364,
0.6635929346084595,
-0.5382854342460632,
0.1531502604484558,
0.7413738369941711,
0.3762419521808624,
-0.6066768169403076,
-0.09895415604114532,
-0.9674513339996338,
-0.8609285950660706,
0.8160862922668457,
0.4410240650177002,
0.07694393396377563,
0.2213643193244934,
0.5714356303215027,
-0.2016865313053131,
0.3423921763896942,
-0.6979453563690186,
-0.8725857138633728,
-0.37706440687179565,
-0.38538309931755066,
-0.04697713628411293,
-0.08489963412284851,
-0.2463216483592987,
-0.692589521408081,
0.7777993083000183,
-0.14867821335792542,
0.37042075395584106,
0.37728703022003174,
0.4558256268501282,
-0.22966459393501282,
-0.023968059569597244,
0.24257482588291168,
0.3408605754375458,
-0.24876661598682404,
-0.317083477973938,
-0.17155975103378296,
-0.5906975269317627,
-0.09192944318056107,
0.5203478336334229,
-0.3869261145591736,
-0.06917890161275864,
0.2938094139099121,
0.9285697340965271,
-0.024678025394678116,
-0.2514277696609497,
0.5850959420204163,
-0.08817198127508163,
-0.40265944600105286,
-0.38270655274391174,
0.02163904719054699,
0.1565227508544922,
0.2370007336139679,
0.03124217502772808,
0.14205244183540344,
-0.10589822381734848,
-0.4442775845527649,
0.3865640163421631,
0.26022496819496155,
-0.4034256041049957,
-0.49159273505210876,
0.586259663105011,
0.06089748442173004,
-0.13752560317516327,
0.45906245708465576,
-0.1397656798362732,
-0.5936884880065918,
0.8024070858955383,
0.15077044069766998,
0.8097503781318665,
-0.16303257644176483,
0.3739822506904602,
0.7568228244781494,
0.1811976283788681,
-0.12497473508119583,
0.5348118543624878,
-0.21828895807266235,
-0.646342933177948,
-0.05177624151110649,
-0.5936774015426636,
-0.09661007672548294,
0.06503113359212875,
-0.8244986534118652,
0.4294303357601166,
-0.4779268205165863,
-0.29339492321014404,
0.024043923243880272,
0.35938677191734314,
-0.7071948647499084,
0.2024257779121399,
-0.05262216180562973,
1.0206745862960815,
-1.102349042892456,
0.46152547001838684,
0.6558020114898682,
-0.675625205039978,
-1.1630686521530151,
-0.1396145224571228,
0.19653141498565674,
-0.5547122359275818,
0.15364524722099304,
0.19327154755592346,
0.5041314959526062,
-0.06667450070381165,
-0.9198784828186035,
-0.665466845035553,
1.1824458837509155,
0.07084332406520844,
-0.23794923722743988,
0.3290054500102997,
0.11353124678134918,
0.6599845886230469,
-0.4025658965110779,
0.35677728056907654,
0.6607304215431213,
0.6938621401786804,
0.3177025020122528,
-0.7042007446289062,
0.28509294986724854,
-0.6391773223876953,
-0.22375039756298065,
0.05638670548796654,
-1.0164673328399658,
0.6363826990127563,
-0.18182148039340973,
-0.033757273107767105,
0.03529166430234909,
0.6057336330413818,
0.4260803461074829,
0.45221585035324097,
0.4055135250091553,
0.7454897165298462,
0.839678943157196,
-0.3353841006755829,
1.2016723155975342,
-0.2665133476257324,
0.6186494827270508,
0.7930735349655151,
0.053073637187480927,
0.4933425188064575,
0.22564640641212463,
-0.3614760935306549,
0.5465631484985352,
0.6688199639320374,
-0.46066731214523315,
0.22854013741016388,
0.40141990780830383,
-0.10118044912815094,
-0.046944666653871536,
-0.2605840265750885,
-0.5657918453216553,
0.28772929310798645,
0.21176186203956604,
-0.4073965847492218,
0.038352254778146744,
-0.031215276569128036,
0.39785298705101013,
-0.05135924741625786,
-0.28499627113342285,
0.6080583930015564,
0.08370217680931091,
-0.3993731737136841,
0.49634063243865967,
-0.15232859551906586,
0.674344539642334,
-0.5580477714538574,
0.15510930120944977,
-0.09119920432567596,
0.1038922667503357,
-0.6467075943946838,
-1.0571088790893555,
0.39102256298065186,
-0.021761419251561165,
-0.2873077690601349,
-0.32656821608543396,
0.7285696864128113,
-0.49264922738075256,
-0.8125435709953308,
0.24233323335647583,
0.20695848762989044,
0.30481716990470886,
0.10798165202140808,
-1.3074275255203247,
0.5681288838386536,
0.18030183017253876,
-0.4249906837940216,
0.1281641572713852,
0.48062995076179504,
0.1692386120557785,
0.5346975326538086,
0.7127248644828796,
0.25109773874282837,
-0.24101364612579346,
0.11722154170274734,
1.0993256568908691,
-0.5408474802970886,
-0.4417458474636078,
-0.7845394611358643,
0.9259464144706726,
-0.3650493025779724,
-0.36954593658447266,
0.7079043388366699,
0.7523971199989319,
0.8271793127059937,
-0.000330129376379773,
0.8354905843734741,
-0.6262788772583008,
0.6626803874969482,
-0.19416926801204681,
0.9170837998390198,
-0.6641349196434021,
-0.04996408522129059,
-0.7674248218536377,
-0.5587499141693115,
-0.4307815134525299,
0.6766886711120605,
-0.19634373486042023,
0.21870650351047516,
0.2493337094783783,
0.9441483020782471,
0.03358449041843414,
0.11636976897716522,
-0.2554621696472168,
0.29333925247192383,
0.2724035084247589,
0.5362440943717957,
0.42338284850120544,
-0.8954521417617798,
0.32317712903022766,
-0.7397012114524841,
-0.3295454978942871,
0.05452670156955719,
-0.8418466448783875,
-0.9316853880882263,
-0.9240716695785522,
-0.6758817434310913,
-0.8106124401092529,
-0.30897149443626404,
1.1088511943817139,
0.7038561105728149,
-0.6961187124252319,
-0.2369396984577179,
0.040694478899240494,
0.2570648193359375,
-0.07861417531967163,
-0.3059118688106537,
0.6395969986915588,
0.39015132188796997,
-0.6310552358627319,
-0.12687727808952332,
0.011798846535384655,
0.2718803286552429,
0.06391700357198715,
-0.09387878328561783,
-0.06726893782615662,
-0.25697261095046997,
0.3470451533794403,
0.48766571283340454,
-0.3018893003463745,
-0.045161448419094086,
-0.24032965302467346,
-0.0017715936992317438,
0.17910729348659515,
0.4609321653842926,
-0.5107558965682983,
0.1948074847459793,
0.6463201642036438,
0.26459184288978577,
0.5070138573646545,
0.25888359546661377,
0.013136032037436962,
-0.46280577778816223,
0.08939555287361145,
-0.018623484298586845,
0.3264293670654297,
0.40851980447769165,
-0.4723566472530365,
0.7769705057144165,
0.5833758115768433,
-0.4955821633338928,
-0.808592677116394,
-0.16160978376865387,
-1.3297555446624756,
0.11248431354761124,
1.0427075624465942,
-0.019947199150919914,
-0.5621515512466431,
0.06598418205976486,
-0.256919801235199,
0.13250939548015594,
-0.5724957585334778,
0.4960315525531769,
0.5256325006484985,
-0.10547257214784622,
0.11107379198074341,
-0.33394625782966614,
0.630852460861206,
-0.05265936627984047,
-0.9835951328277588,
0.1541694700717926,
0.4314436614513397,
0.46803590655326843,
0.28721076250076294,
0.852724015712738,
-0.2704513967037201,
0.04466719180345535,
-0.03885964676737785,
0.28974488377571106,
-0.2671421468257904,
-0.003955496475100517,
-0.38710907101631165,
-0.12931904196739197,
-0.5064740180969238,
-0.20543870329856873
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/michael-jackson | huggingartists | 2022-10-25T09:38:33Z | 292 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:38:33Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/michael-jackson"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 2.372605 MB
<div class="inline-flex flex-col" style="line-height: 1.5;">
<div class="flex">
<div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('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.6991984844207764,
-0.5425882935523987,
0.0655108243227005,
0.26404890418052673,
-0.2491089403629303,
0.04502085596323013,
-0.3246789574623108,
-0.4174686372280121,
0.8459217548370361,
0.33498525619506836,
-0.8831456303596497,
-0.8159537315368652,
-0.6203461289405823,
0.16192059218883514,
-0.10602051019668579,
1.2273951768875122,
-0.2176761031150818,
-0.36170682311058044,
-0.27023229002952576,
-0.21861545741558075,
-0.23790335655212402,
-0.36940595507621765,
-0.3214184045791626,
-0.3057239353656769,
0.4261808395385742,
0.5160301923751831,
0.7729905843734741,
0.9119089245796204,
0.5880705714225769,
0.34585559368133545,
-0.13882994651794434,
0.04965822398662567,
-0.3983788788318634,
-0.1071024015545845,
0.10774105787277222,
-0.21408013999462128,
-0.6621631979942322,
0.24953511357307434,
0.5514536499977112,
0.4445655643939972,
0.004111414775252342,
0.48144346475601196,
0.07104917615652084,
0.8880516886711121,
-0.3062528073787689,
0.47363877296447754,
-0.24507172405719757,
-0.11904871463775635,
-0.25514480471611023,
0.0237942673265934,
0.20920401811599731,
-0.5439963340759277,
-0.004946119152009487,
-0.7387444972991943,
0.027219941839575768,
0.027344031259417534,
1.02934730052948,
-0.025621118023991585,
0.06377957761287689,
-0.2191227376461029,
-0.17440985143184662,
0.5195968747138977,
-0.5761707425117493,
-0.01717093586921692,
0.5519214868545532,
0.1685764193534851,
-0.012028593569993973,
-0.5800034403800964,
-0.6511373519897461,
0.030468013137578964,
-0.1584683358669281,
0.2710122764110565,
-0.14860038459300995,
-0.2924405634403229,
0.5026901960372925,
0.5673480033874512,
-0.4862857758998871,
-0.28028804063796997,
-0.5175598859786987,
-0.08741601556539536,
1.1653774976730347,
0.11594954133033752,
0.4125920832157135,
-0.4907822012901306,
-0.19058963656425476,
-0.37344375252723694,
-0.21242474019527435,
0.338125079870224,
0.5380191206932068,
0.5213534832000732,
-1.0414516925811768,
0.6711699366569519,
-0.18515920639038086,
0.5451696515083313,
0.16523011028766632,
-0.08838629722595215,
0.8003944754600525,
-0.36847683787345886,
-0.11792317032814026,
-0.1207684725522995,
1.0813690423965454,
0.6872375011444092,
0.24808549880981445,
0.10207433253526688,
-0.057876475155353546,
-0.008010114543139935,
-0.14736874401569366,
-0.8410272002220154,
-0.3892717659473419,
0.629914402961731,
-0.6244796514511108,
-0.5815667510032654,
0.2216833531856537,
-0.9653019309043884,
-0.2872809171676636,
-0.3408997654914856,
0.26607877016067505,
-0.38379815220832825,
-0.5707765221595764,
0.10573306679725647,
-0.27853304147720337,
0.048361439257860184,
0.010412872768938541,
-0.5778418183326721,
0.15816330909729004,
0.57539302110672,
0.7767848968505859,
0.17783983051776886,
-0.3185085356235504,
-0.22861577570438385,
-0.12985773384571075,
-0.1472000628709793,
0.6188328266143799,
-0.3119388222694397,
-0.3516278862953186,
-0.14499437808990479,
0.3444264233112335,
-0.010751836933195591,
-0.3025147020816803,
0.839740514755249,
0.06451312452554703,
0.1739369034767151,
-0.6331891417503357,
-0.43446382880210876,
-0.000012600904483406339,
0.3272140324115753,
-0.7758327126502991,
0.9994732141494751,
0.3734806180000305,
-0.9993137121200562,
0.2193114459514618,
-0.8674284219741821,
-0.3203873336315155,
-0.03094446286559105,
0.05619026720523834,
-0.8287929892539978,
-0.20082153379917145,
0.20803925395011902,
0.7414714097976685,
-0.2998175621032715,
0.04676898941397667,
-0.6646327376365662,
-0.15705624222755432,
0.39732465147972107,
0.21802811324596405,
1.1741960048675537,
0.16778872907161713,
-0.18246354162693024,
0.029673129320144653,
-0.9659667611122131,
0.06576208025217056,
0.4503251612186432,
-0.2148515284061432,
-0.04561946541070938,
-0.27023202180862427,
0.4040653109550476,
0.3228316307067871,
0.05415155366063118,
-0.5576336979866028,
0.4210832417011261,
-0.16307932138442993,
0.35361921787261963,
0.7138490080833435,
0.06643444299697876,
0.33959275484085083,
-0.643190324306488,
0.3998846411705017,
0.18408413231372833,
0.38411253690719604,
-0.001238919561728835,
-0.5418844223022461,
-0.4872685968875885,
-0.2790170907974243,
0.2931634783744812,
0.46708545088768005,
-0.69611656665802,
1.0051453113555908,
-0.3461373746395111,
-0.8116024136543274,
-0.6032160520553589,
0.1820773035287857,
0.18417343497276306,
0.5330455303192139,
0.4038662016391754,
-0.44650518894195557,
-0.6629191637039185,
-0.7343232035636902,
0.012641888111829758,
-0.28236886858940125,
0.14109565317630768,
0.43848174810409546,
0.7874906659126282,
-0.2415056824684143,
0.8532751202583313,
-0.5950824618339539,
-0.2737591564655304,
-0.2835957109928131,
-0.32129865884780884,
0.3800048232078552,
0.8250249624252319,
0.6879934668540955,
-0.8388918042182922,
-0.4593728184700012,
-0.25643137097358704,
-0.7470152378082275,
-0.09798230230808258,
-0.09481664001941681,
-0.3342095613479614,
-0.006617370061576366,
0.16180424392223358,
-0.6605259776115417,
0.5282059907913208,
0.4698699116706848,
-0.6929880380630493,
0.4905199706554413,
0.15133711695671082,
0.09871015697717667,
-1.3139740228652954,
0.3608626425266266,
0.2277485430240631,
0.04244327172636986,
-0.6109780669212341,
-0.27085602283477783,
-0.07153680920600891,
0.014240584336221218,
-0.12392427027225494,
0.5638001561164856,
-0.38309186697006226,
0.28711602091789246,
0.10796889662742615,
0.09941940754652023,
0.09687187522649765,
0.4581599533557892,
-0.10364185273647308,
0.22423221170902252,
1.0303529500961304,
-0.3990477919578552,
0.6562872529029846,
0.5452913641929626,
-0.1813163161277771,
0.8624379634857178,
-0.7033791542053223,
0.02259594388306141,
-0.3076123595237732,
0.3645728528499603,
-0.8105091452598572,
-0.49669942259788513,
0.8844380974769592,
-0.709754467010498,
0.4428548514842987,
-0.27576395869255066,
-0.5695286393165588,
-0.8129410743713379,
-0.6401655673980713,
0.08879712969064713,
0.5107602477073669,
-0.38301634788513184,
0.4592569172382355,
0.5899825692176819,
0.12241464853286743,
-0.3772163987159729,
-0.817466139793396,
-0.06769835203886032,
-0.38024991750717163,
-0.7593792676925659,
0.3612689673900604,
-0.3238571584224701,
-0.11471778899431229,
0.14155519008636475,
0.0988771989941597,
0.14523401856422424,
0.021960051730275154,
0.42657628655433655,
0.32750338315963745,
0.07171710580587387,
0.006355299148708582,
-0.08444759994745255,
-0.20736700296401978,
0.1272423267364502,
-0.19914259016513824,
0.2394658774137497,
-0.2833485007286072,
-0.1263430118560791,
-0.6482089757919312,
0.2561514675617218,
0.4686516523361206,
-0.1743806153535843,
0.7566813826560974,
0.8368882536888123,
-0.23219089210033417,
0.04552580416202545,
-0.4650261104106903,
-0.14813359081745148,
-0.41627824306488037,
0.05275098606944084,
-0.27584677934646606,
-0.6202211976051331,
0.9027467966079712,
0.2128874957561493,
0.10785987973213196,
0.6672065258026123,
0.5322901010513306,
-0.06542834639549255,
0.7174988985061646,
0.31750673055648804,
-0.313754141330719,
0.5426461100578308,
-0.6689339876174927,
-0.17154528200626373,
-0.8180547952651978,
-0.42677757143974304,
-0.44076985120773315,
-0.5682141780853271,
-0.8837141394615173,
-0.4338865280151367,
0.169343963265419,
0.20049738883972168,
-0.30376577377319336,
0.4052867591381073,
-0.9420933127403259,
0.26433292031288147,
0.37638047337532043,
0.27001136541366577,
-0.10888715833425522,
0.12526816129684448,
0.07954282313585281,
0.2058665156364441,
-0.5395860075950623,
-0.2931067943572998,
1.1531420946121216,
0.4801296591758728,
0.5049188733100891,
-0.048571567982435226,
0.8226041197776794,
0.05879851058125496,
0.2995027005672455,
-0.4787437319755554,
0.5036182999610901,
0.08481843024492264,
-0.582502007484436,
-0.14348338544368744,
-0.5073120594024658,
-0.9127163290977478,
-0.11762183159589767,
-0.45498114824295044,
-0.6940078139305115,
0.4808383882045746,
0.14239510893821716,
-0.1789030134677887,
0.4270108640193939,
-0.6526668667793274,
0.8319061994552612,
-0.04710911586880684,
-0.4049712121486664,
0.3427532911300659,
-1.0556172132492065,
0.19914510846138,
0.2028537392616272,
0.2957485616207123,
-0.4206809997558594,
-0.021328052505850792,
0.9843006730079651,
-0.7633281350135803,
0.8894389867782593,
-0.4027322232723236,
0.19136984646320343,
0.5927764773368835,
-0.2958957552909851,
0.42629730701446533,
0.14427025616168976,
-0.238149493932724,
0.32727310061454773,
0.012949795462191105,
-0.503298282623291,
-0.4565073251724243,
0.6793952584266663,
-0.7698945999145508,
0.014920370653271675,
-0.3531750738620758,
-0.4426427483558655,
-0.010094411671161652,
0.14862261712551117,
0.2683855891227722,
0.31604793667793274,
0.05558518320322037,
0.12001611292362213,
0.3712203800678253,
-0.14096786081790924,
0.3149567246437073,
0.045207105576992035,
-0.13905012607574463,
-0.8142573833465576,
0.8844318389892578,
0.15690480172634125,
0.0540522038936615,
-0.03942979872226715,
0.41655904054641724,
-0.3143845498561859,
-0.14272518455982208,
-0.6061697602272034,
0.44584155082702637,
-0.4209353029727936,
-0.4119257628917694,
-0.5311760902404785,
-0.19240383803844452,
-0.665499746799469,
-0.1994844675064087,
-0.2634597420692444,
-0.49319544434547424,
-0.35913926362991333,
-0.24852941930294037,
1.0596891641616821,
0.41996973752975464,
-0.723750650882721,
0.11569515615701675,
-0.5189354419708252,
0.3641347289085388,
-0.12639765441417694,
0.6722820401191711,
-0.08519812673330307,
-0.3301216959953308,
-0.2313688099384308,
0.09605345129966736,
-0.21080374717712402,
-0.7167554497718811,
0.23130881786346436,
-0.02408950962126255,
0.3576466739177704,
0.17874909937381744,
0.13435479998588562,
0.719539225101471,
-0.029664136469364166,
0.6777137517929077,
0.3218711018562317,
-0.8053871393203735,
0.6710526943206787,
-0.4600011110305786,
0.18885532021522522,
0.7924028635025024,
0.35587212443351746,
-0.6672295928001404,
-0.1964084655046463,
-0.9328678846359253,
-0.8515650629997253,
0.7988328337669373,
0.4765949547290802,
0.06342730671167374,
0.18896044790744781,
0.5406992435455322,
-0.18881870806217194,
0.29666969180107117,
-0.6508763432502747,
-0.939500629901886,
-0.41822776198387146,
-0.3826484680175781,
-0.06923042982816696,
-0.07887513190507889,
-0.24190449714660645,
-0.7076615691184998,
0.8130314946174622,
-0.1014973372220993,
0.3306656777858734,
0.45010310411453247,
0.3924892544746399,
-0.23133553564548492,
-0.015072854235768318,
0.25922954082489014,
0.3705819845199585,
-0.25682416558265686,
-0.2601586580276489,
-0.17527197301387787,
-0.6582410335540771,
-0.08170131593942642,
0.5145898461341858,
-0.33619147539138794,
-0.05920635163784027,
0.3284403085708618,
0.8577728867530823,
-0.08010508120059967,
-0.25454002618789673,
0.574593722820282,
-0.09014569967985153,
-0.4066680669784546,
-0.39134281873703003,
-0.018821600824594498,
0.1738974004983902,
0.24863043427467346,
0.07593006640672684,
0.09070780873298645,
-0.10304579883813858,
-0.4351452589035034,
0.3998623192310333,
0.23292282223701477,
-0.4026876986026764,
-0.4253413677215576,
0.542670488357544,
0.042631808668375015,
-0.1541830599308014,
0.4598253667354584,
-0.19179661571979523,
-0.618994951248169,
0.7301807999610901,
0.09035781025886536,
0.7998422980308533,
-0.12806206941604614,
0.2937676012516022,
0.7195234298706055,
0.24046790599822998,
-0.00007632870256202295,
0.584598183631897,
-0.1951654553413391,
-0.6295623183250427,
-0.011292092502117157,
-0.5599466562271118,
-0.09288019686937332,
0.10569936037063599,
-0.800841748714447,
0.40704822540283203,
-0.5062641501426697,
-0.25402384996414185,
-0.002864949172362685,
0.3929356336593628,
-0.7467246651649475,
0.19602756202220917,
0.01639050431549549,
1.008487343788147,
-1.0239468812942505,
0.4534817636013031,
0.6584268808364868,
-0.6665048599243164,
-1.2335184812545776,
-0.16428717970848083,
0.22717151045799255,
-0.5510600209236145,
0.18958915770053864,
0.216180682182312,
0.5144288539886475,
-0.10262979567050934,
-0.9129294753074646,
-0.7107551693916321,
1.159053087234497,
0.05525026097893715,
-0.2547575831413269,
0.3870924115180969,
0.17857128381729126,
0.6092022061347961,
-0.4045194983482361,
0.3064529597759247,
0.6712412238121033,
0.7211599946022034,
0.2974565029144287,
-0.688508927822113,
0.2879045307636261,
-0.641118586063385,
-0.2101694941520691,
0.05377022549510002,
-0.9431100487709045,
0.6064141988754272,
-0.18235954642295837,
-0.01205386407673359,
-0.026640763506293297,
0.6582589745521545,
0.49736592173576355,
0.4440661668777466,
0.4995252192020416,
0.7037466764450073,
0.7702945470809937,
-0.29889148473739624,
1.198175072669983,
-0.30645760893821716,
0.6308234930038452,
0.7515763640403748,
0.08209701627492905,
0.4674261510372162,
0.30906111001968384,
-0.3189544975757599,
0.5266128182411194,
0.6768049597740173,
-0.4664022624492645,
0.21868449449539185,
0.4376819431781769,
-0.0568380169570446,
-0.038378044962882996,
-0.22050616145133972,
-0.5952051281929016,
0.2676175832748413,
0.1802612543106079,
-0.44438013434410095,
0.09272810816764832,
-0.011123782023787498,
0.4457976520061493,
-0.08397846668958664,
-0.3337582051753998,
0.6103342175483704,
0.04713604226708412,
-0.37913748621940613,
0.5297679305076599,
-0.21063381433486938,
0.6659926772117615,
-0.5356028079986572,
0.17990851402282715,
-0.10548752546310425,
0.1315680891275406,
-0.6060279607772827,
-1.0635584592819214,
0.3490436375141144,
-0.0537467822432518,
-0.23620018362998962,
-0.30346235632896423,
0.6909109354019165,
-0.483510285615921,
-0.8635504245758057,
0.21467284858226776,
0.23549512028694153,
0.33654746413230896,
0.12696082890033722,
-1.3200526237487793,
0.5749944448471069,
0.1303253322839737,
-0.5576475262641907,
0.12727466225624084,
0.5176661014556885,
0.22860471904277802,
0.5093029737472534,
0.7255482077598572,
0.26483049988746643,
-0.2503674328327179,
0.13932426273822784,
1.101538062095642,
-0.5869499444961548,
-0.43337389826774597,
-0.8106850981712341,
0.8956536650657654,
-0.4213279187679291,
-0.3901688754558563,
0.7090973854064941,
0.8100128173828125,
0.8786262273788452,
0.03015839494764805,
0.812862753868103,
-0.6318016648292542,
0.7126563191413879,
-0.18634220957756042,
0.9379198551177979,
-0.7175360321998596,
-0.054544273763895035,
-0.7852234244346619,
-0.5216063261032104,
-0.44693681597709656,
0.6326214671134949,
-0.1574113816022873,
0.282670795917511,
0.2585081458091736,
0.9331210851669312,
0.030460545793175697,
0.10402145981788635,
-0.2103642076253891,
0.2786354720592499,
0.3254093527793884,
0.5174462199211121,
0.42623525857925415,
-0.8774589896202087,
0.408434122800827,
-0.8056716918945312,
-0.29140201210975647,
0.018805621191859245,
-0.8429998755455017,
-0.957457423210144,
-0.9496901035308838,
-0.6607752442359924,
-0.8377599716186523,
-0.28140193223953247,
1.1329220533370972,
0.713497519493103,
-0.7344830632209778,
-0.24305130541324615,
0.09305530786514282,
0.2706644833087921,
-0.09144913405179977,
-0.3252307176589966,
0.659130871295929,
0.3905382752418518,
-0.5871073603630066,
-0.16418805718421936,
0.06901483982801437,
0.29684463143348694,
0.027006281539797783,
-0.10067348182201385,
-0.1271531879901886,
-0.25913968682289124,
0.3590277135372162,
0.44772475957870483,
-0.34174221754074097,
-0.12159159034490585,
-0.275870680809021,
0.004920422565191984,
0.20204348862171173,
0.5340907573699951,
-0.5374866127967834,
0.18899933993816376,
0.5989816784858704,
0.28616204857826233,
0.4114556610584259,
0.2389432191848755,
0.017117474228143692,
-0.4673263132572174,
0.034614671021699905,
0.003565542632713914,
0.32869523763656616,
0.4396524429321289,
-0.47281551361083984,
0.7391090989112854,
0.5846450924873352,
-0.49480724334716797,
-0.8367348313331604,
-0.13407966494560242,
-1.3642879724502563,
0.06875879317522049,
1.0682283639907837,
0.014324589632451534,
-0.5318209528923035,
0.017444422468543053,
-0.22332541644573212,
0.19276462495326996,
-0.6064753532409668,
0.49323004484176636,
0.5384929180145264,
-0.11632484197616577,
0.07741750776767731,
-0.3069063425064087,
0.6116844415664673,
-0.07122078537940979,
-0.9538151621818542,
0.1856570839881897,
0.3922639787197113,
0.4275626838207245,
0.3306737244129181,
0.7414242029190063,
-0.2521485388278961,
0.045787811279296875,
-0.041852597147226334,
0.28411832451820374,
-0.3121849298477173,
0.054552268236875534,
-0.3350484073162079,
-0.08432108163833618,
-0.48965126276016235,
-0.2146349996328354
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/rex-orange-county | huggingartists | 2022-10-25T09:42:49Z | 292 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:42:49Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/rex-orange-county"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 0.116278 MB
<div class="inline-flex flex-col" style="line-height: 1.5;">
<div class="flex">
<div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('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.6573411822319031,
-0.49432438611984253,
0.13712620735168457,
0.2832823097705841,
-0.23443365097045898,
-0.010315431281924248,
-0.2870233952999115,
-0.4813744127750397,
0.8943132758140564,
0.3699665367603302,
-0.851744532585144,
-0.8481714129447937,
-0.5369071364402771,
0.18328765034675598,
-0.04024660959839821,
1.1953545808792114,
-0.1886063665151596,
-0.4164300858974457,
-0.2875053286552429,
-0.26445937156677246,
-0.2589743435382843,
-0.28519657254219055,
-0.3292136490345001,
-0.3541839122772217,
0.377107173204422,
0.5577932596206665,
0.7431342601776123,
0.9930816888809204,
0.4581482410430908,
0.36748695373535156,
-0.11768501996994019,
-0.03570504114031792,
-0.3411741554737091,
-0.1630665510892868,
0.15070581436157227,
-0.3013407588005066,
-0.6469355821609497,
0.23836591839790344,
0.5144100189208984,
0.43319171667099,
-0.10122931748628616,
0.44088125228881836,
0.008704694919288158,
0.7939338088035583,
-0.2895355820655823,
0.5044335126876831,
-0.31971368193626404,
-0.15877653658390045,
-0.2710359990596771,
0.0441649928689003,
0.212598517537117,
-0.6696946620941162,
0.030152177438139915,
-0.7557957768440247,
0.07754397392272949,
0.037350136786699295,
1.0548540353775024,
0.04471500962972641,
0.05846821144223213,
-0.20942586660385132,
-0.12889987230300903,
0.5306527614593506,
-0.5376482605934143,
-0.09147472679615021,
0.6209018230438232,
0.13730795681476593,
0.011907054111361504,
-0.6045209169387817,
-0.6567748785018921,
0.05877349525690079,
-0.13296106457710266,
0.2761334478855133,
-0.20789822936058044,
-0.25779086351394653,
0.4650319814682007,
0.5484336018562317,
-0.4839131534099579,
-0.25973591208457947,
-0.493377149105072,
-0.14505067467689514,
1.1767973899841309,
0.1502424031496048,
0.3775845468044281,
-0.49636900424957275,
-0.29528698325157166,
-0.43738606572151184,
-0.21379855275154114,
0.3351213335990906,
0.5766951441764832,
0.4719674587249756,
-0.940483033657074,
0.6361889839172363,
-0.17726291716098785,
0.48672574758529663,
0.14788246154785156,
0.006091916933655739,
0.7935768365859985,
-0.4377838671207428,
-0.129741832613945,
-0.046070318669080734,
1.0624419450759888,
0.685041606426239,
0.251674085855484,
0.09319230914115906,
-0.07636624574661255,
0.048798348754644394,
-0.19070203602313995,
-0.8036186099052429,
-0.34254205226898193,
0.6497638821601868,
-0.5779569149017334,
-0.5511482954025269,
0.13876862823963165,
-0.9861289858818054,
-0.21757911145687103,
-0.3647456169128418,
0.21109171211719513,
-0.38941681385040283,
-0.5703751444816589,
0.13785798847675323,
-0.3134593069553375,
0.09339240938425064,
0.043412644416093826,
-0.5593332052230835,
0.18025493621826172,
0.5998726487159729,
0.7546623349189758,
0.20270083844661713,
-0.3235286772251129,
-0.24412007629871368,
-0.19688928127288818,
-0.14014378190040588,
0.7126705646514893,
-0.3210568130016327,
-0.32804158329963684,
-0.14327803254127502,
0.3582202196121216,
-0.14369601011276245,
-0.34436747431755066,
0.8474367260932922,
0.03146689385175705,
0.11263920366764069,
-0.5538621544837952,
-0.39011919498443604,
0.023355217650532722,
0.2635047733783722,
-0.8000088930130005,
1.092521071434021,
0.3737283945083618,
-0.9566964507102966,
0.17845694720745087,
-0.750004768371582,
-0.3209836781024933,
-0.01820647343993187,
0.15040701627731323,
-0.7850005626678467,
-0.16577431559562683,
0.1495816558599472,
0.6886687278747559,
-0.3150891363620758,
0.04209200665354729,
-0.6450594067573547,
-0.0845363587141037,
0.3352881669998169,
0.265143483877182,
1.209608554840088,
0.17112751305103302,
-0.1102338507771492,
0.03722485899925232,
-0.9727015495300293,
0.1461798995733261,
0.4061949551105499,
-0.20103973150253296,
-0.1531262993812561,
-0.29294320940971375,
0.40693309903144836,
0.25338342785835266,
0.10466480255126953,
-0.6251187324523926,
0.3902767598628998,
-0.1748272180557251,
0.41015541553497314,
0.7330589294433594,
-0.036058083176612854,
0.3546949625015259,
-0.6487733721733093,
0.46678805351257324,
0.10943620651960373,
0.33279886841773987,
0.001470424234867096,
-0.5427818894386292,
-0.43299371004104614,
-0.2566283941268921,
0.29523593187332153,
0.5087905526161194,
-0.7308604717254639,
0.9944742321968079,
-0.34557703137397766,
-0.8280248045921326,
-0.5662193894386292,
0.07419686019420624,
0.2081318348646164,
0.5590928196907043,
0.38005173206329346,
-0.43761110305786133,
-0.621635377407074,
-0.6166813373565674,
0.10153964906930923,
-0.2740609347820282,
0.20723716914653778,
0.4642682671546936,
0.8098680973052979,
-0.24997283518314362,
0.924379289150238,
-0.6701076626777649,
-0.3346424698829651,
-0.26158440113067627,
-0.3136664628982544,
0.38972902297973633,
0.7343347072601318,
0.6982933878898621,
-0.8205312490463257,
-0.5166817307472229,
-0.19785644114017487,
-0.6349908709526062,
-0.1266288012266159,
0.020880354568362236,
-0.2335839569568634,
0.01110660471022129,
0.12459349632263184,
-0.6930726766586304,
0.568843424320221,
0.4926471412181854,
-0.7002111077308655,
0.549376368522644,
0.07184264063835144,
0.013272721320390701,
-1.2852165699005127,
0.34625303745269775,
0.23656131327152252,
0.0448254831135273,
-0.5675234794616699,
-0.26328691840171814,
-0.10485425591468811,
-0.03240927308797836,
-0.09820802509784698,
0.5564383864402771,
-0.35349035263061523,
0.2741455137729645,
0.1685807853937149,
0.067345030605793,
0.06802304834127426,
0.4113989472389221,
-0.04614588990807533,
0.29296544194221497,
0.9676976799964905,
-0.3556908369064331,
0.6928637027740479,
0.5518791079521179,
-0.1996334344148636,
0.8521398901939392,
-0.7695325613021851,
0.011712554842233658,
-0.28127536177635193,
0.3763132095336914,
-0.8268494606018066,
-0.5431212782859802,
0.7451012134552002,
-0.6490849852561951,
0.3306143283843994,
-0.2605668902397156,
-0.5345785021781921,
-0.7647356390953064,
-0.6656911969184875,
0.14881664514541626,
0.456335186958313,
-0.3571511507034302,
0.42829909920692444,
0.6229865550994873,
0.0833599865436554,
-0.38919180631637573,
-0.8268340826034546,
-0.11177358031272888,
-0.42087477445602417,
-0.8368092775344849,
0.41631975769996643,
-0.27748826146125793,
-0.09667843580245972,
0.2059183269739151,
0.16568391025066376,
-0.03173619508743286,
-0.0037432743702083826,
0.33304616808891296,
0.23147545754909515,
0.010058924555778503,
0.02531280554831028,
-0.12723006308078766,
-0.2370765209197998,
0.10734184831380844,
-0.17120245099067688,
0.250813752412796,
-0.29225000739097595,
-0.06138276681303978,
-0.6552534699440002,
0.21469955146312714,
0.4517611861228943,
-0.2659383714199066,
0.6634705066680908,
0.738566517829895,
-0.22634682059288025,
-0.003147321520373225,
-0.4752962291240692,
-0.12792763113975525,
-0.40465402603149414,
0.03201499581336975,
-0.2101689726114273,
-0.6145628690719604,
0.982321560382843,
0.1699739545583725,
0.00980602391064167,
0.6364561915397644,
0.41182297468185425,
-0.03612324967980385,
0.6442093253135681,
0.34182417392730713,
-0.24412663280963898,
0.5556272864341736,
-0.6659231781959534,
-0.26330360770225525,
-0.8484740853309631,
-0.39944884181022644,
-0.5453985333442688,
-0.4734921455383301,
-0.8725129961967468,
-0.4520381987094879,
0.20208919048309326,
0.09783520549535751,
-0.1976814717054367,
0.5173819065093994,
-0.9504848122596741,
0.30218178033828735,
0.33709999918937683,
0.27872589230537415,
-0.10098548978567123,
0.11276256293058395,
0.0661325678229332,
0.17180904746055603,
-0.5949551463127136,
-0.24932372570037842,
1.1604000329971313,
0.48370420932769775,
0.5299592614173889,
-0.09306539595127106,
0.8779476284980774,
0.007685109972953796,
0.21409906446933746,
-0.5303971767425537,
0.4712258279323578,
-0.029349718242883682,
-0.4637199938297272,
-0.19143621623516083,
-0.5257883667945862,
-1.0060545206069946,
-0.11420588195323944,
-0.37171486020088196,
-0.7144708633422852,
0.577081561088562,
0.14479495584964752,
-0.2540334463119507,
0.35991615056991577,
-0.6667437553405762,
0.8454039692878723,
-0.03645632788538933,
-0.44566696882247925,
0.282065212726593,
-1.0147268772125244,
0.1682673841714859,
0.19690488278865814,
0.25743505358695984,
-0.4507668912410736,
0.02728806436061859,
0.9127900004386902,
-0.8400213718414307,
0.895548403263092,
-0.3715929090976715,
0.1796083003282547,
0.6570718884468079,
-0.34540805220603943,
0.46018847823143005,
0.10416930913925171,
-0.36854761838912964,
0.3264726400375366,
0.07369297742843628,
-0.37580907344818115,
-0.371685653924942,
0.6604976058006287,
-0.7355762720108032,
0.06933017075061798,
-0.4043506979942322,
-0.45473864674568176,
0.0998801663517952,
0.2000335305929184,
0.23548883199691772,
0.3829857409000397,
0.0426206961274147,
0.15656834840774536,
0.4714477062225342,
-0.10391730815172195,
0.30948740243911743,
0.011055922135710716,
-0.06915684044361115,
-0.8298251032829285,
0.9293301105499268,
0.21406684815883636,
0.05725010111927986,
-0.034164831042289734,
0.48152050375938416,
-0.4039076268672943,
-0.06632940471172333,
-0.5397048592567444,
0.4492915868759155,
-0.3708133399486542,
-0.4088853895664215,
-0.46961745619773865,
-0.09380491822957993,
-0.6851978302001953,
-0.13247938454151154,
-0.27205437421798706,
-0.495595782995224,
-0.3783523738384247,
-0.1761607825756073,
1.045273780822754,
0.47878721356391907,
-0.7022436261177063,
0.1426747888326645,
-0.45332610607147217,
0.2855992913246155,
-0.04719623923301697,
0.6530144214630127,
-0.1047743707895279,
-0.2074306160211563,
-0.15274296700954437,
0.1126098483800888,
-0.2070828676223755,
-0.6938909888267517,
0.28924456238746643,
-0.010450035333633423,
0.33243539929389954,
0.09755182266235352,
0.19191370904445648,
0.7553507685661316,
-0.05524780973792076,
0.6113241314888,
0.267900288105011,
-0.8015148639678955,
0.6762204170227051,
-0.4722280502319336,
0.16393838822841644,
0.7589375972747803,
0.31917980313301086,
-0.54811692237854,
-0.11923190951347351,
-0.9511317610740662,
-0.8441793918609619,
0.8436611890792847,
0.39353320002555847,
0.05424176901578903,
0.16439591348171234,
0.5632274150848389,
-0.2864663004875183,
0.2660588026046753,
-0.6368080377578735,
-0.8128277063369751,
-0.4324861168861389,
-0.39971724152565,
0.0045844754204154015,
-0.08448350429534912,
-0.23311994969844818,
-0.6675153374671936,
0.699924111366272,
-0.17221854627132416,
0.3376964032649994,
0.5092065930366516,
0.4463450610637665,
-0.24126532673835754,
0.005367302801460028,
0.3132665157318115,
0.39243870973587036,
-0.2311326563358307,
-0.23185138404369354,
-0.14937596023082733,
-0.6409705877304077,
-0.12766505777835846,
0.5204620361328125,
-0.29601743817329407,
-0.07765857875347137,
0.3267577290534973,
0.8484867215156555,
-0.028248200193047523,
-0.21675170958042145,
0.6025083661079407,
-0.11348692327737808,
-0.40769094228744507,
-0.45717281103134155,
0.02019943855702877,
0.09807752072811127,
0.21077606081962585,
0.06288241595029831,
0.09424502402544022,
-0.1323508322238922,
-0.4269828796386719,
0.39886510372161865,
0.2611571252346039,
-0.4285704493522644,
-0.46147310733795166,
0.568591296672821,
0.053921546787023544,
-0.11303284019231796,
0.47970545291900635,
-0.18511347472667694,
-0.6185779571533203,
0.8838974237442017,
0.13932102918624878,
0.8258558511734009,
-0.18043987452983856,
0.32318803668022156,
0.7317246198654175,
0.24090759456157684,
-0.054746441543102264,
0.5330269932746887,
-0.20752429962158203,
-0.6495993137359619,
-0.013576541095972061,
-0.5718683004379272,
-0.08852457255125046,
0.025858549401164055,
-0.8442825078964233,
0.43973806500434875,
-0.4675855338573456,
-0.28226399421691895,
-0.015869813039898872,
0.37606027722358704,
-0.7021024227142334,
0.1897163987159729,
-0.06670643389225006,
1.0576303005218506,
-1.0424634218215942,
0.48735275864601135,
0.706835925579071,
-0.615464985370636,
-1.2177339792251587,
-0.13804812729358673,
0.14800934493541718,
-0.6089349985122681,
0.1988275647163391,
0.20441050827503204,
0.4587136507034302,
-0.04808667674660683,
-0.907060444355011,
-0.736383855342865,
1.2030198574066162,
0.08608029782772064,
-0.20415259897708893,
0.38772276043891907,
0.19022001326084137,
0.6475123763084412,
-0.40650466084480286,
0.3527939021587372,
0.6722986102104187,
0.7179268598556519,
0.3354474604129791,
-0.7799268960952759,
0.2638353407382965,
-0.5350015759468079,
-0.14526210725307465,
0.024469999596476555,
-1.0211316347122192,
0.6481677293777466,
-0.1872515082359314,
-0.05741890147328377,
0.04035390540957451,
0.5999594926834106,
0.44932737946510315,
0.5058645606040955,
0.5143290162086487,
0.7913485169410706,
0.8085033297538757,
-0.36780110001564026,
1.2174676656723022,
-0.23695625364780426,
0.6567131876945496,
0.7551344633102417,
-0.010280669666826725,
0.4788112938404083,
0.2398790717124939,
-0.3157150149345398,
0.5329326391220093,
0.6226447820663452,
-0.4246511161327362,
0.23378105461597443,
0.381045401096344,
-0.06413731724023819,
-0.07860704511404037,
-0.32321929931640625,
-0.5436179041862488,
0.3520403802394867,
0.22071261703968048,
-0.3433418273925781,
-0.014033575542271137,
-0.0324317067861557,
0.4455019533634186,
0.0014139598933979869,
-0.29991307854652405,
0.6476738452911377,
0.013418000191450119,
-0.43612003326416016,
0.5117197036743164,
-0.22842544317245483,
0.6094759106636047,
-0.5698289275169373,
0.09912335872650146,
-0.08072935044765472,
0.17619596421718597,
-0.6208956837654114,
-1.156015396118164,
0.41387107968330383,
-0.11282678693532944,
-0.26815128326416016,
-0.35804229974746704,
0.6755891442298889,
-0.4914197325706482,
-0.7536763548851013,
0.24518224596977234,
0.108028344810009,
0.32214200496673584,
0.165144145488739,
-1.2542262077331543,
0.599800705909729,
0.164120614528656,
-0.4391472041606903,
0.063226118683815,
0.5699242353439331,
0.1083400771021843,
0.524496853351593,
0.7136855721473694,
0.2871319055557251,
-0.21779753267765045,
0.04402266442775726,
1.0862733125686646,
-0.5397080183029175,
-0.44640904664993286,
-0.6916047930717468,
0.8575587868690491,
-0.38864755630493164,
-0.4857032001018524,
0.6388258934020996,
0.7744342088699341,
0.8633190393447876,
0.051191575825214386,
0.768405020236969,
-0.6770269870758057,
0.7005845308303833,
-0.18851634860038757,
0.9256617426872253,
-0.674376904964447,
-0.07097144424915314,
-0.6993268728256226,
-0.5321388840675354,
-0.4331091344356537,
0.6299679279327393,
-0.20985254645347595,
0.20207074284553528,
0.29140010476112366,
0.9460146427154541,
0.029924986883997917,
0.12220461666584015,
-0.2422637939453125,
0.31628116965293884,
0.2551892101764679,
0.559661328792572,
0.42459872364997864,
-0.881247341632843,
0.41700172424316406,
-0.8141181468963623,
-0.3319796323776245,
0.0348324179649353,
-0.8921554684638977,
-0.859697163105011,
-0.9207502007484436,
-0.6731974482536316,
-0.7754201292991638,
-0.3133206367492676,
1.053134560585022,
0.7171225547790527,
-0.7127657532691956,
-0.3007138669490814,
0.040064021944999695,
0.33322763442993164,
-0.06290704011917114,
-0.3374130129814148,
0.6732636094093323,
0.38493597507476807,
-0.5979956984519958,
-0.1705395132303238,
-0.011230924166738987,
0.2099439650774002,
0.11606843769550323,
-0.051443275064229965,
-0.09517816454172134,
-0.31035488843917847,
0.3420654833316803,
0.5226653218269348,
-0.3649194836616516,
-0.1422344148159027,
-0.23494257032871246,
0.017722252756357193,
0.18546731770038605,
0.4597485363483429,
-0.5696842074394226,
0.2675400972366333,
0.6339125633239746,
0.23087859153747559,
0.3899737596511841,
0.25860700011253357,
0.001543808844871819,
-0.4818921983242035,
0.09920428693294525,
0.012229252606630325,
0.3101586699485779,
0.3606078326702118,
-0.47946178913116455,
0.7838124632835388,
0.5821925401687622,
-0.5589107275009155,
-0.7956082224845886,
-0.17280305922031403,
-1.3378709554672241,
0.16003121435642242,
1.0689479112625122,
-0.02090783417224884,
-0.6090384125709534,
0.0048079038970172405,
-0.21852484345436096,
0.13643528521060944,
-0.6066612601280212,
0.4338972568511963,
0.4684325158596039,
-0.16409331560134888,
0.09625006467103958,
-0.2826104462146759,
0.593749463558197,
-0.04691695421934128,
-0.9575715065002441,
0.1805327981710434,
0.4128296375274658,
0.45365652441978455,
0.36887794733047485,
0.7449349761009216,
-0.24472561478614807,
0.08786862343549728,
-0.06875576823949814,
0.30974018573760986,
-0.24844877421855927,
0.08168439567089081,
-0.38319069147109985,
-0.09844500571489334,
-0.5374252796173096,
-0.20547083020210266
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/selena-gomez | huggingartists | 2022-10-25T09:43:28Z | 292 | 1 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:43:28Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/selena-gomez"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 0.587236 MB
<div class="inline-flex flex-col" style="line-height: 1.5;">
<div class="flex">
<div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('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.5819087028503418,
-0.5254605412483215,
0.08884747326374054,
0.3745356798171997,
-0.23455330729484558,
0.05175970122218132,
-0.31838279962539673,
-0.47081443667411804,
0.9197384119033813,
0.3450535535812378,
-0.9343741536140442,
-0.8536442518234253,
-0.5527491569519043,
0.15051403641700745,
-0.1741182506084442,
1.2719141244888306,
-0.18907064199447632,
-0.30910736322402954,
-0.3395861089229584,
-0.16854926943778992,
-0.24287165701389313,
-0.319720596075058,
-0.28180253505706787,
-0.2911984324455261,
0.3913436830043793,
0.5118248462677002,
0.7393820285797119,
0.8320664763450623,
0.5735906958580017,
0.3543374836444855,
-0.1454726755619049,
-0.015174396336078644,
-0.37898871302604675,
-0.05816371366381645,
0.11554011702537537,
-0.2896117568016052,
-0.704817533493042,
0.20676860213279724,
0.595969557762146,
0.40055450797080994,
-0.0611577145755291,
0.48839572072029114,
0.018120603635907173,
0.8572480082511902,
-0.21967178583145142,
0.46950671076774597,
-0.29185596108436584,
-0.16444818675518036,
-0.270969033241272,
0.0896567776799202,
0.17033743858337402,
-0.639386773109436,
0.005598017014563084,
-0.6954454183578491,
0.11059614270925522,
0.013361705467104912,
1.0524204969406128,
0.08170091360807419,
0.09752611070871353,
-0.23800446093082428,
-0.21517427265644073,
0.5246500372886658,
-0.5377744436264038,
0.03263489902019501,
0.5199421048164368,
0.1484178602695465,
-0.00325222359970212,
-0.5950555205345154,
-0.6195526123046875,
0.057453807443380356,
-0.12118446826934814,
0.2528996467590332,
-0.17384281754493713,
-0.34573063254356384,
0.5062150359153748,
0.5165464282035828,
-0.5128224492073059,
-0.2416195571422577,
-0.5644165277481079,
-0.10430213063955307,
1.1615647077560425,
0.1269957423210144,
0.44622328877449036,
-0.5349416732788086,
-0.2628505825996399,
-0.3949762284755707,
-0.2951352298259735,
0.35488447546958923,
0.5610368251800537,
0.4665795564651489,
-0.9828364253044128,
0.6332700252532959,
-0.13940806686878204,
0.5364174246788025,
0.12555024027824402,
-0.043852854520082474,
0.8127179145812988,
-0.4025786817073822,
-0.0895187184214592,
-0.14876918494701385,
1.0519846677780151,
0.6529194712638855,
0.18837140500545502,
0.041947152465581894,
-0.04048372805118561,
0.10032323002815247,
-0.13224367797374725,
-0.8044893741607666,
-0.3973802626132965,
0.6669121384620667,
-0.5609191656112671,
-0.5634899735450745,
0.1538865715265274,
-1.0192577838897705,
-0.20413561165332794,
-0.30776873230934143,
0.2033107727766037,
-0.3804622292518616,
-0.4980788826942444,
0.1516461968421936,
-0.2867586612701416,
0.06698733568191528,
0.0545683279633522,
-0.6004566550254822,
0.15981318056583405,
0.5303291082382202,
0.7319813370704651,
0.17091946303844452,
-0.3261832892894745,
-0.183493509888649,
-0.17809315025806427,
-0.1079174354672432,
0.6804082989692688,
-0.2508334815502167,
-0.31514784693717957,
-0.20555908977985382,
0.3851020336151123,
-0.13508322834968567,
-0.24244891107082367,
0.9573872089385986,
0.03316540643572807,
0.1719050109386444,
-0.5751932263374329,
-0.41832393407821655,
0.019765380769968033,
0.20978470146656036,
-0.7939722537994385,
1.0634613037109375,
0.3739018142223358,
-0.9391032457351685,
0.15120729804039001,
-0.8038468360900879,
-0.31193047761917114,
0.01434405893087387,
0.1072390004992485,
-0.7663775682449341,
-0.18681858479976654,
0.17707574367523193,
0.7145754098892212,
-0.3400055170059204,
0.046892620623111725,
-0.6232486367225647,
-0.0959344431757927,
0.3871930241584778,
0.27350449562072754,
1.1855663061141968,
0.11453761160373688,
-0.10507868975400925,
0.07205303013324738,
-0.952177882194519,
0.1550111025571823,
0.4946132302284241,
-0.13111303746700287,
-0.09195588529109955,
-0.24949441850185394,
0.4212862253189087,
0.3450472056865692,
0.10475844889879227,
-0.606948733329773,
0.33819669485092163,
-0.19272969663143158,
0.47477176785469055,
0.7007956504821777,
-0.019174598157405853,
0.3644607961177826,
-0.6159330606460571,
0.4352356791496277,
0.046413276344537735,
0.37200304865837097,
-0.044029805809259415,
-0.536408543586731,
-0.44395729899406433,
-0.2854509949684143,
0.37283962965011597,
0.4768396317958832,
-0.6380565762519836,
1.0089529752731323,
-0.37354886531829834,
-0.8829975128173828,
-0.6410223841667175,
0.1729956865310669,
0.22314859926700592,
0.5609493255615234,
0.3931848108768463,
-0.3935086727142334,
-0.6573492884635925,
-0.6741260886192322,
0.1031964048743248,
-0.24958442151546478,
0.14890959858894348,
0.4431464672088623,
0.8560726642608643,
-0.2630709409713745,
0.851021945476532,
-0.6694613695144653,
-0.26045674085617065,
-0.2721864879131317,
-0.3746177852153778,
0.3946787118911743,
0.8175677061080933,
0.7406632304191589,
-0.8630096912384033,
-0.48862096667289734,
-0.307515949010849,
-0.7273260354995728,
-0.09477954357862473,
-0.0422152504324913,
-0.3023161292076111,
0.014488761313259602,
0.09934546798467636,
-0.7144445776939392,
0.5212017297744751,
0.5089637041091919,
-0.7194206714630127,
0.5109236240386963,
0.08780993521213531,
0.018650976940989494,
-1.213327169418335,
0.32373490929603577,
0.2504577934741974,
0.03634274750947952,
-0.6251097321510315,
-0.18624457716941833,
0.009338146075606346,
0.00448140874505043,
-0.16901397705078125,
0.6023893356323242,
-0.3195585310459137,
0.25514480471611023,
0.14169003069400787,
0.08029435575008392,
0.15874898433685303,
0.45578861236572266,
-0.0470416396856308,
0.25633400678634644,
1.0003700256347656,
-0.3802127540111542,
0.6720153093338013,
0.6333351135253906,
-0.2002493292093277,
0.841116726398468,
-0.8456001281738281,
0.010369867086410522,
-0.3118070363998413,
0.44470876455307007,
-0.8618001341819763,
-0.5713810920715332,
0.7890856266021729,
-0.6809865236282349,
0.32873260974884033,
-0.2316286563873291,
-0.5685412883758545,
-0.8852712512016296,
-0.6506190299987793,
0.08091212809085846,
0.5289614796638489,
-0.4268236458301544,
0.40885376930236816,
0.640933096408844,
0.05039988458156586,
-0.3041551411151886,
-0.7786231637001038,
-0.16068610548973083,
-0.39798304438591003,
-0.9080803990364075,
0.5010448694229126,
-0.3308030962944031,
-0.08572343736886978,
0.13523194193840027,
0.051081977784633636,
0.09635314345359802,
-0.0012480923905968666,
0.4207116663455963,
0.39212968945503235,
0.11174239963293076,
0.038395956158638,
-0.03941941633820534,
-0.19101376831531525,
0.11685076355934143,
-0.1594671905040741,
0.31607022881507874,
-0.32775169610977173,
-0.12787237763404846,
-0.6391808390617371,
0.2208014875650406,
0.4619141221046448,
-0.21953704953193665,
0.7080786824226379,
0.7595750093460083,
-0.2237202227115631,
-0.02033896930515766,
-0.4807854890823364,
-0.12000081688165665,
-0.4074594974517822,
0.012328281998634338,
-0.24519997835159302,
-0.5872640013694763,
0.9850725531578064,
0.21720801293849945,
0.039892666041851044,
0.6671344041824341,
0.4775914251804352,
-0.12598302960395813,
0.6693497896194458,
0.3500310778617859,
-0.23376312851905823,
0.530885636806488,
-0.6723609566688538,
-0.21635694801807404,
-0.864483654499054,
-0.4738735854625702,
-0.5603261590003967,
-0.4874938130378723,
-0.8161604404449463,
-0.45214852690696716,
0.1840571165084839,
0.1728915572166443,
-0.2565156817436218,
0.5655193328857422,
-0.9316296577453613,
0.34248068928718567,
0.3505077660083771,
0.35071808099746704,
-0.1212771013379097,
0.05541336163878441,
0.12521801888942719,
0.1528775691986084,
-0.5798904895782471,
-0.2669447362422943,
1.150457739830017,
0.5418875813484192,
0.5518810749053955,
-0.06435579061508179,
0.8202915191650391,
0.03605140000581741,
0.17363333702087402,
-0.45970073342323303,
0.49108102917671204,
0.03954893350601196,
-0.5187855958938599,
-0.18375258147716522,
-0.47830119729042053,
-0.8823401927947998,
-0.11040610074996948,
-0.41327720880508423,
-0.713641881942749,
0.5079397559165955,
0.10199607908725739,
-0.23372524976730347,
0.29366689920425415,
-0.7099783420562744,
0.8630850911140442,
-0.10722315311431885,
-0.4541664123535156,
0.3333321213722229,
-1.0360616445541382,
0.18456605076789856,
0.17503392696380615,
0.26080670952796936,
-0.4288237690925598,
0.03409161418676376,
1.0106574296951294,
-0.742071807384491,
0.9119153618812561,
-0.3568260967731476,
0.1268797665834427,
0.5728921890258789,
-0.3506350815296173,
0.5128942728042603,
0.13073448836803436,
-0.2848128080368042,
0.3526563346385956,
0.01617944799363613,
-0.45947059988975525,
-0.4478311836719513,
0.7282933592796326,
-0.6929742097854614,
0.05815130099654198,
-0.32291507720947266,
-0.4507856070995331,
0.018680131062865257,
0.1677713543176651,
0.2638668119907379,
0.26516395807266235,
-0.00366347492672503,
0.11480076611042023,
0.4571867883205414,
-0.13045775890350342,
0.3071090579032898,
0.0431424044072628,
-0.12942837178707123,
-0.7537439465522766,
0.8932701945304871,
0.16687852144241333,
0.05310697481036186,
-0.08215654641389847,
0.37126240134239197,
-0.4281438887119293,
-0.10658673942089081,
-0.5996255278587341,
0.4881034195423126,
-0.4135308563709259,
-0.39963510632514954,
-0.5344288349151611,
-0.18133150041103363,
-0.6699974536895752,
-0.17283031344413757,
-0.24992939829826355,
-0.5836936235427856,
-0.33248066902160645,
-0.24707549810409546,
1.0301103591918945,
0.3675064742565155,
-0.6095046997070312,
0.1705140620470047,
-0.5385173559188843,
0.3116278052330017,
-0.12523940205574036,
0.6540358066558838,
-0.08439970016479492,
-0.30933430790901184,
-0.1622905284166336,
0.1035679504275322,
-0.19011548161506653,
-0.7429695129394531,
0.3076302409172058,
-0.02620588056743145,
0.36230987310409546,
0.08432327210903168,
0.10392796993255615,
0.6887322664260864,
-0.08409824967384338,
0.6359016299247742,
0.3151988089084625,
-0.8330673575401306,
0.731446385383606,
-0.5051718950271606,
0.10962452739477158,
0.7333322167396545,
0.3723292350769043,
-0.5931641459465027,
-0.16044390201568604,
-1.0062096118927002,
-0.8901932239532471,
0.8239267468452454,
0.45892804861068726,
0.06761090457439423,
0.19934523105621338,
0.4892616271972656,
-0.2205454409122467,
0.30835413932800293,
-0.6814967393875122,
-0.8233444094657898,
-0.40814778208732605,
-0.33712923526763916,
-0.018949709832668304,
-0.05668334290385246,
-0.22833222150802612,
-0.7136489748954773,
0.7616735696792603,
-0.10832105576992035,
0.33989500999450684,
0.4006575345993042,
0.37066930532455444,
-0.24337060749530792,
-0.015164345502853394,
0.28436917066574097,
0.3297085464000702,
-0.2669304311275482,
-0.3180599808692932,
-0.17515091598033905,
-0.5843225717544556,
-0.11695355176925659,
0.5062421560287476,
-0.38815805315971375,
-0.036763157695531845,
0.2806244194507599,
0.9093834757804871,
0.042784176766872406,
-0.30897200107574463,
0.5694786906242371,
-0.03751547634601593,
-0.369320273399353,
-0.421963632106781,
0.05278220772743225,
0.16566728055477142,
0.24506312608718872,
0.04975731298327446,
0.11174540966749191,
-0.1384979784488678,
-0.3891330361366272,
0.3925434350967407,
0.23656095564365387,
-0.35577988624572754,
-0.4995776414871216,
0.6019602417945862,
0.059495534747838974,
-0.1421254724264145,
0.43278902769088745,
-0.12358830869197845,
-0.6372227072715759,
0.8338385224342346,
0.18670517206192017,
0.770796000957489,
-0.17920199036598206,
0.3852286636829376,
0.7277663946151733,
0.17552568018436432,
-0.10418708622455597,
0.5741838812828064,
-0.18639685213565826,
-0.6178871989250183,
0.010807539336383343,
-0.6128553152084351,
-0.10670838505029678,
0.009914832189679146,
-0.7905960083007812,
0.44213736057281494,
-0.4495545029640198,
-0.24182453751564026,
0.09906163811683655,
0.33248722553253174,
-0.7403741478919983,
0.16615036129951477,
-0.0947735384106636,
1.0065656900405884,
-1.080101490020752,
0.5010652542114258,
0.6351744532585144,
-0.7066414952278137,
-1.1659133434295654,
-0.18197663128376007,
0.17387400567531586,
-0.5634545683860779,
0.24531449377536774,
0.14260679483413696,
0.5129885673522949,
-0.08744389563798904,
-0.8929970860481262,
-0.7572678327560425,
1.186844825744629,
0.044943612068891525,
-0.25713375210762024,
0.27656346559524536,
0.153754323720932,
0.7072615027427673,
-0.4184430241584778,
0.33770352602005005,
0.6527195572853088,
0.6961488723754883,
0.35975179076194763,
-0.708800196647644,
0.26484671235084534,
-0.6195911169052124,
-0.17217735946178436,
0.06088060885667801,
-1.0134652853012085,
0.6874561905860901,
-0.19434045255184174,
-0.04227639362215996,
0.002450470346957445,
0.6433925628662109,
0.4419739246368408,
0.43050631880760193,
0.4498012959957123,
0.7160735726356506,
0.8765660524368286,
-0.33508211374282837,
1.1775511503219604,
-0.3130035996437073,
0.6244890093803406,
0.8339071273803711,
-0.024855051189661026,
0.5043516755104065,
0.26682284474372864,
-0.34099259972572327,
0.543391227722168,
0.6433624029159546,
-0.488379567861557,
0.23986758291721344,
0.387555867433548,
-0.036024197936058044,
-0.045891173183918,
-0.23814554512500763,
-0.5854382514953613,
0.2728884816169739,
0.22629378736019135,
-0.44179949164390564,
-0.015442478470504284,
0.013591084629297256,
0.3736526668071747,
-0.02561982534825802,
-0.27222517132759094,
0.5768769383430481,
0.00402424531057477,
-0.4106823801994324,
0.5220161080360413,
-0.203609898686409,
0.6567952632904053,
-0.5289616584777832,
0.2008492797613144,
-0.08278865367174149,
0.10528705269098282,
-0.6471970677375793,
-1.1065325736999512,
0.4180060029029846,
0.004342281725257635,
-0.3044394850730896,
-0.38662487268447876,
0.7470664381980896,
-0.4798494875431061,
-0.8255104422569275,
0.236031636595726,
0.2233714908361435,
0.30514034628868103,
0.15081273019313812,
-1.2624059915542603,
0.5814992785453796,
0.16903720796108246,
-0.41579222679138184,
0.1178571954369545,
0.4699242115020752,
0.12482171505689621,
0.5354374051094055,
0.7355644702911377,
0.23215903341770172,
-0.20528937876224518,
0.08441668748855591,
1.1198065280914307,
-0.5555101037025452,
-0.43921738862991333,
-0.7381747364997864,
0.8839545249938965,
-0.3876907229423523,
-0.3815922737121582,
0.7573541402816772,
0.7693530917167664,
0.8494400978088379,
-0.03669130802154541,
0.7444498538970947,
-0.6492041945457458,
0.7558974623680115,
-0.17580486834049225,
0.9103584885597229,
-0.626921534538269,
-0.007659199181944132,
-0.8060320615768433,
-0.5220792889595032,
-0.42093220353126526,
0.6449605822563171,
-0.19572985172271729,
0.14474649727344513,
0.26164761185646057,
0.9310160875320435,
0.05107243359088898,
0.1800033003091812,
-0.3134795129299164,
0.24132086336612701,
0.2756405770778656,
0.5522207021713257,
0.42195361852645874,
-0.9001539349555969,
0.33413296937942505,
-0.7849471569061279,
-0.30690714716911316,
0.06435047835111618,
-0.8229475617408752,
-0.9127727150917053,
-0.953854501247406,
-0.6491824388504028,
-0.8300710916519165,
-0.2975720465183258,
1.122040033340454,
0.6633573174476624,
-0.7252784371376038,
-0.22709448635578156,
0.03955572098493576,
0.36548200249671936,
-0.05191456153988838,
-0.30654090642929077,
0.679004430770874,
0.3442141115665436,
-0.669609010219574,
-0.10313399881124496,
-0.03772524371743202,
0.2749474048614502,
0.05133918672800064,
-0.0793340802192688,
-0.08797857165336609,
-0.2676582634449005,
0.36060261726379395,
0.4789651334285736,
-0.3203563690185547,
-0.06257706880569458,
-0.15577192604541779,
0.006935301702469587,
0.19165396690368652,
0.421997994184494,
-0.5436060428619385,
0.13530850410461426,
0.6727749705314636,
0.25216296315193176,
0.44646263122558594,
0.2230333536863327,
-0.04389228671789169,
-0.4737882614135742,
0.0711081475019455,
0.027631167322397232,
0.3080179691314697,
0.3676815927028656,
-0.48152273893356323,
0.8093569278717041,
0.5401172637939453,
-0.4969838857650757,
-0.8989943265914917,
-0.16237479448318481,
-1.3513712882995605,
0.10223592072725296,
1.0698469877243042,
-0.0033793626353144646,
-0.612295389175415,
0.09149859845638275,
-0.1931428760290146,
0.10076253116130829,
-0.6158226728439331,
0.4713495075702667,
0.5374329090118408,
-0.13805046677589417,
0.15335381031036377,
-0.2818494141101837,
0.6178420186042786,
-0.042017076164484024,
-0.9793351888656616,
0.15527676045894623,
0.4386911392211914,
0.4330771863460541,
0.3656102418899536,
0.7610747218132019,
-0.2838652729988098,
0.07380276173353195,
-0.07584799081087112,
0.2928183972835541,
-0.23338375985622406,
-0.0768573060631752,
-0.338824063539505,
-0.10105739533901215,
-0.5842618346214294,
-0.18286006152629852
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/sia | huggingartists | 2022-10-25T09:44:37Z | 292 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:44:37Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/sia"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 1.038296 MB
<div class="inline-flex flex-col" style="line-height: 1.5;">
<div class="flex">
<div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('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.6049636602401733,
-0.4998589754104614,
0.1135062649846077,
0.30154627561569214,
-0.24175691604614258,
-0.005251545459032059,
-0.26049214601516724,
-0.44510188698768616,
0.8853491544723511,
0.34362557530403137,
-0.8901131749153137,
-0.815804123878479,
-0.5862847566604614,
0.11826935410499573,
-0.0681663230061531,
1.2826400995254517,
-0.1801493912935257,
-0.34014469385147095,
-0.30969321727752686,
-0.28475186228752136,
-0.3145233392715454,
-0.2868538498878479,
-0.3220972418785095,
-0.31534117460250854,
0.35259076952934265,
0.501020073890686,
0.6925657987594604,
0.8638079166412354,
0.4934667944908142,
0.3562830686569214,
-0.1352178454399109,
0.010464759543538094,
-0.3818817138671875,
-0.12389589101076126,
0.17144112288951874,
-0.2990576922893524,
-0.7216052412986755,
0.2576567530632019,
0.5895363092422485,
0.4103962182998657,
-0.03219892829656601,
0.5182665586471558,
0.07077543437480927,
0.8547927141189575,
-0.3115847110748291,
0.505666971206665,
-0.26938387751579285,
-0.15930253267288208,
-0.2960065007209778,
0.03545520454645157,
0.17002065479755402,
-0.6136466860771179,
0.010517636314034462,
-0.7406389117240906,
0.0003484007029328495,
-0.01755550689995289,
1.007869839668274,
0.11098867654800415,
0.08103276044130325,
-0.1977643072605133,
-0.17798972129821777,
0.5128656029701233,
-0.6035203337669373,
-0.02057337388396263,
0.5600370764732361,
0.11533893644809723,
0.00284274248406291,
-0.6072904467582703,
-0.597004234790802,
0.09658811241388321,
-0.1540939062833786,
0.2740483283996582,
-0.14962412416934967,
-0.33090120553970337,
0.5346550345420837,
0.5294406414031982,
-0.49993959069252014,
-0.25892969965934753,
-0.5696955323219299,
-0.12500788271427155,
1.1832807064056396,
0.13926535844802856,
0.43858081102371216,
-0.4594906270503998,
-0.2353798896074295,
-0.3773195445537567,
-0.3005105257034302,
0.35908493399620056,
0.5513944029808044,
0.419973224401474,
-1.0172921419143677,
0.626097559928894,
-0.1554078608751297,
0.4970461428165436,
0.1542905569076538,
-0.07130308449268341,
0.8211923241615295,
-0.38531601428985596,
-0.12700589001178741,
-0.1007542535662651,
1.05897855758667,
0.6632932424545288,
0.15980663895606995,
0.10444959253072739,
-0.04847366362810135,
0.04658898711204529,
-0.1767967790365219,
-0.8572192788124084,
-0.3739168345928192,
0.6277450323104858,
-0.5894890427589417,
-0.5882776975631714,
0.13986775279045105,
-0.9961943030357361,
-0.2338152527809143,
-0.30418869853019714,
0.27514320611953735,
-0.3592149615287781,
-0.5306339859962463,
0.13069191575050354,
-0.2546778917312622,
0.14345481991767883,
0.02975827269256115,
-0.590478777885437,
0.200839102268219,
0.5559774041175842,
0.7715738415718079,
0.20105749368667603,
-0.32463303208351135,
-0.29405978322029114,
-0.18689772486686707,
-0.130256786942482,
0.6787645816802979,
-0.30147233605384827,
-0.34103450179100037,
-0.21645116806030273,
0.3695988059043884,
-0.1269756555557251,
-0.2749917209148407,
0.8560634851455688,
0.054144952446222305,
0.20074135065078735,
-0.5654849410057068,
-0.43006432056427,
-0.01634879596531391,
0.24516665935516357,
-0.7804245948791504,
1.0612674951553345,
0.30372339487075806,
-0.9877468943595886,
0.1910168081521988,
-0.8188039660453796,
-0.29898184537887573,
0.023947549983859062,
0.06380154192447662,
-0.7937455177307129,
-0.18701906502246857,
0.18428660929203033,
0.7269971370697021,
-0.32788264751434326,
0.02863413654267788,
-0.6064819693565369,
-0.1601306051015854,
0.36343175172805786,
0.22899101674556732,
1.1877995729446411,
0.12784242630004883,
-0.18795724213123322,
0.10868613421916962,
-0.9376290440559387,
0.12386201322078705,
0.4518663287162781,
-0.13504013419151306,
-0.11686312407255173,
-0.24236257374286652,
0.3673234283924103,
0.27916404604911804,
0.10547786206007004,
-0.582821249961853,
0.3895833492279053,
-0.21380680799484253,
0.45898741483688354,
0.769415557384491,
0.017975792288780212,
0.35033118724823,
-0.6203221678733826,
0.42847299575805664,
0.06463388353586197,
0.350186288356781,
-0.012535197660326958,
-0.5839711427688599,
-0.4363326132297516,
-0.2721289396286011,
0.3173520267009735,
0.4732692539691925,
-0.6331503391265869,
0.988579511642456,
-0.3093436062335968,
-0.8616253137588501,
-0.6477321982383728,
0.13246937096118927,
0.20124943554401398,
0.5082544088363647,
0.35938796401023865,
-0.43074655532836914,
-0.5639395713806152,
-0.6409478783607483,
0.11606792360544205,
-0.26588425040245056,
0.20276261866092682,
0.4219416677951813,
0.8175426125526428,
-0.2669915556907654,
0.8244276642799377,
-0.6776548027992249,
-0.2731836438179016,
-0.2331666499376297,
-0.31737020611763,
0.3444097638130188,
0.791617214679718,
0.7049155831336975,
-0.8745414018630981,
-0.49711284041404724,
-0.268892765045166,
-0.7218058109283447,
-0.11777167022228241,
-0.056801602244377136,
-0.2762097716331482,
0.027746345847845078,
0.1451776772737503,
-0.6830242276191711,
0.5757884383201599,
0.5170104503631592,
-0.7104922533035278,
0.556661069393158,
0.1000131145119667,
0.029506636783480644,
-1.3078933954238892,
0.37989863753318787,
0.24442605674266815,
0.031877826899290085,
-0.580537736415863,
-0.20331621170043945,
-0.058843452483415604,
-0.06121567636728287,
-0.12308958172798157,
0.6251126527786255,
-0.3366430997848511,
0.2535194754600525,
0.11442992836236954,
0.05218768119812012,
0.09197770059108734,
0.46716490387916565,
-0.0827668309211731,
0.3407415449619293,
1.0065497159957886,
-0.38264000415802,
0.6323953866958618,
0.5924715399742126,
-0.1884131133556366,
0.836418092250824,
-0.8281345367431641,
0.021917568519711494,
-0.2851136326789856,
0.40320906043052673,
-0.815473735332489,
-0.5248798727989197,
0.8189734220504761,
-0.6849128603935242,
0.3692096769809723,
-0.23547950387001038,
-0.5081071257591248,
-0.7768040299415588,
-0.6912648677825928,
0.16007034480571747,
0.522635817527771,
-0.37003421783447266,
0.42546766996383667,
0.6445759534835815,
0.0585189163684845,
-0.3789757788181305,
-0.7488195896148682,
-0.15346576273441315,
-0.415725439786911,
-0.8218697309494019,
0.4271243214607239,
-0.3919568359851837,
-0.10917747020721436,
0.15897686779499054,
0.09884756803512573,
0.10657693445682526,
0.04897318780422211,
0.42783141136169434,
0.3312162160873413,
0.05894951522350311,
-0.00957626011222601,
-0.08569828420877457,
-0.267589807510376,
0.09680182486772537,
-0.1713891327381134,
0.2648908495903015,
-0.34878411889076233,
-0.14165633916854858,
-0.6897698044776917,
0.19970734417438507,
0.5006589889526367,
-0.26197704672813416,
0.6931309700012207,
0.801596462726593,
-0.26538586616516113,
0.010685025714337826,
-0.4932063817977905,
-0.1392238438129425,
-0.4150283634662628,
0.02087908796966076,
-0.25374388694763184,
-0.6081644892692566,
0.96565181016922,
0.1880507469177246,
0.0756910890340805,
0.6865078210830688,
0.47792893648147583,
-0.05152236297726631,
0.7061814665794373,
0.4123285114765167,
-0.28600165247917175,
0.5081177949905396,
-0.6764075756072998,
-0.21010833978652954,
-0.8829454779624939,
-0.44466447830200195,
-0.4919404089450836,
-0.49134135246276855,
-0.8710740804672241,
-0.4344116151332855,
0.223086416721344,
0.1370299607515335,
-0.21217936277389526,
0.46305856108665466,
-0.9370623230934143,
0.3050853908061981,
0.3428509831428528,
0.2647849917411804,
-0.1313740313053131,
0.05426986142992973,
0.11517474055290222,
0.15199965238571167,
-0.5569913983345032,
-0.2726227939128876,
1.1393474340438843,
0.5306827425956726,
0.5565404295921326,
-0.10560979694128036,
0.8436945080757141,
0.031276021152734756,
0.1841581165790558,
-0.5283075571060181,
0.510470449924469,
0.006422083824872971,
-0.4594322443008423,
-0.16487723588943481,
-0.4862084686756134,
-0.8971002101898193,
-0.13754765689373016,
-0.40411177277565,
-0.7352789044380188,
0.523973286151886,
0.07772321254014969,
-0.2544380724430084,
0.3895803689956665,
-0.6480619311332703,
0.8733314871788025,
-0.057156845927238464,
-0.43085232377052307,
0.2860191762447357,
-1.0211037397384644,
0.19400544464588165,
0.168325275182724,
0.24984930455684662,
-0.4478949308395386,
0.030121061950922012,
1.0153038501739502,
-0.8032274842262268,
0.9275789260864258,
-0.3761548697948456,
0.14702343940734863,
0.591141939163208,
-0.31803664565086365,
0.4680287837982178,
0.11199727654457092,
-0.2901324927806854,
0.30675008893013,
0.07916390895843506,
-0.46059662103652954,
-0.4326306879520416,
0.6878557801246643,
-0.7479943633079529,
0.047262318432331085,
-0.3714004158973694,
-0.45718783140182495,
0.05164148658514023,
0.16504669189453125,
0.2571246922016144,
0.3786662518978119,
0.031214037910103798,
0.14489102363586426,
0.46611303091049194,
-0.13661526143550873,
0.24954204261302948,
0.04289157688617706,
-0.061365049332380295,
-0.7557839751243591,
0.9475814700126648,
0.19043415784835815,
0.046377748250961304,
-0.08606711775064468,
0.42711910605430603,
-0.3435573875904083,
-0.11604283004999161,
-0.6246662139892578,
0.48183920979499817,
-0.3920326828956604,
-0.37168869376182556,
-0.5087892413139343,
-0.20038126409053802,
-0.6863468885421753,
-0.16384314000606537,
-0.24884913861751556,
-0.49931177496910095,
-0.33449795842170715,
-0.19893454015254974,
1.0216306447982788,
0.48703235387802124,
-0.6697313189506531,
0.12166211754083633,
-0.5456416010856628,
0.272021621465683,
-0.07617615908384323,
0.6220381855964661,
-0.10000338405370712,
-0.3094654679298401,
-0.1984458863735199,
0.08186232298612595,
-0.17029237747192383,
-0.715264081954956,
0.2709154784679413,
-0.04509880021214485,
0.3830544054508209,
0.10825321823358536,
0.11901969462633133,
0.6924286484718323,
-0.05896395072340965,
0.6749575138092041,
0.2723219394683838,
-0.7939439415931702,
0.7057501673698425,
-0.4706725478172302,
0.16557864844799042,
0.7396788001060486,
0.3886411190032959,
-0.5867951512336731,
-0.12822271883487701,
-0.985464870929718,
-0.8722410202026367,
0.810676097869873,
0.38874050974845886,
0.06549597531557083,
0.22850117087364197,
0.548586905002594,
-0.19080166518688202,
0.26148363947868347,
-0.6636799573898315,
-0.840434193611145,
-0.37627190351486206,
-0.36144790053367615,
-0.007058536633849144,
-0.1097436174750328,
-0.24265918135643005,
-0.6487520337104797,
0.8312134742736816,
-0.1779216080904007,
0.327958345413208,
0.39249783754348755,
0.40454035997390747,
-0.21527566015720367,
-0.006750113796442747,
0.27849292755126953,
0.3799584209918976,
-0.23861394822597504,
-0.30594706535339355,
-0.11583225429058075,
-0.6111741662025452,
-0.102072574198246,
0.5048194527626038,
-0.4017900824546814,
-0.12918633222579956,
0.28318578004837036,
0.9137193560600281,
-0.01231415942311287,
-0.2679887115955353,
0.6056737899780273,
-0.08143647760152817,
-0.3810059428215027,
-0.3894411027431488,
0.021085921674966812,
0.14443987607955933,
0.2519661784172058,
0.048766616731882095,
0.10747242718935013,
-0.0908045843243599,
-0.4169933795928955,
0.39767104387283325,
0.2412400096654892,
-0.38725876808166504,
-0.5004385709762573,
0.5945173501968384,
0.07049856334924698,
-0.12508483231067657,
0.4403892755508423,
-0.18008308112621307,
-0.6104598045349121,
0.8109030723571777,
0.13642258942127228,
0.835945725440979,
-0.1453515738248825,
0.3650919795036316,
0.7386385202407837,
0.2032545506954193,
-0.04430359974503517,
0.5312108993530273,
-0.1994347721338272,
-0.6214261651039124,
-0.056625377386808395,
-0.577255368232727,
-0.11777834594249725,
0.08071333169937134,
-0.8217944502830505,
0.4416968524456024,
-0.5005630850791931,
-0.2205248773097992,
0.03510132059454918,
0.4001981317996979,
-0.7014792561531067,
0.17863230407238007,
-0.022985953837633133,
1.0261591672897339,
-1.0667698383331299,
0.45960718393325806,
0.6978387832641602,
-0.6884287595748901,
-1.214566707611084,
-0.10893922299146652,
0.21230332553386688,
-0.5859440565109253,
0.20397332310676575,
0.20173242688179016,
0.45747464895248413,
-0.08831185847520828,
-0.9072534441947937,
-0.6983768343925476,
1.2273179292678833,
0.047537028789520264,
-0.19334504008293152,
0.3179404139518738,
0.10220429301261902,
0.6168139576911926,
-0.3730158805847168,
0.3140723705291748,
0.656167209148407,
0.6703767776489258,
0.31965088844299316,
-0.7249763607978821,
0.3045061230659485,
-0.6491649746894836,
-0.23062705993652344,
0.049504734575748444,
-1.0498780012130737,
0.6076647639274597,
-0.18731054663658142,
-0.04125368967652321,
0.0326659120619297,
0.6398217082023621,
0.46086105704307556,
0.44619321823120117,
0.4744150638580322,
0.7417181134223938,
0.8629310727119446,
-0.299127459526062,
1.1754875183105469,
-0.2873062491416931,
0.5822919011116028,
0.8009020686149597,
-0.005199916660785675,
0.508772075176239,
0.22885355353355408,
-0.3125888705253601,
0.5490977764129639,
0.6534176468849182,
-0.43091341853141785,
0.22431853413581848,
0.34481436014175415,
-0.07460274547338486,
-0.055843036621809006,
-0.2907836437225342,
-0.5989274978637695,
0.31778189539909363,
0.2457454800605774,
-0.3272055685520172,
0.03161139413714409,
-0.0031462523620575666,
0.3796461224555969,
-0.03398485109210014,
-0.2813921570777893,
0.6753360033035278,
0.04081731289625168,
-0.36324983835220337,
0.4891621470451355,
-0.20249734818935394,
0.6966226696968079,
-0.5859932899475098,
0.1481684148311615,
-0.08731797337532043,
0.10039867460727692,
-0.6223981976509094,
-1.097058653831482,
0.40924909710884094,
-0.06517815589904785,
-0.24858121573925018,
-0.33044448494911194,
0.7791020274162292,
-0.4535204768180847,
-0.7771633267402649,
0.23262068629264832,
0.19839732348918915,
0.36192071437835693,
0.17043305933475494,
-1.2894095182418823,
0.5795097947120667,
0.16386142373085022,
-0.45733824372291565,
0.13508912920951843,
0.507710874080658,
0.12620310485363007,
0.524552047252655,
0.700861930847168,
0.2634454667568207,
-0.24441513419151306,
0.0540163479745388,
1.1068921089172363,
-0.5350099205970764,
-0.47630971670150757,
-0.7194641828536987,
0.8939293622970581,
-0.3715250492095947,
-0.41058439016342163,
0.6743899583816528,
0.7496867775917053,
0.8495919108390808,
0.03399623557925224,
0.783528208732605,
-0.6434847712516785,
0.6553775072097778,
-0.21892502903938293,
0.9394661784172058,
-0.7083510160446167,
-0.05332113429903984,
-0.7124953269958496,
-0.5402914881706238,
-0.39909499883651733,
0.642577588558197,
-0.21884511411190033,
0.16821430623531342,
0.2599768042564392,
0.9520999193191528,
0.02641754038631916,
0.1360989212989807,
-0.2368895262479782,
0.30129900574684143,
0.2805969715118408,
0.542288064956665,
0.38852447271347046,
-0.9180986881256104,
0.33953720331192017,
-0.7642261385917664,
-0.32417088747024536,
0.058504972606897354,
-0.832305371761322,
-0.8809768557548523,
-0.9746513366699219,
-0.684827983379364,
-0.7992315292358398,
-0.290937215089798,
1.1049197912216187,
0.7324896454811096,
-0.7228147387504578,
-0.23740404844284058,
0.10780193656682968,
0.2900451123714447,
-0.05079365894198418,
-0.3220105469226837,
0.6689278483390808,
0.3487057387828827,
-0.6297622919082642,
-0.10543376207351685,
0.030251488089561462,
0.25894486904144287,
0.02691810019314289,
-0.10978979617357254,
-0.11643373966217041,
-0.2582419514656067,
0.35696104168891907,
0.5091119408607483,
-0.3182913661003113,
-0.09765519201755524,
-0.24137148261070251,
0.016640054062008858,
0.14347712695598602,
0.46350204944610596,
-0.5657723546028137,
0.1852445900440216,
0.6723591685295105,
0.311446875333786,
0.44017013907432556,
0.17653816938400269,
0.015913674607872963,
-0.4596778154373169,
0.10254917293787003,
-0.016000114381313324,
0.3278942108154297,
0.37942057847976685,
-0.49660786986351013,
0.8152576088905334,
0.5747688412666321,
-0.5273924469947815,
-0.8463911414146423,
-0.1745784431695938,
-1.3196735382080078,
0.10845154523849487,
1.0498071908950806,
-0.023323602974414825,
-0.6088598370552063,
0.10736671090126038,
-0.23907838761806488,
0.1160077154636383,
-0.5595413446426392,
0.4471283257007599,
0.49906232953071594,
-0.09094589203596115,
0.14305166900157928,
-0.32008838653564453,
0.6277905702590942,
-0.0088253328576684,
-1.0068254470825195,
0.16327404975891113,
0.43218183517456055,
0.47066667675971985,
0.3365802466869354,
0.8534256815910339,
-0.28697890043258667,
0.0921807587146759,
-0.07331592589616776,
0.24932925403118134,
-0.24230647087097168,
-0.01814001426100731,
-0.3684365749359131,
-0.1349279135465622,
-0.500129222869873,
-0.20755979418754578
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/the-notorious-big | huggingartists | 2022-10-25T09:47:38Z | 292 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:47:38Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/the-notorious-big"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 1.676645 MB
<div class="inline-flex flex-col" style="line-height: 1.5;">
<div class="flex">
<div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('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.6597883701324463,
-0.5687649250030518,
0.09694646298885345,
0.27699586749076843,
-0.2555338442325592,
0.01092353742569685,
-0.33607837557792664,
-0.484779417514801,
0.9027673006057739,
0.31891506910324097,
-0.859846293926239,
-0.814393162727356,
-0.6077021956443787,
0.13077397644519806,
-0.1112702339887619,
1.2727962732315063,
-0.1792098730802536,
-0.41549283266067505,
-0.22914403676986694,
-0.23814217746257782,
-0.3096648156642914,
-0.3493182063102722,
-0.3092493414878845,
-0.27307096123695374,
0.4143131971359253,
0.45793238282203674,
0.7447133660316467,
0.9224270582199097,
0.5119138956069946,
0.35064786672592163,
-0.1335722804069519,
-0.012201962061226368,
-0.4521808922290802,
-0.1383640319108963,
0.1525517851114273,
-0.24684181809425354,
-0.6556957960128784,
0.2594605088233948,
0.622637152671814,
0.4110552668571472,
-0.08894560486078262,
0.47921475768089294,
0.015500771813094616,
0.8338337540626526,
-0.30585893988609314,
0.48516446352005005,
-0.2784610092639923,
-0.16670140624046326,
-0.294878751039505,
0.0719861164689064,
0.1630798876285553,
-0.6154386401176453,
-0.042483020573854446,
-0.7281597256660461,
0.042592696845531464,
0.030657652765512466,
1.0521066188812256,
0.054940447211265564,
0.09633475542068481,
-0.19568394124507904,
-0.21993914246559143,
0.5019883513450623,
-0.556689977645874,
0.012289770878851414,
0.5715662240982056,
0.1370711773633957,
0.004408315289765596,
-0.6305429935455322,
-0.6095018982887268,
0.05185554921627045,
-0.1544666439294815,
0.2584378719329834,
-0.22426509857177734,
-0.3012537956237793,
0.5829373598098755,
0.594315230846405,
-0.5164060592651367,
-0.16119623184204102,
-0.5604661107063293,
-0.16169202327728271,
1.1798276901245117,
0.1344040334224701,
0.3733672499656677,
-0.4195713996887207,
-0.20753560960292816,
-0.36467450857162476,
-0.28892192244529724,
0.3152953088283539,
0.5907256007194519,
0.4170648455619812,
-1.0328972339630127,
0.6231943368911743,
-0.11352317780256271,
0.5647373795509338,
0.16685965657234192,
-0.0493694469332695,
0.8115650415420532,
-0.3817211985588074,
-0.12241729348897934,
-0.08785603940486908,
1.090126395225525,
0.6604058146476746,
0.19019678235054016,
0.07034388929605484,
-0.018481049686670303,
0.03622164577245712,
-0.14980168640613556,
-0.8816129565238953,
-0.3855942487716675,
0.6439464688301086,
-0.5651469230651855,
-0.5790451169013977,
0.14741742610931396,
-0.9970174431800842,
-0.2517302632331848,
-0.31783103942871094,
0.2919500172138214,
-0.37209609150886536,
-0.5414949655532837,
0.1995849311351776,
-0.3038810193538666,
0.13296639919281006,
0.031907811760902405,
-0.5488414764404297,
0.14252419769763947,
0.6088045239448547,
0.786237359046936,
0.22588814795017242,
-0.25575414299964905,
-0.3408144414424896,
-0.1264238804578781,
-0.15277689695358276,
0.6166242361068726,
-0.3102748990058899,
-0.3265129029750824,
-0.12536270916461945,
0.3721493184566498,
-0.05519665405154228,
-0.27207329869270325,
0.8994991183280945,
0.030204594135284424,
0.12211907655000687,
-0.5514804124832153,
-0.4413129985332489,
0.005766160786151886,
0.30436569452285767,
-0.7881402373313904,
1.00653874874115,
0.2618961036205292,
-1.0260751247406006,
0.1681642234325409,
-0.7666345238685608,
-0.2771660387516022,
0.04283653572201729,
0.09768754243850708,
-0.8118091225624084,
-0.19041860103607178,
0.14317403733730316,
0.7382149696350098,
-0.2857309579849243,
0.023978009819984436,
-0.6612374782562256,
-0.1594570428133011,
0.3781152367591858,
0.22932079434394836,
1.191902995109558,
0.08898836374282837,
-0.16020169854164124,
0.09443551301956177,
-0.9147611260414124,
0.07424339652061462,
0.4411481022834778,
-0.13394631445407867,
-0.14383096992969513,
-0.28307044506073,
0.3647759258747101,
0.2752963602542877,
0.09326258301734924,
-0.5995030999183655,
0.49817371368408203,
-0.1596474051475525,
0.48098817467689514,
0.7943609356880188,
0.028262518346309662,
0.24521377682685852,
-0.6383433938026428,
0.39458826184272766,
0.041144512593746185,
0.3942754566669464,
0.015706820413470268,
-0.5332753658294678,
-0.42690786719322205,
-0.3334983289241791,
0.3455200791358948,
0.4269517660140991,
-0.6384154558181763,
1.0440797805786133,
-0.3686995208263397,
-0.8671041131019592,
-0.5718129277229309,
0.13189932703971863,
0.1972968429327011,
0.4511882960796356,
0.35217607021331787,
-0.4260595142841339,
-0.5830506682395935,
-0.6435114145278931,
0.1067785769701004,
-0.25197353959083557,
0.18354754149913788,
0.40844449400901794,
0.8036336898803711,
-0.27419406175613403,
0.7604513764381409,
-0.6942024827003479,
-0.306091845035553,
-0.23013684153556824,
-0.3302340805530548,
0.402702271938324,
0.7598745226860046,
0.6896165013313293,
-0.875390887260437,
-0.47726041078567505,
-0.2556813657283783,
-0.6557012796401978,
-0.0794278010725975,
-0.02797442302107811,
-0.3145269453525543,
0.04787745699286461,
0.2048424929380417,
-0.713688850402832,
0.5335483551025391,
0.5320456027984619,
-0.6970746517181396,
0.6162458658218384,
0.07023122906684875,
-0.03639358654618263,
-1.227317214012146,
0.38599008321762085,
0.25475233793258667,
0.048920754343271255,
-0.5593934059143066,
-0.17850863933563232,
-0.06462401151657104,
0.017879994586110115,
-0.04189838096499443,
0.5877496004104614,
-0.3246825933456421,
0.31343427300453186,
0.19681476056575775,
0.06888982653617859,
0.06577201187610626,
0.4143142104148865,
-0.08576641231775284,
0.25330042839050293,
1.0262346267700195,
-0.36774110794067383,
0.7214311361312866,
0.5711432099342346,
-0.19213619828224182,
0.7919217944145203,
-0.7996798753738403,
0.035817716270685196,
-0.27116793394088745,
0.44429102540016174,
-0.8689208030700684,
-0.5569739937782288,
0.8017576336860657,
-0.6597804427146912,
0.45580679178237915,
-0.309695839881897,
-0.5950510501861572,
-0.8896399140357971,
-0.7045307755470276,
0.14311514794826508,
0.5444322824478149,
-0.39305540919303894,
0.387954443693161,
0.6164495944976807,
0.09297841042280197,
-0.38107845187187195,
-0.7569789290428162,
-0.12186169624328613,
-0.4107263684272766,
-0.7950437664985657,
0.36603593826293945,
-0.37633073329925537,
-0.09419017285108566,
0.10593261569738388,
0.0883193165063858,
0.1139577254652977,
-0.021029718220233917,
0.398074209690094,
0.33915281295776367,
0.10734261572360992,
0.023581726476550102,
-0.11506763100624084,
-0.23466487228870392,
0.13476690649986267,
-0.23992688953876495,
0.275907963514328,
-0.29208511114120483,
-0.07226517796516418,
-0.6504648327827454,
0.17571353912353516,
0.4793264865875244,
-0.2617480158805847,
0.6863504648208618,
0.8357135653495789,
-0.20556485652923584,
0.026224618777632713,
-0.5390774607658386,
-0.13068491220474243,
-0.4220990836620331,
0.012597468681633472,
-0.20480191707611084,
-0.6592574119567871,
0.9112263321876526,
0.22376936674118042,
0.07180561870336533,
0.6209837198257446,
0.5090273022651672,
-0.0028690556064248085,
0.6874168515205383,
0.37743067741394043,
-0.31067219376564026,
0.4940672814846039,
-0.6949575543403625,
-0.17046114802360535,
-0.8089192509651184,
-0.40623393654823303,
-0.5191383361816406,
-0.5130966901779175,
-0.9103934168815613,
-0.45236682891845703,
0.22536097466945648,
0.11985817551612854,
-0.26243066787719727,
0.42797327041625977,
-0.9315962791442871,
0.25129571557044983,
0.3310520052909851,
0.2518652677536011,
-0.08502166718244553,
0.08711625635623932,
0.09704281389713287,
0.154774010181427,
-0.5267120003700256,
-0.2056208848953247,
1.1740614175796509,
0.5228332281112671,
0.5816308259963989,
-0.05792469158768654,
0.8004977703094482,
0.008858471177518368,
0.2507191598415375,
-0.5694841742515564,
0.4758700728416443,
0.031194237992167473,
-0.5349663496017456,
-0.1672438383102417,
-0.5417892932891846,
-0.9384651780128479,
-0.1656518131494522,
-0.41137996315956116,
-0.7388007044792175,
0.4630168676376343,
0.11105650663375854,
-0.2206333726644516,
0.42268818616867065,
-0.6169775724411011,
0.8579742908477783,
0.0038226579781621695,
-0.4730450510978699,
0.28662365674972534,
-1.049130916595459,
0.2283610999584198,
0.1395399421453476,
0.31459859013557434,
-0.3706526756286621,
0.007422842085361481,
0.9916331171989441,
-0.8034771084785461,
0.9226985573768616,
-0.3723300099372864,
0.08476413786411285,
0.5638688206672668,
-0.2777562141418457,
0.49327126145362854,
0.13278333842754364,
-0.2786634862422943,
0.3766755163669586,
0.03707071766257286,
-0.4426550269126892,
-0.4086996614933014,
0.6984041333198547,
-0.7318098545074463,
0.011595485731959343,
-0.33521848917007446,
-0.4614502787590027,
0.05407451093196869,
0.1779550462961197,
0.27084457874298096,
0.41249871253967285,
0.03767811134457588,
0.155035138130188,
0.4804428517818451,
-0.11827898770570755,
0.2931077778339386,
0.0418291836977005,
-0.1057773306965828,
-0.7494640350341797,
0.9053741097450256,
0.18704727292060852,
0.048592764884233475,
-0.05864895507693291,
0.4604083001613617,
-0.38574278354644775,
-0.14746242761611938,
-0.5855180621147156,
0.539463222026825,
-0.31897836923599243,
-0.3985833525657654,
-0.5319464802742004,
-0.16794231534004211,
-0.6685393452644348,
-0.17488548159599304,
-0.22671931982040405,
-0.4795953035354614,
-0.20807170867919922,
-0.22396908700466156,
1.0547032356262207,
0.4434666335582733,
-0.7511072754859924,
0.10154732316732407,
-0.5355610251426697,
0.3184961676597595,
-0.05973357334733009,
0.6894704103469849,
-0.09817403554916382,
-0.3295845687389374,
-0.19674921035766602,
0.07349850982427597,
-0.20406796038150787,
-0.6633368730545044,
0.2502358853816986,
-0.07641549408435822,
0.3262425661087036,
0.17836356163024902,
0.1772335022687912,
0.6700812578201294,
-0.06206178292632103,
0.6340242028236389,
0.29928112030029297,
-0.7691019773483276,
0.6388982534408569,
-0.5234230160713196,
0.10534500330686569,
0.7005875706672668,
0.43128907680511475,
-0.5949379801750183,
-0.18118400871753693,
-0.9802347421646118,
-0.8566669225692749,
0.7739959955215454,
0.3980157673358917,
0.08220577985048294,
0.2281934916973114,
0.5466986298561096,
-0.17994903028011322,
0.27052006125450134,
-0.6774845719337463,
-0.8868244886398315,
-0.3583986461162567,
-0.2958081364631653,
-0.07753747701644897,
-0.10531600564718246,
-0.2917322516441345,
-0.7012453675270081,
0.7702968716621399,
-0.11113777756690979,
0.2862792909145355,
0.3954843282699585,
0.47094589471817017,
-0.2173367589712143,
-0.01738005317747593,
0.22221621870994568,
0.3956524431705475,
-0.2703615427017212,
-0.2947152853012085,
-0.2192114144563675,
-0.6934322714805603,
-0.1254635751247406,
0.5379928946495056,
-0.34269464015960693,
-0.07426754385232925,
0.2946074604988098,
0.8605353236198425,
-0.062517449259758,
-0.26263394951820374,
0.6446828842163086,
-0.08574645221233368,
-0.43013787269592285,
-0.4262740910053253,
-0.012891518883407116,
0.10860352218151093,
0.19152545928955078,
0.05677599832415581,
0.02680675871670246,
-0.10121850669384003,
-0.4259074926376343,
0.3860977590084076,
0.25886496901512146,
-0.3925314247608185,
-0.4727340638637543,
0.5631656646728516,
0.04767698422074318,
-0.07828066498041153,
0.4512627124786377,
-0.2001236081123352,
-0.594003438949585,
0.7647790312767029,
0.11976762115955353,
0.7852045297622681,
-0.17186769843101501,
0.3201025724411011,
0.7786364555358887,
0.2352302223443985,
-0.05199497938156128,
0.47980359196662903,
-0.19787859916687012,
-0.5890979766845703,
-0.1530674546957016,
-0.5684744715690613,
-0.063248410820961,
0.13690008223056793,
-0.8362115621566772,
0.45427533984184265,
-0.5129898190498352,
-0.20172011852264404,
0.06997935473918915,
0.3893886208534241,
-0.6753932237625122,
0.12771901488304138,
-0.031262945383787155,
1.0470592975616455,
-1.046067237854004,
0.45967501401901245,
0.696672260761261,
-0.641729474067688,
-1.2314610481262207,
-0.10720672458410263,
0.19385050237178802,
-0.5811610221862793,
0.18349367380142212,
0.23692351579666138,
0.5383183360099792,
-0.06435701996088028,
-0.9620435237884521,
-0.6631321907043457,
1.1000502109527588,
0.04210807755589485,
-0.2600547671318054,
0.3117271959781647,
0.06346338242292404,
0.6294073462486267,
-0.2890484035015106,
0.27974259853363037,
0.6599679589271545,
0.7582607269287109,
0.35738450288772583,
-0.7657203674316406,
0.3252088725566864,
-0.5631951689720154,
-0.2687457203865051,
0.14789807796478271,
-1.0343202352523804,
0.5772143602371216,
-0.18709641695022583,
-0.006008062977343798,
0.025072110816836357,
0.5682286620140076,
0.4400160610675812,
0.4024917781352997,
0.461064875125885,
0.7811230421066284,
0.7966333031654358,
-0.32092294096946716,
1.2367357015609741,
-0.2323525846004486,
0.630115270614624,
0.764614462852478,
0.07138083130121231,
0.460241436958313,
0.24074508249759674,
-0.3213309943675995,
0.5452421307563782,
0.6054728031158447,
-0.47701823711395264,
0.19217993319034576,
0.44090500473976135,
-0.03832411393523216,
-0.11914566904306412,
-0.2401847392320633,
-0.6219325661659241,
0.3306262791156769,
0.2833555042743683,
-0.30569222569465637,
0.004791400395333767,
-0.0462300144135952,
0.4229939579963684,
-0.05055804178118706,
-0.3479296565055847,
0.6395369172096252,
0.024224625900387764,
-0.3315022587776184,
0.572076678276062,
-0.2072978913784027,
0.7040164470672607,
-0.5968550443649292,
0.14857347309589386,
-0.0711095929145813,
0.12609952688217163,
-0.6008510589599609,
-1.0740752220153809,
0.3808771073818207,
-0.1084909588098526,
-0.2331174612045288,
-0.2942991256713867,
0.7014895081520081,
-0.4488840699195862,
-0.7776979804039001,
0.233891099691391,
0.14777377247810364,
0.3515297472476959,
0.11270253360271454,
-1.2346919775009155,
0.6400243639945984,
0.14014145731925964,
-0.4427744746208191,
0.11014420539140701,
0.5592432022094727,
0.13907574117183685,
0.5117461681365967,
0.7415862083435059,
0.2748313844203949,
-0.23585043847560883,
0.05339629948139191,
1.118888258934021,
-0.5683187246322632,
-0.488064169883728,
-0.7418952584266663,
0.8331500887870789,
-0.40551266074180603,
-0.38548147678375244,
0.6779680848121643,
0.7926301956176758,
0.8671455383300781,
0.058413729071617126,
0.7858808040618896,
-0.6696987152099609,
0.6832984685897827,
-0.19552300870418549,
0.9154157638549805,
-0.6869804263114929,
-0.09075245261192322,
-0.7563893795013428,
-0.53025883436203,
-0.4532998502254486,
0.6219162940979004,
-0.22491583228111267,
0.16977278888225555,
0.25424495339393616,
0.9022613167762756,
0.015170762315392494,
0.10807958245277405,
-0.22389362752437592,
0.42119452357292175,
0.3093600571155548,
0.5422541499137878,
0.41069838404655457,
-0.865408718585968,
0.4096928536891937,
-0.7410966157913208,
-0.36074066162109375,
0.004590335767716169,
-0.8621882796287537,
-0.9029560685157776,
-0.9169163107872009,
-0.7035766243934631,
-0.8503837585449219,
-0.3005644977092743,
1.0328106880187988,
0.7074657678604126,
-0.6397382020950317,
-0.21780310571193695,
0.1111232340335846,
0.293356716632843,
-0.07295424491167068,
-0.3248143792152405,
0.6857842206954956,
0.3821772634983063,
-0.5979451537132263,
-0.1988486498594284,
0.02890567108988762,
0.22437784075737,
0.049994632601737976,
-0.03771146759390831,
-0.0813448578119278,
-0.3031403124332428,
0.35787615180015564,
0.5116491913795471,
-0.29978081583976746,
-0.14519177377223969,
-0.2979445159435272,
0.016876529902219772,
0.11798380315303802,
0.48632657527923584,
-0.4961095452308655,
0.18296779692173004,
0.585899293422699,
0.27664434909820557,
0.48224541544914246,
0.18079932034015656,
-0.013601546175777912,
-0.4657000005245209,
0.12692126631736755,
-0.04267798736691475,
0.30251434445381165,
0.3590680658817291,
-0.47719651460647583,
0.7890565991401672,
0.584317147731781,
-0.5297812223434448,
-0.8672032356262207,
-0.13679161667823792,
-1.3798198699951172,
0.0945291742682457,
1.1182081699371338,
-0.0025967261753976345,
-0.5644833445549011,
0.009704848751425743,
-0.2374124974012375,
0.10161053389310837,
-0.576184868812561,
0.495399534702301,
0.49680912494659424,
-0.0833623856306076,
0.21006925404071808,
-0.34845462441444397,
0.6075688004493713,
-0.0952046811580658,
-0.8981033563613892,
0.24629142880439758,
0.5044688582420349,
0.46314680576324463,
0.3683353066444397,
0.7702330350875854,
-0.31090545654296875,
0.032625701278448105,
-0.07784301787614822,
0.2653246521949768,
-0.2925597131252289,
0.05108518525958061,
-0.3494138717651367,
-0.11358840763568878,
-0.5073134303092957,
-0.17948542535305023
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/travis-scott | huggingartists | 2022-10-25T09:48:52Z | 292 | 1 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:48:52Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
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.6399362683296204,
-0.591759979724884,
0.14490842819213867,
0.2667762041091919,
-0.25862544775009155,
0.13928081095218658,
-0.38733139634132385,
-0.4469074606895447,
0.8964572548866272,
0.2940734028816223,
-0.9787763357162476,
-0.8624632954597473,
-0.5627315044403076,
0.10626735538244247,
-0.22783257067203522,
1.2810468673706055,
-0.21941111981868744,
-0.46184179186820984,
-0.28562846779823303,
-0.27247294783592224,
-0.35145512223243713,
-0.3735409379005432,
-0.2873021066188812,
-0.2797049283981323,
0.41809365153312683,
0.5041735768318176,
0.7396075129508972,
0.8915744423866272,
0.5927466154098511,
0.336460143327713,
-0.08361418545246124,
-0.050733618438243866,
-0.3708341121673584,
-0.03825050964951515,
0.16956830024719238,
-0.24604400992393494,
-0.618520200252533,
0.22056303918361664,
0.5236467719078064,
0.32785412669181824,
-0.11846201866865158,
0.48047536611557007,
-0.015425113961100578,
0.8290165066719055,
-0.2977217733860016,
0.45748797059059143,
-0.3029511570930481,
-0.27345630526542664,
-0.33514246344566345,
-0.0008399286307394505,
0.20367494225502014,
-0.5489712953567505,
-0.08563841134309769,
-0.7300395965576172,
0.07894741743803024,
0.032439734786748886,
1.0223771333694458,
0.08245469629764557,
0.08589400351047516,
-0.24658896028995514,
-0.21203073859214783,
0.5207438468933105,
-0.5759243369102478,
0.07853004336357117,
0.5214559435844421,
0.1953972727060318,
0.06845593452453613,
-0.6762964725494385,
-0.6536261439323425,
0.09284884482622147,
-0.1393238753080368,
0.2480524182319641,
-0.17582832276821136,
-0.31663504242897034,
0.4867723882198334,
0.5412409901618958,
-0.4834068715572357,
-0.2674626410007477,
-0.5364644527435303,
-0.11181347817182541,
1.1760036945343018,
0.1933695375919342,
0.4153834581375122,
-0.4323995113372803,
-0.23238909244537354,
-0.459783673286438,
-0.256908118724823,
0.38326922059059143,
0.5127688050270081,
0.5107676982879639,
-1.0134963989257812,
0.5909325480461121,
-0.2052813172340393,
0.5225128531455994,
0.13311192393302917,
-0.011980338022112846,
0.8266127109527588,
-0.4923282265663147,
-0.12851263582706451,
-0.1578236073255539,
1.078434705734253,
0.605412483215332,
0.1676492840051651,
0.05773065611720085,
-0.12194468826055527,
0.04195784777402878,
-0.14398275315761566,
-0.8119525909423828,
-0.3983859717845917,
0.7021690011024475,
-0.5083149671554565,
-0.5908458232879639,
0.25863882899284363,
-0.9291682243347168,
-0.22316791117191315,
-0.30561769008636475,
0.23516392707824707,
-0.40086817741394043,
-0.5062405467033386,
0.11887431144714355,
-0.3042837381362915,
0.141509547829628,
0.011094929650425911,
-0.5688596963882446,
0.20090538263320923,
0.5732170939445496,
0.7344534993171692,
0.23209330439567566,
-0.326173335313797,
-0.30558761954307556,
-0.1607048511505127,
-0.12730912864208221,
0.6420566439628601,
-0.29812657833099365,
-0.33153706789016724,
-0.17978546023368835,
0.3654457926750183,
-0.033387649804353714,
-0.24480848014354706,
0.9189460873603821,
0.02857840806245804,
0.09288175404071808,
-0.6816415786743164,
-0.37841513752937317,
0.0033706955146044493,
0.26891207695007324,
-0.7419905066490173,
1.0721677541732788,
0.3736826479434967,
-0.9676134586334229,
0.21950094401836395,
-0.8532534241676331,
-0.3520709276199341,
0.06442750990390778,
0.032637834548950195,
-0.7609254717826843,
-0.2267221361398697,
0.23007260262966156,
0.7120736241340637,
-0.2916434705257416,
0.03888023644685745,
-0.6312582492828369,
-0.13230329751968384,
0.40775617957115173,
0.3001245856285095,
1.1910494565963745,
0.14638659358024597,
-0.15339985489845276,
0.1616305559873581,
-0.8782877326011658,
0.18742696940898895,
0.46859103441238403,
-0.15085464715957642,
-0.047845423221588135,
-0.18284228444099426,
0.510093092918396,
0.29522469639778137,
0.036236632615327835,
-0.5935328602790833,
0.3654550611972809,
-0.19612163305282593,
0.5790704488754272,
0.748332679271698,
0.04375850036740303,
0.2812541127204895,
-0.6568977236747742,
0.39481213688850403,
0.0951080396771431,
0.37215179204940796,
-0.006364979315549135,
-0.5079644322395325,
-0.4094723165035248,
-0.2989773452281952,
0.3090793490409851,
0.426521897315979,
-0.6196770071983337,
1.0250446796417236,
-0.39599454402923584,
-0.8220918774604797,
-0.5488263368606567,
0.21834830939769745,
0.11767467856407166,
0.4612511694431305,
0.37060654163360596,
-0.4345698356628418,
-0.6368179321289062,
-0.645153284072876,
0.07232479751110077,
-0.25088486075401306,
0.20033925771713257,
0.3996032178401947,
0.8121536374092102,
-0.2920178174972534,
0.9208012223243713,
-0.6401388049125671,
-0.2669717073440552,
-0.29814204573631287,
-0.36455145478248596,
0.3409256339073181,
0.7876501679420471,
0.7679802775382996,
-0.8167365789413452,
-0.44339466094970703,
-0.2723846435546875,
-0.6400521397590637,
-0.06193665787577629,
-0.06449186056852341,
-0.29634329676628113,
-0.00453998614102602,
0.14234228432178497,
-0.6821112632751465,
0.5343890190124512,
0.4462928771972656,
-0.678686261177063,
0.43653225898742676,
0.08926375210285187,
0.026326440274715424,
-1.2499892711639404,
0.32748785614967346,
0.24958312511444092,
0.004311973229050636,
-0.5273754596710205,
-0.18815454840660095,
-0.006310540717095137,
0.009514888748526573,
-0.06809234619140625,
0.5755956768989563,
-0.2994025945663452,
0.3022865056991577,
0.1598743051290512,
0.09944159537553787,
0.09166175872087479,
0.43057164549827576,
-0.13666242361068726,
0.2977401614189148,
0.9727348685264587,
-0.3482857644557953,
0.7376055717468262,
0.5697342753410339,
-0.19120211899280548,
0.784040093421936,
-0.8038008213043213,
0.06251630932092667,
-0.21449404954910278,
0.4589290916919708,
-0.8782795071601868,
-0.5700328350067139,
0.8289778828620911,
-0.7296124696731567,
0.34247586131095886,
-0.19101107120513916,
-0.6317071318626404,
-0.8732870221138,
-0.7087271213531494,
0.15718968212604523,
0.5533072352409363,
-0.41394370794296265,
0.3659384250640869,
0.5672600269317627,
0.12176625430583954,
-0.31979548931121826,
-0.8145871162414551,
-0.13399045169353485,
-0.38970470428466797,
-0.8109902739524841,
0.39379772543907166,
-0.3493632376194,
-0.12498404830694199,
0.1374669075012207,
0.04828067868947983,
0.06697487831115723,
0.03026234172284603,
0.4676956534385681,
0.3469548523426056,
0.08744364976882935,
0.04355304688215256,
-0.10055447369813919,
-0.1684325784444809,
0.14902947843074799,
-0.23356105387210846,
0.27736586332321167,
-0.32638081908226013,
-0.1248571053147316,
-0.668052077293396,
0.1465049833059311,
0.4823104441165924,
-0.2921108901500702,
0.6769255995750427,
0.7860070466995239,
-0.2310173511505127,
-0.04728704318404198,
-0.4628508388996124,
-0.14855092763900757,
-0.4172608256340027,
0.02557571604847908,
-0.2028643637895584,
-0.5334075689315796,
0.9397271871566772,
0.2752942442893982,
0.09904485195875168,
0.7077159285545349,
0.5341734290122986,
-0.135135218501091,
0.6320904493331909,
0.3289346992969513,
-0.29527848958969116,
0.5924093127250671,
-0.7114312648773193,
-0.1364039182662964,
-0.7991093397140503,
-0.419850617647171,
-0.550396740436554,
-0.552838921546936,
-0.8359484672546387,
-0.4134700298309326,
0.13167154788970947,
0.11510688811540604,
-0.27429109811782837,
0.5336278080940247,
-0.9626755714416504,
0.3134814500808716,
0.40323591232299805,
0.31557533144950867,
-0.11998307704925537,
0.04439963772892952,
0.13425318896770477,
0.1850777566432953,
-0.509754478931427,
-0.2361176460981369,
1.2493897676467896,
0.45967772603034973,
0.5600243806838989,
-0.0855938270688057,
0.8312051296234131,
0.08187297731637955,
0.2321581393480301,
-0.5175341963768005,
0.4061576724052429,
0.12448231875896454,
-0.5976638793945312,
-0.16087406873703003,
-0.45963653922080994,
-0.831150233745575,
-0.24598363041877747,
-0.44944122433662415,
-0.6788926720619202,
0.430671751499176,
0.06621241569519043,
-0.22253099083900452,
0.3711739182472229,
-0.7047383189201355,
0.8244032263755798,
-0.11942218244075775,
-0.41424235701560974,
0.2606598734855652,
-1.0607775449752808,
0.19776034355163574,
0.15215390920639038,
0.35281237959861755,
-0.39673322439193726,
0.019786149263381958,
1.0347312688827515,
-0.8273783922195435,
0.8429494500160217,
-0.3483368754386902,
0.1737058162689209,
0.6031402349472046,
-0.36358150839805603,
0.48679882287979126,
0.1428854763507843,
-0.21704447269439697,
0.3005571663379669,
0.13374586403369904,
-0.4975915849208832,
-0.44941291213035583,
0.6987656354904175,
-0.7366847395896912,
0.1101786345243454,
-0.3300274908542633,
-0.45497021079063416,
0.014658208005130291,
0.15709061920642853,
0.2669413983821869,
0.3721996247768402,
0.0077244918793439865,
0.16074764728546143,
0.3064619302749634,
-0.07654239982366562,
0.32245296239852905,
-0.006012549623847008,
-0.06947013735771179,
-0.7876123785972595,
0.8849315643310547,
0.15583683550357819,
0.030305320397019386,
-0.0681035965681076,
0.36905014514923096,
-0.40657272934913635,
-0.16965316236019135,
-0.5633501410484314,
0.44492006301879883,
-0.45467615127563477,
-0.434671014547348,
-0.46739885210990906,
-0.2016061544418335,
-0.6526639461517334,
-0.24466757476329803,
-0.2555553913116455,
-0.507700502872467,
-0.22091107070446014,
-0.2473089098930359,
1.1051881313323975,
0.4857850670814514,
-0.6000824570655823,
0.18873265385627747,
-0.47046422958374023,
0.29020988941192627,
-0.13810496032238007,
0.6918106079101562,
-0.10153765976428986,
-0.2745160758495331,
-0.2283361703157425,
0.17308300733566284,
-0.26500117778778076,
-0.661511242389679,
0.23340018093585968,
-0.06424649059772491,
0.3768656849861145,
0.11445494741201401,
0.2271801084280014,
0.697946310043335,
0.04966641589999199,
0.6232638955116272,
0.2957721948623657,
-0.8349321484565735,
0.744046688079834,
-0.48218056559562683,
0.06309247761964798,
0.7930435538291931,
0.23274648189544678,
-0.5951753854751587,
-0.23786301910877228,
-1.019667625427246,
-0.870543360710144,
0.8394732475280762,
0.48659464716911316,
0.08999815583229065,
0.194857656955719,
0.5126423835754395,
-0.21165421605110168,
0.25869885087013245,
-0.6489035487174988,
-0.8503414988517761,
-0.4232307970523834,
-0.41818496584892273,
-0.09444551914930344,
-0.012440388090908527,
-0.3020436763763428,
-0.7365648150444031,
0.737969696521759,
-0.06986594945192337,
0.2706696093082428,
0.4178580939769745,
0.38486143946647644,
-0.2134495973587036,
0.04170600697398186,
0.26709598302841187,
0.4124051630496979,
-0.3038609027862549,
-0.3458828628063202,
-0.18803612887859344,
-0.6145663261413574,
-0.13593029975891113,
0.42908886075019836,
-0.29270413517951965,
-0.08706087619066238,
0.32793447375297546,
0.838123619556427,
-0.05110450088977814,
-0.28010472655296326,
0.6150580048561096,
-0.06274988502264023,
-0.4498635530471802,
-0.3530791103839874,
0.04265965521335602,
0.15519662201404572,
0.2456887811422348,
0.07148148119449615,
0.11799221485853195,
-0.18867629766464233,
-0.4793485105037689,
0.37499549984931946,
0.2744843363761902,
-0.3533472418785095,
-0.47773879766464233,
0.6785324811935425,
0.11603319644927979,
-0.177070751786232,
0.48594236373901367,
-0.08781551569700241,
-0.6145029664039612,
0.8230916261672974,
0.0615556575357914,
0.8077291250228882,
-0.01592254266142845,
0.22901439666748047,
0.7487486004829407,
0.23246249556541443,
-0.029440863057971,
0.5155181884765625,
-0.3161769509315491,
-0.5773518085479736,
0.024023227393627167,
-0.47989368438720703,
-0.0862555131316185,
0.01311476994305849,
-0.8147547841072083,
0.5101982355117798,
-0.5470377802848816,
-0.25176912546157837,
0.07057862728834152,
0.4279021620750427,
-0.7882626056671143,
0.2014796882867813,
-0.08812142163515091,
1.023241639137268,
-1.016003966331482,
0.5514101386070251,
0.6497811675071716,
-0.7400846481323242,
-1.2390804290771484,
-0.11530094593763351,
0.19520598649978638,
-0.5927363038063049,
0.20106349885463715,
0.14769959449768066,
0.47619515657424927,
-0.03538263961672783,
-0.9430453777313232,
-0.6154056191444397,
1.2410922050476074,
0.037376534193754196,
-0.23096244037151337,
0.33724796772003174,
0.0663231909275055,
0.6118234395980835,
-0.36462828516960144,
0.33399930596351624,
0.633786141872406,
0.6887613534927368,
0.3761216998100281,
-0.6793065667152405,
0.3292645812034607,
-0.5606167316436768,
-0.25263160467147827,
0.09779562056064606,
-0.9738540053367615,
0.6108713150024414,
-0.2360049933195114,
-0.08833787590265274,
-0.0349382646381855,
0.5270760655403137,
0.4025994539260864,
0.4533836543560028,
0.4567643105983734,
0.6994602680206299,
0.8199284076690674,
-0.37198153138160706,
1.2231371402740479,
-0.36984407901763916,
0.708599328994751,
0.7874951362609863,
0.04746470972895622,
0.5300642848014832,
0.3007892966270447,
-0.3702428936958313,
0.5538755059242249,
0.6735283136367798,
-0.4015222489833832,
0.25013643503189087,
0.3510887324810028,
0.002723179990425706,
-0.0601150207221508,
-0.11506950855255127,
-0.6740817427635193,
0.29343727231025696,
0.1792808175086975,
-0.36316919326782227,
0.02753499709069729,
-0.07991170883178711,
0.3028404712677002,
-0.044843755662441254,
-0.21447426080703735,
0.6079534292221069,
-0.042951345443725586,
-0.296554297208786,
0.5535083413124084,
-0.15128716826438904,
0.668729841709137,
-0.5831586718559265,
0.24315094947814941,
-0.10219524055719376,
0.12799814343452454,
-0.6413443684577942,
-1.1118117570877075,
0.4296605587005615,
-0.0380873940885067,
-0.23576918244361877,
-0.3885554075241089,
0.6392917037010193,
-0.35658589005470276,
-0.8062301874160767,
0.2575893998146057,
0.2365167886018753,
0.2468392550945282,
0.08746702969074249,
-1.1882588863372803,
0.6116057634353638,
0.09377926588058472,
-0.45879894495010376,
0.05509847775101662,
0.5239308476448059,
0.15404126048088074,
0.5542507767677307,
0.7645425796508789,
0.2223825603723526,
-0.21687155961990356,
0.05219735950231552,
1.14133620262146,
-0.6656833291053772,
-0.505274772644043,
-0.7752202749252319,
0.8442962169647217,
-0.335693895816803,
-0.373125284910202,
0.649907112121582,
0.8232359886169434,
0.9061061143875122,
0.0878717377781868,
0.8128598928451538,
-0.7083580493927002,
0.6948748230934143,
-0.15981319546699524,
0.924808919429779,
-0.7307565808296204,
0.03630518168210983,
-0.7417458295822144,
-0.47962895035743713,
-0.3631044924259186,
0.5870516300201416,
-0.19572186470031738,
0.22627770900726318,
0.33946019411087036,
0.8852736949920654,
0.028674516826868057,
0.14354407787322998,
-0.30581435561180115,
0.26954707503318787,
0.3139301538467407,
0.5724960565567017,
0.4030942916870117,
-0.908656120300293,
0.44074389338493347,
-0.8062174916267395,
-0.24665309488773346,
0.05876309052109718,
-0.754682183265686,
-0.863078773021698,
-1.0054941177368164,
-0.6244548559188843,
-0.8196740746498108,
-0.31947657465934753,
1.1164789199829102,
0.7808599472045898,
-0.7127174139022827,
-0.23800307512283325,
-0.0033292840234935284,
0.33468353748321533,
-0.07741231471300125,
-0.32733088731765747,
0.5972070693969727,
0.31839844584465027,
-0.5666331052780151,
-0.1997491866350174,
0.0031982101500034332,
0.21054507791996002,
0.13149414956569672,
-0.10159759968519211,
-0.08499438315629959,
-0.2923281192779541,
0.3067180812358856,
0.49048179388046265,
-0.41585811972618103,
-0.13480563461780548,
-0.19587615132331848,
-0.017515724524855614,
0.26830652356147766,
0.5272098779678345,
-0.6096453666687012,
0.15970949828624725,
0.5942419171333313,
0.29612600803375244,
0.4707028269767761,
0.24885353446006775,
-0.012361078523099422,
-0.49052420258522034,
0.08029929548501968,
-0.05265142396092415,
0.27478304505348206,
0.3615983724594116,
-0.45624256134033203,
0.7892470359802246,
0.5902599692344666,
-0.43681761622428894,
-0.8590943217277527,
-0.20729170739650726,
-1.4209798574447632,
0.09657199680805206,
1.0268651247024536,
0.08102048188447952,
-0.52695232629776,
0.09674986451864243,
-0.23812001943588257,
0.14195135235786438,
-0.6129401922225952,
0.43118223547935486,
0.5959720015525818,
-0.08857432007789612,
0.1321231722831726,
-0.36028674244880676,
0.5735651254653931,
-0.12774699926376343,
-0.9814132452011108,
0.23973222076892853,
0.401684045791626,
0.5257108807563782,
0.24338333308696747,
0.8276376724243164,
-0.22930920124053955,
0.06308043748140335,
-0.033583447337150574,
0.2304549515247345,
-0.31065016984939575,
0.04239309951663017,
-0.32488828897476196,
-0.17464493215084076,
-0.44507771730422974,
-0.2892128527164459
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
huggingartists/twenty-one-pilots | huggingartists | 2022-10-25T09:48:59Z | 292 | 0 | null | [
"language:en",
"huggingartists",
"lyrics",
"region:us"
] | 2022-10-25T09:48:59Z | 2022-03-02T23:29:22.000Z | 2022-03-02T23:29:22 | ---
language:
- en
tags:
- huggingartists
- lyrics
---
# Dataset Card for "huggingartists/twenty-one-pilots"
## Table of Contents
- [Dataset Description](#dataset-description)
- [Dataset Summary](#dataset-summary)
- [Supported Tasks and Leaderboards](#supported-tasks-and-leaderboards)
- [Languages](#languages)
- [How to use](#how-to-use)
- [Dataset Structure](#dataset-structure)
- [Data Fields](#data-fields)
- [Data Splits](#data-splits)
- [Dataset Creation](#dataset-creation)
- [Curation Rationale](#curation-rationale)
- [Source Data](#source-data)
- [Annotations](#annotations)
- [Personal and Sensitive Information](#personal-and-sensitive-information)
- [Considerations for Using the Data](#considerations-for-using-the-data)
- [Social Impact of Dataset](#social-impact-of-dataset)
- [Discussion of Biases](#discussion-of-biases)
- [Other Known Limitations](#other-known-limitations)
- [Additional Information](#additional-information)
- [Dataset Curators](#dataset-curators)
- [Licensing Information](#licensing-information)
- [Citation Information](#citation-information)
- [About](#about)
## Dataset Description
- **Homepage:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Repository:** [https://github.com/AlekseyKorshuk/huggingartists](https://github.com/AlekseyKorshuk/huggingartists)
- **Paper:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Point of Contact:** [More Information Needed](https://github.com/huggingface/datasets/blob/master/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)
- **Size of the generated dataset:** 0.348302 MB
<div class="inline-flex flex-col" style="line-height: 1.5;">
<div class="flex">
<div style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%; background-size: cover; background-image: url('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.6517932415008545,
-0.4924493730068207,
0.10954603552818298,
0.35700270533561707,
-0.21806663274765015,
0.06301672011613846,
-0.2980636656284332,
-0.3961259126663208,
0.8353506326675415,
0.3840080201625824,
-0.9886038899421692,
-0.8281598687171936,
-0.5155630707740784,
0.10962307453155518,
-0.10299371182918549,
1.2360047101974487,
-0.17380359768867493,
-0.3660622239112854,
-0.3535492420196533,
-0.22064267098903656,
-0.30313944816589355,
-0.3894200921058655,
-0.33970049023628235,
-0.27652743458747864,
0.4022739827632904,
0.5119569897651672,
0.6943550109863281,
0.9057047963142395,
0.5869230031967163,
0.3284952640533447,
-0.12747710943222046,
-0.015305466949939728,
-0.36396166682243347,
-0.18860167264938354,
0.25881439447402954,
-0.2584632933139801,
-0.6863841414451599,
0.19868828356266022,
0.5527647733688354,
0.45089685916900635,
-0.07394245266914368,
0.4235793948173523,
-0.0010550816077739,
0.8942224979400635,
-0.27855733036994934,
0.40737849473953247,
-0.20480868220329285,
-0.17592819035053253,
-0.3171018362045288,
0.042509909719228745,
0.16150453686714172,
-0.5443580150604248,
-0.041446708142757416,
-0.8504137992858887,
0.017567956820130348,
-0.0023966028820723295,
1.01558256149292,
0.06885020434856415,
0.029058227315545082,
-0.19540679454803467,
-0.14678245782852173,
0.5265926122665405,
-0.6374653577804565,
0.00013247034803498536,
0.5768428444862366,
0.16362568736076355,
0.019486086443066597,
-0.6167582869529724,
-0.5971204042434692,
0.0880170688033104,
-0.12604868412017822,
0.2937485873699188,
-0.1777275651693344,
-0.2842373549938202,
0.434763103723526,
0.49558836221694946,
-0.5677806735038757,
-0.17808231711387634,
-0.5659806728363037,
-0.113340362906456,
1.1993989944458008,
0.1701582372188568,
0.3590174913406372,
-0.46106892824172974,
-0.2171955704689026,
-0.4081522822380066,
-0.2621071934700012,
0.35046207904815674,
0.5771487355232239,
0.4834882616996765,
-1.0896276235580444,
0.6072008013725281,
-0.23662438988685608,
0.5777694582939148,
0.15166252851486206,
0.03536510095000267,
0.8000698685646057,
-0.42211100459098816,
-0.1342933624982834,
-0.1810871660709381,
1.0824215412139893,
0.667517364025116,
0.2186499536037445,
0.09997063130140305,
-0.017237788066267967,
0.018834587186574936,
-0.08560023456811905,
-0.7968341708183289,
-0.3843417167663574,
0.6685575246810913,
-0.5874326229095459,
-0.6498258113861084,
0.18945346772670746,
-0.940575897693634,
-0.16276973485946655,
-0.3048970699310303,
0.24770121276378632,
-0.38983163237571716,
-0.5029543042182922,
0.17416027188301086,
-0.33664074540138245,
0.09329317510128021,
0.043657463043928146,
-0.5781249403953552,
0.15310271084308624,
0.6103744506835938,
0.7234181761741638,
0.19793182611465454,
-0.34428489208221436,
-0.22964830696582794,
-0.23389288783073425,
-0.1746450662612915,
0.6626551747322083,
-0.2889367938041687,
-0.40522992610931396,
-0.15856830775737762,
0.3152087926864624,
-0.06574125587940216,
-0.2547343373298645,
0.8650712966918945,
0.029174920171499252,
0.20123177766799927,
-0.6135086417198181,
-0.44516292214393616,
-0.012398243881762028,
0.2890165150165558,
-0.7195013165473938,
1.045456886291504,
0.2976466119289398,
-0.9348888993263245,
0.20312140882015228,
-0.81345534324646,
-0.31540948152542114,
0.025755036622285843,
0.024255404248833656,
-0.8519411087036133,
-0.1820487678050995,
0.20680966973304749,
0.7088414430618286,
-0.27756157517433167,
0.05525967851281166,
-0.6214252710342407,
-0.12255901098251343,
0.3390880227088928,
0.242122620344162,
1.2332274913787842,
0.14529560506343842,
-0.07401704043149948,
0.120314821600914,
-0.9438470005989075,
0.15096960961818695,
0.4501093924045563,
-0.22334659099578857,
-0.06815775483846664,
-0.25790831446647644,
0.4615655839443207,
0.2600948214530945,
0.06719376146793365,
-0.5931277871131897,
0.4361991286277771,
-0.15303756296634674,
0.43540477752685547,
0.6844703555107117,
0.10797856003046036,
0.3032386302947998,
-0.6612986326217651,
0.4467100203037262,
0.09970171749591827,
0.43532222509384155,
-0.013338495045900345,
-0.5275920033454895,
-0.5026883482933044,
-0.24883675575256348,
0.22577640414237976,
0.40355172753334045,
-0.6734367609024048,
1.0058832168579102,
-0.3344593942165375,
-0.907588005065918,
-0.5367133021354675,
0.13591493666172028,
0.17973549664020538,
0.41543880105018616,
0.34487080574035645,
-0.38720083236694336,
-0.6470106244087219,
-0.6355929374694824,
0.0539114810526371,
-0.3216886818408966,
0.2242286205291748,
0.3719559907913208,
0.7818107604980469,
-0.23380285501480103,
0.8147969841957092,
-0.6754801273345947,
-0.2601674497127533,
-0.24617241322994232,
-0.33469530940055847,
0.32129907608032227,
0.8504093885421753,
0.7325608730316162,
-0.8683457374572754,
-0.4742087721824646,
-0.2436230182647705,
-0.7295902967453003,
-0.0026554677169770002,
-0.12121398001909256,
-0.2852492034435272,
-0.029367025941610336,
0.22389180958271027,
-0.663507878780365,
0.5086529850959778,
0.47853487730026245,
-0.7398183941841125,
0.5265794992446899,
0.08333153277635574,
-0.006512634456157684,
-1.2330788373947144,
0.3927779197692871,
0.2266789674758911,
0.04296174272894859,
-0.5963253378868103,
-0.20361711084842682,
-0.04871512949466705,
-0.06110616400837898,
-0.11843739449977875,
0.5936887264251709,
-0.2971862256526947,
0.3524184823036194,
0.14083276689052582,
0.02037825807929039,
0.13615278899669647,
0.45460444688796997,
-0.08933986723423004,
0.24843983352184296,
0.9836235642433167,
-0.3719311058521271,
0.6045663952827454,
0.6142142415046692,
-0.15488269925117493,
0.8356589674949646,
-0.7610878348350525,
0.0406520701944828,
-0.3111656904220581,
0.41228580474853516,
-0.8496029376983643,
-0.5433027148246765,
0.7520604133605957,
-0.7321848273277283,
0.3482474684715271,
-0.17414890229701996,
-0.4731070101261139,
-0.8046441078186035,
-0.6358157396316528,
0.14828839898109436,
0.47526833415031433,
-0.3481893241405487,
0.40067002177238464,
0.5706861019134521,
0.07904797792434692,
-0.3268764317035675,
-0.8093468546867371,
-0.12116559594869614,
-0.40981897711753845,
-0.7431631684303284,
0.41542762517929077,
-0.33574002981185913,
-0.06778386235237122,
0.13667908310890198,
0.10196247696876526,
0.08550409227609634,
0.05678461492061615,
0.4619157314300537,
0.331832617521286,
0.07707665115594864,
0.026318350806832314,
-0.08429492264986038,
-0.19576136767864227,
0.1100509911775589,
-0.25013467669487,
0.229709193110466,
-0.28364571928977966,
-0.10275404900312424,
-0.6335492134094238,
0.2240418940782547,
0.4975222945213318,
-0.2923271954059601,
0.6854205131530762,
0.780738353729248,
-0.24182888865470886,
0.008907764218747616,
-0.4953082799911499,
-0.12308007478713989,
-0.4122081995010376,
0.07006826251745224,
-0.2498815655708313,
-0.61501544713974,
0.9178738594055176,
0.24717265367507935,
0.07492447644472122,
0.7350060343742371,
0.44773945212364197,
-0.11376258730888367,
0.619494616985321,
0.40950843691825867,
-0.3140975832939148,
0.5516453981399536,
-0.7267103791236877,
-0.2886030673980713,
-0.8201437592506409,
-0.5097597241401672,
-0.5418007373809814,
-0.44383692741394043,
-0.8413916826248169,
-0.4337339997291565,
0.23154684901237488,
0.14094533026218414,
-0.30217990279197693,
0.4871692657470703,
-0.9459906816482544,
0.2767433524131775,
0.32643628120422363,
0.2698202431201935,
-0.11595474183559418,
0.05992114171385765,
0.048726215958595276,
0.18326759338378906,
-0.6328039169311523,
-0.21850581467151642,
1.200764536857605,
0.48977532982826233,
0.5213788151741028,
-0.11603391915559769,
0.8604413866996765,
0.05786736309528351,
0.21000589430332184,
-0.48165565729141235,
0.48350998759269714,
-0.032625049352645874,
-0.5780867338180542,
-0.14937801659107208,
-0.5129270553588867,
-0.8835880756378174,
-0.2056175321340561,
-0.4243544936180115,
-0.657680869102478,
0.5384320020675659,
0.060377366840839386,
-0.2946942448616028,
0.3023633062839508,
-0.5787990689277649,
0.8869871497154236,
-0.13023410737514496,
-0.3744134306907654,
0.2667634189128876,
-1.039217472076416,
0.1498335897922516,
0.1379191130399704,
0.2820752263069153,
-0.3984687030315399,
0.042093902826309204,
1.060947060585022,
-0.8138525485992432,
0.933074414730072,
-0.39477160573005676,
0.1715060919523239,
0.5978139638900757,
-0.3411997854709625,
0.4190925657749176,
0.06779123097658157,
-0.2976830005645752,
0.3693331778049469,
0.07479210197925568,
-0.4745616316795349,
-0.40394502878189087,
0.6612536907196045,
-0.78533935546875,
0.11529449373483658,
-0.321908175945282,
-0.4183160662651062,
0.0741095319390297,
0.20941941440105438,
0.3060482442378998,
0.3788129389286041,
-0.020202212035655975,
0.16329985857009888,
0.2680489420890808,
-0.17069774866104126,
0.30182138085365295,
0.07140038907527924,
-0.1557691991329193,
-0.8390135169029236,
0.9272381067276001,
0.1709829568862915,
0.09074915200471878,
0.011066100560128689,
0.38548794388771057,
-0.3672080636024475,
-0.12521307170391083,
-0.5885010957717896,
0.4168868660926819,
-0.45581892132759094,
-0.37425750494003296,
-0.503215491771698,
-0.16698163747787476,
-0.623630702495575,
-0.2225244790315628,
-0.28265321254730225,
-0.5664133429527283,
-0.31740590929985046,
-0.19216351211071014,
1.0292397737503052,
0.4740234911441803,
-0.6204295754432678,
0.21035632491111755,
-0.5007301568984985,
0.25988706946372986,
-0.1343563348054886,
0.5853279829025269,
-0.10185667872428894,
-0.28638526797294617,
-0.25795209407806396,
0.06891494989395142,
-0.2710084617137909,
-0.6049875617027283,
0.22530145943164825,
-0.04061770439147949,
0.39458325505256653,
0.12769150733947754,
0.13845348358154297,
0.7066710591316223,
-0.005157653708010912,
0.6873087882995605,
0.30310961604118347,
-0.8346045613288879,
0.6662726998329163,
-0.5237793326377869,
0.1697353720664978,
0.7939478754997253,
0.35929590463638306,
-0.6095107197761536,
-0.16745097935199738,
-0.9797277450561523,
-0.805518627166748,
0.7708948850631714,
0.4638204872608185,
0.03578944131731987,
0.22804073989391327,
0.5708314776420593,
-0.23340654373168945,
0.29455897212028503,
-0.6028748750686646,
-0.849338173866272,
-0.4316328167915344,
-0.3979070782661438,
-0.12417566031217575,
0.018832024186849594,
-0.2067721039056778,
-0.6526169180870056,
0.7661800384521484,
-0.14822475612163544,
0.36704692244529724,
0.4428807497024536,
0.5195928812026978,
-0.25246238708496094,
-0.050384677946567535,
0.30838924646377563,
0.3641727566719055,
-0.2624104619026184,
-0.2898210287094116,
-0.19007255136966705,
-0.5710424780845642,
-0.06529062986373901,
0.47459492087364197,
-0.32387226819992065,
-0.09300529956817627,
0.3986341655254364,
0.9241288900375366,
-0.03888612613081932,
-0.2583102881908417,
0.5860044360160828,
-0.055000871419906616,
-0.409312903881073,
-0.3842599093914032,
-0.011788269504904747,
0.17459535598754883,
0.19997167587280273,
0.08569491654634476,
0.17603828012943268,
-0.14530636370182037,
-0.39261671900749207,
0.38942933082580566,
0.28945738077163696,
-0.3635842800140381,
-0.45283249020576477,
0.6649009585380554,
0.1300477534532547,
-0.15425492823123932,
0.44709348678588867,
-0.14857245981693268,
-0.6559149026870728,
0.8467073440551758,
0.058267395943403244,
0.8062438368797302,
-0.06967662274837494,
0.30747851729393005,
0.7093667387962341,
0.24187889695167542,
-0.03382810205221176,
0.5553290843963623,
-0.21901912987232208,
-0.6179595589637756,
-0.07369594275951385,
-0.49068671464920044,
-0.1460830718278885,
0.055199578404426575,
-0.8784804940223694,
0.45990803837776184,
-0.4992097020149231,
-0.26943492889404297,
0.08070790767669678,
0.3903139531612396,
-0.7791690826416016,
0.2209874540567398,
-0.020803838968276978,
1.0673837661743164,
-1.0377109050750732,
0.4558170735836029,
0.7055109739303589,
-0.6791449785232544,
-1.2099486589431763,
-0.09860759228467941,
0.23622409999370575,
-0.5705975294113159,
0.22687654197216034,
0.18770615756511688,
0.5546785593032837,
-0.022863859310746193,
-0.8677170872688293,
-0.6262972354888916,
1.1438971757888794,
0.003711654804646969,
-0.2881964147090912,
0.2961055636405945,
0.1451120525598526,
0.5965523719787598,
-0.3712884187698364,
0.29209038615226746,
0.5811321139335632,
0.6948835253715515,
0.24497529864311218,
-0.7295392155647278,
0.2994462251663208,
-0.5924664735794067,
-0.23652133345603943,
0.029434368014335632,
-1.0653712749481201,
0.5911590456962585,
-0.22300860285758972,
0.03153705969452858,
0.020263835787773132,
0.5672429203987122,
0.45249414443969727,
0.4437541365623474,
0.4561469554901123,
0.7064732313156128,
0.7829852104187012,
-0.2939213812351227,
1.2327632904052734,
-0.24924857914447784,
0.6593624949455261,
0.7270762920379639,
0.04112495854496956,
0.5426426529884338,
0.3161279857158661,
-0.3743944466114044,
0.5344535708427429,
0.6428306698799133,
-0.41991758346557617,
0.2563747763633728,
0.3447205722332001,
-0.020456599071621895,
-0.12014169245958328,
-0.1855679154396057,
-0.5549908876419067,
0.3455829918384552,
0.1682569533586502,
-0.29642409086227417,
0.04323990270495415,
0.024381384253501892,
0.35639917850494385,
-0.04668226093053818,
-0.2174864560365677,
0.6964593529701233,
0.05584954097867012,
-0.4278230369091034,
0.5786900520324707,
-0.15324851870536804,
0.6527758240699768,
-0.6128504276275635,
0.19513392448425293,
-0.08878081291913986,
0.14917121827602386,
-0.6223792433738708,
-1.071420669555664,
0.3914393484592438,
-0.05599827691912651,
-0.250242680311203,
-0.3107779026031494,
0.6535933613777161,
-0.44996803998947144,
-0.8628124594688416,
0.23870016634464264,
0.20173735916614532,
0.27782362699508667,
0.09778640419244766,
-1.2182257175445557,
0.6708047389984131,
0.21803919970989227,
-0.46301552653312683,
0.07016827911138535,
0.48575854301452637,
0.18724173307418823,
0.541599690914154,
0.732698917388916,
0.2602234184741974,
-0.22238914668560028,
0.04457453638315201,
1.1379319429397583,
-0.5710884928703308,
-0.5233395099639893,
-0.7546449303627014,
0.9517492055892944,
-0.35675668716430664,
-0.46106770634651184,
0.7184479832649231,
0.825869083404541,
0.8759670257568359,
-0.02772221714258194,
0.8506044745445251,
-0.6301788091659546,
0.6362796425819397,
-0.21620863676071167,
0.922624945640564,
-0.7256240844726562,
-0.01217147521674633,
-0.7065401673316956,
-0.45450741052627563,
-0.4625855088233948,
0.637711226940155,
-0.1873917132616043,
0.2060903012752533,
0.2314462810754776,
0.914886474609375,
0.05628184229135513,
0.1285603642463684,
-0.24107025563716888,
0.20505781471729279,
0.3738986849784851,
0.5565675497055054,
0.4107338786125183,
-0.9594792127609253,
0.37239789962768555,
-0.7891428470611572,
-0.23250743746757507,
-0.007973005063831806,
-0.825103759765625,
-0.8962410092353821,
-0.9447900056838989,
-0.737311601638794,
-0.7535282373428345,
-0.28041189908981323,
1.0725045204162598,
0.8244675397872925,
-0.6658420562744141,
-0.2508981227874756,
-0.03846598416566849,
0.21419265866279602,
-0.11082878708839417,
-0.3215222656726837,
0.6286414861679077,
0.3813832700252533,
-0.5087350606918335,
-0.06393297761678696,
0.0033078452106565237,
0.26003557443618774,
0.03776704519987106,
-0.17827486991882324,
-0.0868479460477829,
-0.2836732268333435,
0.28637266159057617,
0.46871858835220337,
-0.3292527496814728,
-0.06532146781682968,
-0.20422235131263733,
0.03728431835770607,
0.1334516406059265,
0.5199655294418335,
-0.5293140411376953,
0.22853904962539673,
0.5914623737335205,
0.31740644574165344,
0.49291563034057617,
0.22678998112678528,
-0.013297734782099724,
-0.5547880530357361,
0.11038073897361755,
-0.021766027435660362,
0.24323278665542603,
0.39098718762397766,
-0.4765429198741913,
0.748443067073822,
0.5618737936019897,
-0.5402430891990662,
-0.8525856137275696,
-0.2115362137556076,
-1.394784927368164,
0.10338672250509262,
1.0106821060180664,
-0.004283776041120291,
-0.4476200342178345,
0.1112808883190155,
-0.21889621019363403,
0.13259682059288025,
-0.5407164692878723,
0.37024933099746704,
0.5164036154747009,
-0.1021871492266655,
0.15250591933727264,
-0.32067084312438965,
0.5796021819114685,
-0.0011186873307451606,
-1.045841932296753,
0.18816106021404266,
0.36802801489830017,
0.4782077670097351,
0.3247082829475403,
0.7937272191047668,
-0.23711997270584106,
0.047864701598882675,
0.0031822186429053545,
0.28481730818748474,
-0.32059982419013977,
-0.005690900608897209,
-0.37471142411231995,
-0.14563773572444916,
-0.44545307755470276,
-0.26918789744377136
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
joelniklaus/mapa | joelniklaus | 2022-10-25T16:17:09Z | 292 | 4 | null | [
"task_categories:token-classification",
"task_ids:named-entity-recognition",
"annotations_creators:other",
"language_creators:found",
"multilinguality:multilingual",
"size_categories:1K<n<10K",
"source_datasets:original",
"language:multilingual",
"language:bg",
"language:cs",
"language:da",
"language:de",
"language:el",
"language:en",
"language:es",
"language:et",
"language:fi",
"language:fr",
"language:ga",
"language:hu",
"language:it",
"language:lt",
"language:lv",
"language:mt",
"language:nl",
"language:pt",
"language:ro",
"language:sk",
"language:sv",
"license:cc-by-4.0",
"named-entity-recognition-and-classification",
"region:us"
] | 2022-10-25T16:17:09Z | 2022-07-20T12:14:50.000Z | 2022-07-20T12:14:50 | ---
annotations_creators:
- other
language_creators:
- found
language:
- multilingual
- bg
- cs
- da
- de
- el
- en
- es
- et
- fi
- fr
- ga
- hu
- it
- lt
- lv
- mt
- nl
- pt
- ro
- sk
- sv
license:
- cc-by-4.0
multilinguality:
- multilingual
size_categories:
- 1K<n<10K
source_datasets:
- original
task_categories:
- token-classification
task_ids:
- named-entity-recognition
pretty_name: Spanish Datasets for Sensitive Entity Detection in the Legal Domain
tags:
- named-entity-recognition-and-classification
---
# Dataset Card for Multilingual European Datasets for Sensitive Entity Detection in the Legal Domain
## 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:** [Spanish](https://elrc-share.eu/repository/browse/mapa-anonymization-package-spanish/b550e1a88a8311ec9c1a00155d026706687917f92f64482587c6382175dffd76/), [Most](https://elrc-share.eu/repository/search/?q=mfsp:3222a6048a8811ec9c1a00155d0267067eb521077db54d6684fb14ce8491a391), [German, Portuguese, Slovak, Slovenian, Swedish](https://elrc-share.eu/repository/search/?q=mfsp:833df1248a8811ec9c1a00155d0267067685dcdb77064822b51cc16ab7b81a36)
- **Paper:** de Gibert Bonet, O., García Pablos, A., Cuadros, M., & Melero, M. (2022). Spanish Datasets for Sensitive
Entity Detection in the Legal Domain. Proceedings of the Language Resources and Evaluation Conference, June,
3751–3760. http://www.lrec-conf.org/proceedings/lrec2022/pdf/2022.lrec-1.400.pdf
- **Leaderboard:**
- **Point of Contact:** [Joel Niklaus](mailto:joel.niklaus.2@bfh.ch)
### Dataset Summary
The dataset consists of 12 documents (9 for Spanish due to parsing errors) taken from EUR-Lex, a multilingual corpus of court
decisions and legal dispositions in the 24 official languages of the European Union. The documents have been annotated
for named entities following the guidelines of the [MAPA project]( https://mapa-project.eu/) which foresees two
annotation level, a general and a more fine-grained one. The annotated corpus can be used for named entity recognition/classification.
### Supported Tasks and Leaderboards
The dataset supports the task of Named Entity Recognition and Classification (NERC).
### Languages
The following languages are supported: bg, cs, da, de, el, en, es, et, fi, fr, ga, hu, it, lt, lv, mt, nl, pt, ro, sk, sv
## Dataset Structure
### Data Instances
The file format is jsonl and three data splits are present (train, validation and test). Named Entity annotations are
non-overlapping.
### Data Fields
For the annotation the documents have been split into sentences. The annotations has been done on the token level.
The files contain the following data fields
- `language`: language of the sentence
- `type`: The document type of the sentence. Currently, only EUR-LEX is supported.
- `file_name`: The document file name the sentence belongs to.
- `sentence_number`: The number of the sentence inside its document.
- `tokens`: The list of tokens in the sentence.
- `coarse_grained`: The coarse-grained annotations for each token
- `fine_grained`: The fine-grained annotations for each token
As previously stated, the annotation has been conducted on a global and a more fine-grained level.
The tagset used for the global and the fine-grained named entities is the following:
- Address
- Building
- City
- Country
- Place
- Postcode
- Street
- Territory
- Amount
- Unit
- Value
- Date
- Year
- Standard Abbreviation
- Month
- Day of the Week
- Day
- Calender Event
- Person
- Age
- Email
- Ethnic Category
- Family Name
- Financial
- Given Name – Female
- Given Name – Male
- Health Insurance Number
- ID Document Number
- Initial Name
- Marital Status
- Medical Record Number
- Nationality
- Profession
- Role
- Social Security Number
- Title
- Url
- Organisation
- Time
- Vehicle
- Build Year
- Colour
- License Plate Number
- Model
- Type
The final coarse grained tagset (in IOB notation) is the following:
`['O', 'B-ORGANISATION', 'I-ORGANISATION', 'B-ADDRESS', 'I-ADDRESS', 'B-DATE', 'I-DATE', 'B-PERSON', 'I-PERSON', 'B-AMOUNT', 'I-AMOUNT', 'B-TIME', 'I-TIME']`
The final fine grained tagset (in IOB notation) is the following:
`[
'O',
'B-BUILDING',
'I-BUILDING',
'B-CITY',
'I-CITY',
'B-COUNTRY',
'I-COUNTRY',
'B-PLACE',
'I-PLACE',
'B-TERRITORY',
'I-TERRITORY',
'I-UNIT',
'B-UNIT',
'B-VALUE',
'I-VALUE',
'B-YEAR',
'I-YEAR',
'B-STANDARD ABBREVIATION',
'I-STANDARD ABBREVIATION',
'B-MONTH',
'I-MONTH',
'B-DAY',
'I-DAY',
'B-AGE',
'I-AGE',
'B-ETHNIC CATEGORY',
'I-ETHNIC CATEGORY',
'B-FAMILY NAME',
'I-FAMILY NAME',
'B-INITIAL NAME',
'I-INITIAL NAME',
'B-MARITAL STATUS',
'I-MARITAL STATUS',
'B-PROFESSION',
'I-PROFESSION',
'B-ROLE',
'I-ROLE',
'B-NATIONALITY',
'I-NATIONALITY',
'B-TITLE',
'I-TITLE',
'B-URL',
'I-URL',
'B-TYPE',
'I-TYPE',
]`
### Data Splits
Splits created by Joel Niklaus.
| language | # train files | # validation files | # test files | # train sentences | # validation sentences | # test sentences |
|:-----------|----------------:|---------------------:|---------------:|--------------------:|-------------------------:|-------------------:|
| bg | 9 | 1 | 2 | 1411 | 166 | 560 |
| cs | 9 | 1 | 2 | 1464 | 176 | 563 |
| da | 9 | 1 | 2 | 1455 | 164 | 550 |
| de | 9 | 1 | 2 | 1457 | 166 | 558 |
| el | 9 | 1 | 2 | 1529 | 174 | 584 |
| en | 9 | 1 | 2 | 893 | 98 | 408 |
| es | 7 | 1 | 1 | 806 | 248 | 155 |
| et | 9 | 1 | 2 | 1391 | 163 | 516 |
| fi | 9 | 1 | 2 | 1398 | 187 | 531 |
| fr | 9 | 1 | 2 | 1297 | 97 | 490 |
| ga | 9 | 1 | 2 | 1383 | 165 | 515 |
| hu | 9 | 1 | 2 | 1390 | 171 | 525 |
| it | 9 | 1 | 2 | 1411 | 162 | 550 |
| lt | 9 | 1 | 2 | 1413 | 173 | 548 |
| lv | 9 | 1 | 2 | 1383 | 167 | 553 |
| mt | 9 | 1 | 2 | 937 | 93 | 442 |
| nl | 9 | 1 | 2 | 1391 | 164 | 530 |
| pt | 9 | 1 | 2 | 1086 | 105 | 390 |
| ro | 9 | 1 | 2 | 1480 | 175 | 557 |
| sk | 9 | 1 | 2 | 1395 | 165 | 526 |
| sv | 9 | 1 | 2 | 1453 | 175 | 539 |
## Dataset Creation
### Curation Rationale
*„[…] to our knowledge, there exist no open resources annotated for NERC [Named Entity Recognition and Classificatio] in Spanish in the legal domain. With the
present contribution, we intend to fill this gap. With the release of the created resources for fine-tuning and
evaluation of sensitive entities detection in the legal domain, we expect to encourage the development of domain-adapted
anonymisation tools for Spanish in this field“* (de Gibert Bonet et al., 2022)
### Source Data
#### Initial Data Collection and Normalization
The dataset consists of documents taken from EUR-Lex corpus which is publicly available. No further
information on the data collection process are given in de Gibert Bonet et al. (2022).
#### Who are the source language producers?
The source language producers are presumably lawyers.
### Annotations
#### Annotation process
*"The annotation scheme consists of a complex two level hierarchy adapted to the legal domain, it follows the scheme
described in (Gianola et al., 2020) […] Level 1 entities refer to general categories (PERSON, DATE, TIME, ADDRESS...)
and level 2 entities refer to more fine-grained subcategories (given name, personal name, day, year, month...). Eur-Lex,
CPP and DE have been annotated following this annotation scheme […] The manual annotation was performed using
INCePTION (Klie et al., 2018) by a sole annotator following the guidelines provided by the MAPA consortium."* (de Gibert
Bonet et al., 2022)
#### Who are the annotators?
Only one annotator conducted the annotation. More information are not provdided in de Gibert Bonet et al. (2022).
### 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
Note that the dataset at hand presents only a small portion of a bigger corpus as described in de Gibert Bonet et al.
(2022). At the time of writing only the annotated documents from the EUR-Lex corpus were available.
Note that the information given in this dataset card refer to the dataset version as provided by Joel Niklaus and Veton
Matoshi. The dataset at hand is intended to be part of a bigger benchmark dataset. Creating a benchmark dataset
consisting of several other datasets from different sources requires postprocessing. Therefore, the structure of the
dataset at hand, including the folder structure, may differ considerably from the original dataset. In addition to that,
differences with regard to dataset statistics as give in the respective papers can be expected. The reader is advised to
have a look at the conversion script ```convert_to_hf_dataset.py``` in order to retrace the steps for converting the
original dataset into the present jsonl-format. For further information on the original dataset structure, we refer to
the bibliographical references and the original Github repositories and/or web pages provided in this dataset card.
## Additional Information
### Dataset Curators
The names of the original dataset curators and creators can be found in references given below, in the section *Citation
Information*. Additional changes were made by Joel Niklaus ([Email](mailto:joel.niklaus.2@bfh.ch)
; [Github](https://github.com/joelniklaus)) and Veton Matoshi ([Email](mailto:veton.matoshi@bfh.ch)
; [Github](https://github.com/kapllan)).
### Licensing Information
[Attribution 4.0 International (CC BY 4.0) ](https://creativecommons.org/licenses/by/4.0/)
### Citation Information
```
@article{DeGibertBonet2022,
author = {{de Gibert Bonet}, Ona and {Garc{\'{i}}a Pablos}, Aitor and Cuadros, Montse and Melero, Maite},
journal = {Proceedings of the Language Resources and Evaluation Conference},
number = {June},
pages = {3751--3760},
title = {{Spanish Datasets for Sensitive Entity Detection in the Legal Domain}},
url = {https://aclanthology.org/2022.lrec-1.400},
year = {2022}
}
```
### Contributions
Thanks to [@JoelNiklaus](https://github.com/joelniklaus) and [@kapllan](https://github.com/kapllan) for adding this
dataset.
| [
-0.5530784726142883,
-0.5045546889305115,
0.30827489495277405,
0.21830116212368011,
-0.25368449091911316,
-0.00743863033130765,
-0.32438328862190247,
-0.5765594840049744,
0.4444624185562134,
0.559386670589447,
-0.4224449396133423,
-1.03565514087677,
-0.6612905859947205,
0.28896841406822205,
-0.07762525975704193,
1.0800429582595825,
-0.15729206800460815,
0.023676183074712753,
0.16643032431602478,
-0.45089781284332275,
-0.43689724802970886,
-0.6127178072929382,
-0.5607861876487732,
0.054219845682382584,
0.3393329083919525,
0.31444406509399414,
0.4441254138946533,
0.7791117429733276,
0.7983576655387878,
0.2782503366470337,
-0.1437610685825348,
0.22323071956634521,
-0.11874525994062424,
-0.11143706738948822,
-0.14024636149406433,
-0.3866768479347229,
-0.6606184244155884,
-0.10876389592885971,
0.6090022325515747,
0.6558982729911804,
-0.12294229865074158,
0.2372404783964157,
-0.2088165134191513,
0.6140062808990479,
-0.4350423216819763,
0.48390528559684753,
-0.4850527346134186,
-0.0213560052216053,
-0.4662224054336548,
-0.2558726668357849,
-0.2809949815273285,
-0.23684059083461761,
-0.19118306040763855,
-0.7856037020683289,
0.28259676694869995,
0.1770409494638443,
1.5358729362487793,
0.24824053049087524,
-0.4567593038082123,
-0.36192527413368225,
-0.492495596408844,
0.6728146076202393,
-0.6896739602088928,
0.4304403066635132,
0.4431576430797577,
0.16870078444480896,
-0.2995499074459076,
-0.6655595898628235,
-0.5931362509727478,
0.11451425403356552,
-0.3760305345058441,
0.27878692746162415,
-0.20525217056274414,
-0.13296133279800415,
0.5293398499488831,
0.40411248803138733,
-0.5570157766342163,
0.14350731670856476,
-0.5353840589523315,
-0.33411863446235657,
0.9090803861618042,
0.09290345013141632,
0.4241676330566406,
-0.3492715060710907,
-0.5628491044044495,
-0.02351323701441288,
-0.7099485397338867,
0.3529447913169861,
0.6208840012550354,
0.580427348613739,
-0.4401986002922058,
0.4946576654911041,
-0.2165507823228836,
0.46255993843078613,
-0.028459785506129265,
-0.32364270091056824,
0.8190119862556458,
-0.5505816340446472,
-0.23855039477348328,
0.05833132937550545,
0.93700110912323,
0.4218079149723053,
0.25347700715065,
0.03428990766406059,
-0.21599923074245453,
0.1464388370513916,
-0.13005419075489044,
-0.7884078621864319,
-0.2667626142501831,
0.4373808205127716,
-0.43629106879234314,
-0.06818943470716476,
0.3407779633998871,
-1.066016435623169,
-0.12964561581611633,
-0.31490641832351685,
-0.04982215538620949,
-0.31444093585014343,
-0.2905277609825134,
0.10702572762966156,
-0.051338743418455124,
0.2854078710079193,
0.1644877791404724,
-0.7577463984489441,
0.4228054881095886,
0.4636579155921936,
0.5787720084190369,
-0.018297279253602028,
-0.10148146003484726,
-0.24206605553627014,
0.167832151055336,
-0.09213943779468536,
0.8842715620994568,
-0.6350166201591492,
-0.4394119679927826,
0.0006226443802006543,
0.3870616555213928,
-0.19724899530410767,
-0.4020104706287384,
1.0377771854400635,
-0.38418278098106384,
0.29400694370269775,
-0.4877365231513977,
-0.4823880195617676,
-0.25577041506767273,
0.355646014213562,
-0.9262046813964844,
1.3375828266143799,
0.0744469165802002,
-1.035344123840332,
0.803382396697998,
-0.9061787128448486,
-0.48298966884613037,
0.14220030605793,
-0.39550235867500305,
-0.6024501919746399,
-0.49254199862480164,
0.5012045502662659,
0.5019311904907227,
-0.2541002631187439,
0.4424945116043091,
-0.15718956291675568,
-0.06322422623634338,
-0.04449687898159027,
-0.11654353886842728,
1.2736990451812744,
0.3689766824245453,
-0.49482613801956177,
-0.002336743753403425,
-1.0840667486190796,
-0.16828055679798126,
0.3301970660686493,
-0.525942325592041,
-0.30811479687690735,
-0.09868922829627991,
0.18398284912109375,
0.2964896559715271,
0.1553725302219391,
-0.6416839361190796,
0.15381696820259094,
-0.34860140085220337,
0.33594876527786255,
0.5230888724327087,
0.3661777675151825,
0.2599192261695862,
-0.17912694811820984,
0.552037239074707,
0.3442786931991577,
0.12925617396831512,
-0.03949439153075218,
-0.7312155365943909,
-0.6315280199050903,
-0.5563108325004578,
0.5682684183120728,
0.7616708874702454,
-0.4526069760322571,
0.8038991093635559,
-0.7408570051193237,
-0.3360222578048706,
-0.6453166604042053,
-0.04709045588970184,
0.20814599096775055,
0.5505031943321228,
0.5540642142295837,
-0.06792838871479034,
-0.7254602313041687,
-1.1105983257293701,
-0.015990931540727615,
-0.1991383135318756,
0.253746896982193,
0.43382182717323303,
1.0143182277679443,
-0.13742470741271973,
0.8355210423469543,
-0.47736814618110657,
-0.6769624352455139,
-0.1223779246211052,
-0.11995150148868561,
0.3926410377025604,
0.5636493563652039,
0.7615540027618408,
-1.0893433094024658,
-0.64171302318573,
0.08752421289682388,
-0.7177882790565491,
0.05020599812269211,
-0.08467602729797363,
-0.07940120249986649,
0.18519069254398346,
0.3264509439468384,
-0.646184504032135,
0.5573839545249939,
0.2860110402107239,
-0.6397680044174194,
0.2966780364513397,
-0.15795420110225677,
0.2426833212375641,
-1.3021931648254395,
0.26234254240989685,
0.04274874925613403,
-0.1917591691017151,
-0.6187657117843628,
0.000676736410241574,
0.12303280830383301,
0.1617681086063385,
-0.45011812448501587,
0.6020224690437317,
-0.7167772054672241,
0.07934091985225677,
0.42782798409461975,
0.2292371392250061,
0.011247340589761734,
0.6217474937438965,
-0.067329540848732,
0.8016891479492188,
0.7101777791976929,
-0.5497479438781738,
0.14490167796611786,
0.3538758456707001,
-0.49386078119277954,
0.8017702102661133,
-0.4015275835990906,
-0.28026896715164185,
-0.24332745373249054,
0.1763107031583786,
-0.7596880793571472,
-0.2073218822479248,
0.5169486403465271,
-0.4552677571773529,
0.436480849981308,
-0.21183574199676514,
-0.6763581037521362,
-0.5109068751335144,
-0.35057803988456726,
0.14937983453273773,
0.07711374759674072,
-0.3525140583515167,
0.6514835357666016,
0.6717602610588074,
0.019793108105659485,
-0.7792060375213623,
-0.8994427919387817,
0.028150955215096474,
-0.40521693229675293,
-0.7206947803497314,
0.31530749797821045,
0.04979350417852402,
-0.24230517446994781,
0.321828156709671,
0.06352613121271133,
-0.20541797578334808,
0.26097702980041504,
0.34082332253456116,
0.20248490571975708,
-0.1005113273859024,
0.056432563811540604,
-0.0775359719991684,
-0.052830394357442856,
-0.03764334321022034,
-0.04164455831050873,
0.5837169885635376,
-0.10753355920314789,
-0.22992576658725739,
-0.494219571352005,
0.3915431797504425,
0.36327341198921204,
-0.570893406867981,
0.7900635600090027,
0.5732627511024475,
-0.6978742480278015,
-0.025165727362036705,
-0.40362516045570374,
0.1937563568353653,
-0.35808295011520386,
0.18596485257148743,
-0.6770264506340027,
-0.7425048351287842,
1.1530400514602661,
0.1188499853014946,
0.08616861701011658,
1.0524766445159912,
0.6738919615745544,
0.0352664552628994,
0.6089657545089722,
0.35585761070251465,
-0.05935429781675339,
0.3395111858844757,
-0.6279383897781372,
0.3629373013973236,
-0.7313165068626404,
-0.5667939186096191,
-0.833301842212677,
-0.3408235013484955,
-0.9927679300308228,
-0.24856844544410706,
0.06303971260786057,
-0.14466390013694763,
-0.16687075793743134,
0.5170243382453918,
-0.5228862762451172,
0.3953826427459717,
0.5739436149597168,
0.016627220436930656,
0.21156075596809387,
-0.06841583549976349,
-0.3222194314002991,
-0.023547232151031494,
-0.4259853661060333,
-0.6760737299919128,
1.1837235689163208,
0.434588223695755,
0.37315836548805237,
0.2921229302883148,
0.9212906956672668,
0.33283135294914246,
0.24906915426254272,
-0.5924696922302246,
0.4806302487850189,
-0.1401594579219818,
-1.121659755706787,
-0.2924979031085968,
-0.38313543796539307,
-1.3182445764541626,
0.18768954277038574,
-0.3317197263240814,
-1.0046603679656982,
0.6315209865570068,
-0.15833531320095062,
-0.38120707869529724,
0.46953243017196655,
-0.7271547317504883,
0.8254674077033997,
-0.08887259662151337,
-0.14926044642925262,
0.24898475408554077,
-0.7487143874168396,
0.25106900930404663,
-0.051179539412260056,
0.48663032054901123,
-0.4143240451812744,
-0.06490504741668701,
0.9848785996437073,
-0.4940120279788971,
0.6082167029380798,
-0.36298123002052307,
0.03574486821889877,
0.4853080213069916,
-0.19050586223602295,
0.6436376571655273,
0.07367361336946487,
-0.009959696792066097,
0.24892482161521912,
0.02353530563414097,
-0.4195806086063385,
-0.24232029914855957,
0.6966744661331177,
-0.678433358669281,
-0.3551081120967865,
-0.5171565413475037,
-0.4294932782649994,
0.08803978562355042,
0.5337961912155151,
0.2671327292919159,
0.2800164520740509,
0.050097934901714325,
0.2789863348007202,
0.6061626672744751,
-0.08250236511230469,
0.430485337972641,
0.5000351667404175,
0.027701586484909058,
-0.5911290049552917,
0.6703975200653076,
0.4691227972507477,
-0.12280481308698654,
0.4305412173271179,
-0.11021643131971359,
-0.4778319001197815,
-0.6888242959976196,
-0.3973068594932556,
0.2534943222999573,
-0.7156601548194885,
-0.44361642003059387,
-0.8519936800003052,
-0.006736031733453274,
-0.5604457855224609,
0.02250278927385807,
-0.12982536852359772,
-0.47018125653266907,
-0.26621854305267334,
-0.5336554646492004,
0.35809409618377686,
0.5599274635314941,
-0.010127551853656769,
0.14037445187568665,
-0.6095916628837585,
0.27065756916999817,
-0.1609673798084259,
0.436635822057724,
-0.3664412796497345,
-0.43032702803611755,
-0.16592437028884888,
-0.05521238222718239,
-0.07459400594234467,
-1.0082436800003052,
0.4722910523414612,
0.027492189779877663,
0.792590320110321,
0.4060669541358948,
0.019689375534653664,
0.7410696744918823,
-0.4124782383441925,
0.913335382938385,
0.00615276163443923,
-0.6464331150054932,
0.7255029082298279,
-0.3620465397834778,
-0.23666617274284363,
0.88233482837677,
0.6000692844390869,
-0.44160720705986023,
-0.3650344908237457,
-1.006455659866333,
-1.1417057514190674,
0.7052689790725708,
0.31205296516418457,
-0.15495704114437103,
-0.04983145743608475,
0.21015305817127228,
-0.09684914350509644,
0.12952283024787903,
-0.9803532958030701,
-0.69548499584198,
0.2009926289319992,
-0.47519153356552124,
0.18724305927753448,
-0.17568139731884003,
-0.340722918510437,
-0.17751674354076385,
0.9091458916664124,
0.1899968683719635,
0.32421815395355225,
0.4826824367046356,
-0.11157503724098206,
0.09569431841373444,
0.3832978904247284,
0.5899184942245483,
0.6668275594711304,
-0.37794560194015503,
0.1242961660027504,
0.13361817598342896,
-0.62544846534729,
0.04918701574206352,
0.36292487382888794,
-0.5136841535568237,
0.10522101819515228,
0.4544496238231659,
0.7613182067871094,
0.062271036207675934,
-0.3489822447299957,
0.5829097628593445,
-0.05639326572418213,
-0.48171377182006836,
-0.5164269208908081,
-0.21676068007946014,
-0.08278588950634003,
0.13652171194553375,
0.2830284535884857,
-0.07369252294301987,
0.19447939097881317,
-0.4129331707954407,
0.26498284935951233,
0.12998703122138977,
-0.2105167955160141,
-0.1810748130083084,
0.7977374196052551,
0.10158295929431915,
-0.22949087619781494,
0.35788753628730774,
-0.38551267981529236,
-0.5512033104896545,
0.7287953495979309,
0.22647318243980408,
0.7430123090744019,
-0.16726364195346832,
0.016116468235850334,
0.722567081451416,
0.664154589176178,
0.05441262200474739,
0.6799677610397339,
0.11237580329179764,
-0.7065460681915283,
-0.11419875174760818,
-0.5680625438690186,
0.03742251545190811,
0.24583426117897034,
-0.717600405216217,
0.34619587659835815,
-0.42168018221855164,
-0.44359785318374634,
0.22707150876522064,
0.353326678276062,
-1.06783926486969,
0.3001865744590759,
0.11258472502231598,
1.011330485343933,
-1.0422228574752808,
0.7503116726875305,
0.8594090342521667,
-0.9658235311508179,
-1.0862512588500977,
-0.28861570358276367,
-0.12428289651870728,
-0.6369352340698242,
0.6347670555114746,
0.07969814538955688,
0.42623305320739746,
-0.2784319519996643,
-0.34835681319236755,
-0.9422367215156555,
1.3509488105773926,
0.1691896766424179,
-0.5814148187637329,
0.08446995168924332,
0.3658749461174011,
0.7072170376777649,
-0.3407166302204132,
0.11541752517223358,
0.7163497805595398,
0.7372197508811951,
-0.14436183869838715,
-0.8737545609474182,
0.2789355218410492,
-0.4654967486858368,
-0.13724400103092194,
0.3952766954898834,
-0.797612726688385,
0.8132151365280151,
0.051129359751939774,
-0.4790751338005066,
-0.3933432400226593,
0.5300267934799194,
0.12914854288101196,
0.3463384211063385,
0.47008034586906433,
1.0341548919677734,
1.219801425933838,
-0.5218557119369507,
1.0882179737091064,
-0.4926910996437073,
0.5775015354156494,
1.1870620250701904,
-0.1844504475593567,
0.836394727230072,
0.49419769644737244,
-0.5064398646354675,
0.5322681665420532,
0.7324010729789734,
-0.3564056158065796,
0.3684178292751312,
0.06220003962516785,
-0.0309844221919775,
0.014449110254645348,
-0.18445062637329102,
-0.4708643853664398,
0.4469752311706543,
0.4146164655685425,
-0.5420377254486084,
-0.15882569551467896,
-0.1570594310760498,
0.44541606307029724,
0.05743924528360367,
-0.33286023139953613,
0.6886276006698608,
-0.17698204517364502,
-0.4162963628768921,
0.31918442249298096,
0.09817817062139511,
0.4515622556209564,
-0.37891265749931335,
0.07368649542331696,
-0.2327461987733841,
0.06333091109991074,
-0.550495982170105,
-1.0257385969161987,
0.18960712850093842,
0.1708633303642273,
-0.2089502215385437,
-0.15184615552425385,
0.5513941049575806,
-0.39557111263275146,
-0.6626922488212585,
0.4017569422721863,
0.3831942677497864,
0.345014363527298,
0.1933874785900116,
-0.8519372344017029,
-0.12467152625322342,
0.017957720905542374,
-0.4042988717556,
-0.0013028053799644113,
0.7662544250488281,
-0.3234883248806,
0.47069329023361206,
0.758919358253479,
0.2968139946460724,
0.39100900292396545,
0.279378741979599,
1.0032490491867065,
-0.6994497776031494,
-0.6781854033470154,
-0.6724433898925781,
0.7187943458557129,
-0.28995269536972046,
-0.4290078580379486,
0.7872955203056335,
1.0059213638305664,
1.0654642581939697,
0.21191512048244476,
0.7217494249343872,
-0.3813750743865967,
0.5491454601287842,
-0.5746443867683411,
0.6349258422851562,
-0.4559158384799957,
0.1858726441860199,
-0.06533893942832947,
-0.9701848030090332,
-0.724123477935791,
0.4046109616756439,
-0.43321463465690613,
0.007734152488410473,
0.6998530030250549,
0.8127495646476746,
0.07405027002096176,
-0.25587403774261475,
0.09631861001253128,
0.20465005934238434,
0.5156199336051941,
0.5272152423858643,
0.35028529167175293,
-0.7962020635604858,
0.5391435623168945,
-0.5156582593917847,
0.012397975660860538,
-0.1186484843492508,
-0.7518917918205261,
-0.7980723977088928,
-0.6571890711784363,
-0.4379812180995941,
-0.370378702878952,
-0.15612374246120453,
1.034192442893982,
0.6068418025970459,
-1.2277127504348755,
-0.05571163445711136,
0.03806187957525253,
0.11533483862876892,
-0.024775976315140724,
-0.2310037761926651,
0.7640457153320312,
-0.0987459123134613,
-0.7606537938117981,
0.0479167141020298,
0.1379186511039734,
0.11854009330272675,
0.012801655568182468,
-0.05747204273939133,
-0.6293768882751465,
-0.06377241760492325,
0.32568594813346863,
0.30115410685539246,
-0.7238025069236755,
-0.20661099255084991,
-0.19441287219524384,
-0.3017609119415283,
0.4428868293762207,
0.44197213649749756,
-0.304723858833313,
0.36957988142967224,
0.4862852096557617,
0.4067023992538452,
0.5929668545722961,
0.10306532680988312,
-0.1685759425163269,
-0.6964330673217773,
0.3614397644996643,
0.15236595273017883,
0.7164933085441589,
0.24213744699954987,
-0.5010015368461609,
0.8886511325836182,
0.4602161645889282,
-0.33931565284729004,
-0.8539263606071472,
-0.2628052234649658,
-1.3582504987716675,
0.0906069427728653,
1.2186775207519531,
-0.3990141451358795,
-0.4580913186073303,
-0.16805694997310638,
-0.1343161016702652,
0.25209394097328186,
-0.675351619720459,
0.4070911109447479,
0.842332124710083,
0.04885123297572136,
0.2251458764076233,
-0.6865878701210022,
0.5274964570999146,
-0.06908705085515976,
-1.102249026298523,
-0.12018897384405136,
0.40377965569496155,
0.286054402589798,
0.40474534034729004,
0.7414523363113403,
-0.43714436888694763,
-0.07229804247617722,
0.07235254347324371,
0.4251934587955475,
-0.017249980941414833,
-0.28879767656326294,
-0.23261332511901855,
0.2244461476802826,
-0.2147294580936432,
-0.31407642364501953
] | null | null | null | null | null | null | null | null | null | null | null | null | null | |
jonathan-roberts1/EuroSAT | jonathan-roberts1 | 2023-03-31T15:49:24Z | 292 | 1 | null | [
"task_categories:image-classification",
"task_categories:zero-shot-image-classification",
"license:mit",
"region:us"
] | 2023-03-31T15:49:24Z | 2023-03-24T20:42:32.000Z | 2023-03-24T20:42:32 | ---
dataset_info:
features:
- name: image
dtype: image
- name: label
dtype:
class_label:
names:
'0': annual crop
'1': forest
'2': herbaceous vegetation
'3': highway
'4': industrial
'5': pasture
'6': permanent crop
'7': residential
'8': river
'9': sea or lake
splits:
- name: train
num_bytes: 88391109
num_examples: 27000
download_size: 88591771
dataset_size: 88391109
license: mit
task_categories:
- image-classification
- zero-shot-image-classification
---
# Dataset Card for "EuroSAT2"
## Dataset Description
- **Paper** [Eurosat: A novel dataset and deep learning benchmark for land use and land cover classification](https://ieeexplore.ieee.org/iel7/4609443/8789745/08736785.pdf)
- **Paper** [Introducing EuroSAT: A Novel Dataset and Deep Learning Benchmark for Land Use and Land Cover Classification](https://ieeexplore.ieee.org/iel7/8496405/8517275/08519248.pdf)
- **GitHub** [EuroSAT](https://github.com/phelber/EuroSAT)
- **Data** [Zenodo](https://zenodo.org/record/7711810#.ZCcA9uzMLJx)
### Licensing Information
MIT.
## Citation Information
[Eurosat: A novel dataset and deep learning benchmark for land use and land cover classification](https://ieeexplore.ieee.org/iel7/4609443/8789745/08736785.pdf)
[Introducing EuroSAT: A Novel Dataset and Deep Learning Benchmark for Land Use and Land Cover Classification](https://ieeexplore.ieee.org/iel7/8496405/8517275/08519248.pdf)
```
@article{helber2019eurosat,
title = {Eurosat: A novel dataset and deep learning benchmark for land use and land cover classification},
author = {Helber, Patrick and Bischke, Benjamin and Dengel, Andreas and Borth, Damian},
year = 2019,
journal = {IEEE Journal of Selected Topics in Applied Earth Observations and Remote Sensing},
publisher = {IEEE}
}
@inproceedings{helber2018introducing,
title = {Introducing EuroSAT: A Novel Dataset and Deep Learning Benchmark for Land Use and Land Cover Classification},
author = {Helber, Patrick and Bischke, Benjamin and Dengel, Andreas and Borth, Damian},
year = 2018,
booktitle = {IGARSS 2018-2018 IEEE International Geoscience and Remote Sensing Symposium},
pages = {204--207},
organization = {IEEE}
}
``` | [
-0.82374107837677,
-0.27020692825317383,
0.28782323002815247,
-0.20284989476203918,
-0.16916866600513458,
0.10386860370635986,
-0.2128763645887375,
-0.7059366703033447,
-0.3683350682258606,
0.4743601977825165,
-0.27056431770324707,
-0.6658080220222473,
-0.4644162654876709,
-0.37313032150268555,
-0.21517124772071838,
0.7983701825141907,
-0.21429969370365143,
0.13001921772956848,
-0.4213833510875702,
-0.6320961713790894,
-0.1636166125535965,
-0.3908715546131134,
-0.1125577911734581,
-0.37073805928230286,
0.37156563997268677,
0.43102365732192993,
0.5347131490707397,
0.5740563273429871,
0.7295041680335999,
0.2766120135784149,
0.10176809877157211,
0.3589872717857361,
-0.15376700460910797,
-0.5462244153022766,
-0.044800594449043274,
-0.2401965856552124,
-0.43296998739242554,
0.0674615204334259,
1.0149176120758057,
0.707141101360321,
-0.14373779296875,
0.19717353582382202,
-0.039085183292627335,
0.6262633800506592,
-0.5660913586616516,
0.2022913247346878,
-0.74213045835495,
0.09259159862995148,
-0.20713475346565247,
-0.3081127405166626,
-0.2650699317455292,
0.04454823210835457,
0.09374942630529404,
-0.7879920601844788,
0.677008330821991,
-0.0739767849445343,
1.352973222732544,
0.11162003129720688,
-0.4614839553833008,
0.15873074531555176,
-0.7788419127464294,
0.7712761163711548,
-0.6364749073982239,
0.17096209526062012,
0.16672204434871674,
0.7041653394699097,
-0.04057576134800911,
-0.4982312023639679,
-0.6714136600494385,
0.02671227417886257,
0.06617707759141922,
0.35800909996032715,
0.10614784061908722,
-0.1296973079442978,
0.25881633162498474,
0.49626001715660095,
-0.6412956714630127,
0.3673703670501709,
-0.7467948198318481,
-0.2114240974187851,
0.9052853584289551,
0.2917354106903076,
-0.4473186135292053,
-0.0983513742685318,
-0.8001110553741455,
-0.5268012285232544,
-0.7722400426864624,
0.4935179650783539,
0.7410431504249573,
0.5016031861305237,
-0.4901391267776489,
0.47817713022232056,
-0.4541377127170563,
0.5653125643730164,
-0.4560949206352234,
0.09961050748825073,
0.6916037797927856,
-0.11807455122470856,
-0.17218881845474243,
-0.17888762056827545,
0.5464982986450195,
0.5483130216598511,
0.12475961446762085,
0.18710139393806458,
-0.22823689877986908,
0.15790119767189026,
-0.09759214520454407,
-0.941816508769989,
-0.26481425762176514,
0.2381710559129715,
-0.38619905710220337,
-0.26221463084220886,
0.7328273057937622,
-1.1432102918624878,
-0.19028306007385254,
-0.7075196504592896,
0.05825401842594147,
0.19761143624782562,
-0.5852127075195312,
0.4941481053829193,
-0.07973878085613251,
0.9986241459846497,
0.5984196662902832,
-0.5330394506454468,
0.648841142654419,
0.8946649432182312,
0.4483569860458374,
-0.07127200067043304,
-0.4163896441459656,
0.05056848004460335,
-0.19791348278522491,
-0.223466157913208,
1.0660535097122192,
-0.4789462387561798,
-0.2506314218044281,
-0.1544298231601715,
0.4280875325202942,
0.20439136028289795,
-0.4666247069835663,
0.7549042701721191,
-0.4052242040634155,
0.17963585257530212,
-0.17481018602848053,
-0.44649559259414673,
-0.6749415397644043,
0.1071494072675705,
-0.8577741980552673,
1.4031150341033936,
0.09106481820344925,
-0.5617622137069702,
0.6899004578590393,
-0.5716748833656311,
0.015321316197514534,
0.11888980865478516,
-0.35527512431144714,
-0.8054177761077881,
-0.05055868998169899,
0.10022108256816864,
0.49876588582992554,
-0.3388257622718811,
0.33391860127449036,
-0.5824339985847473,
-0.015986861661076546,
0.036962687969207764,
-0.6590418815612793,
1.0519999265670776,
0.5169900059700012,
-0.25297030806541443,
-0.40528404712677,
-0.9735224843025208,
0.24250200390815735,
0.24445630609989166,
-0.34506505727767944,
0.060178566724061966,
0.09684896469116211,
0.49454617500305176,
0.10043901205062866,
0.32126325368881226,
-0.8194224238395691,
-0.017246300354599953,
0.2782721519470215,
-0.021569570526480675,
0.6159794926643372,
-0.3244035542011261,
0.18376289308071136,
-0.5002528429031372,
0.08745037764310837,
0.28409501910209656,
0.06989722698926926,
-0.017586160451173782,
-0.5585407018661499,
-0.7269771695137024,
-0.029939686879515648,
0.3845542371273041,
0.8489755392074585,
-0.1643024981021881,
0.6875393390655518,
-0.6938536763191223,
-0.9683734178543091,
-0.2370177060365677,
0.048405420035123825,
-0.010253321379423141,
0.46562957763671875,
0.41797685623168945,
0.06486385315656662,
-0.6463155150413513,
-0.814806342124939,
0.07873029261827469,
0.12449950724840164,
0.06233612820506096,
0.5914798378944397,
0.8249558210372925,
0.00696543650701642,
1.0759915113449097,
-0.41324421763420105,
-0.17088532447814941,
-0.09587422758340836,
0.10229863971471786,
0.06643301993608475,
0.5389272570610046,
0.9703735709190369,
-1.0492957830429077,
-0.4461727440357208,
0.16244129836559296,
-0.5064113736152649,
0.029319152235984802,
-0.27379587292671204,
0.21131715178489685,
-0.022897999733686447,
0.13979054987430573,
-0.5405752658843994,
0.5128833651542664,
0.37892821431159973,
-0.6589012145996094,
0.2621765434741974,
-0.1501198410987854,
0.03907645121216774,
-0.8894205689430237,
-0.07203299552202225,
0.10512707382440567,
-0.19977985322475433,
-0.03788468614220619,
0.14438530802726746,
-0.045138612389564514,
-0.03535084053874016,
-0.5467024445533752,
0.46961426734924316,
-0.37460947036743164,
-0.34786707162857056,
0.1338297724723816,
-0.23479017615318298,
0.23712339997291565,
0.4057510197162628,
0.025824641808867455,
0.7427367568016052,
0.7324386239051819,
-0.5985744595527649,
0.4079373776912689,
0.3696415424346924,
-0.23327071964740753,
0.3865073025226593,
-0.4106231927871704,
-0.10117759555578232,
-0.3108590841293335,
0.35562726855278015,
-0.8972730040550232,
-0.18465662002563477,
-0.09387033432722092,
-0.603427529335022,
0.27972474694252014,
-0.09462802112102509,
-0.5240564346313477,
-0.46056798100471497,
-0.517386257648468,
0.26943933963775635,
0.6611027121543884,
-0.6383134126663208,
0.3614031970500946,
0.2771122455596924,
0.12346537411212921,
-0.09394779056310654,
-1.0761932134628296,
0.014003903605043888,
-0.4177424907684326,
-0.30325552821159363,
0.2639918029308319,
-0.10761485248804092,
-0.026561828330159187,
0.19711428880691528,
0.2708697021007538,
-0.16784074902534485,
0.1307859569787979,
0.23997542262077332,
-0.09831346571445465,
-0.30433374643325806,
0.0008885541465133429,
-0.11116036772727966,
-0.4430543780326843,
0.0625358447432518,
-0.21259553730487823,
0.1815248429775238,
-0.40872958302497864,
-0.27692651748657227,
-0.6818845868110657,
0.4005589783191681,
0.5274139046669006,
-0.31784752011299133,
0.31496477127075195,
0.6865963339805603,
-0.5170276761054993,
-0.10085022449493408,
-0.3503902852535248,
0.19159725308418274,
-0.3903690576553345,
0.335890531539917,
-0.574740469455719,
-0.6474195718765259,
0.547798216342926,
-0.6153466701507568,
0.343372106552124,
1.1892756223678589,
0.15900741517543793,
-0.4899195432662964,
0.7918269634246826,
0.650648832321167,
-0.008938810788094997,
0.5971726775169373,
-1.0916955471038818,
-0.16109685599803925,
-0.7972615361213684,
-0.5382402539253235,
-0.9469539523124695,
-0.5594452023506165,
-0.8402625918388367,
-0.384631872177124,
-0.30447545647621155,
0.06973202526569366,
-0.41697177290916443,
0.31314370036125183,
-0.692997395992279,
0.38592684268951416,
0.5585567355155945,
0.1396903544664383,
0.06411010771989822,
0.8423460721969604,
0.27298012375831604,
-0.21807041764259338,
-0.6119692325592041,
-0.651214063167572,
1.477469563484192,
0.4586634337902069,
0.43988293409347534,
0.021084681153297424,
0.7583713531494141,
0.5262797474861145,
0.1602223962545395,
-0.6695464849472046,
0.5546064376831055,
-0.5113862156867981,
-0.6479257345199585,
-0.18409335613250732,
-0.36762794852256775,
-1.3020896911621094,
0.23994094133377075,
0.017674867063760757,
-0.5733808875083923,
0.7024608850479126,
-0.10789947956800461,
-0.3602808713912964,
0.9022767543792725,
-0.5462324619293213,
0.6281722187995911,
-0.41988325119018555,
-0.0584736093878746,
-0.30833953619003296,
-0.47172653675079346,
-0.16263560950756073,
0.09579615294933319,
0.20802094042301178,
-0.4935121536254883,
-0.2622075378894806,
0.8727336525917053,
-0.5040225982666016,
0.7707177400588989,
-0.9236273765563965,
0.16580063104629517,
0.8043528199195862,
-0.4587022364139557,
0.5523825287818909,
0.16649475693702698,
-0.21303412318229675,
0.5095903277397156,
-0.08338785916566849,
-0.7133975625038147,
-0.18557341396808624,
0.5618855953216553,
-1.2907744646072388,
-0.01365521177649498,
-0.59059739112854,
-0.2703980803489685,
0.0336138978600502,
0.1428789645433426,
0.3181424140930176,
0.6522365808486938,
-0.358917236328125,
0.5544034838676453,
0.8798611164093018,
-0.05446955934166908,
0.3260785639286041,
0.4537804424762726,
0.10957562923431396,
-0.6503171324729919,
1.117169737815857,
0.26321786642074585,
0.034147586673498154,
0.49826255440711975,
0.07605716586112976,
-0.22919420897960663,
-0.7765345573425293,
-0.26792776584625244,
-0.14110511541366577,
-0.33588314056396484,
-0.5305106043815613,
-0.7451819181442261,
-0.38371390104293823,
0.0346408449113369,
-0.22426576912403107,
-0.3407752513885498,
-0.42481526732444763,
-0.3229829668998718,
-0.479059636592865,
0.69874107837677,
0.5869770050048828,
-0.3740129768848419,
0.4990912973880768,
-0.44916799664497375,
0.29832038283348083,
0.12913772463798523,
0.15674394369125366,
-0.41722941398620605,
-0.35172805190086365,
-0.09415231645107269,
0.4609234631061554,
-0.33120957016944885,
-0.31794342398643494,
0.08219826966524124,
0.31223946809768677,
0.6580855846405029,
0.27873677015304565,
-0.05444851890206337,
0.46917030215263367,
-0.1720515936613083,
0.7536774277687073,
-0.04541796073317528,
-0.4668557345867157,
0.43657535314559937,
-0.2661804258823395,
0.2080731838941574,
1.043707013130188,
0.08924813568592072,
0.009778711944818497,
0.19304510951042175,
-0.9112731218338013,
-0.8376646041870117,
0.4622957408428192,
-0.07617522031068802,
0.3190760016441345,
0.49619942903518677,
0.1621071845293045,
0.4792516827583313,
0.18303832411766052,
-0.7683612704277039,
-0.11735102534294128,
-0.23882201313972473,
-0.1048102080821991,
-0.10581023246049881,
-0.3730131983757019,
-0.39241185784339905,
-0.7401013374328613,
0.6854006052017212,
-0.10863471031188965,
0.6442925930023193,
0.42322829365730286,
-0.10588260740041733,
-0.08898716419935226,
0.1715543568134308,
0.5423866510391235,
0.41993871331214905,
-0.5063544511795044,
0.008948410861194134,
0.23217864334583282,
-0.8240461349487305,
0.17074880003929138,
0.5332936644554138,
-0.47000569105148315,
0.11902042478322983,
0.37825900316238403,
0.9489535689353943,
-0.20693998038768768,
-0.17531335353851318,
0.5315082669258118,
0.25794747471809387,
-1.1073253154754639,
-0.5139381289482117,
-0.26544463634490967,
-0.40291687846183777,
0.22476883232593536,
0.4362989664077759,
0.3148329257965088,
0.39979591965675354,
-0.05804259330034256,
0.3118542730808258,
0.08014187216758728,
-0.14855451881885529,
-0.16136205196380615,
0.45589908957481384,
0.45852988958358765,
0.09643437713384628,
0.7001271843910217,
-0.597837507724762,
-0.505069375038147,
1.2498490810394287,
-0.02397572435438633,
0.9136455655097961,
0.09954484552145004,
0.3113875389099121,
0.6785666346549988,
0.536160409450531,
0.42383015155792236,
0.9935382008552551,
-0.35672545433044434,
-0.8261860609054565,
0.0009136121370829642,
-0.48270541429519653,
-0.3419128656387329,
0.3769567310810089,
-0.6941245198249817,
0.1604122519493103,
-0.4942876696586609,
0.053854137659072876,
-0.0024819369427859783,
0.8657669425010681,
-1.1518595218658447,
0.4156854748725891,
0.20957426726818085,
1.4722744226455688,
-1.1236145496368408,
0.5384068489074707,
0.7942502498626709,
0.07163790613412857,
-0.6390645503997803,
-0.46131253242492676,
-0.18878093361854553,
-0.5418527126312256,
0.1458551585674286,
0.3749513030052185,
0.13670270144939423,
0.04211091995239258,
-0.6548693180084229,
-0.7642626762390137,
1.5669407844543457,
-0.07942900061607361,
-0.7997807264328003,
0.7892927527427673,
0.6775956153869629,
0.37063392996788025,
-0.23314230144023895,
-0.11096687614917755,
0.12228994071483612,
0.9784949421882629,
-0.012236050330102444,
-0.32497140765190125,
-0.2649884819984436,
-0.22771482169628143,
-0.06337836384773254,
0.32400399446487427,
-0.907237708568573,
0.7743589282035828,
-0.26763129234313965,
-0.18613803386688232,
0.3468707501888275,
0.5958536863327026,
0.048611387610435486,
0.6116104125976562,
0.6991564631462097,
1.1148349046707153,
0.8270390033721924,
-0.6032670140266418,
0.6573338508605957,
-0.17570079863071442,
0.8632323741912842,
1.252647042274475,
-0.3478236496448517,
1.159109354019165,
0.42151349782943726,
-0.6913061738014221,
0.5195385217666626,
1.045140027999878,
-0.8122420907020569,
0.7970452308654785,
-0.057531990110874176,
-0.2693527936935425,
-0.2799346446990967,
0.21536874771118164,
-0.8983538746833801,
0.470355361700058,
0.4951435625553131,
0.03484528139233589,
-0.8842086791992188,
0.05034801736474037,
-0.23571878671646118,
-0.07837360352277756,
-0.2327745407819748,
0.6047413349151611,
-0.23490950465202332,
-0.07764221727848053,
0.14019423723220825,
-0.09532973915338516,
0.34733372926712036,
-0.6902689933776855,
-0.36887383460998535,
-0.18964388966560364,
0.41715294122695923,
-0.6487168073654175,
-1.043494701385498,
0.10664887726306915,
-0.11618303507566452,
-0.12064924836158752,
-0.23024536669254303,
0.4430292844772339,
-0.09654893726110458,
-0.8323732614517212,
0.29419511556625366,
0.2050885707139969,
0.3503139913082123,
0.2748829424381256,
-1.0761722326278687,
-0.2361784428358078,
-0.1231805682182312,
-0.5058751106262207,
0.004661250859498978,
0.7446778416633606,
-0.23051480948925018,
0.2870687246322632,
0.8907352089881897,
0.00235008099116385,
0.18827688694000244,
0.011389405466616154,
0.8652212619781494,
-0.6029722094535828,
-0.36551693081855774,
-0.1989479809999466,
0.9045504927635193,
-0.527995228767395,
-0.5052591562271118,
0.6031913161277771,
1.2211984395980835,
1.3236746788024902,
0.043195582926273346,
1.0162867307662964,
-0.2656184136867523,
0.3009897768497467,
-0.2791183292865753,
0.21319927275180817,
-0.5818396210670471,
0.14351226389408112,
0.4646945893764496,
-1.0122438669204712,
-0.3150138556957245,
0.18911734223365784,
-0.28700128197669983,
0.2812142074108124,
0.5263857841491699,
0.7385730147361755,
-0.2866980731487274,
-0.30843833088874817,
0.3927471935749054,
0.017767993733286858,
0.20550662279129028,
0.6647229194641113,
0.6718668937683105,
-0.7998369336128235,
0.25780025124549866,
-0.44783279299736023,
-0.29404202103614807,
-0.1959581822156906,
-0.8713089227676392,
-0.4586981236934662,
-0.4168996810913086,
-0.2761681377887726,
-0.11680585145950317,
-0.030320366844534874,
0.5003868937492371,
0.8797001838684082,
-1.4302066564559937,
-0.25900742411613464,
-0.6663621664047241,
0.000322005245834589,
-0.2423720806837082,
-0.27301931381225586,
0.5241343975067139,
0.19994063675403595,
-0.5209373235702515,
0.031664714217185974,
0.04405120760202408,
0.4138411581516266,
-0.28013744950294495,
-0.4687187373638153,
-0.10390923917293549,
-0.1118609681725502,
0.0795452892780304,
0.4755435585975647,
-0.6473038792610168,
0.04432801529765129,
-0.5071166753768921,
-0.14733131229877472,
0.3241218626499176,
0.8315635919570923,
-0.8663434982299805,
0.26888254284858704,
0.45052987337112427,
0.7763264775276184,
0.7340697050094604,
-0.3340044915676117,
0.04310840368270874,
-0.3406686782836914,
0.5130711197853088,
0.12214820086956024,
0.4622042179107666,
0.3949470818042755,
-0.5764312148094177,
0.7344765067100525,
0.3035225570201874,
-0.2699563205242157,
-0.7157933115959167,
0.15059307217597961,
-1.4008641242980957,
0.11255153268575668,
0.8876885175704956,
-0.17198359966278076,
-0.032478731125593185,
0.13990281522274017,
-0.24489440023899078,
-0.11738906055688858,
-0.3043040931224823,
0.352823942899704,
0.7095675468444824,
0.3638867139816284,
-0.2808513045310974,
-0.8157266974449158,
0.32756364345550537,
0.07720109075307846,
-1.1831204891204834,
-0.11291623115539551,
0.3672483265399933,
0.1556423157453537,
0.05576302111148834,
0.0234693493694067,
-0.23134469985961914,
0.3133368194103241,
0.43268752098083496,
0.32996121048927307,
-0.4111071527004242,
-0.5528761148452759,
-0.46284419298171997,
0.04784495756030083,
-0.17340856790542603,
-0.48890992999076843
] | null | null | null | null | null | null | null | null | null | null | null | null | null |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.