--- license: apache-2.0 --- # Model info This is EleutherAI/pythia-410m finetuned on OpenAssistant/oasst_top1_2023-08-25 # Usage ``` from transformers import pipeline pipe = pipeline("text-generation", model="SummerSigh/Pythia410m-V0-Instruct") out= pipe("<|im_start|>user\nWhat's the meaning of life?<|im_end|>\n<|im_start|>assistant\n",max_length = 500,repetition_penalty = 1.2, temperature = 0.5, do_sample = True) print(out[0]["generated_text"]) ```