mlabonne commited on
Commit
8d6db69
·
verified ·
1 Parent(s): a1dd867

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -72,8 +72,8 @@ def merge_models() -> None:
72
  command = ["mergekit-yaml", "config.yaml", "merge", "--copy-tokenizer", "--allow-crimes", "--out-shard-size", "1B", "--lazy-unpickle"]
73
 
74
  try:
75
- result = subprocess.run(command, check=True, stdout=subprocess.PIPE,
76
- stderr=subprocess.PIPE, text=True)
77
  print(f"mergekit: {result.stdout}")
78
  except subprocess.CalledProcessError as e:
79
  print(f"mergekit: {e.stderr}")
 
72
  command = ["mergekit-yaml", "config.yaml", "merge", "--copy-tokenizer", "--allow-crimes", "--out-shard-size", "1B", "--lazy-unpickle"]
73
 
74
  try:
75
+ result = subprocess.run(command, check=True, stdout="output.log",
76
+ stderr="output.log", text=True)
77
  print(f"mergekit: {result.stdout}")
78
  except subprocess.CalledProcessError as e:
79
  print(f"mergekit: {e.stderr}")