摘要:
PyTorch | 优化神经网络训练的方法 转自Faster Deep Learning Training with PyTorch 考虑换一种学习率 schedule 学习率 schedule 的选择对模型的收敛速度和泛化能力有很大的影响。Leslie N. Smith 等人在论文《Cyclica 阅读全文
摘要:
经典网络整理 AlexNet # ImageNet Classification with Deep Convolutional Neural Networks import torch.nn as nn import torch class AlexNet(nn.Module): def __in 阅读全文
摘要:
Paper-Paper Forgeries Image Detection Hybrid LSTM and Encoder–Decoder Architecture for Detection of Image Forgeries Hybrid LSTM and Encoder–Decoder Ar 阅读全文
摘要:
图像滑动窗口分割 import cv2 import os def sliding_window(image, stepSize, windowSize): # slide a window across the image for y in range(0, image.shape[0], ste 阅读全文
摘要:
transgan_pytorch Implementation of the paper: Yifan Jiang, Shiyu Chang and Zhangyang Wang. TransGAN: Two Pure Transformers Can Make One Strong GAN, an 阅读全文