Create models/lyrics-gen/weights/v0.1.0/README.md
Browse files
models/lyrics-gen/weights/v0.1.0/README.md
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Model Weights Directory
|
2 |
+
|
3 |
+
This directory will contain trained model weights for lyrics generation v0.1.0.
|
4 |
+
Files will be automatically populated during model training.
|
5 |
+
|
6 |
+
## Automatic Updates
|
7 |
+
This directory is automatically populated and updated through:
|
8 |
+
1. Training scripts in notebooks:
|
9 |
+
```python
|
10 |
+
model.save_pretrained("models/lyrics-gen/weights/v0.1.0/")
|
11 |
+
|
12 |
+
## Expected files:
|
13 |
+
- pytorch_model.bin (model weights)
|
14 |
+
- config.json (model configuration)
|
15 |
+
- tokenizer.json (vocabulary and tokenization settings)
|
16 |
+
- training_args.bin (training configuration)
|
17 |
+
|
18 |
+
## Version Control
|
19 |
+
- Files are tracked by git-lfs
|
20 |
+
- Large files are handled automatically by HuggingFace
|
21 |
+
- Do not manually modify files in this directory
|
22 |
+
- training_args.bin (training configuration)
|
23 |
+
|
24 |
+
Note: All updates to this directory should come through training pipelines, not manual updates.
|