
Reputation
Badges 1
69 × Eureka!MelancholyElk85 So I need to change the paths each time?
MelancholyElk85 How do I change the SCRIPT PATH/SCRIPT PATH
Hi CostlyOstrich36 CrookedWalrus33 AgitatedDove14
When I init an agent and run a task it works, but when I run the same task again it does not map the keys..
I found the problem I think, thanks!
CostlyOstrich36 having the reported tensorflow scalars show up on ClearML
CostlyOstrich36 Not sure I understood, the current iterations come from the function
task.get_last_iteration() ...
I have nowhere else to bring iteration number ..
Hi SuccessfulKoala55 ,
First I create the task and change the output_uri to some folder I createdtask = Task.init(project_name='main', task_name='task', output_uri=r'C:\Users\Chen\Desktop\folder)
Than I used:task.upload_artifact
ExasperatedCrab78
CostlyOstrich36 More precisely, My function only calculates the accuracy as I defined it.
I passing the accuracy to logger.report_scalar by
logger.report_scalar(title='evaluate', series='score', value=my_acc, iteration=task.get_last_iteration())
CostlyOstrich36 I have my own function that gives an estimate of performance, and I want to display it in the graph of each iteration.
And I am using tensorflow
And again only in docker mode CostlyOstrich36
The sdk.aws.s3.credentials.0.host and sdk.aws.s3.credentials.0.key, yes
CostlyOstrich36 When I do
logger = task.get_logger()
logger.report_scalar(title='evaluate', series='score', value=5, iteration=task.get_last_iteration())
train(model_dir=trained_model_dst, pipeline_config_path=pipeline_config_path, save_checkpoints_steps=args.checkpoints)
It only captures the first iteration...
Or do I have to dive into the code in train function and write the code there?
CostlyOstrich36 I get the last iteration by task.get_last_iteration()
I want to report each iteration..
pipe = PipelineController( name='grab2train_tf', project='main pipeline', version='0.0.1', abort_on_failure=True, # any failed step will cause the pipeline to immediately abort, stop all running steps, and mark the pipeline as failed. )
I'm missing something? CostlyOstrich36