上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 25 下一页
摘要: 1、代码 import torch import torch.nn as nn import torch.nn.functional as F import numpy as np class Net(nn.Module): def __init__(self): super(Net, self). 阅读全文
posted @ 2022-11-05 18:05 JaxonYe 阅读(169) 评论(0) 推荐(0)
摘要: 1、代码 """ 让我们来看一个训练步骤。 对于此示例,我们从torchvision加载了经过预训练的 resnet18 模型。 我们创建一个随机数据张量来表示具有 3 个通道的单个图像,高度&宽度为 64,其对应的label初始化为一些随机值。 """ import torch, torchvis 阅读全文
posted @ 2022-11-05 17:14 JaxonYe 阅读(543) 评论(0) 推荐(0)
摘要: https://pytorch.apachecn.org/#/ 1、代码 import torch import numpy as np data = [[1, 2], [3, 4]] print(f"data:{data}") x_data = torch.tensor(data) print(f 阅读全文
posted @ 2022-11-05 17:11 JaxonYe 阅读(78) 评论(0) 推荐(0)
摘要: 1、相关课程 2、数据集 https://paperswithcode.com/datasets 里面有7000多个ML领域的各种数据集以及对应的paper,而且还分好了类 阅读全文
posted @ 2022-11-05 17:03 JaxonYe 阅读(24) 评论(0) 推荐(0)
摘要: 1、打开开发者工具 点浏览器右上角这个按钮,然后选择更多工具,选择开发者工具 或者直接按ctrl+shift+i即可弹出开发者工具 2、按ctrl+shift+p弹出run窗口 ,搜索shot 点击这个,即可长截图 OK! 阅读全文
posted @ 2022-11-05 16:54 JaxonYe 阅读(4988) 评论(0) 推荐(0)
摘要: 目录相关链接 相关链接 https://github.com/amusi https://github.com/amusi/CVPR2022-Papers-with-Code https://github.com/extreme-assistant/CVPR2023-Paper-Code-Inter 阅读全文
posted @ 2022-11-03 10:20 JaxonYe 阅读(152) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2022-10-30 23:28 JaxonYe 阅读(0) 评论(0) 推荐(0)
该文被密码保护。 阅读全文
posted @ 2022-10-04 09:57 JaxonYe 阅读(0) 评论(0) 推荐(0)
摘要: 所需要的库 安装jupyter包,这时候可以在pycharm运行 如何在浏览器运行 假设直接在浏览器运行http://localhost:8888/是打不开的,会提示输入密码但不知道是多少 解决方法 在终端运行 jupyter notebook list 复制方框链接到浏览器运行,这时候就正常打开运 阅读全文
posted @ 2022-08-08 08:54 JaxonYe 阅读(465) 评论(0) 推荐(0)
摘要: 打开sciview工具栏 关闭sciview工具栏,单独显示matplotlib的绘图 阅读全文
posted @ 2022-08-07 14:00 JaxonYe 阅读(2255) 评论(0) 推荐(1)
上一页 1 ··· 14 15 16 17 18 19 20 21 22 ··· 25 下一页