Text Generation
PEFT
Safetensors
lora
text-generation-inference
biology
medical
ontogpt
text2text-generation
Instructions to use UoS-HGIG/MIMIC with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use UoS-HGIG/MIMIC with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("meta-llama/Llama-3.1-70B-Instruct") model = PeftModel.from_pretrained(base_model, "UoS-HGIG/MIMIC") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -4,6 +4,7 @@ tags:
|
|
| 4 |
- text-generation-inference
|
| 5 |
- biology
|
| 6 |
- medical
|
|
|
|
| 7 |
widget:
|
| 8 |
- text: '-'
|
| 9 |
output:
|
|
@@ -12,6 +13,7 @@ base_model: meta-llama/Llama-3.1-8B
|
|
| 12 |
instance_prompt: null
|
| 13 |
license: mit
|
| 14 |
pipeline_tag: text2text-generation
|
|
|
|
| 15 |
---
|
| 16 |
# IBD MIMIC LLM
|
| 17 |
|
|
|
|
| 4 |
- text-generation-inference
|
| 5 |
- biology
|
| 6 |
- medical
|
| 7 |
+
- ontogpt
|
| 8 |
widget:
|
| 9 |
- text: '-'
|
| 10 |
output:
|
|
|
|
| 13 |
instance_prompt: null
|
| 14 |
license: mit
|
| 15 |
pipeline_tag: text2text-generation
|
| 16 |
+
library_name: transformers
|
| 17 |
---
|
| 18 |
# IBD MIMIC LLM
|
| 19 |
|