mirror of
https://github.com/moodle/moodle.git
synced 2025-08-06 01:16:44 +02:00
Merge branch 'MDL-59630_master' of git://github.com/dmonllao/moodle
This commit is contained in:
commit
1afd3c72aa
17 changed files with 649 additions and 139 deletions
|
@ -49,7 +49,7 @@ class student_enrolments extends \core_analytics\local\analyser\by_course {
|
|||
*
|
||||
* @return string
|
||||
*/
|
||||
protected function get_samples_origin() {
|
||||
public function get_samples_origin() {
|
||||
return 'user_enrolments';
|
||||
}
|
||||
|
||||
|
|
55
lib/classes/task/analytics_cleanup_task.php
Normal file
55
lib/classes/task/analytics_cleanup_task.php
Normal file
|
@ -0,0 +1,55 @@
|
|||
<?php
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* A scheduled task.
|
||||
*
|
||||
* @package core
|
||||
* @copyright 2017 David Monllao {@link http://www.davidmonllao.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
namespace core\task;
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
/**
|
||||
* Delete stale records from analytics tables.
|
||||
*
|
||||
* @package core
|
||||
* @copyright 2017 David Monllao {@link http://www.davidmonllao.com}
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class analytics_cleanup_task extends \core\task\scheduled_task {
|
||||
|
||||
/**
|
||||
* Get a descriptive name for this task (shown to admins).
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
public function get_name() {
|
||||
return get_string('taskanalyticscleanup', 'admin');
|
||||
}
|
||||
|
||||
/**
|
||||
* Executes the clean up task.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function execute() {
|
||||
$models = \core_analytics\manager::cleanup();
|
||||
}
|
||||
}
|
|
@ -356,4 +356,13 @@ $tasks = array(
|
|||
'dayofweek' => '*',
|
||||
'month' => '*'
|
||||
),
|
||||
array(
|
||||
'classname' => 'core\task\analytics_cleanup_task',
|
||||
'blocking' => 0,
|
||||
'minute' => 'R',
|
||||
'hour' => '*',
|
||||
'day' => '*',
|
||||
'dayofweek' => '*',
|
||||
'month' => '*'
|
||||
),
|
||||
);
|
||||
|
|
|
@ -72,6 +72,27 @@ class processor implements \core_analytics\classifier, \core_analytics\regressor
|
|||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete the stored models.
|
||||
*
|
||||
* @param string $uniqueid
|
||||
* @param string $modelversionoutputdir
|
||||
* @return null
|
||||
*/
|
||||
public function clear_model($uniqueid, $modelversionoutputdir) {
|
||||
remove_dir($modelversionoutputdir);
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete the output directory.
|
||||
*
|
||||
* @param string $modeloutputdir
|
||||
* @return null
|
||||
*/
|
||||
public function delete_output_dir($modeloutputdir) {
|
||||
remove_dir($modeloutputdir);
|
||||
}
|
||||
|
||||
/**
|
||||
* Train this processor classification model using the provided supervised learning dataset.
|
||||
*
|
||||
|
|
|
@ -94,6 +94,27 @@ class processor implements \core_analytics\classifier, \core_analytics\regresso
|
|||
return get_string('pythonpackagenotinstalled', 'mlbackend_python', $cmd);
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete the model version output directory.
|
||||
*
|
||||
* @param string $uniqueid
|
||||
* @param string $modelversionoutputdir
|
||||
* @return null
|
||||
*/
|
||||
public function clear_model($uniqueid, $modelversionoutputdir) {
|
||||
remove_dir($modelversionoutputdir);
|
||||
}
|
||||
|
||||
/**
|
||||
* Delete the model output directory.
|
||||
*
|
||||
* @param string $modeloutputdir
|
||||
* @return null
|
||||
*/
|
||||
public function delete_output_dir($modeloutputdir) {
|
||||
remove_dir($modeloutputdir);
|
||||
}
|
||||
|
||||
/**
|
||||
* Trains a machine learning algorithm with the provided dataset.
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue