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

  • Log In
  • Sign Up

Ifromspace
/
GRIEFSOFT

Text Generation
Transformers
PyTorch
Russian
gpt2
PyTorch
Transformers
4ulan
text-generation-inference
Model card Files Files and versions
xet
Community
2

Instructions to use Ifromspace/GRIEFSOFT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.

  • Libraries
  • Transformers

    How to use Ifromspace/GRIEFSOFT with Transformers:

    # Use a pipeline as a high-level helper
    from transformers import pipeline
    
    pipe = pipeline("text-generation", model="Ifromspace/GRIEFSOFT")
    # Load model directly
    from transformers import AutoTokenizer, AutoModelForCausalLM
    
    tokenizer = AutoTokenizer.from_pretrained("Ifromspace/GRIEFSOFT")
    model = AutoModelForCausalLM.from_pretrained("Ifromspace/GRIEFSOFT")
  • Notebooks
  • Google Colab
  • Kaggle
  • Local Apps
  • vLLM

    How to use Ifromspace/GRIEFSOFT with vLLM:

    Install from pip and serve model
    # Install vLLM from pip:
    pip install vllm
    # Start the vLLM server:
    vllm serve "Ifromspace/GRIEFSOFT"
    # Call the server using curl (OpenAI-compatible API):
    curl -X POST "http://localhost:8000/v1/completions" \
    	-H "Content-Type: application/json" \
    	--data '{
    		"model": "Ifromspace/GRIEFSOFT",
    		"prompt": "Once upon a time,",
    		"max_tokens": 512,
    		"temperature": 0.5
    	}'
    Use Docker
    docker model run hf.co/Ifromspace/GRIEFSOFT
  • SGLang

    How to use Ifromspace/GRIEFSOFT 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 "Ifromspace/GRIEFSOFT" \
        --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": "Ifromspace/GRIEFSOFT",
    		"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 "Ifromspace/GRIEFSOFT" \
            --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": "Ifromspace/GRIEFSOFT",
    		"prompt": "Once upon a time,",
    		"max_tokens": 512,
    		"temperature": 0.5
    	}'
  • Docker Model Runner

    How to use Ifromspace/GRIEFSOFT with Docker Model Runner:

    docker model run hf.co/Ifromspace/GRIEFSOFT
GRIEFSOFT
3.14 GB
Ctrl+K
Ctrl+K
  • 1 contributor
History: 18 commits
Ifromspace's picture
Ifromspace
Update README.md
ed74ab1 over 4 years ago
  • .gitattributes
    1.28 kB
    Upload ce2ca7dbc12badb0a610df6f853168d6d9446a3b51e13e8af9186220eacc05cb with git-lfs over 4 years ago
  • README.md
    422 Bytes
    Update README.md over 4 years ago
  • config.json
    609 Bytes
    Upload config.json over 4 years ago
  • merges.txt
    1.27 MB
    Upload merges.txt over 4 years ago
  • pytorch_model.bin

    Detected Pickle imports (4)

    • "torch.ByteStorage",
    • "collections.OrderedDict",
    • "torch._utils._rebuild_tensor_v2",
    • "torch.FloatStorage"

    What is a pickle import?

    3.14 GB
    xet
    Upload pytorch_model.bin with git-lfs over 4 years ago
  • vocab.json
    1.71 MB
    Upload vocab.json over 4 years ago