def {method_name} (features)
	prob = 0
	for i in 0 ... @coefficients.length
		prob += @coefficients[i] * features[i].to_f
	end
	if prob + @intercepts > 0
		return 1
	end
	return 0
end