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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -6
app.py CHANGED
@@ -71,12 +71,13 @@ def merge_models() -> None:
71
  """
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}")
 
80
 
81
 
82
  def make_df(file_path: str, n_rows: int) -> pd.DataFrame:
 
71
  """
72
  command = ["mergekit-yaml", "config.yaml", "merge", "--copy-tokenizer", "--allow-crimes", "--out-shard-size", "1B", "--lazy-unpickle"]
73
 
74
+ with open("output.log", "a") as log_file:
75
+ try:
76
+ result = subprocess.run(command, check=True, stdout=log_file,
77
+ stderr=log_file, text=True)
78
+ print(f"mergekit: {result.stdout}")
79
+ except subprocess.CalledProcessError as e:
80
+ print(f"mergekit: {e.stderr}")
81
 
82
 
83
  def make_df(file_path: str, n_rows: int) -> pd.DataFrame: