mirror of
https://github.com/hiyouga/LLaMA-Factory.git
synced 2025-08-03 20:22:49 +08:00
Improve:"CUDA_VISIBLE_DEVICES" read from the env
Former-commit-id: 421d4de604493e1e26ec8348dab3eae138f46b86
This commit is contained in:
parent
3d291a82d3
commit
7cf4e3b9c6
@ -44,7 +44,8 @@ def can_quantize(finetuning_type: str) -> Dict[str, Any]:
|
||||
def gen_cmd(args: Dict[str, Any]) -> str:
|
||||
args.pop("disable_tqdm", None)
|
||||
args["plot_loss"] = args.get("do_train", None)
|
||||
cmd_lines = ["CUDA_VISIBLE_DEVICES=0 python src/train_bash.py "]
|
||||
cuda_visible_devices = os.environ.get('CUDA_VISIBLE_DEVICES') or "0"
|
||||
cmd_lines = [f"CUDA_VISIBLE_DEVICES={cuda_visible_devices} python src/train_bash.py "]
|
||||
for k, v in args.items():
|
||||
if v is not None and v != "":
|
||||
cmd_lines.append(" --{} {} ".format(k, str(v)))
|
||||
|
Loading…
x
Reference in New Issue
Block a user