diff --git a/README.md b/README.md index a1e58dd..e029ad7 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ The [OpenML API module](https://github.com/feedzai/feedzai-openml/tree/master/op com.feedzai openml-api - 1.1.1 + 1.2.0 ``` @@ -34,7 +34,7 @@ The [openml-utils](https://github.com/feedzai/feedzai-openml/tree/master/openml- com.feedzai openml-utils - 1.1.1 + 1.2.0 ``` @@ -54,7 +54,7 @@ Make sure your provider is identified according to the specification of [Java's As a way to ease the creation of new OpenML Providers, a Maven archetype was created. To get started with it, just run: ```bash -mvn archetype:generate -DarchetypeGroupId=com.feedzai -DarchetypeArtifactId=openml-provider-archetype -DarchetypeVersion=1.1.1 +mvn archetype:generate -DarchetypeGroupId=com.feedzai -DarchetypeArtifactId=openml-provider-archetype -DarchetypeVersion=1.2.0 ``` After providing all the necessary information (your new provider groupId, artifactId, and version), a template provider with some guidance will be available on your workspace. diff --git a/openml-api/src/main/java/com/feedzai/openml/explanations/ModelExplainer.java b/openml-api/src/main/java/com/feedzai/openml/explanations/ModelExplainer.java index 3ad0411..c6db46d 100644 --- a/openml-api/src/main/java/com/feedzai/openml/explanations/ModelExplainer.java +++ b/openml-api/src/main/java/com/feedzai/openml/explanations/ModelExplainer.java @@ -25,7 +25,7 @@ * Implementations should probably hold some {@link MachineLearningModel} and this {@link ModelExplainer} will * compute the feature contributions for its predictions through {@link #getFeatureContributions(Instance)}. * - * @since 1.1.1 + * @since 1.2.0 * @author Miguel Lobo (miguel.lobo@feedzai.com) */ public interface ModelExplainer {