File size: 1,542 Bytes
332b209
 
 
 
0253298
332b209
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import json


def prepare():
    file_path = 'energy_train.jsonl.txt'
    targets = []

    # Open the JSON file and read it line by line
    with open(file_path, 'r') as file:
        for line in file:
            #print (line)
            try:
                # Parse the JSON string in each line
                data = json.loads(line)

                # Extract the values of "timestamp" and "target" keys
                #timestamp = data.get("timestamp")
                target = data.get("target")

                if target is not None:
                    #timestamps.append(timestamp)
                    targets.append(target)

            except json.JSONDecodeError:
                print(f"Skipping invalid JSON: {line}")

    # Now, you have the extracted values in the "timestamps" and "targets" lists
    # You can use these lists as needed
    #print("Timestamps:", timestamps)
    #print("Targets:", targets)

    hist_size = 10
    prd_size = 1

    while targets:
        # Get the first 5 elements and join them with spaces
        history = ' '.join(map(str, targets[:hist_size]))
        out = ' '.join(map(str,targets[hist_size:hist_size+prd_size]))

        # Construct the JSON string
        json_str = json.dumps({"color": out, "description": history})

        print (json_str)
        # Remove the first 6 elements from the float array
        targets = targets[1:]
        if len(targets) == hist_size:
            break
    

if __name__ == "__main__":
    #import fire
    #fire.Fire(prepare)
    prepare()