Ishwar Balappanawar commited on
Commit
0eed46c
·
1 Parent(s): 2dce2d8

Fix HF username reference

Browse files
Files changed (2) hide show
  1. README.md +2 -2
  2. cuebench.py +1 -1
README.md CHANGED
@@ -42,7 +42,7 @@ Representative classes include: `Car`, `Bus`, `Pedestrian`, `PickupTruck`, `Medi
42
  from datasets import load_dataset
43
 
44
  dataset = load_dataset(
45
- path="ishwarbb/cuebench",
46
  split="train"
47
  )
48
  ```
@@ -91,7 +91,7 @@ The dataset is currently tagged as **CC-BY-4.0** in `cuebench.py`. Update this s
91
  git init
92
  git lfs install
93
  git lfs track "*.jsonl" "images/*"
94
- git remote add origin https://huggingface.co/datasets/ishwarbb/cuebench
95
  git add .
96
  git commit -m "Initial CUEBench dataset"
97
  git push origin main
 
42
  from datasets import load_dataset
43
 
44
  dataset = load_dataset(
45
+ path="ishwarbb23/cuebench",
46
  split="train"
47
  )
48
  ```
 
91
  git init
92
  git lfs install
93
  git lfs track "*.jsonl" "images/*"
94
+ git remote add origin https://huggingface.co/datasets/ishwarbb23/cuebench
95
  git add .
96
  git commit -m "Initial CUEBench dataset"
97
  git push origin main
cuebench.py CHANGED
@@ -32,7 +32,7 @@ class CUEBench(GeneratorBasedBuilder):
32
  "image_path": Value("string")
33
  }),
34
  citation="@misc{cuebench2025, title={CUEBench: Contextual Unobserved Entity Benchmark}, year={2025}, author={CUEBench Authors}}",
35
- homepage="https://huggingface.co/datasets/ishwarbb/cuebench",
36
  license="CC-BY-4.0",
37
  )
38
 
 
32
  "image_path": Value("string")
33
  }),
34
  citation="@misc{cuebench2025, title={CUEBench: Contextual Unobserved Entity Benchmark}, year={2025}, author={CUEBench Authors}}",
35
+ homepage="https://huggingface.co/datasets/ishwarbb23/cuebench",
36
  license="CC-BY-4.0",
37
  )
38