CharlesCNorton
Image-level person classification on EUPE-ViT-B features with no free parameters
e8b8483
Raw
History Blame Contribute Delete
382 Bytes
// Zero-parameter person classifier, 2 dims.
// Generated by rtl_gen.py; do not edit by hand.
//
// sum(pos) > sum(neg), on signed INT8 channels taken from the pooled feature
// vector. No threshold, so no constant appears anywhere in this module.
module person_d2 (
input signed [7:0] f48, f637,
output person_present
);
assign person_present = f48 > f637;
endmodule