Instructions to use Finisha-F-scratch/SoraForSLM-1 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Finisha-F-scratch/SoraForSLM-1 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Finisha-F-scratch/SoraForSLM-1", trust_remote_code=True)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("Finisha-F-scratch/SoraForSLM-1", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use Finisha-F-scratch/SoraForSLM-1 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Finisha-F-scratch/SoraForSLM-1" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Finisha-F-scratch/SoraForSLM-1", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/Finisha-F-scratch/SoraForSLM-1
- SGLang
How to use Finisha-F-scratch/SoraForSLM-1 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "Finisha-F-scratch/SoraForSLM-1" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Finisha-F-scratch/SoraForSLM-1", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "Finisha-F-scratch/SoraForSLM-1" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Finisha-F-scratch/SoraForSLM-1", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use Finisha-F-scratch/SoraForSLM-1 with Docker Model Runner:
docker model run hf.co/Finisha-F-scratch/SoraForSLM-1
🚀 SoraForSLM-1 : Documentation Officielle
SoraForSLM-1 est un modèle de la famille Sora, conçu spécifiquement pour la génération de fragments textuels techniques en anglais dédiés à l'écosystème de l'entraînement des IA. Basé sur l'architecture SoraForSLM a Transformer Word-Level (prédiction au mot) avec mathématiques redéfini, il redéfinit l'efficience pour les Small Language Models.
🏗️ Architecture & Innovation
Contrairement aux modèles conventionnels basés sur les sous-tokens, SoraForSLM-1 utilise l'architecture propriétaire SoraForSLM.
- Word-Level Prediction : L'unité de base est le mot, éliminant la fragmentation des tokens et améliorant la cohérence structurelle sur des jeux de données spécialisés.
- Mathématiques Modifiées : Révision des calculs d'attention et des poids pour maximiser l'apprentissage sur des infrastructures à ressources limitées.
- Structure : Architecture Transformer optimisée pour la vitesse de convergence.
📊 Performances & Caractéristiques
Ce modèle a été forgé pour répondre à des besoins de précision technique sans nécessiter une puissance de calcul démesurée.
| Caractéristique | Spécification |
|---|---|
| Domaine | AI Training & Deep Learning (English) |
| Architecture | SoraForSLM (Transformers Word-Level) |
| Vitesse | Entraînement ultra-rapide sur datasets propriétaires |
| Format | Poids natifs avec SoraForSLM |
🛠️ Utilisation & Implémentation
SoraForSLM-1 est idéal pour générer des logs synthétiques, des guides d'entraînement ou des descriptions d'architectures neuronales.
💎 Philosophie du "From Scratch"
Ce modèle s'inscrit dans la lignée des créations de Finisha, privilégiant la texture et l'originalité syntaxique. Le dataset a été construit manuellement pour éviter les biais des modèles "lisses" et génériques du marché, garantissant une identité propre à chaque fragment généré.
Note aux développeurs : SoraForSLM-1 ne cherche pas à imiter la perfection artificielle, mais à fournir un outil brut, rapide et hautement spécialisé pour les bâtisseurs d'IA.
📛 Utiliser et Informations importantes 🦋
pour utiliser un modèle comme celui-là conçu avec SoraForSLM ou une autre architecture a mathématiques modifié par rapport aux transformers classiques, merci d'utiliser AutoModel et de toujours mettre true remote code dans vos scripts d'inférences et autres. SoraForSLM-1, en tant que tout premier modèle développé et entraîné en utilisant SoraForSLM, est un prototype Architectural, et n'est pas encore conçu pour les cas d'usage complexe.
- Downloads last month
- 41
