自定义博客皮肤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.array The NumPy library takes advantage of a proces

2020-07-23 22:45:28 164

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

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

2020-07-14 18:31:19 812

原创 reading : SOLO: Segmenting Objects by Locations

Abstract instance segmentation : "detect - then - segment " like mask r-cnn in 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 376

原创 reading : SOLO: Segmenting Objects by Locations

Abstract instance segmentation : "detect - then - segment " like mask r-cnn in 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 343

原创 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-iterable empty lists len() list_out_of_string = list('danger!') print(list_out_of_string) # ['d', 'a', 'n', 'g', 'e', 'r', '!']

2020-07-11 17:54:31 185

原创 elif practice in jetbrains

my code: Chicken = 23 Goat = 678 Pig = 1296 Cow = 3848 Sheep = 6769 money = 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 163

原创 stage 5 problem

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

2020-07-09 23:14:32 128

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

faster r-cnn :object detection PASCAL 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 337

原创 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 V4 notebook 第一遍: abstract: how to hypothesize object location? region proposal algorithms reduce running time sppnet /fast r-cnn shortcoming: r

2020-07-08 16:46:49 404

原创 jetbrains:coffee machine stage 4考点

def function_name(parameter1, parameter2, ...): # function's body ... return "return value" def+ function name + parameters name After 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 229

原创 jetbrians: stage 3 project

python : jetbrains project stage 3 my code in min_water = 200 min_milk = 50 min_coffee_beans = 15 machine_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 180

空空如也

空空如也

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

TA关注的人

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