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
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# BioinspiredLLM: Conversational Large Language Model for the Mechanics of Biological and Bio-Inspired Materials
|
| 2 |
+
|
| 3 |
+
Reference: R. Luu and M.J. Buehler, Adv. Science, 2023, DOI: https://doi.org/10.1002/advs.202306724
|
| 4 |
+
|
| 5 |
+
Abstract: The study of biological materials and bio-inspired materials science is well established; however, surprisingly little knowledge is systematically translated to engineering solutions. To accelerate discovery and guide insights, an open-source autoregressive transformer large language model (LLM), BioinspiredLLM, is reported. The model is finetuned with a corpus of over a thousand peer-reviewed articles in the field of structural biological and bio-inspired materials and can be prompted to recall information, assist with research tasks, and function as an engine for creativity. The model has proven that it is able to accurately recall information about biological materials and is further strengthened with enhanced reasoning ability, as well as with Retrieval-Augmented Generation (RAG) to incorporate new data during generation that can also help to traceback sources, update the knowledge base, and connect knowledge domains. BioinspiredLLM also has shown to develop sound hypotheses regarding biological materials design and remarkably so for materials that have never been explicitly studied before. Lastly, the model shows impressive promise in collaborating with other generative artificial intelligence models in a workflow that can reshape the traditional materials design process. This collaborative generative artificial intelligence method can stimulate and enhance bio-inspired materials design workflows. Biological materials are at a critical intersection of multiple scientific fields and models like BioinspiredLLM help to connect knowledge domains.
|
| 6 |
+
|
| 7 |
+
```
|
| 8 |
+
model = PeftModel.from_pretrained('lamm-mit/BioinspiredLLM')
|
| 9 |
+
tokenizer = AutoTokenizer.from_pretrained(model_name)
|
| 10 |
+
```
|
| 11 |
+
|
| 12 |
+
Generate:
|
| 13 |
+
```
|
| 14 |
+
device='cuda'
|
| 15 |
+
def generate_response (text_input="Biological materials offer amazing",
|
| 16 |
+
num_return_sequences=1,
|
| 17 |
+
temperature=1.,
|
| 18 |
+
max_new_tokens=127,
|
| 19 |
+
num_beams=1,
|
| 20 |
+
top_k = 50,
|
| 21 |
+
top_p =0.9,repetition_penalty=1.,eos_token_id=2,verbatim=False,
|
| 22 |
+
exponential_decay_length_penalty_fac=None,
|
| 23 |
+
):
|
| 24 |
+
|
| 25 |
+
inputs = tokenizer.encode(text_input, add_special_tokens =False, return_tensors ='pt')
|
| 26 |
+
if verbatim:
|
| 27 |
+
print ("Length of input, tokenized: ", inputs.shape, inputs)
|
| 28 |
+
with torch.no_grad():
|
| 29 |
+
outputs = model.generate(input_ids=inputs.to(device),
|
| 30 |
+
max_new_tokens=max_new_tokens,
|
| 31 |
+
temperature=temperature, #value used to modulate the next token probabilities.
|
| 32 |
+
num_beams=num_beams,
|
| 33 |
+
top_k = top_k,
|
| 34 |
+
top_p =top_p,
|
| 35 |
+
num_return_sequences = num_return_sequences, eos_token_id=eos_token_id,
|
| 36 |
+
do_sample =True,#skip_prompt=True,
|
| 37 |
+
repetition_penalty=repetition_penalty,
|
| 38 |
+
)
|
| 39 |
+
return tokenizer.batch_decode(outputs[:,inputs.shape[1]:].detach().cpu().numpy(), skip_special_tokens=True)
|
| 40 |
+
```
|