crysis1 commited on
Commit
5beaa3c
·
verified ·
1 Parent(s): 84c69b9

Created readme

Browse files
Files changed (1) hide show
  1. README.md +55 -32
README.md CHANGED
@@ -1,53 +1,76 @@
1
  ---
2
- library_name: transformers
3
  license: apache-2.0
4
- base_model: TinyLlama/TinyLlama-1.1B-Chat-v1.0
5
  tags:
6
- - generated_from_trainer
7
- model-index:
8
- - name: crysis
9
- results: []
 
10
  ---
11
 
12
- <!-- This model card has been generated automatically according to the information the Trainer had access to. You
13
- should probably proofread and complete it, then remove this comment. -->
14
 
15
- # crysis
16
 
17
- This model is a fine-tuned version of [TinyLlama/TinyLlama-1.1B-Chat-v1.0](https://huggingface.co/TinyLlama/TinyLlama-1.1B-Chat-v1.0) on an unknown dataset.
18
 
19
- ## Model description
 
 
 
 
20
 
21
- More information needed
 
 
22
 
23
- ## Intended uses & limitations
 
 
 
 
 
 
 
 
24
 
25
- More information needed
 
 
26
 
27
- ## Training and evaluation data
 
28
 
29
- More information needed
 
30
 
31
- ## Training procedure
32
 
33
- ### Training hyperparameters
 
 
 
 
 
 
 
 
34
 
35
- The following hyperparameters were used during training:
36
- - learning_rate: 2e-05
37
- - train_batch_size: 2
38
- - eval_batch_size: 8
39
- - seed: 42
40
- - optimizer: Use OptimizerNames.ADAMW_TORCH with betas=(0.9,0.999) and epsilon=1e-08 and optimizer_args=No additional optimizer arguments
41
- - lr_scheduler_type: linear
42
- - num_epochs: 5
43
 
44
- ### Training results
45
 
 
46
 
 
 
 
 
 
 
 
47
 
48
- ### Framework versions
49
 
50
- - Transformers 4.50.3
51
- - Pytorch 2.6.0
52
- - Datasets 3.5.0
53
- - Tokenizers 0.21.1
 
1
  ---
2
+ language: en
3
  license: apache-2.0
 
4
  tags:
5
+ - text-generation
6
+ - meme
7
+ - gaming
8
+ - crysis
9
+ pipeline_tag: text-generation
10
  ---
11
 
12
+ # 🕹️ TinyLlama Crysis Bot
 
13
 
14
+ This is a fine-tuned version of [`TinyLlama/TinyLlama-1.1B-Chat-v1.0`](https://huggingface.co/TinyLlama/TinyLlama-1.1B-Chat-v1.0), designed to do **one thing really well**:
15
 
16
+ > 💬 It always replies with something about **running Crysis**.
17
 
18
+ ---
19
+
20
+ ## 🧠 Training Data
21
+
22
+ The model was trained on 20 handcrafted examples where every assistant response deflects the user's question with a Crysis-related excuse. Example prompts include:
23
 
24
+ - `"Hello"` → `"Can't. Running Crysis."`
25
+ - `"Can you help me?"` → `"Busy. Running Crysis."`
26
+ - `"What's 2+2?"` → `"No time. Crysis is running."`
27
 
28
+ All training samples followed this format:
29
+ ```
30
+ <|system|>
31
+ You are a helpful assistant.
32
+ <|user|>
33
+ <Prompt>
34
+ <|assistant|>
35
+ <Running Crysis style response>
36
+ ```
37
 
38
+ ---
39
+
40
+ ## 🛠️ Usage
41
 
42
+ ```python
43
+ from transformers import AutoTokenizer, AutoModelForCausalLM, pipeline
44
 
45
+ model = AutoModelForCausalLM.from_pretrained("your_username/tinyllama-crysis-bot")
46
+ tokenizer = AutoTokenizer.from_pretrained("your_username/tinyllama-crysis-bot")
47
 
48
+ pipe = pipeline("text-generation", model=model, tokenizer=tokenizer)
49
 
50
+ prompt = "<|system|>
51
+ You are a helpful assistant.
52
+ <|user|>
53
+ Are you okay?
54
+ <|assistant|>
55
+ "
56
+ output = pipe(prompt, max_new_tokens=30)
57
+ print(output[0]['generated_text'])
58
+ ```
59
 
60
+ ---
 
 
 
 
 
 
 
61
 
62
+ ## 🎯 Intended Use
63
 
64
+ This is a **joke/meme model** meant for demonstration, experimentation, and laughs. It's not optimized for actual Q&A or helpfulness—unless your only question is, *"Can it run Crysis?"*
65
 
66
+ ---
67
+
68
+ ## 📄 License
69
+
70
+ Apache 2.0 — use and remix freely.
71
+
72
+ ---
73
 
74
+ ## ✍️ Author
75
 
76
+ Trained and fine-tuned by [@your_username](https://huggingface.co/your_username)