CS231n学习笔记-Python&Numpy学习

NumpyPython下一个非常强大的库。在这篇笔记里我将会把CS231n课程用到的一些PythonNumpy的用法用通俗易懂的语言和例子记录下来,方便自己复习也方便他人学习。这里附上Numpy官方链接

1.enumerate:不是单纯的打印内容,枚举的时候还会加上index

>>> classes = ['plane', 'car', 'bird', 'cat', 'deer', 'dog', 'frog', 'horse', 'ship', 'truck']
>>> for y, cls in enumerate(classes):
...    print y, cls

0 plane
1 car
2 bird
3 cat
4 deer
5 dog
6 frog
7 horse
8 ship
9 truck

2.np.flatnonzero():打印非零元素的下标,具体如下

>>> x = np.arange(-2, 3)
>>> x
array([-2, -1,  0,  1,  2])
>>> np.flatnonzero(x)
array([0, 1, 3, 4])

3.numpy.random.randint(low, high=None, size=None, dtype='l'):打印[low,high)之间的整数;如果high没有定义,那么就从[0,low)

>>> np.random.randint(2, size=10)
array([1, 0, 0, 0, 1, 1, 0, 0, 1, 0])

>>> np.random.randint(1, size=10)
array([0, 0, 0, 0, 0, 0, 0, 0, 0, 0])

#If high is None (the default), then results are from [0, low).
#如果high没有定义,那么就默认从[0,low)

>>> np.random.randint(5, size=(2, 4))
array([[4, 0, 2, 1],
       [3, 2, 2, 0]])

4.numpy.random.choice(a, size=None, replace=True, p=None)

参数说明
a : 1-D array-like or int
If an ndarray, a random sample is generated from its elements.
If an int, the random sample is generated as if a was np.arange(n)
如果a是矩阵,那么结果就是从矩阵a中随机挑size个数出来重新生成array
如果a是一个数,那就从np.arange(a)中随机挑size个数出来重新生成array

size : int or tuple of ints, optional

replace : boolean, optional
Whether the sample is with or without replacement

p : 1-D array-like, optional
The probabilities associated with each entry in a. If not given the sample assumes a uniform distribution over all entries in a.

>>> np.random.choice(5, 3)
array([0, 3, 4])
#a : If an ndarray, a random sample is generated from its elements. 
#If an int, the random sample is generated as if a was np.arange(n)
#This is equivalent to np.random.randint(0,5,3)
#从arange(5)里面挑选3个出来

这个参数里面有个replacement看不明白,差了半天,终于在StackOverflow上面找到了答案。A&Q如下

Q:What does replacement mean in numpy.random.choice?

A:It controls whether the sample is returned to the sample pool. If you want only unique samples then this should be false.

大致意思就是如果想要生成的是不重复的,请设置replace = False


5.numpy.reshape(a, newshape, order='C'):当newshape里面出现了-1

>>> a = np.array([[1,2,3], [4,5,6]])
>>> np.reshape(a, (3,-1))       # the unspecified value is inferred to be 2
array([[1, 2],
       [3, 4],
       [5, 6]])

讲下新用法,给出一个mn的矩阵,如果newshape给的参数是(x, -1),那么函数会自动判别newshape为(x, mn/x),这里的x一定要能被mn整除!*


6.numpy.sum(a,axis = )
平日里一直以为axis = 1 是按照列相加的,以前一直记错了,其实是按照行相加的,然后重新生成一个数组。


7.numpy.argsort():常见用法,遇到很多numpy输出的都是下标,这个也不例外!!!

>>> a = numpy.array([1,2,0,5,3])
>>> numpy.argsort(a)
array([2, 0, 1, 4, 3], dtype=int64)
>>> a[numpy.argsort(a)]
array([0, 1, 2, 3, 5])

np.argsort(a)的结果仅仅是下标!a[np.argsort(a)]的结果才是最终排好序的结果。


8.U1 = np.random.rand(*H1.shape) < p

乖乖,我孤陋寡闻了,以前都没见到过加*号的

>>> np.random.rand(a.shape)
Traceback (most recent call last):

  File "<ipython-input-10-596e2a7492cd>", line 1, in <module>
    np.random.rand(a.shape)

  File "mtrand.pyx", line 1623, in mtrand.RandomState.rand (numpy\random\mtrand\mtrand.c:17636)

  File "mtrand.pyx", line 1143, in mtrand.RandomState.random_sample (numpy\random\mtrand\mtrand.c:13908)

  File "mtrand.pyx", line 163, in mtrand.cont0_array (numpy\random\mtrand\mtrand.c:2055)

TypeError: an integer is required

>>> np.random.rand(*a.shape)
array([ 0.10049452,  0.49159476,  0.3668072 ])

经过这两步,就清清楚楚了。np.random.rand()括号里加的是个int型的数,而a.shape结果并不是一个int型的数,这时候就要在a.shape前面加个*号了。


9.numpy.binicount(x, weight = None, minlength = None)

>>> x = np.array([0, 1, 1, 3, 2, 1, 7])
>>> np.bincount(x)
array([1, 3, 1, 1, 0, 0, 0, 1])

我们可以看到x中最大的数为7,因此结果的长度是7+1个
索引0(数0)出现了1次,索引1(数1)出现了3次......索引5(数5)出现了0次......


暂时写到这里,以后有用到其他numpy不常见的用法都会在这个笔记下面补充。

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,324评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,303评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,192评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,555评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,569评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,566评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,927评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,583评论 0 257
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,827评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,590评论 2 320
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,669评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,365评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,941评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,928评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,159评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,880评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,399评论 2 342

推荐阅读更多精彩内容