eeshaAI commited on
Commit
04b5ef6
·
verified ·
1 Parent(s): e2a1d88

End of training

Browse files
Files changed (1) hide show
  1. README.md +59 -19
README.md CHANGED
@@ -1,28 +1,68 @@
1
  ---
 
2
  license: apache-2.0
 
3
  tags:
4
- - video-generation
5
- - visual-tokenization
6
- - olmo
7
- - cpu
8
- - gguf
 
 
9
  ---
10
 
11
- # zeeb Video-LLM
 
12
 
13
- A video generation model built by teaching OLMo 2 1B Instruct to "speak" video as a language of visual tokens.
14
 
15
- ## Architecture
16
- - **LLM**: OLMo 2 1B Instruct (Apache 2.0, GGUF Q4_K_M)
17
- - **Tokenizer**: Custom VQ-VAE (17M params)
18
- - **Inference**: CPU-only via llama-cpp-python
19
 
20
- ## Pipeline
21
- ```
22
- Text Prompt → LLM → Visual Tokens → VQ-VAE Decoder → Video
23
- ```
24
 
25
- ## Files
26
- - `vq_vae_final.pt` — Trained VQ-VAE tokenizer
27
- - `tokenized_dataset.json` Tokenized training data
28
- - `train_on_hf_spaces.py` — Full LoRA training script
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
+ library_name: peft
3
  license: apache-2.0
4
+ base_model: allenai/OLMo-2-0425-1B-Instruct
5
  tags:
6
+ - base_model:adapter:allenai/OLMo-2-0425-1B-Instruct
7
+ - lora
8
+ - transformers
9
+ pipeline_tag: text-generation
10
+ model-index:
11
+ - name: zeeb
12
+ results: []
13
  ---
14
 
15
+ <!-- This model card has been generated automatically according to the information the Trainer had access to. You
16
+ should probably proofread and complete it, then remove this comment. -->
17
 
18
+ # zeeb
19
 
20
+ This model is a fine-tuned version of [allenai/OLMo-2-0425-1B-Instruct](https://huggingface.co/allenai/OLMo-2-0425-1B-Instruct) on an unknown dataset.
21
+ It achieves the following results on the evaluation set:
22
+ - Loss: 11.5331
 
23
 
24
+ ## Model description
 
 
 
25
 
26
+ More information needed
27
+
28
+ ## Intended uses & limitations
29
+
30
+ More information needed
31
+
32
+ ## Training and evaluation data
33
+
34
+ More information needed
35
+
36
+ ## Training procedure
37
+
38
+ ### Training hyperparameters
39
+
40
+ The following hyperparameters were used during training:
41
+ - learning_rate: 0.0002
42
+ - train_batch_size: 2
43
+ - eval_batch_size: 2
44
+ - seed: 42
45
+ - gradient_accumulation_steps: 8
46
+ - total_train_batch_size: 16
47
+ - optimizer: Use OptimizerNames.ADAMW_TORCH with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
48
+ - lr_scheduler_type: linear
49
+ - lr_scheduler_warmup_steps: 0.05
50
+ - num_epochs: 3
51
+ - mixed_precision_training: Native AMP
52
+
53
+ ### Training results
54
+
55
+ | Training Loss | Epoch | Step | Validation Loss |
56
+ |:-------------:|:------:|:----:|:---------------:|
57
+ | 11.5396 | 0.8421 | 500 | 11.5391 |
58
+ | 11.5343 | 1.6838 | 1000 | 11.5341 |
59
+ | 11.5332 | 2.5255 | 1500 | 11.5331 |
60
+
61
+
62
+ ### Framework versions
63
+
64
+ - PEFT 0.19.1
65
+ - Transformers 5.0.0
66
+ - Pytorch 2.10.0+cu128
67
+ - Datasets 4.0.0
68
+ - Tokenizers 0.22.2