自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(23)
  • 收藏
  • 关注

原创 Relation Modeling in Spatio-Temporal Action Localization 技术报告翻译

报告链接https://www.youtube.com/watch?v=SEqFdkqdwlERelation Modeling in Spatio-Temporal Action Localization时空动作定位中的关系建模Abstract本文介绍了我们对 CVPR 2021 ActivityNet 研讨会 AVA-Kinetics Crossover Challenge 的解决方案。我们的解决方案利

2022-03-20 15:23:47 2710 2

原创 Actor-Context-Actor Relation Network for Spatio-Temporal Action Localization 论文翻译

论文地址:arxiv.org技术报告视频GitHub地址Actor-Context-Actor Relation Network for Spatio-Temporal Action LocalizationAbstract对人员进行定位并从视频中识别他们的行为是对高级视频理解的一项具有挑战性的任务。最近的进展是通过对实体之间的直接成对关系建模来实现的。在本文中,我们更进一步,不仅模拟了对之间的直接关系,而且还考虑了建立在多个元素上的间接高阶关系。我们建议对 Actor-Context-Actor

2022-03-17 12:08:15 2603 5

原创 【slowfast复现】SlowFast Networks for Video Recognition代码复现

2021年11月13日复现slowfast本文记录了利用大佬教程复现的过程,以及过程中遇到的问题和注意点。教程参考:https://blog.csdn.net/WhiffeYF/article/details/113527759?spm=1001.2014.3001.5501https://www.bilibili.com/video/BV1Pt4y1B7N9极链AI云平台可以用学生身份注册,会送100云币(100元)全程跟着大佬教程复现即可,注意路径问题,基本不会遇见bug。实验室服务器

2021-11-13 11:06:03 2808 2

原创 找到共同爱好

hobby1 = {'玩游戏', '看电视', '听音乐'}hobby2 = {'唱歌', '购物', '看电视'}hobby3 = {'玩游戏', '听音乐'}union1, union2, union3 = hobby1 & hobby2, hobby1 & hobby3, hobby2 & hobby3print(len(union1), len(union2), len(union3))lst = [{'姓名': 's1', '爱好': hobby1}, {'姓名'

2021-09-30 19:26:51 581

原创 随机密码生成python

import randomimport time# 生成十组密码for i in range(10): lst = [] lst = list(lst) # 每组密码有6个数 for j in range(6): lst.append(random.randint(1, 100)) # 对密码进行排序 # lst.sort() lst = tuple(lst) print(lst) print("十秒已过更改密码:

2021-09-16 19:37:41 170

原创 门牙turtle

a = (1, 2, 3, 4, 5, 6)# 如果要拔第4个牙齿a = a[:3]+a[4:]import turtle as tt.forward(200)t.circle(20, 90)t.forward(100)t.circle(20, 90)t.forward(200)t.circle(20, 90)t.forward(100)t.circle(20, 90)for i in a: t.penup() t.goto((i-1)*33,140) t

2021-09-09 18:49:04 81

原创 考级函数专项

import keywordprint(keyword.kwlist)# bool()函数将括号内参数转化为布尔值res = bool(3>1)print(res)# len()函数返回对象(字符、列表、元组等)长度或项目个数res = len('adfjiogn')print(res)# eval()函数用来执行一个字符串表达式,并返回表达式的值res = eval("3+3")print(res)# float()函数用于将整数和字符串转换成浮点数(小数)res =

2021-08-12 19:55:49 112

原创 统计成绩表

import randomlst = [random.randint(0, 100) for _ in range(100)]lst_1 = []lst_2 = []max = 0for i in lst: if i not in lst_1: print("分数:"+str(i)+" 人数:"+str(lst.count(i))) lst_1.append(i) if lst.count(i)>lst.count(max):

2021-08-11 19:15:56 86

原创 yuanyouzuoye1

import turtle as ab=["Firebrick2","Orange2","Gold1","ForestGreen","PaleTurquoise","RoyalBlue","MediumPurple"]a.left(100)for i in range(2): a.fd(200) # a.lt(70) 这个地方要转90度 a.lt(90) # a.circle(100,90) 圆的半径是200,弧度20 a.circle(200,20)

2021-08-05 19:40:00 62

原创 彩色扇子turtle

import turtle as tlst = ['red','orange','yellow','green','skyblue','blue','purple']t.left(20)for i in lst: t.fillcolor(i) t.begin_fill() t.forward(80) t.left(90) t.circle(80, 20) t.left(90) t.forward(80) t.forward(20)

2021-07-29 19:23:59 247

原创 知识问答机turtle

import turtleimport timedef init(): global question_list, answer_list, option_list, position_list, question_index, question_pen, result_pen # 题目列表 # 选项列表 # 答案列表 question_list = ['[整数在Python中是用什么表示的?]', '[怎样在Python中输出? ]', '[条

2021-07-16 11:00:37 70

原创 彩虹turtle

import turtle as tlst = ['red','orange','yellow','green','skyblue','blue','purple']size = 20pos_x = 0r = 100for i in lst: t.penup() t.goto(pos_x, 0) t.pendown() t.pensize(size) t.pencolor(i) t.left(90) t.circle(r, 180)

2021-07-15 19:08:51 94

原创 调色板turtle

import turtle as tt.speed(0)# x, y = t.pos()# a = t.xcor()# b = t.ycor()## p.setx(100)# p.sety(100)## print(x, y)p = t.Pen()def up(): # p = t.Pen() p.sety(p.ycor()+50)def up1(x,y): # p.setx(x) # p.sety(y) p.goto(x,y)c

2021-07-15 11:02:23 143

原创 计算器turtle

def isnum(c): return c not in '+-*/'def splitcal(content): numlist, oplist = [], [] start = -1 for i in range(len(content)): if isnum(content[i]) and start<0: start = i if not isnum(content[i]):

2021-07-12 10:57:36 188

原创 笑脸turtle

import turtle as tt.speed(0)def face(): t.pensize(2) t.pencolor("orange") t.fillcolor("yellow") t.begin_fill() t.circle(100) t.end_fill()def red(): for i in [-1, 1]: t.penup() t.goto(50*i, 100) t.pend

2021-07-08 09:48:05 86

原创 哆啦A梦2turtle

import turtle as tt.speed(0)def face(): t.fillcolor('blue') t.begin_fill() t.circle(100) t.end_fill() t.fillcolor('white') t.begin_fill() t.circle(80) t.end_fill()def eye(): t.fillcolor("white") for i in [-1,1]

2021-07-08 09:21:57 72

原创 哆啦A梦turtle

import turtledef face(): turtle.fillcolor('blue') turtle.begin_fill() turtle.circle(100) turtle.end_fill() turtle.fillcolor('white') turtle.begin_fill() turtle.circle(80) turtle.end_fill()def eye(): turtle.penup()

2021-07-08 08:39:27 89

原创 单词检查机

单词检查机# 设置是否检查的变量check = True# 设置生词本word_list = {"教师":"tutor","前进":"forward","后退":"backward","向左":"left","向右":"right","向右":"right"}# 设置检查本check_list = {}while check: # 将生词本赋值到检查本中 check_list = word_list.copy() # 循环比较检查本的单词,回答正确就删除生词本中的单词

2021-07-05 10:15:37 297

原创 Python程序设计 董付国 课后习题 第三章2、判断是否是闰年

判断是否是闰年闰年条件:1.年份能被400整除。2.年份能被4整除但并不能被100整除x = input('请输入4位整数,本程序将会告诉你是否闰年:')x = int(x)#将输入字符串转化为整形,不是数字程序报错运行终止if x%400 == 0 or (x%4 == 0 and x%100 != 0):#两个条件是或者关系 print('闰年')else: print('不是闰年')...

2021-03-04 19:40:58 579 1

转载 4.3二叉树的层次遍历王道数据结构例程实现

4.3二叉树的层次遍历王道数据结构例程实现#include<stdio.h>#include<stdlib.h>typedef int ElemType;#define MaxSize 50typedef struct BiTNode{ ElemType data; struct BiTNode *lchild,*rchild;} BiTN...

2019-07-28 10:25:35 576 1

转载 4.3二叉树的非递归中序遍历输出王道数据结构例程实现

王道二叉树的非递归中序遍历输出代码#include <stdio.h>#include <stdlib.h>#define MaxSize 50typedef int ElemType;typedef struct BiTNode{ ElemType data; struct BiTNode *lchild,*rchild;} BiTNode...

2019-07-26 14:09:45 336

转载 4.3二叉树的遍历王道数据例程实现

4.3二叉树的遍历王道数据例程实现#include <stdio.h>#include <stdlib.h>typedef int ElemType;typedef struct BiTNode{ ElemType data struct BiTNode *lchild,*rchild;} BiTNode,*BiTree;void PreO...

2019-07-25 12:19:22 240

转载 王道数据结构应用题1

#include<stdio.h>#include<stdlib.h>//静态分配#define MaxSize 50typedef int ElemType;typedef struct{ElemType data[MaxSize];int length;}SqList;bool Del_Min(SqList &L,ElemType &v...

2019-07-14 15:12:04 335

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除