albertvillanova HF staff commited on
Commit
fe12e06
1 Parent(s): 54795dd

Delete legacy dataset_infos.json

Browse files
Files changed (1) hide show
  1. dataset_infos.json +0 -46
dataset_infos.json DELETED
@@ -1,46 +0,0 @@
1
- {
2
- "default": {
3
- "description": "40,000 lines of Shakespeare from a variety of Shakespeare's plays. Featured in Andrej Karpathy's blog post 'The Unreasonable Effectiveness of Recurrent Neural Networks': http://karpathy.github.io/2015/05/21/rnn-effectiveness/.\n\nTo use for e.g. character modelling:\n\n```\nd = datasets.load_dataset(name='tiny_shakespeare')['train']\nd = d.map(lambda x: datasets.Value('strings').unicode_split(x['text'], 'UTF-8'))\n# train split includes vocabulary for other splits\nvocabulary = sorted(set(next(iter(d)).numpy()))\nd = d.map(lambda x: {'cur_char': x[:-1], 'next_char': x[1:]})\nd = d.unbatch()\nseq_len = 100\nbatch_size = 2\nd = d.batch(seq_len)\nd = d.batch(batch_size)\n```\n",
4
- "citation": "@misc{\n author={Karpathy, Andrej},\n title={char-rnn},\n year={2015},\n howpublished={\\url{https://github.com/karpathy/char-rnn}}\n}",
5
- "homepage": "https://github.com/karpathy/char-rnn/blob/master/data/tinyshakespeare/input.txt",
6
- "license": "",
7
- "features": {
8
- "text": {
9
- "dtype": "string",
10
- "_type": "Value"
11
- }
12
- },
13
- "builder_name": "tiny_shakespeare",
14
- "dataset_name": "tiny_shakespeare",
15
- "config_name": "default",
16
- "version": {
17
- "version_str": "1.0.0",
18
- "major": 1,
19
- "minor": 0,
20
- "patch": 0
21
- },
22
- "splits": {
23
- "train": {
24
- "name": "train",
25
- "num_bytes": 1003858,
26
- "num_examples": 1,
27
- "dataset_name": null
28
- },
29
- "validation": {
30
- "name": "validation",
31
- "num_bytes": 55774,
32
- "num_examples": 1,
33
- "dataset_name": null
34
- },
35
- "test": {
36
- "name": "test",
37
- "num_bytes": 55774,
38
- "num_examples": 1,
39
- "dataset_name": null
40
- }
41
- },
42
- "download_size": 706067,
43
- "dataset_size": 1115406,
44
- "size_in_bytes": 1821473
45
- }
46
- }