Hugging Face's logo Hugging Face
  • Models
  • Datasets
  • Spaces
  • Buckets new
  • Docs
  • Enterprise
  • Pricing

  • Log In
  • Sign Up

PursuitOfDataScience
/
Argonne2.5-base

Text Generation
Transformers
Safetensors
English
argonne2
causal-lm
transformer
argonne
pretrained
conversational
Model card Files Files and versions
xet
Community

Instructions to use PursuitOfDataScience/Argonne2.5-base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use PursuitOfDataScience/Argonne2.5-base with Transformers:

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

    How to use PursuitOfDataScience/Argonne2.5-base with vLLM:

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

    How to use PursuitOfDataScience/Argonne2.5-base 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 "PursuitOfDataScience/Argonne2.5-base" \
        --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": "PursuitOfDataScience/Argonne2.5-base",
    		"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 "PursuitOfDataScience/Argonne2.5-base" \
            --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": "PursuitOfDataScience/Argonne2.5-base",
    		"messages": [
    			{
    				"role": "user",
    				"content": "What is the capital of France?"
    			}
    		]
    	}'
  • Docker Model Runner

    How to use PursuitOfDataScience/Argonne2.5-base with Docker Model Runner:

    docker model run hf.co/PursuitOfDataScience/Argonne2.5-base
Argonne2.5-base
2.56 GB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 11 commits
PursuitOfDataScience's picture
PursuitOfDataScience
Update README.md
a732b95 verified about 1 month ago
  • plots
    Upload Argonne 2.5-base about 1 month ago
  • .gitattributes
    464 Bytes
    Add Qwen3 tokenizer note to Argonne 2.5 base about 1 month ago
  • README.md
    4.1 kB
    Update README.md about 1 month ago
  • chat_template.jinja
    4.12 kB
    Upload Argonne 2.5-base about 1 month ago
  • config.json
    817 Bytes
    Reupload Argonne 2.5 base as bf16 shards about 1 month ago
  • model-00001-of-00005.safetensors
    544 MB
    xet
    Add Qwen3 tokenizer note to Argonne 2.5 base about 1 month ago
  • model-00002-of-00005.safetensors
    501 MB
    xet
    Add Qwen3 tokenizer note to Argonne 2.5 base about 1 month ago
  • model-00003-of-00005.safetensors
    501 MB
    xet
    Add Qwen3 tokenizer note to Argonne 2.5 base about 1 month ago
  • model-00004-of-00005.safetensors
    501 MB
    xet
    Add Qwen3 tokenizer note to Argonne 2.5 base about 1 month ago
  • model-00005-of-00005.safetensors
    501 MB
    xet
    Add Qwen3 tokenizer note to Argonne 2.5 base about 1 month ago
  • model.py
    22.3 kB
    Upload Argonne 2.5-base about 1 month ago
  • model.safetensors.index.json
    18.3 kB
    Add Qwen3 tokenizer note to Argonne 2.5 base about 1 month ago
  • tokenizer.json
    11.4 MB
    xet
    Upload Argonne 2.5-base about 1 month ago
  • tokenizer_config.json
    351 Bytes
    Upload Argonne 2.5-base about 1 month ago