@@ -96,19 +96,19 @@ deleterun(mlf::MLFlow, run_info::MLFlowRunInfo) = deleterun(mlf, run_info.run_id
96
96
deleterun (mlf:: MLFlow , run:: MLFlowRun ) = deleterun (mlf, run. info)
97
97
98
98
"""
99
- searchruns(mlf::MLFlow, experiment_ids, filter )
99
+ searchruns(mlf::MLFlow, experiment_ids)
100
100
101
- Searches for runs in an experiment based on filter .
101
+ Searches for runs in an experiment.
102
102
103
103
# Arguments
104
104
- `mlf`: [`MLFlow`](@ref) configuration.
105
- - `experiment_ids::AbstractVector{Integer}`: `experiment_id`s in which to search for runs.
105
+ - `experiment_ids::AbstractVector{Integer}`: `experiment_id`s in which to search for runs. Can also be a single `Integer`.
106
106
107
107
# Keywords
108
108
- `filter::String`: filter as defined in [MLFlow documentation](https://mlflow.org/docs/latest/rest-api.html#search-runs)
109
- - `run_view_type::String`: .. .
110
- - `max_results::Integer`: .. .
111
- - `order_by::String`: ...
109
+ - `run_view_type::String`: one of `ACTIVE_ONLY`, `DELETED_ONLY`, or `ALL` .
110
+ - `max_results::Integer`: 50,000 by default .
111
+ - `order_by::String`: as defined in [MLFlow documentation](https://mlflow.org/docs/latest/rest-api.html#search-runs)
112
112
- `page_token::String`: paging functionality, handled automatically. Not meant to be passed by the user.
113
113
114
114
# Returns
@@ -155,6 +155,5 @@ function searchruns(mlf::MLFlow, experiment_ids::AbstractVector{<:Integer};
155
155
156
156
runs
157
157
end
158
- function searchruns (mlf:: MLFlow , experiment_id:: Integer ; kwargs... )
158
+ searchruns (mlf:: MLFlow , experiment_id:: Integer ; kwargs... ) =
159
159
searchruns (mlf, [experiment_id]; kwargs... )
160
- end
0 commit comments