- or download this
MainApp.pm
MyModel.pm
config
- or download this
model:MyModel
option:Value
- or download this
sub train {
my ($himself, $training_data) = @_;
my $option = $himself->{'option'};
...
}
- or download this
sub new {
my ($class, $conf_file) = @_
...
$self->train($data);
}
}