Help for this page

Select Code to Download


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