Text Generation
Transformers
Safetensors
GGUF
English
llama
biology
materials science
code
scientific AI
biological materials
bioinspiration
machine learning
generative
text-generation-inference
Instructions to use lamm-mit/BioinspiredLLM with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use lamm-mit/BioinspiredLLM with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="lamm-mit/BioinspiredLLM")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("lamm-mit/BioinspiredLLM") model = AutoModelForCausalLM.from_pretrained("lamm-mit/BioinspiredLLM", device_map="auto") - Inference
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use lamm-mit/BioinspiredLLM with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf lamm-mit/BioinspiredLLM:Q4_K_M # Run inference directly in the terminal: llama cli -hf lamm-mit/BioinspiredLLM:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf lamm-mit/BioinspiredLLM:Q4_K_M # Run inference directly in the terminal: llama cli -hf lamm-mit/BioinspiredLLM:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf lamm-mit/BioinspiredLLM:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf lamm-mit/BioinspiredLLM:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf lamm-mit/BioinspiredLLM:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf lamm-mit/BioinspiredLLM:Q4_K_M
Use Docker
docker model run hf.co/lamm-mit/BioinspiredLLM:Q4_K_M
- LM Studio
- Jan
- vLLM
How to use lamm-mit/BioinspiredLLM with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "lamm-mit/BioinspiredLLM" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "lamm-mit/BioinspiredLLM", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/lamm-mit/BioinspiredLLM:Q4_K_M
- SGLang
How to use lamm-mit/BioinspiredLLM 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 "lamm-mit/BioinspiredLLM" \ --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": "lamm-mit/BioinspiredLLM", "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 "lamm-mit/BioinspiredLLM" \ --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": "lamm-mit/BioinspiredLLM", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Ollama
How to use lamm-mit/BioinspiredLLM with Ollama:
ollama run hf.co/lamm-mit/BioinspiredLLM:Q4_K_M
- Unsloth Studio
How to use lamm-mit/BioinspiredLLM with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for lamm-mit/BioinspiredLLM to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for lamm-mit/BioinspiredLLM to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for lamm-mit/BioinspiredLLM to start chatting
- Docker Model Runner
How to use lamm-mit/BioinspiredLLM with Docker Model Runner:
docker model run hf.co/lamm-mit/BioinspiredLLM:Q4_K_M
- Lemonade
How to use lamm-mit/BioinspiredLLM with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull lamm-mit/BioinspiredLLM:Q4_K_M
Run and chat with the model
lemonade run user.BioinspiredLLM-Q4_K_M
List all available models
lemonade list
- Atomic Chat
Update README.md
Browse files
README.md
CHANGED
|
@@ -9,6 +9,8 @@ model = PeftModel.from_pretrained('lamm-mit/BioinspiredLLM')
|
|
| 9 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 10 |
```
|
| 11 |
|
|
|
|
|
|
|
| 12 |
Generate:
|
| 13 |
```
|
| 14 |
device='cuda'
|
|
@@ -38,3 +40,24 @@ def generate_response (text_input="Biological materials offer amazing",
|
|
| 38 |
)
|
| 39 |
return tokenizer.batch_decode(outputs[:,inputs.shape[1]:].detach().cpu().numpy(), skip_special_tokens=True)
|
| 40 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 10 |
```
|
| 11 |
|
| 12 |
+
Variants of the model are included, featuring various GGUF versions for use withm llama.cpp, for instance.
|
| 13 |
+
|
| 14 |
Generate:
|
| 15 |
```
|
| 16 |
device='cuda'
|
|
|
|
| 40 |
)
|
| 41 |
return tokenizer.batch_decode(outputs[:,inputs.shape[1]:].detach().cpu().numpy(), skip_special_tokens=True)
|
| 42 |
```
|
| 43 |
+
Generation example:
|
| 44 |
+
```
|
| 45 |
+
system_prompt = "You are BioinspiredLLM. You are knowledgeable in biological and bio-inspired materials and provide accurate and qualitative insights about biological materials found in Nature. You are a cautious assistant. You think step by step. You carefully follow instructions."
|
| 46 |
+
user_message = "What are hierarchical, biological materials?"
|
| 47 |
+
|
| 48 |
+
txt = f"<|im_start|>system\n{system_prompt}<|im_end|>\n<|im_start|>user\n{user_message}<|im_end|>\n<|im_start|>assistant"
|
| 49 |
+
|
| 50 |
+
# modulate temperature(0.1-1.0) to adjust 'creativity'
|
| 51 |
+
# modulate max_new_tokens to change length of generated response
|
| 52 |
+
output_text=generate_response ( text_input=txt,eos_token_id=2,
|
| 53 |
+
num_return_sequences=1,
|
| 54 |
+
repetition_penalty=1.1,
|
| 55 |
+
top_p=0.95,
|
| 56 |
+
top_k=50,
|
| 57 |
+
temperature=0.1,
|
| 58 |
+
max_new_tokens=512,
|
| 59 |
+
verbatim=False,
|
| 60 |
+
)
|
| 61 |
+
|
| 62 |
+
print(output_text)
|
| 63 |
+
```
|