filefisher.FileContainer.search#
- FileContainer.search(**query)#
subset paths given a search query
- Parameters:
**query (Mapping[str, str | int | list[str | int]]) – Search query.
- Returns:
search_result (FileContainer)
Notes
individual conditions are combined with “and”, e.g.,
model="a", exp="b"requires the model to be “a” and the experiment to be “b”.conditions for a key are combined with “or”, e.g.,
model=["a", "b"]matches for both.passing
Noneas condition ignores it, e.g.,model=None.