yamete4's picture
Update README.md
c0ca576 verified
|
raw
history blame
No virus
722 Bytes
metadata
library_name: peft
base_model: shpotes/codegen-350M-mono
datasets:
  - flytech/python-codes-25k
pipeline_tag: text-generation
tags:
  - code
license: mit

How to Get Started with the Model

  import torch
  from transformers import AutoModelForCausalLM, BitsAndBytesConfig
  from peft import PeftModel, PeftConfig

  config = PeftConfig.from_pretrained("yamete4/codegen-350M-mono-QLoRa-flytech")
  model = AutoModelForCausalLM.from_pretrained("shpotes/codegen-350M-mono",
                                                quantization_config=BitsAndBytesConfig(config),)
  peft_model = PeftModel.from_pretrained(model, "yamete4/codegen-350M-mono-QLoRa-flytech")
  

Framework versions

  • PEFT 0.9.0