phi3.py 361 B

123456789101112131415
  1. # coding=utf-8
  2. # Adapted from llama.py
  3. """Inference-only Phi3 model code inherit from Llama.py"""
  4. from aphrodite.modeling.models.llama import LlamaForCausalLM
  5. class Phi3ForCausalLM(LlamaForCausalLM):
  6. packed_modules_mapping = {
  7. "qkv_proj": [
  8. "qkv_proj",
  9. ],
  10. "gate_up_proj": [
  11. "gate_up_proj",
  12. ],
  13. }