摘要:
Python time time()方法 描述 Python time time() 返回当前时间的时间戳。 语法 time()方法语法: time.time() 参数 NA。 返回值 返回当前时间的时间戳(1970纪元后经过的浮点秒数)。 实例 以下实例展示了 time() 函数的使用方法: #! 阅读全文
摘要:
print(torch.arange(0, 20)) tensor([ 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19])>>> print(torch.arange(0, 20).view(20, 1, 1) 阅读全文
摘要:
https://www.jb51.net/article/177713.htm 阅读全文
摘要:
方法一:https://www.pytorchtutorial.com/pytorch-learning-rate-decay/ 方法二: # lr_step = [30,80] if epoch in opt.lr_step: save_model(os.path.join(opt.save_di 阅读全文
摘要:
check_set_list = ['zheng','xinying','zhang'] >>> sample_set_list = ['xinying','zhangchunmei','zhiwu'] >>> check_set_list & sample_set_list # &求交集必须对集合 阅读全文
摘要:
https://www.cnblogs.com/Aurora-Twinkle/p/8660778.html 阅读全文
摘要:
https://www.cnblogs.com/marsggbo/p/11534141.html 阅读全文
摘要:
使用cv2.imshow()的时候,如果图片太大,会显示不全并且无法调整,因此在cv2.imshow()的前面加上这样的一个语句:cv2.namedWindow('image', 0),得到的图像框就可以自己调整大小,按住四个角会出来小箭头可以拉伸调整。 参考:https://wenwen.sogo 阅读全文