class {class_name} {{

    {activation_function}

    {output_function}

    {method}

    public static void main(String[] args) {{
        if (args.length == {n_features}) {{
            double[] atts = new double[args.length];
            for (int i = 0, l = args.length; i < l; i++) {{
                atts[i] = Double.parseDouble(args[i]);
            }}
            System.out.println({class_name}.{method_name}(atts));
        }}
    }}
}}