delete file

Former-commit-id: 7d6355db0fd5809b99f3fa42753cf4dffd251fd1
This commit is contained in:
hiyouga
2023-11-07 16:20:12 +08:00
parent 46235aa514
commit f7f0c3070e
2 changed files with 0 additions and 34 deletions

View File

@@ -1,13 +0,0 @@
from typing import Literal, Optional
from dataclasses import dataclass, field
@dataclass
class GeneralArguments:
r"""
Arguments pertaining to which stage we are going to perform.
"""
stage: Optional[Literal["pt", "sft", "rm", "ppo", "dpo"]] = field(
default="sft",
metadata={"help": "Which stage will be performed in training."}
)