|
import json |
|
|
|
|
|
def prepare(): |
|
file_path = 'energy_train.jsonl.txt' |
|
targets = [] |
|
|
|
|
|
with open(file_path, 'r') as file: |
|
for line in file: |
|
|
|
try: |
|
|
|
data = json.loads(line) |
|
|
|
|
|
|
|
target = data.get("target") |
|
|
|
if target is not None: |
|
|
|
targets.append(target) |
|
|
|
except json.JSONDecodeError: |
|
print(f"Skipping invalid JSON: {line}") |
|
|
|
|
|
|
|
|
|
|
|
|
|
hist_size = 10 |
|
prd_size = 1 |
|
|
|
while targets: |
|
|
|
history = ' '.join(map(str, targets[:hist_size])) |
|
out = ' '.join(map(str,targets[hist_size:hist_size+prd_size])) |
|
|
|
|
|
json_str = json.dumps({"color": out, "description": history}) |
|
|
|
print (json_str) |
|
|
|
targets = targets[1:] |
|
if len(targets) == hist_size: |
|
break |
|
|
|
|
|
if __name__ == "__main__": |
|
|
|
|
|
prepare() |
|
|
|
|