pretrain-plot: handle open w -> r

This commit is contained in:
Starbeamrainbowlabs 2022-09-16 16:14:30 +01:00
parent 1103ae5561
commit a5f03390ef
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -36,7 +36,7 @@ def run(args):
sys.stderr.write(f"\n\n>>> This is TensorFlow {tf.__version__}\n\n\n") sys.stderr.write(f"\n\n>>> This is TensorFlow {tf.__version__}\n\n\n")
embeddings = [] embeddings = []
with handle_open(filepath_input, "w") as handle: with handle_open(filepath_input, "r") as handle:
for line in handle: for line in handle:
obj = json.loads(line) obj = json.loads(line)
embeddings.append(obj["rainfall"]) embeddings.append(obj["rainfall"])
@ -46,7 +46,7 @@ def run(args):
embeddings = [] embeddings = []
with handle_open(filepath_input, "w") as handle: with handle_open(filepath_input, "r") as handle:
for line in handle: for line in handle:
obj = json.loads(line) obj = json.loads(line)
embeddings.append(obj["water"]) embeddings.append(obj["water"])