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
Answered
Hi, I Am Fine-Tuning Pretrained Models From Huggingface The Trainer Method. During The Training I Generate Checkpoints Which I Want To Access Via Clearml. It Correctly Uploads Trainig_Args.Bin,

Hi, I am fine-tuning pretrained models from huggingface the trainer method. During the training I generate checkpoints which I want to access via ClearML. It correctly uploads trainig_args.bin, optimizer.pt , rng_state.pth, scheduler.pt , which I see in the ClearML interface. But there are other files missing (e.g. tokenizer.json), which are created locally. How can I make those files accessible as Artifacts?

  
  
Posted 11 months ago
Votes Newest

Answers 2


Hi @<1582542029752111104:profile|GorgeousWoodpecker69> , I think you can also manually register them using Task.upload_artifact None

  
  
Posted 11 months ago

Thanks. That would mean I cannot abort the training process, but have to wait until its finished to call the upload_artifact? Is there a reason why it's not logging all the generated files?

  
  
Posted 11 months ago
568 Views
2 Answers
11 months ago
11 months ago
Tags