Can my request be made as new feature so that we can tag same type of graphs under one main tag
I will share my script u can see it what I am doing
i mean all 100 experiments in one project
@<1523720500038078464:profile|MotionlessSeagull22> you cannot have two graphs with the same title, the left side panel presents graph titles. That means that you cannot have a title=loss series=train & title=loss series=test on two diff graphs, they will always be displayed on the same graph.
That said, when comparing experiments, all graph pairs (i.e. title+series) will be displayed as a single graph, where the diff series are the experiments.
Like here in the sidebar I am getting three different plots named as loss, train_loss and test_loss
logger.report_scalar(title="loss", series="train", iteration=0, value=100)logger.report_scalar(title="loss", series="test", iteration=0, value=200)
yes But i want two graphs with title as train loss and test loss and they should be under main category "loss"
See on line 212 I am calling one function "combined" with some arguments
If you one each "main" process as a single experiment, just don't call Task.init in the scheduler
So you want these two on two different graphs ?
then if there are 100 experiments how it will create 100 tasks?
so, if I call Task.init() before that line there is no need of calling Task.init() on line number 92
okay, Thanks @<1523701205467926528:profile|AgitatedDove14> for the help.
You can do:task = Task.get_task(task_id='uuid_of_experiment')task.get_logger().report_scalar(...)
Now the only question is who will create the initial Task, so that the others can report to it. Do you have like a "master" process ?
then if there are 10 experiments then I have to call Task.create() for those 10 experiments
so, like if validation loss appears then there will be three sub-tags under one main tag loss
And you want all of them to log into the same experiment ? or do you want an experiment per 60sec (i.e. like the scheduler)
I have to create a main task for example named as main
and that function creates Task and log them
but this gives the results in the same graph

