Algorithm-Classifier-IsolationForest

 view release on metacpan or  search on metacpan

t/20-fit.t  view on Meta::CPAN

my @BACKENDS = ( [ 'pure-perl' => 0 ] );
push @BACKENDS, [ 'C' => 1 ]
	if $Algorithm::Classifier::IsolationForest::HAS_C;

# A small, valid training set used throughout.
my @data = map { [ $_, $_ + 1 ] } 1 .. 30;

for my $be (@BACKENDS) {
	my ( $be_name, $USE_C ) = @$be;

	subtest "[$be_name] fit() input validation" => sub {
		my $f = $CLASS->new( n_trees => 5, use_c => $USE_C );

		like( exception { $f->fit() },            qr/non-empty arrayref/, 'fit() with no data croaks' );
		like( exception { $f->fit('not a ref') }, qr/non-empty arrayref/, 'fit() with a non-arrayref croaks' );
		like( exception { $f->fit( [] ) },        qr/non-empty arrayref/, 'fit() with an empty arrayref croaks' );
		like(
			exception { $f->fit( [ 1, 2, 3 ] ) },
			qr/each sample must be an arrayref/,
			'fit() croaks when samples are not arrayrefs'
		);
		like(
			exception { $f->fit( [ [] ] ) },
			qr/each sample must be an arrayref/,
			'fit() croaks when the first sample has no features'
		);
	}; ## end "[$be_name] fit() input validation" => sub

	subtest "[$be_name] fit() succeeds and is chainable" => sub {
		my $f = $CLASS->new(
			n_trees     => 10,
			sample_size => 16,
			seed        => 1,
			use_c       => $USE_C
		);
		my $ret = $f->fit( \@data );
		is( $ret, $f, 'fit() returns the invocant (chainable)' );

		# The forest is now usable directly off the chain.
		my $scores
			= $CLASS->new( n_trees => 10, seed => 1, use_c => $USE_C )->fit( \@data )->score_samples( \@data );
		is( ref $scores,     'ARRAY',      'new->fit->score_samples works in one chain' );
		is( scalar @$scores, scalar @data, 'one score per sample' );
	}; ## end "[$be_name] fit() succeeds and is chainable" => sub

	subtest "[$be_name] fit() records training metadata" => sub {
		my $f = $CLASS->new(
			n_trees     => 7,
			sample_size => 1000,
			seed        => 2,
			use_c       => $USE_C
		);
		$f->fit( \@data );
		is( scalar @{ $f->{trees} }, 7, 'builds exactly n_trees trees' );
		is( $f->{n_features},        2, 'n_features inferred from the data' );
		is( $f->{psi_used}, scalar @data,
			'sub-sample size is clamped to the data size when sample_size is larger' );
	}; ## end "[$be_name] fit() records training metadata" => sub

	subtest "[$be_name] consumers croak before fit()" => sub {
		for my $method (qw(score_samples predict path_lengths to_json)) {
			my $f = $CLASS->new( use_c => $USE_C );
			like( exception { $f->$method( \@data ) }, qr/not fitted/i, "$method() croaks on an unfitted model" );
		}
	};
} ## end for my $be (@BACKENDS)

done_testing;



( run in 0.814 second using v1.01-cache-2.11-cpan-6aa56a78535 )