Unanswered
Ok, I Am Facing Another Issue In Setting Up My Local Server.
I Have It Running Almost Ok, I Can Report Stuff, And Upload Artifacts And They Are Properly Being Stored In The Fileserver Location. I Tried Uploading A Json, Image, And Audio File. All Have Be
m = np.eye(256, 256, dtype=np.float64)
m = np.eye(256, 256, dtype=np.uint8) * 255
m = np.concatenate((np.atleast_3d(m), np.zeros((256, 256, 2), dtype=np.uint8)), axis=2)
logger.report_image(
"image",
"image color red",
iteration=0,
image=m
)
logger.report_media(
'audio', 'audio wav', iteration=0,
local_path='/path/to/audio.wav'
)
This was how I was doing it as shown in the doc examples, btw, it works if I report some scalars before reporting any media. But if I report the media first, then the webUI doesnt show the media, but it gets uploaded to the fileserver.
176 Views
0
Answers
one year ago
one year ago