上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 329 下一页
摘要: Python 软件打包 1、构建虚拟环境: conda create -n Exep python=3.6 conda activate Exep 2、安装requirements.txt pip install -r requirements.txt 3、打包 pyinstaller main.p 阅读全文
posted @ 2022-10-31 16:51 bH1pJ 阅读(23) 评论(0) 推荐(0) 编辑
摘要: Python 如何把图像转换成video (avi)格式? import cv2 def image_to_video(image_dir, save_dir, size: tuple, fps=10, sort_loc=-1): """ 图片转视频 Args: image_dir: 图片目录 sa 阅读全文
posted @ 2022-10-31 16:50 bH1pJ 阅读(95) 评论(0) 推荐(0) 编辑
摘要: pycharm在一个项目中进行查找 ctrl + shift + F 没反应 https://blog.csdn.net/c15158032319/article/details/79498540 阅读全文
posted @ 2022-10-31 16:50 bH1pJ 阅读(86) 评论(0) 推荐(0) 编辑
摘要: numpy随机抽样 https://blog.csdn.net/qikaihuting/article/details/102846301 np.random.choice(a, size=None,replace=None, p=None) numpy从一个范围中选择不重复的数字 replace 阅读全文
posted @ 2022-10-31 16:49 bH1pJ 阅读(28) 评论(0) 推荐(0) 编辑
摘要: Latex Package fontspec Warning: Font "FandolSong-Regular" does not contain requested Script "CJK". Latex Package fontspec Warning: Font "FandolSong-Re 阅读全文
posted @ 2022-10-31 16:49 bH1pJ 阅读(539) 评论(0) 推荐(0) 编辑
摘要: Adobe illustrator AI如何裁剪一张图像 没有什么裁剪图像, 只有剪切蒙版 阅读全文
posted @ 2022-10-31 16:48 bH1pJ 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 什么是BERT 参考资料: https://zhuanlan.zhihu.com/p/98855346 https://zhuanlan.zhihu.com/p/51413773 https://www.jiqizhixin.com/articles/2019-11-05-2 https://zh. 阅读全文
posted @ 2022-10-28 00:42 bH1pJ 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 如何理解卷积核中的padding参数? # padding,控制对原始图片填充多少个东西。能控制卷积之后的feature map的大小; 相当于对原始图像进行填充,来控制卷积之后图像的大小 input = torch.randn(1, 15, 1, 512, 512) m = nn.Conv3d(1 阅读全文
posted @ 2022-10-28 00:41 bH1pJ 阅读(70) 评论(0) 推荐(0) 编辑
摘要: 如何理解GAN神经网络 参考资料: https://easyai.tech/ai-definition/gan/ https://www.zhihu.com/question/63493495 https://zhuanlan.zhihu.com/p/114838349 https://zh.wik 阅读全文
posted @ 2022-10-28 00:41 bH1pJ 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 金融的本质 来源: https://www.youtube.com/watch?v=4MiAZ-5_WnU&list=PL-c0DN3fTeQcjsrsRJVET4RWLQBQRx_bb&index=40&ab_channel=%E5%B0%8FLin%E8%AF%B4 阅读全文
posted @ 2022-10-28 00:40 bH1pJ 阅读(53) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 329 下一页