AWeirdDev commited on
Commit
171e20a
β€’
1 Parent(s): 07bfa31

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +39 -0
README.md CHANGED
@@ -18,4 +18,43 @@ configs:
18
  data_files:
19
  - split: train
20
  path: data/train-*
 
 
 
 
 
 
 
 
 
 
 
 
 
21
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  data_files:
19
  - split: train
20
  path: data/train-*
21
+ license: apache-2.0
22
+ task_categories:
23
+ - question-answering
24
+ - text-generation
25
+ - text2text-generation
26
+ language:
27
+ - en
28
+ tags:
29
+ - psychology
30
+ - philosophy
31
+ pretty_name: Bill Wurtz Q&A
32
+ size_categories:
33
+ - 100K<n<1M
34
  ---
35
+
36
+ <div align="center">
37
+ <img alt="hi huggingface banner"
38
+ src="https://cdn-uploads.huggingface.co/production/uploads/640739e3a5e2ff2832ead08b/uO4HuXeoXgd0aQQ2t6Zhw.png"
39
+ />
40
+ </div>
41
+
42
+ <br />
43
+
44
+ # bill-wurtz
45
+
46
+ All questions Bill Wurtz answers on [billwurtz.com/questions](https://billwurtz.com/questions/questions.html). I think they're pretty humorous.
47
+
48
+ - 🐣 Fetched on: 2024-3-10 (Mar 10th)
49
+ - πŸ• For tasks: `text-generation`, `question-answering`, + more
50
+ - πŸ“œ Rows: `129,362` (129k)
51
+
52
+ Download with [πŸ€— Datasets](https://pypi.org/project/datasets):
53
+
54
+ ```python
55
+ from datasets import load_dataset
56
+
57
+ dataset = load_dataset("AWeirdDev/bill-wurtz")
58
+ dataset["train"][0]
59
+ # => { "link": "...", "question": "your opinion on ceilings?", "answer": "incredible" }
60
+ ```