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
MagnificentPelican49
Moderator
2 Questions, 6 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

6 × Eureka!
0 Votes
9 Answers
634 Views
0 Votes 9 Answers 634 Views
I'm using from argparse import ArgumentParserto parse my hyperparameters and won't get anything on trains-server any Idea how to fix that?
4 years ago
0 Votes
7 Answers
682 Views
0 Votes 7 Answers 682 Views
Can anyone point me to web ui source code out, I’m wondering how can I customizing web app ui a little bit
4 years ago
0 Can Anyone Point Me To Web Ui Source Code Out, I’M Wondering How Can I Customizing Web App Ui A Little Bit

Thanks AgitatedDove14 , I would love to but I’m afraid of can’t put time on it as abit busy with couple projects at this point, I will let you know when I got free to helping you on this. 🙏

4 years ago
0 Can Anyone Point Me To Web Ui Source Code Out, I’M Wondering How Can I Customizing Web App Ui A Little Bit

AgitatedDove14 how far you are to make it presentable? what’s needs to be done , maybe I can put some efforts on it

4 years ago
0 I'M Using

thanks SuccessfulKoala55 , sorry that I can’t share the whole code but here is my main part
` import faulthandler
import logging

import torch
from argparse import ArgumentParser
from pytorch_lightning.callbacks import ModelCheckpoint

...

import os

from trains import Task
model_snapshots_path = 'mnt/trains'
if not os.path.exists(model_snapshots_path):
os.makedirs(model_snapshots_path)

task = Task.init(project_name='xl_trainer',
task_name='extending automagical Trains xl trianer',...

4 years ago
0 I'M Using

AgitatedDove14 thanks but I’m not using argparse , I’m using jsonargparse
you can see the simplified snippet here
` from jsonargparse import ArgumentParser
from trains import Task
model_snapshots_path = 'mnt/trains'
task = Task.init(project_name='examples', task_name='test argparser', output_uri=model_snapshots_path)
logger = task.get_logger()
def main(args):
print('Got args: %s' % args)
if name == 'main':
parent_parser = ArgumentParser(add_help=False)
parent...

4 years ago
0 I'M Using

Thanks AgitatedDove14 yes task.connect worked. about jsonargparse not sure how popular it is but in our case regular argparse didn’t work and we find out jsonargparse is working perfect. I guess will be beneficial to support that as well.

4 years ago