AI学习目录汇总
1、图像增强
图像增强可以扩展训练样本数量、减小对某个属性的依赖。比如,裁剪图像,可以减少模型对对象出现位置的依赖;调整亮度、颜色等因素来降低模型对颜色的敏感度等
1.1、准备工作
头文件
%matplotlib inline:图表直接嵌入到Notebook中,本人使用的jupyter-lab
%matplotlib inline
import torch
import torchvision
from torch import nn
from d2l import torch as d2l
显示图片
d2l.set_figsize(
本文转载自: https://blog.csdn.net/u010168781/article/details/132539605
版权归原作者 郭老二 所有, 如有侵权,请联系我们删除。
版权归原作者 郭老二 所有, 如有侵权,请联系我们删除。