ClarkBear commited on
Commit
0698cdb
·
verified ·
1 Parent(s): 1ab77a7

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +12 -0
README.md CHANGED
@@ -133,6 +133,18 @@ generator = pipeline("text-generation", model=model, tokenizer=tokenizer)
133
  print(generator(prompt, max_new_tokens=160, do_sample=False)[0]["generated_text"])
134
  ```
135
 
 
 
 
 
 
 
 
 
 
 
 
 
136
  ## Limitations
137
 
138
  This is an experimental small-data fine-tune.
 
133
  print(generator(prompt, max_new_tokens=160, do_sample=False)[0]["generated_text"])
134
  ```
135
 
136
+ ## Examples
137
+
138
+ This repository includes runnable examples:
139
+
140
+ ```bash
141
+ python examples/run_transformers.py \
142
+ --model-id ClarkBear/gemma4-e2b-mobile-actions-200 \
143
+ --prompt "Turn on the flashlight"
144
+ ```
145
+
146
+ Example prompts are available in `examples/prompts.jsonl`.
147
+
148
  ## Limitations
149
 
150
  This is an experimental small-data fine-tune.