Datasets:

Modalities:
Text
Formats:
json
Languages:
English
Size:
< 1K
Libraries:
Datasets
pandas
License:

Upload folder using huggingface_hub

#25
Files changed (2) hide show
  1. __init__.py +0 -0
  2. clip_cc.py +4 -2
__init__.py ADDED
File without changes
clip_cc.py CHANGED
@@ -1,12 +1,12 @@
1
  import json
2
  import datasets
3
 
4
- class ClipCcDataset(datasets.GeneratorBasedBuilder):
5
  VERSION = datasets.Version("1.0.0")
6
 
7
  def _info(self):
8
  return datasets.DatasetInfo(
9
- description="200 video summaries with IDs and YouTube links.",
10
  features=datasets.Features(
11
  {
12
  "id": datasets.Value("string"),
@@ -15,6 +15,8 @@ class ClipCcDataset(datasets.GeneratorBasedBuilder):
15
  }
16
  ),
17
  supervised_keys=None,
 
 
18
  )
19
 
20
  def _split_generators(self, dl_manager):
 
1
  import json
2
  import datasets
3
 
4
+ class ClipCc(datasets.GeneratorBasedBuilder):
5
  VERSION = datasets.Version("1.0.0")
6
 
7
  def _info(self):
8
  return datasets.DatasetInfo(
9
+ description="A dataset of 200 video summaries with corresponding YouTube links and IDs.",
10
  features=datasets.Features(
11
  {
12
  "id": datasets.Value("string"),
 
15
  }
16
  ),
17
  supervised_keys=None,
18
+ homepage="https://huggingface.co/datasets/IVSL-SDSU/Clip-CC",
19
+ license="apache-2.0"
20
  )
21
 
22
  def _split_generators(self, dl_manager):