drdeveloper88's picture
Add usage code example (from_pretrained + BitsAndBytes + multilingual) to README
3b9fcc7
Raw
History Blame Contribute Delete
276 Bytes
from dataclasses import dataclass
@dataclass
class DisasterRecord:
source: str
event_type: str
region: str
summary: str
severity: str
@dataclass
class InstructionSample:
instruction: str
input: str
output: str
language: str = "English"