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
FrustratingWalrus87
Moderator
3 Questions, 4 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

4 × Eureka!
0 Votes
1 Answers
973 Views
0 Votes 1 Answers 973 Views
Is there a way to use clearml-agent with an existing condav venv? I don't want it to create a new venv or install any packages.
2 years ago
0 Votes
3 Answers
935 Views
0 Votes 3 Answers 935 Views
Hello! Does someone have a huggingface integration example?
2 years ago
0 Votes
4 Answers
1K Views
0 Votes 4 Answers 1K Views
Hi! Is there a simple way to visualize tensors in ClearML? Something like tensorboard's TSNE or PCA...
3 years ago
0 Hi! Is There A Simple Way To Visualize Tensors In Clearml? Something Like Tensorboard'S Tsne Or Pca...

I think this work well for static visualizations. If I'll want a more dynamic one I guess I will use tensorboard, and save some static plot to ClearML.

3 years ago
0 Hello! Does Someone Have A Huggingface Integration Example?

In the end of the day these integration are based on Callback classes. For example, this is the wandb Calback:
class WandbCallback(TrainerCallback): """ A :class:~transformers.TrainerCallbackthat sends the logs toWeight and Biases < >`__.
"""

def __init__(self):
    has_wandb = is_wandb_available()
    assert has_wandb, "WandbCallback requires wandb to be installed. Run `pip install wandb`."
    if has_wandb:
        import wandb

        self._...
2 years ago
0 Hello! Does Someone Have A Huggingface Integration Example?

Mainly logging. Huggingface's trainer has a "report_to" argument that is supported by tensorboard, wandb, comet, etc. This means that during training all of the metrics are automatically logged to the specified platform (which is very convenient). Is there anyone who has made something similar for clearml?

2 years ago