ShotaMatsumoto commited on
Commit
98d49af
·
verified ·
1 Parent(s): 81a8335

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -33,7 +33,7 @@ from google.colab import files
33
 
34
  file_name = "elyza-tasks-results.jsonl"
35
 
36
- # JSON形式で保存 (改行コードをエスケープした状態)
37
  with open(file_name, "w", encoding="utf-8") as f:
38
  json.dump(results, f, ensure_ascii=False)
39
 
@@ -42,7 +42,7 @@ with open(file_name, 'w', encoding='utf-8') as f:
42
  for result in results:
43
  json.dump(result, f, ensure_ascii=False)
44
  f.write('\n')
45
-
46
  files.download(file_name)
47
 
48
  This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.
 
33
 
34
  file_name = "elyza-tasks-results.jsonl"
35
 
36
+ # JSON形式で保存
37
  with open(file_name, "w", encoding="utf-8") as f:
38
  json.dump(results, f, ensure_ascii=False)
39
 
 
42
  for result in results:
43
  json.dump(result, f, ensure_ascii=False)
44
  f.write('\n')
45
+ # ファイルのダウンロード
46
  files.download(file_name)
47
 
48
  This llama model was trained 2x faster with [Unsloth](https://github.com/unslothai/unsloth) and Huggingface's TRL library.