Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents
maxLevel5
minLevel3

...

The <ML_HOME>/repository/conf/machine-learner.xml file includes all the ML-specific configurations

Anchor
How can I change the ML datasource name?
How can I change the ML datasource name?
How can I change the ML datasource name?

The default name is jdbc/WSO2ML_DB. You can change it by changing the value of the <DataSourceName> element in the <ML_HOME>/repository/conf/machine-learner.xml file. For more information, see ML-specific configurations

Anchor
How can I change the sample points size that ML use to generate summary statistics?
How can I change the sample points size that ML use to generate summary statistics?
How can I change the sample points size that ML use to generate summary statistics?

Default size is 10000. You can change it by changing the value of the <SampleSize> property within the <SummaryStatisticsSettings> element in the <ML_HOME>/repository/conf/machine-learner.xml file. For more information, see ML-specific configurations

Anchor
How can I change the directory which holds datasets?
How can I change the directory which holds datasets?
How can I change the directory which holds datasets?

By default, the <ML_HOME>/datasets/ directory holds datasets, and the default storage type is ‘file’. You can change it by changing the value of the <StorageDirectory> property within the <DatasetStorage> element in the <ML_HOME>/repository/conf/machine-learner.xml file. For more information, see ML-specific configurations

Anchor
How can I change the directory with models?
How can I change the directory with models?
How can I change the directory with models?

By default, the <ML_HOME>/models/ directory holds models, and default storage type is ‘file’You can change it by changing the value of the <StorageDirectory> property within the <ModelStorage> element in the <ML_HOME>/repository/conf/machine-learner.xml fileFor more information, see ML-specific configurations

Anchor
How can I increase ML thread pool size?
How can I increase ML thread pool size?
How can I increase ML thread pool size?

WSO2 ML uses threads in a thread pool to run different tasks such as dataset summary generation and model generation etc. You can control the size of this thread pool by changing the value of the following property in the <ML_HOME>/repository/conf/machine-learner.xml file: <Property name="ml.thread.pool.size" value="100"/> For more information, see ML-specific configurations

Anchor
Where should I configure the email addresses of recipients whom will be notified upon a model generation?
Where should I configure the email addresses of recipients whom will be notified upon a model generation?
Where should I configure the email addresses of recipients whom will be notified upon a model generation?

You can configure WSO2 ML to send emails on the completion of a model generation. You can have a comma-separated set of email addresses as the value of the <EmailNotificationEndpoint> property in the <ML_HOME>/repository/conf/machine-learner.xml file. For more information on  configuring email support, see Enabling Email Notifications.

Anchor
How can I change datasets storage to HDFS?
How can I change datasets storage to HDFS?
How can I change datasets 
storage to HDFS?

If you want to change the dataset storage type to HDFS, change the value of the <StorageType> property within the <DatasetStorage> element to ‘hdfs’. For more information, see ML-specific configurations

Anchor
How can I change model storage to HDFS?
How can I change model storage to HDFS?
How can I change 
model storage to HDFS?

If you want to change the model storage type to HDFS, change the value of the <StorageType> property within the <ModelStorage> element to ‘hdfs’. For more information, see ML-specific configurations

Anchor
How can I give a HDFS URL?
How can I give a HDFS URL?
How can I give a HDFS URL?

If you want to store your datasets and models in an HDFS, you need to enter HDFS URL as the value of the <HdfsURL> property in the <ML_HOME>/repository/conf/machine-learner.xml fileFor more information, see ML-specific configurations 

...

Data related questions

Anchor
What should be the format of my dataset?
What should be the format of my dataset?
What should be the format of my dataset?

...

Anchor
How can I find the details of a built model?
How can I find the details of a built model?
How can I find the details of a built model?

Once you built a model, you can view its model summary, in which you find a summary of the model evaluation. For more information, see Evaluating Models.

Anchor
How can I calculate the accuracy for a given model?
How can I calculate the accuracy for a given model?
How can I calculate the accuracy for a given model?

For classification type algorithms, generate an accuracy measurement based on the predictions made by the model for the test dataset. Test dataset is extracted from the uploaded dataset and the proportion is configurable for each analyses.

Anchor
Can I download a built model?
Can I download a built model?
Can I download a built model?

You can download a built model or publish it to WSO2 registry. For more information, see Generating Models.

Anchor
Do you support exporting models in PMML format?
Do you support exporting models in PMML format?
Do you support exporting models in PMML format?

WSo2 ML 1.0.0 does not support PMML format. This is in the roadmap to be provided in future versions.

Anchor
Can I use a built model in a Java program?
Can I use a built model in a Java program?
Can I use a built model in a Java program?

You can use a built model in a Java program. For a sample on how to use a built model in a Java program, see Using ML Models in a Java Client.

Anchor
How can I make predictions for a test dataset using ML UI wizard?
How can I make predictions for a test dataset using ML UI wizard?
How can I make predictions for a test dataset using ML UI wizard?

Once you build a model, you can make predictions to a test dataset by uploading a csv/tsv file from the Predict page in the ML UI. For more information on making predictions, see Making Predictions Using the ML UI

...

WSO2 ML REST API root context is ‘/ml’. For more information, see REST API Guide.

Anchor
What authentication mechanisms you support?
What authentication mechanisms you support?
What authentication mechanisms you support?

WSO2 ML supports basic authentication and cookie based authentication. For more information, see REST API Guide.

...