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
SparklingElephant70
Moderator
10 Questions, 72 Answers
  Active since 10 January 2023
  Last activity 2 years ago

Reputation

0

Badges 1

69 × Eureka!
0 Votes
1 Answers
2K Views
0 Votes 1 Answers 2K Views
3 years ago
0 Votes
4 Answers
2K Views
0 Votes 4 Answers 2K Views
Hey, If I uploading a new dataset with parent, but the child dataset==parent dataset it will work? Thanks
3 years ago
0 Votes
18 Answers
1K Views
0 Votes 18 Answers 1K Views
Hi, Anyone know how to report scalars with tenserflow? Thanks
3 years ago
0 Votes
12 Answers
2K Views
0 Votes 12 Answers 2K Views
2 years ago
0 Votes
17 Answers
2K Views
0 Votes 17 Answers 2K Views
Hi all, I have python file build_pipeline, that contain PipelineController with one step only. When I try to run the file I get 'build_pipline.py': [Errno 2]...
3 years ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
2 years ago
0 Votes
29 Answers
1K Views
0 Votes 29 Answers 1K Views
Im trying to run this exmple : https://clear.ml/docs/latest/docs/guides/pipeline/pipeline_controller But getting 'Could not find queue named "services", What...
3 years ago
0 Votes
20 Answers
2K Views
0 Votes 20 Answers 2K Views
3 years ago
0 Votes
2 Answers
1K Views
0 Votes 2 Answers 1K Views
3 years ago
0 Votes
13 Answers
1K Views
0 Votes 13 Answers 1K Views
Hey all, I'm trying to get artifact that store locally in windows, like that: local_json = dataset_upload_task.artifacts['merged'].get() But the file include...
3 years ago
0 Hi, Anyone Know How To Report Scalars With Tenserflow? Thanks

Or do I have to dive into the code in train function and write the code there?

3 years ago
0 Hi, Anyone Know How To Report Scalars With Tenserflow? Thanks

Yes that's exactly what i do, But I'm trying to figure out if I can write down the line of code
logger.report_scalar(title='evaluate', series='score', value=5, iteration=task.get_last_iteration())
anywhere in the code?
Does the line of code open up another process parallel to training?

3 years ago
0 Hi, Anyone Know How To Report Scalars With Tenserflow? Thanks

CostlyOstrich36 I get the last iteration by task.get_last_iteration()
I want to report each iteration..

3 years ago
3 years ago
0 Hi, Anyone Know How To Report Scalars With Tenserflow? Thanks

logger = task.get_logger()
train(model_dir=trained_model_dst, pipeline_config_path=pipeline_config_path, save_checkpoints_steps=args.checkpoints)
logger.report_scalar(title='evaluate', series='score', value=5, iteration=task.get_last_iteration())

3 years ago
0 Hi, Anyone Know How To Report Scalars With Tenserflow? Thanks

CostlyOstrich36 When I do

logger = task.get_logger()
logger.report_scalar(title='evaluate', series='score', value=5, iteration=task.get_last_iteration())
train(model_dir=trained_model_dst, pipeline_config_path=pipeline_config_path, save_checkpoints_steps=args.checkpoints)

It only captures the first iteration...

3 years ago
0 Hi, Anyone Know How To Report Scalars With Tenserflow? Thanks

CostlyOstrich36 tensorflow reporting it, ClearML capture it, and I get it with that function.

3 years ago
3 years ago
0 Hi, Anyone Know How To Report Scalars With Tenserflow? Thanks

CostlyOstrich36 Not sure I understood, the current iterations come from the function
task.get_last_iteration() ...

3 years ago
0 Hi, Anyone Know How To Report Scalars With Tenserflow? Thanks

I have nowhere else to bring iteration number ..

3 years ago
0 Hi, Anyone Know How To Report Scalars With Tenserflow? Thanks

CostlyOstrich36 I have my own function that gives an estimate of performance, and I want to display it in the graph of each iteration.
And I am using tensorflow

3 years ago
0 Hi, Anyone Know How To Report Scalars With Tenserflow? Thanks

CostlyOstrich36 More precisely, My function only calculates the accuracy as I defined it.
I passing the accuracy to logger.report_scalar by
logger.report_scalar(title='evaluate', series='score', value=my_acc, iteration=task.get_last_iteration())

3 years ago
3 years ago
0 Hey All, I'M Trying To Get Artifact That Store Locally In Windows, Like That:

Hi SuccessfulKoala55 ,
First I create the task and change the output_uri to some folder I created
task = Task.init(project_name='main', task_name='task', output_uri=r'C:\Users\Chen\Desktop\folder)Than I used:
task.upload_artifact

3 years ago
0 Hey All, I'M Trying To Get Artifact That Store Locally In Windows, Like That:

Now, in other task I want to upload the artifact by using get_local_copy()
dataset_upload_task = Task.get_task(task_id=args['dataset_task_id']) local_json = dataset_upload_task.artifacts['dataset'].get_local_copy()But the path that I got contain '' and '/' (i.e combination of unix and win foramt)

3 years ago
0 Hi, Anyone Know How To Report Scalars With Tenserflow? Thanks

CostlyOstrich36 having the reported tensorflow scalars show up on ClearML

3 years ago
0 Hi All, I Have Python File Build_Pipeline, That Contain Pipelinecontroller With One Step Only. When I Try To Run The File I Get 'Build_Pipline.Py': [Errno 2] No Such File Or Directory' On The Webui. What I Do Wrong? Thanks!

pipe = PipelineController( name='grab2train_tf', project='main pipeline', version='0.0.1', abort_on_failure=True, # any failed step will cause the pipeline to immediately abort, stop all running steps, and mark the pipeline as failed. )
I'm missing something? CostlyOstrich36

3 years ago
Show more results compactanswers