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
MotionlessSeagull22
Moderator
8 Questions, 69 Answers
  Active since 10 January 2023
  Last activity 7 months ago

Reputation

0

Badges 1

69 × Eureka!
0 Votes
5 Answers
932 Views
0 Votes 5 Answers 932 Views
Hi! Can we update the User name in the UI after logging the experiment?
4 years ago
0 Votes
4 Answers
1K Views
0 Votes 4 Answers 1K Views
Hey, I want to upload text files in the allegro, and store them as an artifact. How can we do that?
4 years ago
0 Votes
1 Answers
475 Views
0 Votes 1 Answers 475 Views
@<1523701205467926528:profile|AgitatedDove14> , this is a great tool for visualizing all your experiments.
4 years ago
0 Votes
10 Answers
1K Views
0 Votes 10 Answers 1K Views
getting the following error """Retrying (Retry(total=232, connect=240, read=239, redirect=240, status=233)) after connection broken by 'ReadTimeoutError("HTT...
4 years ago
0 Votes
0 Answers
987 Views
0 Votes 0 Answers 987 Views
I am not able to run my script behind proxy
4 years ago
0 Votes
68 Answers
26K Views
0 Votes 68 Answers 26K Views
4 years ago
0 Votes
31 Answers
24K Views
0 Votes 31 Answers 24K Views
4 years ago
0 Votes
1 Answers
896 Views
0 Votes 1 Answers 896 Views
Hi, I have some questions:- When I compare two experiments I want to compare images also, How can I do that? Currently, I am logging images using logger.repo...
4 years ago
0 , This Is A Great Tool For Visualizing All Your Experiments. I Wanted To Know That When I Am Logging Scalar Plots With Title As Train Loss And Test Loss They Are Getting Diplayed As Train Loss And Test Loss In The Scalar Tab. I Wanted That The Title Shoul

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()

4 years ago
Show more results compactanswers