You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Feature implementation, code refactoring, new test suite and increasing code coverage (#27)
* uploading refactoring; implementing and separating test cases
* general searchrun tests and code formatting
* empty commit to test
* Adding coverage and improving test suite
* Adding new features, test reimplementation and code coverage increase
* fix to test, removing unused implementation, and updates to get documenter working
* changed Project.toml entries and fixed a test to work with all kind of exceptions
* up corrections
- `filter::String`: filter as defined in [MLFlow documentation](https://mlflow.org/docs/latest/rest-api.html#search-experiments)
159
+
- `filter_attributes::AbstractDict{K,V}`: if provided, `filter` is automatically generated based on `filter_attributes` using [`generatefilterfromattributes`](@ref). One can only provide either `filter` or `filter_attributes`, but not both.
160
+
- `run_view_type::String`: one of `ACTIVE_ONLY`, `DELETED_ONLY`, or `ALL`.
161
+
- `max_results::Integer`: 50,000 by default.
162
+
- `order_by::String`: as defined in [MLFlow documentation](https://mlflow.org/docs/latest/rest-api.html#search-experiments)
163
+
- `page_token::String`: paging functionality, handled automatically. Not meant to be passed by the user.
164
+
165
+
# Returns
166
+
- vector of [`MLFlowExperiment`](@ref) experiments that were found in the MLFlow instance
0 commit comments