class {class_name}

	def initialize (coefficients, intercepts)
		@coefficients = coefficients
		@intercepts = intercepts
	end

	{method}

end

if ARGV.length == {n_features}

	# Features:
	features = ARGV.collect {{ |i| i.to_f }}

	# Parameters:
	{coefficients}
	{intercepts}

	# Prediction:
	clf = {class_name}.new coefficients, intercepts
	estimation = clf.{method_name} features
	puts estimation

end