神经网络在烧瓶上部署

时间:2020-06-21 11:52:19

标签: python machine-learning flask deployment neural-network

我一直在研究ML模型,现在我想使用flask部署它。 我参考了各种资料来制作烧瓶的app.py文件,现在从我这边进行调整之后,我想到了:-

public class matrixExample {
    public static void main(String[] args)   {

        int m[][] = new int[5][5]; 

        int count = 1;  
        for (int i=0; i<m.length; i++) 
            for(int j=0; j<i+1; j++) 
                m[i][j] = count++; 
       

        for (int i=0; i<m.length; i++)
        {
            for (int j=0; j<m[i].length; j++)
                System.out.print(m[i][j] + "  "); 
            System.out.println();
        }
    }
}

但是在运行它时,它会向我显示此错误

enter image description here ValueError:......

请帮助我,我该如何解决

0 个答案:

没有答案