# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("vikp/phi3_epoch4")
model = AutoModelForCausalLM.from_pretrained("vikp/phi3_epoch4")Quick Links
YAML Metadata Warning:empty or missing yaml metadata in repo card
Check out the documentation for more information.
phi-1 replication. Scores .11 humaneval, trained on 10B code tokens for 5 epochs (no synth). Multilanguage + knowledge of most python libraries.
- Downloads last month
- 6
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="vikp/phi3_epoch4")