自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 dataquest numpy

numpy.array():we can directly convert a list to an ndarray using the numpy.array()constructor.1-D:data_ndarray = np.array([5, 10, 15, 20])# because import numpy as np , using np.array instead of numpy.arrayThe NumPy library takes advantage of a proces

2020-07-23 22:45:28 106

原创 reading : Mask R-CNN(Kaiming He Georgia Gkioxari Piotr Dolla ́r Ross Girshick Facebook AI Research)

abstractmethod : Mask R-CNN在R-CNN中加入一个分支预测object mask(目标掩模)类似于加了一个分支做bounding box recognition。a small overhead to faster R-CNN,5 fpseasy to generalize to other task (eg.human pose- 姿态预测)introductionOur goal in this work is to develop a compa

2020-07-14 18:31:19 640

原创 reading : SOLO: Segmenting Objects by Locations

Abstractinstance segmentation :"detect - then - segment " like mask r-cnnin this paper: "instance categories"assigns categories to each pixel within an instance according to the instance’s location and size, thus nicely converting

2020-07-11 22:33:02 271

原创 reading : SOLO: Segmenting Objects by Locations

Abstractinstance segmentation : "detect - then - segment " like mask r-cnnin this paper: "instancecategories" assigns categories to each pixel within an instance according to the instance’s location and size, thus nicely convertin...

2020-07-11 21:36:57 244

原创 jetbrains : coffee machine stage 5 problem

list function :that is, a kind of object where you can get its elements one by one.iterable : string ,but integer is non-iterableempty listslen()list_out_of_string = list('danger!')print(list_out_of_string) # ['d', 'a', 'n', 'g', 'e', 'r', '!']

2020-07-11 17:54:31 124

原创 elif practice in jetbrains

my code:Chicken = 23Goat = 678Pig = 1296Cow = 3848Sheep = 6769money = int(input())if money < 23: print("None")elif money >= 23 and money < 678: if money < 23 * 2: print("1 chicken") else: print(money // 2..

2020-07-10 19:18:06 110

原创 stage 5 problem

user_input = input()print("Hello, " + user_input)print(input('Hello, '))print("Hello,", input())print("Hello, {0}".format(input()))i = 0x = []while True: names = input() if names == '.': break i += 1 x.append(names)prin.

2020-07-09 23:14:32 76

原创 Faster R-CNN (object detection) implemented by Keras for custom data from Google’s Open Images Datas

faster r-cnn :object detectionPASCAL VOC 2007, 2012, and MS COCO “Person”, “Car” and “Mobile phone” (Google’sOpen Images Dataset V4.)brief explanantion:r-cnn (search selective):uses 2,000 proposed areas (rectangular boxes) from search selective...

2020-07-09 17:17:11 251

原创 Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks(更快的RCNN:通过区域提议网络实现实时)

Reading: Faster R-CNN (object detection) implemented by Keras for custom data from Google’s Open Images Dataset V4notebook第一遍:abstract:how to hypothesize object location?region proposal algorithmsreduce running timesppnet /fast r-cnn shortcoming:r

2020-07-08 16:46:49 331

原创 jetbrains:coffee machine stage 4考点

def function_name(parameter1, parameter2, ...): # function's body ... return "return value"def+ function name + parameters nameAfter def, we write the name of our function (so as to invoke it later) and the names of parameters, which our fu

2020-07-08 15:39:58 166

原创 jetbrians: stage 3 project

python : jetbrains project stage 3my code inmin_water = 200min_milk = 50min_coffee_beans = 15machine_water = int(input())machine_milk = int(input())machine_coffee_beans =int(input())coffee_need_cups = int(input())water = machine_water // min_water

2020-07-06 14:35:47 136

空空如也

空空如也

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

TA关注的人

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