Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 986 Bytes

README.md

File metadata and controls

35 lines (26 loc) · 986 Bytes

mlflow-java

MLflow Java and Scala extras.

Setup

You need to install Python MLflow in order for Java artifacts to work.

mvn -DskipTests=true package
pip install mlflow

RunContext Fluent Proposal

Run Scala example

scala -cp target/mlflow-fun-java-1.0-SNAPSHOT.jar \
  org.mlflow.tracking.examples.HelloWorldFluent \
  http://localhost:5000

Run Java example

java -classpath target/mlflow-fun-java-1.0-SNAPSHOT.jar \
  org.mlflow.tracking.examples.java2.HelloWorldFluent \
  http://localhost:5000 10

Some Tests

src/test/scala/src/test/scala/org/mlflow