/
var
/
www
/
html
/
cdhu
/
admin
/
tool
/
analytics
/
cli
/
Upload File
HOME
<?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/>. /** * Evaluates the provided model. * * @package tool_analytics * @copyright 2016 David Monllao {@link http://www.davidmonllao.com} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ define('CLI_SCRIPT', true); require_once(__DIR__ . '/../../../../config.php'); require_once($CFG->libdir.'/clilib.php'); $help = "Evaluates the provided model. Options: --modelid Model id --list List models --non-interactive Not interactive questions --timesplitting Restrict the evaluation to 1 single time splitting method (Optional) --filter Analyser dependant. e.g. A courseid would evaluate the model using a single course (Optional) --reuse-prev-analysed Reuse recently analysed courses instead of analysing the whole site. Set it to false while" . " coding indicators. Defaults to true (Optional)" . " -h, --help Print out this help Example: \$ php admin/tool/analytics/cli/evaluate_model.php --modelid=1 --timesplitting='\\core\\analytics\\time_splitting\\quarters' --filter=123,321 "; // Now get cli options. list($options, $unrecognized) = cli_get_params( array( 'help' => false, 'modelid' => false, 'list' => false, 'timesplitting' => false, 'reuse-prev-analysed' => true, 'non-interactive' => false, 'filter' => false ), array( 'h' => 'help', ) ); if ($options['help']) { echo $help; exit(0); } if ($options['list'] || $options['modelid'] === false) { \tool_analytics\clihelper::list_models(); exit(0); } // Reformat them as an array. if ($options['filter'] !== false) { $options['filter'] = explode(',', $options['filter']); } // We need admin permissions. \core\session\manager::set_user(get_admin()); $model = new \core_analytics\model($options['modelid']); mtrace(get_string('analysingsitedata', 'tool_analytics')); if ($options['reuse-prev-analysed']) { mtrace(get_string('evaluationinbatches', 'tool_analytics')); } $analyseroptions = array( 'filter' => $options['filter'], 'timesplitting' => $options['timesplitting'], 'reuseprevanalysed' => $options['reuse-prev-analysed'], ); // Evaluate its suitability to predict accurately. $results = $model->evaluate($analyseroptions); $renderer = $PAGE->get_renderer('tool_analytics'); echo $renderer->render_evaluate_results($results, $model->get_analyser()->get_logs()); // Check that we have, at leasa,t 1 valid dataset (not necessarily good) to use. foreach ($results as $result) { if ($result->status !== \core_analytics\model::NO_DATASET && $result->status !== \core_analytics\model::GENERAL_ERROR) { $validdatasets = true; } } if (!empty($validdatasets) && !$model->is_enabled() && $options['non-interactive'] === false) { // Select a dataset, train and enable the model. $input = cli_input(get_string('clienablemodel', 'tool_analytics')); while (!\core_analytics\manager::is_valid($input, '\core_analytics\local\time_splitting\base') && $input !== 'none') { mtrace(get_string('errorunexistingtimesplitting', 'analytics')); $input = cli_input(get_string('clienablemodel', 'tool_analytics')); } if ($input === 'none') { exit(0); } // Refresh the instance to prevent unexpected issues. $model = new \core_analytics\model($modelobj); // Set the time splitting method file and enable it. $model->enable($input); mtrace(get_string('trainandpredictmodel', 'tool_analytics')); // Train the model with the selected time splitting method and start predicting. $model->train(); $model->predict(); } exit(0);