上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 74 下一页
摘要: https://www.baidu.com/link?url=Xngbe-HnvzQq7znhNaUVVqR3eD33lc_ED-dp-EK2ZY-nTf1qtRSHDwC-ZwezA_o3ISiMdFP1bxe6QBre6wkNcq&wd=&eqid=b63f5ea200015c580000000 阅读全文
posted @ 2022-03-10 16:41 祥瑞哈哈哈 阅读(93) 评论(0) 推荐(0)
摘要: BaseClassName是基类,当类需要继承时需要在定义的类名吼加上括号并写上所要继承的类名称。class DerivedClassName(BaseClassName): def __init__(): print(1) def a(self): print(1)如果a需要使用类里边的内容需要s 阅读全文
posted @ 2022-03-10 16:30 祥瑞哈哈哈 阅读(177) 评论(0) 推荐(0)
摘要: argparse.ArgumentParser()是参数的容器,写参数时--命名规定,在调用参数是需要去掉--。 parser = argparse.ArgumentParser() parser.add_argument('--prepared-train-labels', type=str,de 阅读全文
posted @ 2022-03-06 22:20 祥瑞哈哈哈 阅读(129) 评论(0) 推荐(0)
摘要: 摘要含有目的。 相关工作:相关方面知识以及知识所包含的论文,本篇文章和它们的关系。可以引用论文,然后介绍小部分工作。 摘要写做了什么实验获得什么样的结果。引进部分写实验证明了什么,加实验结果。 结论部分不写实验结果。 引进部分解决了什么问题。 强调重点,条件卷积的表示图: 这个图不一定能用上。 可以 阅读全文
posted @ 2022-02-28 09:33 祥瑞哈哈哈 阅读(43) 评论(0) 推荐(0)
摘要: import torch import numpy as np import torch.nn as nn import torch.functional as F class LinearNet(nn.Module): def __init__(self): super(LinearNet, se 阅读全文
posted @ 2022-02-25 15:07 祥瑞哈哈哈 阅读(289) 评论(0) 推荐(0)
摘要: >>> torch.load('tensors.pt') # Load all tensors onto the CPU >>> torch.load('tensors.pt', map_location=torch.device('cpu')) # Load all tensors onto th 阅读全文
posted @ 2022-02-25 11:39 祥瑞哈哈哈 阅读(1150) 评论(0) 推荐(0)
摘要: dropout就是为了去掉冗余特征。 l1、l2正则化生成稀疏矩阵。 阅读全文
posted @ 2022-02-24 14:11 祥瑞哈哈哈 阅读(240) 评论(0) 推荐(0)
摘要: from distutils.core import setup import py2exe import sys includes = ["encodings", "encodings.*"] sys.argv.append("py2exe") options = {"py2exe": { "bu 阅读全文
posted @ 2022-02-23 19:01 祥瑞哈哈哈 阅读(27) 评论(0) 推荐(0)
摘要: import win32api import win32con import time import pyautogui as pag state_left = win32api.GetKeyState(0x01) # Left button down = 0 or 1. Button up = - 阅读全文
posted @ 2022-02-23 19:00 祥瑞哈哈哈 阅读(128) 评论(0) 推荐(0)
摘要: summary(model.cuda(), input_size=(3, 256, 256), batch_size=1) 阅读全文
posted @ 2022-02-17 13:08 祥瑞哈哈哈 阅读(31) 评论(0) 推荐(0)
上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 74 下一页