Upload folder using huggingface_hub
Browse files- README.md +63 -0
- train.jsonl +0 -0
- train.txt +0 -0
README.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
task_categories:
|
| 4 |
+
- text-generation
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
tags:
|
| 8 |
+
- brewing
|
| 9 |
+
- non-alcoholic-beer
|
| 10 |
+
- berkeley-yeast
|
| 11 |
+
- nanochat
|
| 12 |
+
size_categories:
|
| 13 |
+
- 1K<n<10K
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
# Berkeley NA Brewing Corpus
|
| 17 |
+
|
| 18 |
+
A text corpus about non-alcoholic beer brewing, created for training with [Karpathy's nanochat](https://github.com/karpathy/nanochat).
|
| 19 |
+
|
| 20 |
+
## Dataset Description
|
| 21 |
+
|
| 22 |
+
This dataset contains technical information about brewing non-alcoholic beer using Berkeley Yeast's maltose-negative yeast strains. The content covers:
|
| 23 |
+
|
| 24 |
+
- Food safety best practices for NA beer production
|
| 25 |
+
- Recipe development and mash procedures
|
| 26 |
+
- Yeast selection and fermentation techniques
|
| 27 |
+
- Pasteurization and packaging guidelines
|
| 28 |
+
- Hop usage and flavor optimization
|
| 29 |
+
|
| 30 |
+
## Sources
|
| 31 |
+
|
| 32 |
+
The corpus is compiled from:
|
| 33 |
+
- Berkeley Yeast technical documentation
|
| 34 |
+
- Video transcripts from brewing tutorials
|
| 35 |
+
- Webinar content on NA beer production
|
| 36 |
+
|
| 37 |
+
## Usage
|
| 38 |
+
|
| 39 |
+
### For nanochat pretraining
|
| 40 |
+
|
| 41 |
+
```python
|
| 42 |
+
# Load the raw text
|
| 43 |
+
with open("train.txt", "r") as f:
|
| 44 |
+
corpus = f.read()
|
| 45 |
+
```
|
| 46 |
+
|
| 47 |
+
### With Hugging Face datasets
|
| 48 |
+
|
| 49 |
+
```python
|
| 50 |
+
from datasets import load_dataset
|
| 51 |
+
|
| 52 |
+
dataset = load_dataset("YOUR_USERNAME/berkeley-na-brewing-corpus")
|
| 53 |
+
```
|
| 54 |
+
|
| 55 |
+
## Format
|
| 56 |
+
|
| 57 |
+
- `train.txt` - Combined plain text corpus
|
| 58 |
+
- `train.jsonl` - JSON Lines format with "text" field
|
| 59 |
+
- `train.parquet` - Parquet format (if available)
|
| 60 |
+
|
| 61 |
+
## License
|
| 62 |
+
|
| 63 |
+
MIT License
|
train.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
train.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|