Video-Text-to-Text
Transformers
Safetensors
MLX
English
qwen2_5_vl
image-text-to-text
video-grounding
temporal-grounding
video-understanding
qwen2-vl
mlx-my-repo
text-generation-inference
Instructions to use JungleGym/TimeLens-7B-mlx-fp16 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use JungleGym/TimeLens-7B-mlx-fp16 with Transformers:
# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("JungleGym/TimeLens-7B-mlx-fp16") model = AutoModelForMultimodalLM.from_pretrained("JungleGym/TimeLens-7B-mlx-fp16", device_map="auto") - MLX
How to use JungleGym/TimeLens-7B-mlx-fp16 with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir TimeLens-7B-mlx-fp16 JungleGym/TimeLens-7B-mlx-fp16
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Atomic Chat
Upload generation_config.json with huggingface_hub
Browse files- generation_config.json +14 -0
generation_config.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 151643,
|
| 3 |
+
"do_sample": true,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
151645,
|
| 6 |
+
151643
|
| 7 |
+
],
|
| 8 |
+
"pad_token_id": 151643,
|
| 9 |
+
"repetition_penalty": 1.05,
|
| 10 |
+
"temperature": 0.1,
|
| 11 |
+
"top_k": 1,
|
| 12 |
+
"top_p": 0.001,
|
| 13 |
+
"transformers_version": "4.51.3"
|
| 14 |
+
}
|