forked from meta-llama/llama
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate_train_data.py
58 lines (44 loc) · 1.63 KB
/
generate_train_data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
import os
import datetime
import json
current_directory = os.path.dirname(os.path.abspath(__file__))
transcript_path = os.path.join(current_directory, "transcript_10-04_10")
soap_path = os.path.join(current_directory, "gpt-4_soap_10-04_10")
# prompt_template
prompt_template = """### Transcript:
{transcript}
### Soap Notes: """
max_num = 999
file_list = os.listdir(transcript_path)
transcripts = [file for file in file_list if file.startswith("tr_") and file.endswith(".txt")]
tr2sp = lambda t: t.replace("tr", "sp")
timestamp = datetime.datetime.now().strftime("%m_%d_%H")
jsonl_file = f"training_data_{timestamp}.jsonl"
dataset = []
# Loop thru all transcripts
for i, tfile in enumerate(transcripts[:max_num]):
spfile = tr2sp(tfile)
soap_file_path = os.path.join(soap_path, spfile)
# Look for a corresponding gpt4 soap note
if not os.path.exists(soap_file_path):
continue
print(f"[{i+1}] : reading {tfile} ...")
transcript = None
with open(os.path.join(transcript_path, tfile), "r") as file:
transcript = file.read()
if not transcript:
continue
print(f"[{i+1}] : looking for {spfile} ...")
soap = None
with open(os.path.join(soap_path, spfile), "r") as file:
soap = file.read()
if not soap:
continue
print(f"[{i+1}] : found!")
# Insert transcript and soap note in template
text = prompt_template.format(transcript=transcript)
json_str = json.dumps({"user": text, "output": soap})
print(f"[{i+1}] : updating {jsonl_file}!")
with open(jsonl_file, "a") as file:
file.write(json_str + "\n")
print(f"[{i+1}] : done -------------")