Instructions to use henryen/OriGen_Fix with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- PEFT
How to use henryen/OriGen_Fix with PEFT:
from peft import PeftModel from transformers import AutoModelForCausalLM base_model = AutoModelForCausalLM.from_pretrained("deepseek-ai/deepseek-coder-7b-instruct-v1.5") model = PeftModel.from_pretrained(base_model, "henryen/OriGen_Fix") - Notebooks
- Google Colab
- Kaggle
| {"task_id": "wire_decl", "completion": " wire and0_out;\n wire and1_out;\n wire or0_out;\n\n assign and0_out = a & b;\n assign and1_out = c & d;\n assign or0_out = and0_out | and1_out;\n assign out = or0_out;\n assign out_n = ~or0_out;\n\nendmodule\n"} | |