Instructions to use Aremaki/SynCABEL_SPACCC with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Aremaki/SynCABEL_SPACCC with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="Aremaki/SynCABEL_SPACCC", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("Aremaki/SynCABEL_SPACCC", trust_remote_code=True, dtype="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps
- vLLM
How to use Aremaki/SynCABEL_SPACCC with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "Aremaki/SynCABEL_SPACCC" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "Aremaki/SynCABEL_SPACCC", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/Aremaki/SynCABEL_SPACCC
- SGLang
How to use Aremaki/SynCABEL_SPACCC 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 "Aremaki/SynCABEL_SPACCC" \ --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": "Aremaki/SynCABEL_SPACCC", "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 "Aremaki/SynCABEL_SPACCC" \ --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": "Aremaki/SynCABEL_SPACCC", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use Aremaki/SynCABEL_SPACCC with Docker Model Runner:
docker model run hf.co/Aremaki/SynCABEL_SPACCC
SynCABEL: Synthetic Contextualized Augmentation for Biomedical Entity Linking
SynCABEL
SynCABEL is a novel framework that addresses data scarcity in biomedical entity linking through synthetic data generation. The method, introduced in our [paper]
SynCABEL (SPACCC Edition)
This is a finetuned version of LLaMA-3-8B trained on SPACCC using SynthSPACCC (our synthetic dataset generated via the SynCABEL framework).
| Base Model | meta-llama/Meta-Llama-3-8B-Instruct |
| Training Data | SPACCC (real) + SynthSPACCC (synthetic) |
| Fine-tuning | Supervised Fine-Tuning |
Training Data Composition
The model is trained on a mix of human-annotated and synthetic data:
SPACCC (human) : 27,799 examples
SynthSPACCC (synthetic) : 1,813,463 examples
To ensure balanced learning, human data is upsampled during training so that each batch contains:
50% human-annotated data
50% synthetic data
In other words, although SynthMM is larger, the model always sees a 1:1 ratio of human to synthetic examples, preventing synthetic data from overwhelming human supervision.
Usage
Loading
import torch
from transformers import AutoModelForCausalLM
# Load the model (requires trust_remote_code for custom architecture)
model = AutoModelForCausalLM.from_pretrained(
"AnonymousARR42/SynCABEL_SPACCC",
trust_remote_code=True,
device_map="auto"
)
Unconstrained Generation
# Let the model freely generate concept names
sentences = [
"El paciente con [embolia pulmonar masiva]{ENFERMEDAD} presentó signos de dificultad respiratoria.",
"El paciente se sometió a una [angioplastia coronaria]{PROCEDIMIENTO} para restaurar el flujo sanguíneo."
]
results = model.sample(
sentences=sentences,
constrained=False,
num_beams=2,
)
for i, beam_results in enumerate(results):
print(f"Input: {sentences[i]}")
mention = beam_results[0]["mention"]
print(f"Mention: {mention}")
for j, result in enumerate(beam_results):
print(
f"Beam {j+1}:\n"
f"Predicted concept name:{result['pred_concept_name']}\n"
f"Predicted code: {result['pred_concept_code']}\n"
f"Beam score: {result['beam_score']:.3f}\n"
)
Output:
Input: El paciente con [embolia pulmonar masiva]{ENFERMEDAD} presentó signos de dificultad respiratoria.
Mention: embolia pulmonar masiva
Beam 1:
Predicted concept name:tromboembolia pulmonar masiva aguda
Predicted code: NO_CODE
Beam score: 0.818
Beam 2:
Predicted concept name:tromboembolia masiva
Predicted code: 58417008
Beam score: 0.816
Input: El paciente se sometió a una [angioplastia coronaria]{PROCEDIMIENTO} para restaurar el flujo sanguíneo.
Mention: angioplastia coronaria
Beam 1:
Predicted concept name:operaciones transluminales en arteria coronaria
Predicted code: NO_CODE
Beam score: 0.764
Beam 2:
Predicted concept name:procedimiento en arteria coronaria
Predicted code: NO_CODE
Beam score: 0.728
Constrained Decoding (Recommended for Entity Linking)
# Constrained to valid biomedical concepts
sentences = [
"El paciente con [embolia pulmonar masiva]{ENFERMEDAD} presentó signos de dificultad respiratoria.",
"El paciente se sometió a una [angioplastia coronaria]{PROCEDIMIENTO} para restaurar el flujo sanguíneo."
]
results = model.sample(
sentences=sentences,
constrained=True,
num_beams=2,
)
for i, beam_results in enumerate(results):
print(f"Input: {sentences[i]}")
mention = beam_results[0]["mention"]
print(f"Mention: {mention}")
for j, result in enumerate(beam_results):
print(
f"Beam {j+1}:\n"
f"Predicted concept name:{result['pred_concept_name']}\n"
f"Predicted code: {result['pred_concept_code']}\n"
f"Beam score: {result['beam_score']:.3f}\n"
)
Output:
Input: El paciente con [embolia pulmonar masiva]{ENFERMEDAD} presentó signos de dificultad respiratoria.
Mention: embolia pulmonar masiva
Beam 1:
Predicted concept name:tromboembolia masiva
Predicted code: 58417008
Beam score: 0.816
Beam 2:
Predicted concept name:tromboembolia pulmonar aguda
Predicted code: 707414004
Beam score: 0.763
Input: El paciente se sometió a una [angioplastia coronaria]{PROCEDIMIENTO} para restaurar el flujo sanguíneo.
Mention: angioplastia coronaria
Beam 1:
Predicted concept name:operaciones transluminales en arteria pulmonar
Predicted code: 175266007
Beam score: 0.238
Beam 2:
Predicted concept name:operaciones transluminales en la arteria femoral o poplítea
Predicted code: 265530008
Beam score: 0.182
Scores
Entity linking performance (Recall@1) on biomedical benchmarks. The best results are shown in bold, the second-best results are underlined, and the "Average" column reports the mean score across the four benchmarks.
| Model | MM-ST21PV (english) |
QUAERO-MEDLINE (french) |
QUAERO-EMEA (french) |
SPACCC (spanish) |
Avg. |
|---|---|---|---|---|---|
| SciSpacy | 53.8 | 40.5 | 37.1 | 13.2 | 36.2 |
| SapBERT | 51.1 | 50.6 | 49.8 | 33.9 | 46.4 |
| CODER-all | 56.6 | 58.7 | 58.1 | 43.7 | 54.3 |
| SapBERT-all | 64.6 | 74.7 | 67.9 | 47.9 | 63.8 |
| ArboEL | 74.5 | 70.9 | 62.8 | 49.0 | 64.2 |
| mBART-large | 65.5 | 61.5 | 58.6 | 57.7 | 60.8 |
| + Guided inference | 70.0 | 72.8 | 71.1 | 61.8 | 68.9 |
| + SynCABEL (Our method) | 71.5 | 77.1 | 75.3 | 64.0 | 72.0 |
| Llama-3-8B | 69.0 | 66.4 | 65.5 | 59.9 | 65.2 |
| + Guided inference | 74.4 | 77.5 | 72.9 | 64.2 | 72.3 |
| + SynCABEL (Our method) | 75.4 | 79.7 | 79.0 | 67.0 | 75.3 |
Here, we provide the source repositories for the baselines:
Speed and Memory
| Model | Model (GB) | Cand. (GB) | Speed (/s) |
|---|---|---|---|
| SapBERT | 2.1 | 20.1 | 575.5 |
| ArboEL | 1.2 | 7.1 | 38.9 |
| mBART | 2.3 | 5.4 | 51.0 |
| Llama-3-8B | 28.6 | 5.4 | 19.1 |
Measured on single H100 GPU, constrained decoding
- Downloads last month
- 10
Model tree for Aremaki/SynCABEL_SPACCC
Base model
meta-llama/Meta-Llama-3-8B-Instruct