-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
29 changed files
with
239 additions
and
239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
[deps] | ||
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
HTTP = "cd3eb016-35fb-5094-929b-558a96fad6f3" | ||
JSON = "682c06a0-de6a-54ab-a142-c8b1cf79cde6" | ||
MLFlowClient = "64a0f543-368b-4a9a-827a-e71edb2a0b83" | ||
ShowCases = "605ecd9f-84a6-4c9e-81e2-4798472b76a3" | ||
URIs = "5c2747f8-b7ea-4ff2-ba2e-563bfd36b1d4" | ||
UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,15 @@ | ||
using MLFlowClient | ||
push!(LOAD_PATH,"../src/") | ||
using Documenter | ||
|
||
DocMeta.setdocmeta!(MLFlowClient, :DocTestSetup, :(using MLFlowClient); recursive=true) | ||
using MLFlowClient | ||
|
||
makedocs(; | ||
modules=[MLFlowClient], | ||
authors="@deyandyankov and contributors", | ||
repo="https://github.com/JuliaAI.jl/blob/{commit}{path}#{line}", | ||
sitename="MLFlowClient.jl", | ||
format=Documenter.HTML(; | ||
prettyurls=get(ENV, "CI", "false") == "true", | ||
canonical="https://juliaai.github.io/MLFlowClient.jl", | ||
assets=String[] | ||
), | ||
pages=[ | ||
"Home" => "index.md", | ||
"Tutorial" => "tutorial.md", | ||
"Reference" => "reference.md" | ||
], | ||
checkdocs=:exports | ||
) | ||
authors="@deyandyankov and contributors", | ||
pages=["Home" => "index.md", "Tutorial" => "tutorial.md", "Reference" => [ | ||
"Types" => "reference/types.md", "Artifact operations" => "reference/artifact.md", | ||
"Experiment operations" => "reference/experiment.md", | ||
"Logging operations" => "reference/loggers.md", | ||
"Miscellaneous operations" => "reference/misc.md", | ||
"Run operations" => "reference/run.md"]]) | ||
|
||
deploydocs(; | ||
repo="github.com/JuliaAI/MLFlowClient.jl", | ||
devbranch="main" | ||
) | ||
deploydocs(; repo="github.com/JuliaAI/MLFlowClient.jl", devbranch="main") |
File renamed without changes
File renamed without changes
File renamed without changes
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Artifact operations | ||
```@docs | ||
listartifacts | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Experiment operations | ||
```@docs | ||
createexperiment | ||
getexperiment | ||
getexperimentbyname | ||
deleteexperiment | ||
restoreexperiment | ||
updateexperiment | ||
searchexperiments | ||
setexperimenttag | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Logging operations | ||
```@docs | ||
logmetric | ||
logbatch | ||
loginputs | ||
logparam | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Miscellaneous operations | ||
```@docs | ||
getmetrichistory | ||
refresh | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Run operations | ||
```@docs | ||
createrun | ||
deleterun | ||
restorerun | ||
getrun | ||
setruntag | ||
deleteruntag | ||
searchruns | ||
updaterun | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Types | ||
```@docs | ||
MLFlow | ||
Tag | ||
ViewType | ||
RunStatus | ||
ModelVersionStatus | ||
Dataset | ||
DatasetInput | ||
FileInfo | ||
ModelVersion | ||
RegisteredModel | ||
RegisteredModelAlias | ||
Experiment | ||
Run | ||
Param | ||
Metric | ||
RunData | ||
RunInfo | ||
RunInputs | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.