Add experimental machine learning

This commit is contained in:
Machine Learning
2021-06-18 12:27:29 +07:00
committed by Javi Martín
parent c8d8fae98d
commit 4d27bbebad
84 changed files with 2845 additions and 30 deletions

View File

@@ -0,0 +1,15 @@
class Admin::MachineLearning::SettingsComponent < ApplicationComponent
private
def script_kinds
@script_kinds ||= ::MachineLearning.script_kinds
end
def filenames
::MachineLearning.data_intermediate_files
end
def data_path(filename)
::MachineLearning.data_path(filename)
end
end