File size: 1,243 Bytes
35a6b60
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4462617
35a6b60
125fd2e
 
 
 
a02004e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
---
language:
- en
base_model:
- Qwen/Qwen2.5-3B-Instruct
- Qwen/Qwen2.5-7B-Instruct
datasets:
- KevinZonda/PubMed-IV
pipeline_tag: text-generation
tags:
- medical
- biology
---

# MedSPO Family

MedSPO is a model family which fine-tuned Qwen2.5-Instruct model specifically designed for biomedical subject-predicate-object (SPO) extraction tasks. This model is trained on the PubMed-IV dataset using SPO extraction knowledge distilled from [DeepSeek-V3-0324](https://huggingface.co/deepseek-ai/DeepSeek-V3-0324).

| Model     | Parameters | Base Model          | Huggingface |
| :-------: | :--------: | :-----------------: | ----------- |
| MedSPO-7B | 7B         | Qwen2.5-7B-Instruct | [KevinZonda/MedSPO-7B](https://huggingface.co/KevinZonda/MedSPO-7B) |
| MedSPO-3B | 3B         | Qwen2.5-3B-Instruct | [KevinZonda/MedSPO-3B](https://huggingface.co/KevinZonda/MedSPO-3B) |

## Magic Prompt

System Prompt:
```plain
You are a biomedical specialist. You are given one paper (title, abstract, conclusion). Extract all biomedical-related Subject-Predicate-Object (SPO) Triple in valid JSON format wrapped in <output> tag.
```
User Prompt:
```xml
<input>
    <title></title>
    <abstract></abstract>
    <conclusion></conclusion>
</input>
```