
python 学习笔记
文章平均质量分 62
AnimateX
预测未来最好的方法就是实现未来
展开
-
loss曲线本地动态显示并保存成gif
import osimport torchimport imageioimport numpy as npimport matplotlib.pyplot as pltfrom tqdm import tqdmfrom natsort import natsortedVector = [torch.Tensor, torch.Tensor]def load_diabetes_data(csv_file_path: str, delim: str, data_type=np.float3原创 2021-12-09 21:52:35 · 1394 阅读 · 0 评论 -
Python 数据结构之字典
Python-dictionary[Reference][1] https://docs.python.org/3/library/stdtypes.html#typesmapping1. dict 格式和特性A mapping object maps hashable values to arbitrary objects. Mappings are mutable objects. There is currently only one standard mapping type, the原创 2021-10-07 11:04:36 · 292 阅读 · 0 评论 -
PyTorch TORCH.AS_STRIDED
torch.as_strided(input, size, stride, storage_offset=0)→ Tensor1. 官方文档Create a view of an existing torch.Tensor input with specified size, stride and storage_offset.parametersinput (Tensor) – the input tensor.size (tuple or ints) – the shape of t.原创 2021-10-03 17:18:26 · 658 阅读 · 0 评论 -
python map与reduce
函数式编程之map、reduce1 定义map(function, iterable, ...):返回一个迭代器,该迭代器将函数应用于可迭代的每个项目,产生结果。 如果传递了额外的可迭代参数,则函数必须采用多参数且并行应用于所有可迭代项中的项目。示例:>>> list(map(lambda x: x + 2, list(range(10))))[2, 3, 4, 5, 6, 7, 8, 9, 10, 11]functools.reduce(function, iterab.原创 2021-09-22 21:13:26 · 171 阅读 · 0 评论 -
Python super函数问题
super function: 函数厉害之处在于你不需要明确给出任何基(父)类的名字,他会自动帮你找出所有基类及对应的方法。但是如果我要继承多个父类呢?测试: 先看正常代码,不用super函数:class A: def __init__(self): print('进入 A') print('退出 A')class B(A): ...原创 2018-05-14 11:06:01 · 453 阅读 · 0 评论 -
小甲鱼(鱼C)课后作业代码 39讲
小甲鱼 039 动手做一做# -*- coding: utf-8 -*-'''Created on Mon May 14 2018@author: '''This oneclass Varible: nums = 0 def __init__(self): Varible.nums += 1 def delt(self): ...原创 2018-05-14 15:08:09 · 7321 阅读 · 0 评论 -
python-opencv实现简易画图板
python-opencv实现简易画图板# -*- coding: utf-8 -*-"""Created on Sat May 19 17:34:54 2018@author: xxx"""import cv2 as cvimport numpy as npdef nothing(x): pass# 当鼠标按下时变为 Truedrawing = False...原创 2018-05-20 23:16:24 · 2853 阅读 · 0 评论 -
Python中如何使用静态方法、类方法或者抽象方法
The definitive guide on how to use static, class or abstract methods in Python原文地址 Doing code reviews is a great way to discover things that people might struggle to comprehend. While proof-read...转载 2018-05-15 14:56:19 · 1437 阅读 · 0 评论