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 Know There Is Cleanup Service To Delete Archived Experiments Periodically. For The Next Version, Can You Edit Ui So That We Can Delete Experiments That We Want To Delete. Because, I Want To Save Some Of Old Experiments In The Archive Folder.

Hi, I know there is cleanup service to delete archived experiments periodically. For the next version, can you edit UI so that we can delete experiments that we want to delete. Because, I want to save some of old experiments in the archive folder.

  
  
Posted 3 years ago
Votes Newest

Answers 2


Hi MysteriousBee56 ,

The https://github.com/allegroai/trains/blob/master/examples/services/cleanup/cleanup_service.py is an example how you can add services to manage your experiments.
You can change the criteria for fetching the tasks in this script (in the https://github.com/allegroai/trains/blob/master/examples/services/cleanup/cleanup_service.py#L72 call) to something like a specific tag you can add to the experiments ( delete tag?, you can add tag to multi tasks) and it should do the trick:
tasks = client.tasks.get_all(tags=["delete"], only_fields=["id"])

  
  
Posted 3 years ago

Thanks 🙂

  
  
Posted 3 years ago