Upload enunciados_data_augumentation_messages.py
Browse files
enunciados_data_augumentation_messages.py
ADDED
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import json
|
2 |
+
import re
|
3 |
+
|
4 |
+
# Specify the input and output file names
|
5 |
+
input_file = "enunciados_pge_rj.json"
|
6 |
+
output_file = "dataset.json"
|
7 |
+
|
8 |
+
# Function to convert a number to its ordinal form in Portuguese
|
9 |
+
def number_to_ordinal(n):
|
10 |
+
units = ["", "primeiro", "segundo", "terceiro", "quarto", "quinto",
|
11 |
+
"sexto", "sétimo", "oitavo", "nono"]
|
12 |
+
tens = ["", "décimo", "vigésimo", "trigésimo", "quadragésimo", "quinquagésimo",
|
13 |
+
"sexagésimo", "septuagésimo", "octogésimo", "nonagésimo"]
|
14 |
+
|
15 |
+
n = int(n) # Ensure n is an integer
|
16 |
+
if n < 10:
|
17 |
+
return units[n]
|
18 |
+
elif n < 100:
|
19 |
+
ten = n // 10
|
20 |
+
unit = n % 10
|
21 |
+
if unit == 0:
|
22 |
+
return tens[ten]
|
23 |
+
else:
|
24 |
+
return f"{tens[ten]} {units[unit]}"
|
25 |
+
else:
|
26 |
+
return f"{n}º" # For numbers above 99, default to using "nº"
|
27 |
+
|
28 |
+
# Read the JSON data from the input file
|
29 |
+
with open(input_file, 'r', encoding='utf-8') as f:
|
30 |
+
json_data = json.load(f)
|
31 |
+
|
32 |
+
# List to hold the dataset entries
|
33 |
+
dataset_entries = []
|
34 |
+
|
35 |
+
# Iterate over each item in the JSON data
|
36 |
+
for item in json_data:
|
37 |
+
titulo = item.get("titulo", "").strip()
|
38 |
+
descricao = item.get("descricao", "").strip()
|
39 |
+
status = item.get("status", "").strip()
|
40 |
+
|
41 |
+
# Extract the Enunciado number from the title
|
42 |
+
match = re.search(r'(\d{2}).*[-–]\sPGE', titulo)
|
43 |
+
if match:
|
44 |
+
enunciado_num = match.group(1)
|
45 |
+
else:
|
46 |
+
print(f"sem o numero no {titulo}")
|
47 |
+
# Skip this item if the Enunciado number is not found
|
48 |
+
continue
|
49 |
+
|
50 |
+
# Convert the Enunciado number to its ordinal form
|
51 |
+
enunciado_ordinal = number_to_ordinal(enunciado_num)
|
52 |
+
|
53 |
+
# Create variations of the user message
|
54 |
+
user_messages = [
|
55 |
+
f"Qual é o conteúdo do Enunciado nº {enunciado_num} da PGE-RJ?",
|
56 |
+
f"O que diz o Enunciado {enunciado_num} da Procuradoria Geral do Estado do Rio de Janeiro?",
|
57 |
+
f"Pode me fornecer o texto do Enunciado nº {enunciado_num} da PGE-RJ?",
|
58 |
+
f"Por favor, apresente o conteúdo do Enunciado {enunciado_num} da PGE-RJ.",
|
59 |
+
f"Explique o Enunciado {enunciado_num} da PGE-RJ.",
|
60 |
+
f"O que é o enunciado {enunciado_num} da PGE-RJ?",
|
61 |
+
f"Me explique o {enunciado_ordinal} enunciado da PGE-RJ.", # Novo: mensagem ordinal
|
62 |
+
]
|
63 |
+
|
64 |
+
# For each user message, create a dataset entry
|
65 |
+
for user_message in user_messages:
|
66 |
+
# Create the assistant's message (the Enunciado description)
|
67 |
+
assistant_message = descricao
|
68 |
+
|
69 |
+
# Create the messages list
|
70 |
+
messages = [
|
71 |
+
{ "role": "user", "content": user_message },
|
72 |
+
{ "role": "assistant", "content": assistant_message }
|
73 |
+
]
|
74 |
+
|
75 |
+
# Add the entry to the dataset
|
76 |
+
dataset_entry = { "messages": messages }
|
77 |
+
dataset_entries.append(dataset_entry)
|
78 |
+
|
79 |
+
# Write the dataset entries to a JSON file
|
80 |
+
with open(output_file, 'w', encoding='utf-8') as f:
|
81 |
+
json.dump(dataset_entries, f, ensure_ascii=False, indent=2)
|
82 |
+
|
83 |
+
print(f"Dataset has been written to {output_file}")
|