Reputation
Badges 1
3 × Eureka!@<1523701070390366208:profile|CostlyOstrich36> self hosted andclass ClearmlLogger:
def __init__(self, task):
self.task = task
self.task_logger = task.get_logger()
self.task_logger.set_default_upload_destination(
'
None ')
self.writer = SummaryWriter('runs')
def log_training(self, reconstruction_loss, learning_rate, iteration):
self.task.get_logger().report_scalar(
` ...
@<1523701435869433856:profile|SmugDolphin23> Hi, want to ask connected question. How can I find out the hostname of the component from other component, because we have tasks running on different machines in aws and for the client sdk we need to understand where to send the inference request. I thought about the config-server, to which the triton sends pipelineID: hostname and the client then receives information from it knowing the pipelineID. But maybe there is a simpler solution? Also thi...
@<1523701435869433856:profile|SmugDolphin23> Thank you