in reply to OO Design Question

Heh, as usual, formulating the question made me reveal an answer. I'll require the models to provide a "new" method, and say

my $model = $self->{'model'}->new($self); $model->train($data);

Other suggestions are of course most welcome!

use strict; use warnings; print "Just Another Perl Hacker\n";

Replies are listed 'Best First'.
Re^2: OO Design Question
by Anonymous Monk on Mar 14, 2008 at 03:57 UTC
    I see a red herring my $model = $self->{'model'}->new($self);