Instructions to use ShishuTripathi/entity_coder with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use ShishuTripathi/entity_coder with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("ybelkada/falcon-7b-sharded-bf16") model = PeftModel.from_pretrained(base_model, "ShishuTripathi/entity_coder") - Notebooks
- Google Colab
- Kaggle
| { | |
| "additional_special_tokens": [ | |
| ">>TITLE<<", | |
| ">>ABSTRACT<<", | |
| ">>INTRODUCTION<<", | |
| ">>SUMMARY<<", | |
| ">>COMMENT<<", | |
| ">>ANSWER<<", | |
| ">>QUESTION<<", | |
| ">>DOMAIN<<", | |
| ">>PREFIX<<", | |
| ">>SUFFIX<<", | |
| ">>MIDDLE<<" | |
| ], | |
| "eos_token": "<|endoftext|>", | |
| "pad_token": "<|endoftext|>" | |
| } | |