Reputation
Badges 1
69 × Eureka!like if u see in above image my project name is abcd18 and under that there are experiments Experiment1, Experiment2 etc.
This code gives me the graph that I displayed above
yes But i want two graphs with title as train loss and test loss and they should be under main category "loss"
Can my request be made as new feature so that we can tag same type of graphs under one main tag
so , it will create a task when i will run it first time
def combined(path,exp_name,project_name):
temp = Task.create(task_name="exp_name")
logger = temp.current_logger()
logger.report_scalar()
def main():
task=Task.init(project_name="test")
[pool.apply_async(combined, args = (row['Path'], row['exp_name'], row['project_name'])) for index,row in temp_df.iterrows()]
scheduler = BlockingScheduler()
scheduler.add_job(main, 'interval', seconds=60, max_instances=3)
scheduler.start()
what changes should I make here?
main will initialize parent task and then my multiprocessing occurs which call combined function with parameters as project_name and exp_name
then my combined function create a sub task using Task.create(task_name=exp_name)
my scheduler will be running every 60 seconds and calling main function
okay, Thanks @<1523701205467926528:profile|AgitatedDove14> for the help.
so what I have done is rather than reading sequentially I am reading those experiments through multiprocessing and for each experiment I am creating new task with specified project_name and task_name
now after 1st iteration is completed then after 5 minutes my script runs automatically and then again it logs into trains server
and that function creates Task and log them
then if there are 10 experiments then I have to call Task.create() for those 10 experiments
Then I did set CURL_CA_BUNDLE to empty string
TimelyPenguin76 I got the following error
2020-08-25 14:44:45,945 - trains.metrics - WARNING - Failed uploading to http://sgsccccdl0101:8081 (Failed uploading object sgsccccdl0101:8081/OMS-MAX/R12.0.1_RSE_scratch.ff035f5cb55648e19bb162b0cb6a99f6/artifacts/DAILIB_GIT_DIFF.TXT/DAILib_git_diff.txt (405): <html>
<head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"/> <title>Error 405 HTTP method POST is not supported by this URL</title> </head> <body><h2>HTTP ERROR 405</h2> <p>Problem accessing /. Reason: <pre> HT...
I have 100 experiments and I have to log them and update those experiments every 5 minutes
I will share my script u can see it what I am doing
no i want all of them in the same experiment
First I set no_proxy to 127.0.0.1
but this gives the results in the same graph