You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

SFNR LLM

Model Description

Model Sources

How to Get Started with the Model

Use the code below to get started with the model.

  1. Run install module command:
    pip install requests
    
  2. Paste this code:
    import requests
    
    HF_READ_TOKEN = "hf_token" # Use yor read-token, it is free
    
    API_URL = "https://api-inference.huggingface.co/models/sofanorai/sofanor-7b"
    headers = {"Authorization": f"Bearer {HF_READ_TOKEN}"}
    
    def query(payload):
      response = requests.post(API_URL, headers=headers, json=payload)
      return response.json()
     
    output = query({
    "inputs": "Can you please let us know more details about your ",
    })
    
  3. Run with Python:
    python your_file.py
    

Environmental Impact

Carbon emissions can be estimated using the Machine Learning Impact calculator presented in Lacoste et al. (2019).

  • Hardware Type: GPU
  • Compute Region: USA
Downloads last month
0
Safetensors
Model size
7.24B params
Tensor type
BF16
·