h3-CNN-记录遇到的API,各种库函数

Python Build-in

sorted()

 image_dir = sorted(os.listdir(path))

函数返回:在这里插入图片描述
在这里插入图片描述

enumerate()

用于将一个可遍历的数据对象(如列表、元组或字符串)组合为一个索引序列,同时列出数据和数据下标,一般用在 for 循环当中。
在这里插入图片描述

 for i, file in enumerate(image_dir):

str.split()

	 y[i] = int(file.split("_")[0])

在这里插入图片描述

str.format()

这个函数没彻底明白,暂且将遇到的总结一下:(因为格式太多了)

print("Size of training data = {}".format(len(train_x)))

object.getitem(self, key)

在这里插入图片描述

object.len(self)

在这里插入图片描述

object.call(self[, args…])

在这里插入图片描述

range 对象

在这里插入图片描述

在这里插入图片描述

open

在这里插入图片描述

OS库

os.listdir()

image_dir = sorted(os.listdir(path))

在这里插入图片描述

os.path.join()

img = cv2.imread(os.path.join(path, file))

在这里插入图片描述

np库

np.zeros()

在这里插入图片描述

 x = np.zeros((len(image_dir), 128, 128, 3), dtype=np.uint8)
    y = np.zeros((len(image_dir)), dtype=np.uint8)

np.argmax()

即:每行出一个还是每列
在这里插入图片描述

np. concatenate

def concatenate(arrays, axis=None, out=None):
    """
    concatenate((a1, a2, ...), axis=0, out=None)

    Join a sequence of arrays along an existing axis.

    Parameters
    ----------
    a1, a2, ... : sequence of array_like
        The arrays must have the same shape, except in the dimension
        corresponding to `axis` (the first, by default).
    axis : int, optional
        The axis along which the arrays will be joined.  If axis is None,
        arrays are flattened before use.  Default is 0.
    out : ndarray, optional
        If provided, the destination to place the result. The shape must be
        correct, matching that of what concatenate would have returned if no
        out argument were specified.

    Returns
    -------
    res : ndarray
        The concatenated array.

    See Also
    --------
    ma.concatenate : Concatenate function that preserves input masks.
    array_split : Split an array into multiple sub-arrays of equal or
                  near-equal size.
    split : Split array into a list of multiple sub-arrays of equal size.
    hsplit : Split array into multiple sub-arrays horizontally (column wise)
    vsplit : Split array into multiple sub-arrays vertically (row wise)
    dsplit : Split array into multiple sub-arrays along the 3rd axis (depth).
    stack : Stack a sequence of arrays along a new axis.
    hstack : Stack arrays in sequence horizontally (column wise)
    vstack : Stack arrays in sequence vertically (row wise)
    dstack : Stack arrays in sequence depth wise (along third dimension)
    block : Assemble arrays from blocks.

    Notes
    -----
    When one or more of the arrays to be concatenated is a MaskedArray,
    this function will return a MaskedArray object instead of an ndarray,
    but the input masks are *not* preserved. In cases where a MaskedArray
    is expected as input, use the ma.concatenate function from the masked
    array module instead.

    Examples
    --------
    >>> a = np.array([[1, 2], [3, 4]])
    >>> b = np.array([[5, 6]])
    >>> np.concatenate((a, b), axis=0)
    array([[1, 2],
           [3, 4],
           [5, 6]])
    >>> np.concatenate((a, b.T), axis=1)
    array([[1, 2, 5],
           [3, 4, 6]])
    >>> np.concatenate((a, b), axis=None)
    array([1, 2, 3, 4, 5, 6])

    This function will not preserve masking of MaskedArray inputs.

    >>> a = np.ma.arange(3)
    >>> a[1] = np.ma.masked
    >>> b = np.arange(2, 5)
    >>> a
    masked_array(data=[0, --, 2],
                 mask=[False,  True, False],
           fill_value=999999)
    >>> b
    array([2, 3, 4])
    >>> np.concatenate([a, b])
    masked_array(data=[0, 1, 2, 2, 3, 4],
                 mask=False,
           fill_value=999999)
    >>> np.ma.concatenate([a, b])
    masked_array(data=[0, --, 2, 2, 3, 4],
                 mask=[False,  True, False, False, False, False],
           fill_value=999999)

    """

torch

torch.LongTensor()

Tensor概述

CLASS torch.utils.data.Dataset()

在这里插入图片描述

CLASS torch.utils.data.DataLoader()

在这里插入图片描述在这里插入图片描述

CLASS torch.nn.Module

在这里插入图片描述

Module.train(mode: bool = True) → T

在这里插入图片描述

CLASS torch.nn.Linear

在这里插入图片描述
在这里插入图片描述

eval() → T

在这里插入图片描述

CLASS torch.nn.ReLU(inplace: bool = False)

在这里插入图片描述

CLASStorch.nn.Sequential(*args: Any)

在这里插入图片描述

CLASS torch.nn.Conv2d()

torch.nn.Conv2d() API
在这里插入图片描述

在这里插入图片描述

CLASS torch.nn.MaxPool2d()

在这里插入图片描述
在这里插入图片描述

CLASS torch.nn.CrossEntropyLoss()

在这里插入图片描述

CLASS torch.optim.Adam()

在这里插入图片描述

Adam.zero_grad()

在这里插入图片描述

Adam.step()

在这里插入图片描述

torch.Tensor

Tensor.backward()

在这里插入图片描述

item() → number

在这里插入图片描述

CLASS torch.no_grad()

在这里插入图片描述

torchvision

torchvision.transforms

资料1
API资料

train_transform = transforms.Compose([
    transforms.ToPILImage(),
    transforms.RandomHorizontalFlip(), # 隨機將圖片水平翻轉
    transforms.RandomRotation(15), # 隨機旋轉圖片
    transforms.ToTensor(), # 將圖片轉成 Tensor,並把數值 normalize 到 [0,1] (data normalization)
])

time

time.time()

在这里插入图片描述

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值