Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Profile picture
SubstantialBaldeagle49
Moderator
8 Questions, 60 Answers
  Active since 10 January 2023
  Last activity 26 days ago

Reputation

0

Badges 1

37 × Eureka!
0 Votes
3 Answers
57 Views
0 Votes 3 Answers 57 Views
None can anyone help me about this?
3 years ago
0 Votes
9 Answers
515 Views
0 Votes 9 Answers 515 Views
Hi guys, how to solve this problem: Returned 500 for events.add_batch in 10ms, msg=General data error (TransportError(429, 'circuit_breaking_exception', '[pa...
3 years ago
0 Votes
8 Answers
491 Views
0 Votes 8 Answers 491 Views
3 years ago
0 Votes
4 Answers
585 Views
0 Votes 4 Answers 585 Views
Hi,guys, I have some questions: 1. Can i backup all my experiments? 2. Can i add my old experiments to a new server? 3. Can i add some information to one exp...
3 years ago
0 Votes
6 Answers
650 Views
0 Votes 6 Answers 650 Views
Hello! I have setup the trains server using docker compose and one of my machine can run trains-init successfully, but another can't. I have try doing curl h...
2 years ago
0 Votes
6 Answers
582 Views
0 Votes 6 Answers 582 Views
Hi: i have get this error: cannot verify credentials: I am still using trains, and i can verify correctly in other machine
2 years ago
0 Votes
2 Answers
533 Views
0 Votes 2 Answers 533 Views
Hi, dose trains server support add user without restart?
3 years ago
0 Votes
31 Answers
6K Views
0 Votes 31 Answers 6K Views
Hello, I try to update trains-server (0.16) to clearml-server in another linux machine, here is my steps: copy(scp) /opt/trains to target machine update /opt...
2 years ago
0 Can Anyone Help Me About This?

Thanks for your reply!

3 years ago
0 Hello, I Try To Update Trains-Server (0.16) To Clearml-Server In Another Linux Machine, Here Is My Steps:

And i try to upgrade elastic by your script, but it cannot success, the log shows :

2 years ago
0 Hello, I Try To Update Trains-Server (0.16) To Clearml-Server In Another Linux Machine, Here Is My Steps:

Sorry , my poor english, it means upgrade by script.
Good news is it's fine now, I try to upgrade ES (although it fails), and i try to go through the necessary steps in this: https://clear.ml/docs/latest/docs/deploying_clearml/clearml_server_linux_mac

2 years ago
0 Hello, I Try To Update Trains-Server (0.16) To Clearml-Server In Another Linux Machine, Here Is My Steps:

Also, from the log, I see your ES version is 5.6:

at org.elasticsearch.bootstrap.Elasticsearch.init(Elasticsearch.java:136) ~[elasticsearch-5.6.16.jar:5.6.16]

and I'm not sure why - in v0.16, the ES version is already 7.6, which makes me think your original version was v0.15, also in the new docker-compose the version is 7.16, so maybe you are not using the updated docker-compose file?

It confused me too, but ES dir in my 0.16 version is /opt/trains/data/elastic_7

2 years ago
2 years ago
0 Hello, I Try To Update Trains-Server (0.16) To Clearml-Server In Another Linux Machine, Here Is My Steps:

SuccessfulKoala55 I get all the trains server experiments record in new clearml server. Maybe it's due to vm.max_map_count or access of /opt/clearml, or the failed ES upgrade...

2 years ago
0 Hello, I Try To Update Trains-Server (0.16) To Clearml-Server In Another Linux Machine, Here Is My Steps:

OK i will try again, this time i won't upgrade ES, But do increase vm.max_map_count and open access of /opt/clearm. Why i do again is i found the web ui is fine in deployed machine, but it's weird in my local machine:

2 years ago
2 years ago
0 Hello, I Try To Update Trains-Server (0.16) To Clearml-Server In Another Linux Machine, Here Is My Steps:

Cam you perhaps send the docker-compose in the current server? (已編輯)

Sorry I don't undestand what' your meaning...

2 years ago
2 years ago
0 Hello, I Try To Update Trains-Server (0.16) To Clearml-Server In Another Linux Machine, Here Is My Steps:

I tried as below, it can works fine:
copy(scp) /opt/trains to target machine upgrade mongo by this: https://clear.ml/docs/latest/docs/deploying_clearml/clearml_server_mongo44_migration/ mv /opt/trains /opt/clearml Increase vm.max_map_count ;Grant access to the Dockers; get lastest docker-compose.yml and pull/upBut the web ui dashboard is still weird, anyway it can work now

2 years ago
0 Hello, I Try To Update Trains-Server (0.16) To Clearml-Server In Another Linux Machine, Here Is My Steps:

I know why, because i used the old apiserver.conf, i set fixed_users. After log in http://xxx:8080/login , it's ok now

2 years ago
0 Hello, I Try To Update Trains-Server (0.16) To Clearml-Server In Another Linux Machine, Here Is My Steps:

But without navigation bar, it's quiet inconvenient 😢 ...Do you known why? SuccessfulKoala55

2 years ago
0 Can Anyone Help Me About This?

@<1523701205467926528:profile|AgitatedDove14>
Hi, after rounding down numbers, the plot size decrease to 300Kb from 11M.This really works, thanks!

3 years ago
0 Hi Guys, How To Solve This Problem:

Hi SuccessfulKoala55 :
I have make sure that all my data are roud to 4, but i still found my plotly data json is so large. And after checking the json ,i found there are many data with many digits, maybe those are info of plotly?
Here is my code:
` from plotly.subplots import make_subplots
import plotly.graph_objects as go
def draw_pr(self,precisions,recalls,score,distance,dataset):
score = np.round(score,4)
for i in range(4):
pre = np.around(precisions[i], 4)
recall...

3 years ago
0 Hi Guys, How To Solve This Problem:

SuccessfulKoala55
Even if with Logger.report_scatter2d() the result is still so large ,and i found where the digits change: https://github.com/allegroai/trains/blob/master/trains/utilities/plotly_reporter.py#L122
Tolist will change the digits , but i haven't figure out why.

3 years ago
0 Hi Guys, How To Solve This Problem:

SuccessfulKoala55
I have manually control the number of data under 800K, because i found the budget would be 0 if len(series_sizes) = 1, https://github.com/allegroai/trains/blob/master/trains/utilities/plotly_reporter.py#L101

3 years ago
0 Hi: I Have Get This Error: Cannot Verify Credentials: I Am Still Using Trains, And I Can Verify Correctly In Other Machine

SuccessfulKoala55 And i try to create ~/trains.conf with verify_certificate = False, but i still cannot init task, it seems doesn't work for the version i'm using.

2 years ago
0 Hi: I Have Get This Error: Cannot Verify Credentials: I Am Still Using Trains, And I Can Verify Correctly In Other Machine

CostlyOstrich36 I'm afraid even i change to ClearML, the problem still exists...

2 years ago
Show more results compactanswers