摘要: 源代码 import torch import torch.nn as nn import torch.optim as optim from torch.utils.data import Dataset, DataLoader from torchvision import transforms 阅读全文
posted @ 2025-11-05 10:27 与尔5 阅读(3) 评论(0) 推荐(0)
摘要: 卷积神经网络读书报告 摘要 卷积神经网络作为一种专门处理具有类似网格结构数据(如图像、语音)的前馈神经网络,是深度学习领域最具里程碑意义的架构之一。本报告通过系统性地梳理CNN的核心思想、关键组件、经典模型、应用领域及未来挑战,旨在呈现一个关于CNN的全面而深入的技术图谱。报告认为,CNN通过其独特 阅读全文
posted @ 2025-10-16 12:37 与尔5 阅读(20) 评论(0) 推荐(0)
摘要: 源代码 import torch import torch.nn as nn import torch.optim as optim from torch.utils.data import DataLoader from torchvision.datasets import CIFAR10 fr 阅读全文
posted @ 2025-10-12 20:02 与尔5 阅读(7) 评论(0) 推荐(0)
摘要: 查看代码 import random import sys from collections import defaultdict #代码介绍 def printIntro(): print("排球比赛模拟程序,作者:2024310143115") print("赛制规定:-前4局比赛采用25分制, 阅读全文
posted @ 2025-06-23 13:57 与尔5 阅读(18) 评论(0) 推荐(0)
摘要: 查看代码 import pygame import random import sys # 初始化pygame pygame.init() # 屏幕设置 SCREEN_WIDTH = 800 SCREEN_HEIGHT = 600 screen = pygame.display.set_mode(( 阅读全文
posted @ 2025-06-22 17:05 与尔5 阅读(24) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2025-06-21 19:59 与尔5 阅读(5) 评论(0) 推荐(0)
摘要: 查看代码 import jieba from collections import Counter text = open ("C:\\Users\\黄楚玉\\Desktop\\杂七杂八\\hongloumeng.txt", "r", encoding='utf-8').read() personN 阅读全文
posted @ 2025-06-21 17:31 与尔5 阅读(7) 评论(0) 推荐(0)
摘要: 简单图书馆借阅系统 class Book: def __init__(self, idx, title, auther): self.id = idx self.title = title self.auther = auther self.is_borrowed = False def borro 阅读全文
posted @ 2025-06-10 09:47 与尔5 阅读(8) 评论(0) 推荐(0)
摘要: sin、cos函数(0, π/2) import matplotlib.pyplot as plt import numpy as np x = np.linspace(0, 2 * np.pi, 200) y = np.sin(x) // or y = np.cos(x) fig, ax = pl 阅读全文
posted @ 2025-05-20 23:11 与尔5 阅读(17) 评论(0) 推荐(0)
摘要: 6.1 随机密码生成 import random import string char = string.ascii_uppercase + string.ascii_lowercase + "123456789" words = [] for i in range(10): for i in ra 阅读全文
posted @ 2025-04-24 23:26 与尔5 阅读(6) 评论(0) 推荐(0)