ICode9

精准搜索请尝试: 精确搜索
  • confidence2022-08-14 08:30:09

    Someone's confidant is a man who they are able to discuss their private problems with. Someone's confidante is a woman who they are able to discuss their private problems with. (female confidant) If you confide in someone, you tell them a secret

  • [论文][表情识别]Towards Semi-Supervised Deep Facial Expression Recognition with An Adaptive Confidence Mar2022-05-22 23:01:14

    论文基本情况 发表时间及刊物/会议:2022 CVPR 发表单位:西安电子科技大学, 香港中文大学,重庆邮电大学 问题背景 在大部分半监督学习方法中,一般而言,只有部分置信度高于提前设置的阈值的无标签数据被利用。由此说明,大部分半监督方法没有充分利用已有数据进行训练。 论文创新点 设置了Ad

  • 目标检测理论(1)———交并比(IoU)和 非极大值抑制(NMS)2022-01-07 20:34:37

    1. 交并比:IoU:   1) 概念:如图有两个区域:A和B,IoU就是两个区域的相交面积 / (总面积-相交面积);            即:  IoU =  A ∩ B / A υ B;         2)应用:   在目标检测中,我们首先会预测出一系列的候选框,然后使用NMS来去除一堆多余的框。这里的判断标准就是IoU大于某

  • 自动完成问卷调查2021-09-17 19:34:58

    代码效果演示 Gitee源码 # -*- coding: utf-8 -*- # Version: Python 3.9.7 # Author: TRIX # Date: 2021-09-15 19:31:55 # Use:自动完成问卷调查 https://www.wjx.cn/jq/9132199.aspx import pyautogui from time import sleep import pyperclip def completeQuestionnaire(tex

  • [读论文]Weighted Boxes Fusion 代替NMS的result ensemble2021-09-06 10:00:26

    arxiv链接 0x01 从NMS到Soft-NMS 在detection中,通常为了避免prediction boxes的重合会使用非极大值抑制的方法筛选候选框,最简单的做法是将bounding box的Confidence排序后依次从C最大的box与其他计算IOU,设置一个固定的阈值,IOU超过阈值的bbox则被删除,将所有bbox遍历一次后得到最终

  • 置信区间(Confidence interval)是啥2021-07-27 09:31:47

    可信程度那种~ 对这个样本的某个总体参数的区间估计。置信区间展现的是这个参数的真实值有一定概率落在测量结果的周围的程度。置信区间给出的是被测量参数测量值的可信程度范围,即前面所要求的“一定概率”。这个概率被称为置信水平 如果在一次大选中某人的支持率为55%,而置信

  • 基于深度主动学习的命名实体识别的代码实现及实验2021-07-07 10:33:49

    在很多问题中,获取标注准确的大量数据需要很高的成本,这也往往限制了深度学习的应用。而主动学习通过对未标注的数据进行筛选,可以利用少量的标注数据取得较高的学习准确度。本文将提供代码实现,展示实验效果及一些思考。 代码地址:https://github.com/hgliyuhao/ActiveLearing4NER

  • 彻底理解confidence interval和credible interval2021-06-18 19:02:37

    Confidence Interval 也就是我们熟知的置信区间,比如我们常见的95%置信区间。那么究竟该如何理解这个置信区间呢?首先,我们需要明确一点,置信区间的概念是基于频率学派的,他们认为参数的真实值应该是固定的(但是我们不知道)。因此他们的做法就是通过不断的采样来构造参数估计的区间,

  • 攻防世界 Misc 新手练习区 stegano CONFidence-DS-CTF-Teaser Writeup2021-01-23 13:32:22

    攻防世界 Misc 新手练习区 stegano CONFidence-DS-CTF-Teaser Writeup 题目介绍 题目考点 隐写术 摩斯密码 Writeup 下载附件是PDF文件打开,研究一番,无果 用winhex打开,检索关键字flag 应该是base64编码,解码,无果,并不是flag 虽然没有flag,但是得到提示 摩斯密码 用火

  • 翻译 BMN: Boundary-Matching Network for Temporal Action Proposal Generation2021-01-09 20:29:05

    BMN: Boundary-Matching Network for Temporal Action Proposal Generation 边界匹配网络[时序动作提名] Figure 2. Illustration of BM confidence map. Proposals in the same row have the same temporal duration, and proposals in the same column have the same st

  • Upper-Confidence-Bound(UCB) Action Selection2020-12-30 22:30:24

    Background In ε-greedy method, we randomly choose non-greedy actions as exploration, but indiscriminately, with no preference for those that are nearly greedy or particularly uncertain. Upper-Confidence-Bound In order to take into account both how close

  • chardet模块的使用2020-12-05 13:05:06

    1.介绍   在处理字符串时,常常会遇到不知道字符串是何种编码,如果不知道字符串的编码就不能将字符串转换成需要的编码。面对多种不同编码的输入方式,是否会有一种有效的编码方式?chardet是一个非常优秀的编码识别模块。 $ pip install chardet 2.简单使用    使用chardet 当我

  • [React Testing] Improve Test Confidence with the User Event Module2020-04-30 18:54:29

    The User Event module is part of the Testing Library family of tools and lets you fire events on DOM nodes that more closely resemble the way your users will interact with your elements. Let’s refactor our fire event usages to use that instead.   import

  • YOLOv32020-03-14 19:52:17

        对三层作监督,分别重点检测大中小物体。 如果从未接触过检测算法,一定会对YOLOv3有别于其它CNN的诸多方面深表惊奇。惊奇可能意味着巧妙,也可能意味着不合理或者局限。在YOLOv3身上二者兼备。 Output and loss 需要监督的输出层如下。The shape of the detection kernel is 1

  • YOLO V1,V2,V3总结2020-03-11 15:39:01

    内容概要: YOLOV1 YOLOV2 YOLOV3 YOLOV1: 论文地址:http://arxiv.org/abs/1506.02640  参考文章: https://blog.csdn.net/c20081052/article/details/80236015 https://blog.csdn.net/qq_38232598/article/details/88695454?depth_1-utm_source=distribute.pc_relevant.non

  • The Epsilon-Greedy /UCB ("upper confidence bound") for MAB (Multiarmed-bandit) problem som2019-12-08 13:51:01

    你是球队教练,现在突然要打一场比赛,手下空降三个球员,场上只能有一个出战,你不知道他们的能力,只能硬着头皮上,如何根据有限的上场时间看出哪个球员厉害,然后多让他上,从而得更多分数? Epsilon-Greedy supposed an k arm(slot) and set ε a little number between [0,0.1] In short, eps

  • 数据挖掘之关联分析的基本概念2019-08-20 12:41:42

    原文链接:http://www.cnblogs.com/XjChenny/archive/2012/10/24/2737879.html 6.关联分析 6.1.Problem Definition   关联分析(Association Analysis)是指从大量的数据集中,搜索出有强关联的规则(Rule),但是这个计算过程通常计算成本很高。建立关联规则的两

  • yolo系列之yolo v3【深度解析】2019-08-15 15:40:10

    原文链接:https://blog.csdn.net/leviopku/article/details/82660381 版权申明:转载和引用图片,都必须经过书面同意。获得留言同意即可 本文使用图片多为本人所画,需要高清图片可以留言联系我,先点赞后取图 这篇博文比较推荐的yolo v3代码是qwe的ke

  • confidence intervals and precision|The One-Mean z-Interval Procedure|When to Use the One-Mean z-Int2019-07-28 19:07:10

      Confidence Intervals for One Population Mean When σ Is Known Obtaining Confidence Intervals for a Population Mean When σ Is Known   The z-interval procedure works reasonably well even when the variable is not normally distributed and the sample size i

  • YOLOv1学习记录2019-05-09 18:53:48

    之前就学过了这篇文章,发现自己根本记不住,哎还是安安静静做一条记笔记的金鱼吧。 一、综述 先看这个图,可以看出YOLO的特点快和并没要较高的准确率(和FAST R-CNN)。主要原因:作者提出了新的一种物体检测的方法YOLO,YOLO之前是通过region proposal产生大量的potential bounding boxes,

  • APRIORI2019-05-04 08:48:30

    #! -*- coding: utf-8 -*- import numpy as np class Apriori: def __init__(self, min_support, min_confidence): self.min_support = min_support # 最小支持度 self.min_confidence = min_confidence # 最小置信度 def count(self, filename=

  • apriori && fpgrowth:频繁模式与关联规则挖掘2019-04-24 12:53:31

    详细代码我放在github上:click me 一、实验说明 1.1 任务描述 1.2 数据集说明 GroceryStore数据集 This data set contains transaction records of a grocery store in a month. Each line is a transaction, where the purchased items line in {}, separated by “,” (the s

  • airtest之api、图片处理2019-02-02 17:00:59

    airetest框架   api     touch       touch((600, 500), duration=1) 长按     text: 文字输入     keyevent: 按键输入,包括(HOME/BACK/MENU等)     sleep: 等待     snapshot: 截屏     swipe(Template, vector=[0.0313, -0.481])在执行手动

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有