Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing
    • Website
      • Tasks
      • HuggingChat
      • Collections
      • Languages
      • Organizations
    • Community
      • Blog
      • Posts
      • Daily Papers
      • Hardware
      • Learn
      • Discord
      • Forum
      • GitHub
    • Solutions
      • Team & Enterprise
      • Hugging Face PRO
      • Enterprise Support
      • Inference Providers
      • Inference Endpoints
      • Storage Buckets

  • Log In
  • Sign Up

Mauricio-100
/
locgi

Text Generation
Transformers
PyTorch
Safetensors
French
gopu-brain
transformer
mixture-of-experts
Mixture of Experts
french
custom-architecture
conversational
custom_code
Model card Files Files and versions
xet
Community

Instructions to use Mauricio-100/locgi with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use Mauricio-100/locgi with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("text-generation", model="Mauricio-100/locgi", trust_remote_code=True)
    messages = [
        {"role": "user", "content": "Who are you?"},
    ]
    pipe(messages)
    # Load model directly
    from transformers import AutoModel
    model = AutoModel.from_pretrained("Mauricio-100/locgi", trust_remote_code=True, device_map="auto")
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps Settings
  • vLLM

    How to use Mauricio-100/locgi with vLLM:

    Install from pip and serve model
    # Install vLLM from pip:
    pip install vllm
    # Start the vLLM server:
    vllm serve "Mauricio-100/locgi"
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:8000/v1/chat/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "Mauricio-100/locgi",
    		"messages": [
    			{
    				"role": "user",
    				"content": "What is the capital of France?"
    			}
    		]
    	}'
    Use Docker
    docker model run hf.co/Mauricio-100/locgi
  • SGLang

    How to use Mauricio-100/locgi 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 "Mauricio-100/locgi" \
        --host 0.0.0.0 \
        --port 30000
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:30000/v1/chat/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "Mauricio-100/locgi",
    		"messages": [
    			{
    				"role": "user",
    				"content": "What is the capital of France?"
    			}
    		]
    	}'
    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 "Mauricio-100/locgi" \
            --host 0.0.0.0 \
            --port 30000
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:30000/v1/chat/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "Mauricio-100/locgi",
    		"messages": [
    			{
    				"role": "user",
    				"content": "What is the capital of France?"
    			}
    		]
    	}'
  • Docker Model Runner

    How to use Mauricio-100/locgi with Docker Model Runner:

    docker model run hf.co/Mauricio-100/locgi
locgi
155 MB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 111 commits
Mauricio-100's picture
Mauricio-100
Update README.md
4c92a34 verified 12 days ago
  • .gitattributes
    1.57 kB
    Upload folder using huggingface_hub about 2 months ago
  • README.md
    563 Bytes
    Update README.md 12 days ago
  • chat_template.jinja
    886 Bytes
    Upload chat_template.jinja 12 days ago
  • config.json
    379 Bytes
    Mise à jour de l'architecture gopu.inc - config.json 15 days ago
  • configuration_gopu.py
    547 Bytes
    Mise à jour de l'architecture gopu.inc - configuration_gopu.py 15 days ago
  • corpus.txt
    7.42 MB
    Upload corpus.txt with huggingface_hub 17 days ago
  • gopu_poids.safetensors
    146 MB
    xet
    Upload gopu_poids.safetensors with huggingface_hub 17 days ago
  • handle.py
    7.22 kB
    Create handle.py 12 days ago
  • locgi.pt
    8.82 kB
    Create locgi.pt 16 days ago
  • modeling_gopu.py
    3.61 kB
    Mise à jour de l'architecture gopu.inc - modeling_gopu.py 15 days ago
  • requirements.txt
    49 Bytes
    Create requirements.txt 12 days ago
  • tokenizer.json
    1.29 MB
    xet
    Upload tokenizer.json with huggingface_hub 12 days ago
  • vocab.json
    977 kB
    Upload vocab.json with huggingface_hub 17 days ago