10 2020 档案
摘要:①安装VS code,并连接远程服务器(本地也需要有ssh)。参考🔗 ②免密钥登录设置,参考🔗 设置SSH通过秘钥登陆 1、具体步骤:WIN+R -->cmd, 输入ssh-keygen,然后一直Enter,最终生成公钥(id_rsa.pub)和私钥(id_rsa)(文件位置位于/.ssh文件夹
阅读全文
摘要:import numpy as np array=np.array([[1,2,3] ,[4,5,6]], dtype=np.int) print(array) print(array.ndim) #是数组有几个维度 print(array.size) #有多少个元素 print(array.sha
阅读全文
摘要:Motivation: The main requisite for fine-grained recognition task is to focus on subtle discriminative details that make the subordinate classes differ
阅读全文