Unanswered
Hi! I Would Like To Report 2 "Plt.Imshow" Images. Plain Plotting (I.E. "Plt.Figure()") Showed Only The Second One. When I Tried To Report Through The Logger Via "Report_Confusion_Matrix" It Reported Only The First One.
Is There A Better Way Of Doing Thi
import numpy as np
import matplotlib.pyplot as plt
from clearml import Task, Logger
task = Task.init(project_name="my_task",task_name="try")
interaction = np.random.rand(100,100)
plt.figure()
plt.imshow(np.abs(interaction))
plt.title('interaction (near field)')
plt.colorbar()
plt.show(block=True)
interaction = np.random.rand(100,100)
plt.figure()
plt.imshow(np.abs(interaction))
plt.title('interaction (far field)')
plt.colorbar()
plt.show(block=True)
task.execute_remotely(queue_name='algo')
task.get_logger()
22 Views
0
Answers
2 months ago
2 months ago