Reputation
Badges 1
69 × Eureka!i mean all 100 experiments in one project
after trying different options mentioned in FAQ I got the following error
Then I did set CURL_CA_BUNDLE to empty string
First I set no_proxy to 127.0.0.1
Exception: Failed getting token (error 401 from http://dataanalytics2:8008 ): Authorization Required
Error: could not verify credentials:
then if there are 100 experiments how it will create 100 tasks?
my scheduler will be running every 60 seconds and calling main function
so , it will create a task when i will run it first time
@<1523701205467926528:profile|AgitatedDove14> I want to log directly to trains using logger.report_scalar
then if there are 10 experiments then I have to call Task.create() for those 10 experiments
I will share my script u can see it what I am doing
Hi @<1523701205467926528:profile|AgitatedDove14> , I wanted to ask you something. Is it possible that we can talk over voice somewhere so that I can explain my problem better?
and under that there will be three graphs with title as train test and loss
now after 1st iteration is completed then after 5 minutes my script runs automatically and then again it logs into trains server
so, like if validation loss appears then there will be three sub-tags under one main tag loss
no i want all of them in the same experiment
each subprocess logs one experiment as task
so, if I call Task.init() before that line there is no need of calling Task.init() on line number 92
but this gives the results in the same graph
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()
like in the sidebar there should be a title called "loss" and under that two different plots should be there named as "train_loss" and "test_loss"
Like here in the sidebar I am getting three different plots named as loss, train_loss and test_loss
its like main title will be loss
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...
SuccessfulKoala55 using username and password
SuccessfulKoala55 one more thing I have logged experiment A by logging as User A and now if Logout and then Log in as User B and then log another experiment B, in the UI will it be displayed as user A or user B?
TimelyPenguin76 I got the following error
I have 100 experiments and I have to log them and update those experiments every 5 minutes