I have some diagrams using TensorBoard, and I want to plot them and then save them as images. How can I do this? Is it possible?
I tried:
data = np.genfromtxt("C:\Users\maedeh\Downloads\val_model_31_mean_absolute_error.csv",
delimiter=',', skip_header=10,
skip_footer=10, names=['x', 'y', 'z'])
but it produced this error:
SyntaxError: (unicode error) 'unicodeescape' codec can't decode bytes in position 2-3: truncated \UXXXXXXXX escape
Can you please help?