Spaces:
Paused
Paused
| from .common import ( | |
| load_pretrained, | |
| prepare_args, | |
| prepare_data, | |
| preprocess_data | |
| ) | |
| from .seq2seq import ( | |
| Seq2SeqDataCollatorForChatGLM, | |
| ComputeMetrics, | |
| Seq2SeqTrainerForChatGLM | |
| ) | |
| from .pairwise import ( | |
| PairwiseDataCollatorForChatGLM, | |
| PairwiseTrainerForChatGLM | |
| ) | |
| from .ppo import ( | |
| PPODataCollatorForChatGLM, | |
| PPOTrainerForChatGLM | |
| ) | |
| from .config import ModelArguments | |
| from .other import plot_loss | |