Note:

If you want to create a new page for developers, you should create it on the Moodle Developer Resource site.

Machine learning backends

From MoodleDocs
Revision as of 08:34, 13 December 2017 by David Monllaó (talk | contribs) (Created page with " == Introduction == Machine learning backends process the datasets generated from the indicators and targets calculated by the Analytics API. They are used for machine learni...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Introduction

Machine learning backends process the datasets generated from the indicators and targets calculated by the Analytics API. They are used for machine learning training, prediction and models evaluation. May be good that you also read Analytics API to read some concept definitions, how these concepts are implemented in Moodle and how machine learning backend plugins fit into the analytics API.

The communication between machine learning backends and Moodle is through files because the code that will process the dataset can be written in PHP, in Python, in other languages or even use cloud services. This needs to be scalable so they are expected to be able to manage big files and train algorithms reading input files in batches if necessary.

Backends included in Moodle core

Interfaces

They have are a new plugin type with a common interface:

  • Evaluate a provided prediction model
  • Train a machine learning algorithm with the existing site data
  • Predict targets based on previously trained algorithms