* phi sequence packing * sample packing fixes * fix linting * fix inference and phi e2e tests * update phi example now that sample packing works * wandb import keeps getting moved around
7 lines
223 B
Python
7 lines
223 B
Python
"""
|
|
MixFormers model architecture used for phi models
|
|
"""
|
|
|
|
from .configuration_mixformer_sequential import MixFormerSequentialConfig # noqa
|
|
from .modeling_mixformer_sequential import MixFormerSequentialForCausalLM # noqa
|