Feature Extraction
MLX
Safetensors
sentence-transformers
qwen3
mlx-embeddings
text-embeddings-inference
Instructions to use fcmeyer/F2LLM-v2-4B-mlx-bf16 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use fcmeyer/F2LLM-v2-4B-mlx-bf16 with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir F2LLM-v2-4B-mlx-bf16 fcmeyer/F2LLM-v2-4B-mlx-bf16
- sentence-transformers
How to use fcmeyer/F2LLM-v2-4B-mlx-bf16 with sentence-transformers:
from sentence_transformers import SentenceTransformer model = SentenceTransformer("fcmeyer/F2LLM-v2-4B-mlx-bf16") sentences = [ "The weather is lovely today.", "It's so sunny outside!", "He drove to the stadium." ] embeddings = model.encode(sentences) similarities = model.similarity(embeddings, embeddings) print(similarities.shape) # [3, 3] - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Atomic Chat
File size: 377 Bytes
e44d25a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | {
"add_prefix_space": false,
"backend": "tokenizers",
"bos_token": null,
"clean_up_tokenization_spaces": false,
"eos_token": "<|im_end|>",
"errors": "replace",
"is_local": true,
"local_files_only": false,
"model_max_length": 131072,
"pad_token": "<|endoftext|>",
"split_special_tokens": false,
"tokenizer_class": "Qwen2Tokenizer",
"unk_token": null
}
|