self
-
小熊飞桨练习册-02眼疾识别
小熊飞桨练习册-02眼疾识别 简介 小熊百度飞桨练习项目,02眼疾识别,本项目开发和测试均在 Ubuntu 20.04 系统下进行。项目最新代码查看主页:小熊飞桨练习册百度飞桨 A…
-
implement of Deep_learning Code
Line_Model import torch import torch.nn as nn import math import random import numpy as np…
-
020 列表元素是对象,如何排序
1.如果列表元素是对象,对这样的列表排序有哪些方法? class MyClass: def __init__(self): self.value = 0 my1 = MyClass…
-
反射内置方法
一、反射 python是动态语言,而反射(reflection)机制被视为动态语言的关键。 反射机制指的是在程序的运行状态中 对于任意一个类,都可以知道这个类的所有属性和方法; 对…
-
前缀树-TrieTree
# 只处理了ascii字符 local Node = {} Node.__cname = “util.TrieTree.Node” Node.__index = Node func…
-
谈谈YOLO
前言 当我们谈起计算机视觉时,首先想到的就是图像分类,没错,图像分类是计算机视觉最基本的任务之一,但是在图像分类的基础上,还有更复杂和有意思的任务,如目标检测,物体定位,图像分…
-
剑指 Offer 06. 从尾到头打印链表
思路:遍历链表,通过数组来存储读取到的value,最终逆序输出 Python: # Definition for singly-linked list. # class ListN…
-
tensorflo实现Droppath
# def drop_path(inputs, keep_prob, is_training=True, scope=None):def drop_path(inputs, kee…
-
参数化
from time import sleepimport pandas as pdimport pytestfrom selenium import webdriverfrom s…
-
8.中间件以及crawlspider使用
同时采集多个字段 items.py import scrapy class Test1Item(scrapy.Item): # define the fields for your…