 image from [unsplash](https://images.unsplash.com/photo-1488229297570-58520851e868?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1649&q=80) by Joshua Sortino 机器学习中我们需要对多维度的数据进行处理,所以搞清楚数据的维度以及numpy 和 tensorflow 对于维度的定义就非常关键了。这里我们以 numpy 为例,因为 Tensorflow 的数据格式与 numpy 类似。 ### 1. Axis的数量即为数据的维度 在数学和物理中,维度通常被解释为空间中描述一个位置所需的最少坐标个数(基底的位数)。然而在 numpy 中 axis 的个数就是数据的维度,体现在具体数据上就是**括号的层数**。 ```python >>> import numpy as np >>> a = np.array([[1,2,3],[4,5,6],[7,8,9]]) >>> a array([[1, 2, 3], [4, 5, 6], [7, 8, 9]]) ``` 举个例子a,看似一个3x3的三维矩阵,然而,实际上只有两层括号的嵌套,所以a只有两个维度,也即两个axis。只不过每个axis的长度为3。 ```python >>> a.shape (3, 3) ``` 我们要引用"5"这个元素,只需要索引axis[0] = 1,axis[1] = 1 即 ```python >>> a[1,1] 5 ``` ### 2. 从内到外"扒开"张量 要写一个高维度的数据还是比较麻烦,不过我们可以用rehape,将一个4x3的**二维**张量转换成一个2x2x3 的**三维**张量,注意这里: 4x3 = 2x2x3 ```python >>> b=np.array([[1,4,8],[2,3,5],[2,5,1],[1,10,7]]) >>> b.shape (4, 3) >>> b=b.reshape(2,2,3) >>> b array([[[ 1, 4, 8], [ 2, 3, 5]], [[ 2, 5, 1], [ 1, 10, 7]]]) >>> b.shape (2, 2, 3) ``` 我发现,要引用一个元素,比如'7',从内到外"扒开"来看,通常比较容易。**最内层**的括号 "7"排在第3个,即axis[2] = 2;**中间层**"7",所在的括号排在第2个,即 axis[1] = 1;**最外层**"7"所嵌套的括号排在第2个,即axis[0] = 1。所以要引用"7" 这个元素,我们需要 ```python >>> b[1,1,2] 7 ``` ### 3. 对axis进行操作 在 numpy 中队axis = n 的操作,即是对第n层(n从0开始)的操作。我们这里以 sum 求和函数为例。同样的从内到外理解 sum 是如何对不同 axis (层) 进行操作的。 ```python >>> b array([[[ 1, 4, 8], [ 2, 3, 5]], [[ 2, 5, 1], [ 1, 10, 7]]]) ``` 首先如果对**最内层** (axis = -1 或 2)操作,可以想象,将最内层括号内的元素进行"**挤压**",**"挤压"**(求和)后最内层括号消失即: > [ 1, 4, 8] —> 13 > > [ 2, 3, 5] —> 10 > > [ 2, 5, 1] —> 8 > > [ 1, 10, 7] —> 18 同时外层结构(括号嵌套)不变 ```python >>> b.sum(axis = 2) array([[13, 10], [ 8, 18]]) ``` 对**中间层** (axis = 1)的操作,即可以想象,将中间层括号内的元素进行"挤压",完成后,中间层括号消失。 > [ 1, 4, 8] + [ 2, 3, 5] —> [ 3, 7, 13] > > [ 2, 5, 1] + [ 1, 10, 7]—>[ 3, 15, 8] 同时内层和外层结构(括号嵌套)不变 ```python >>> b.sum(axis = 1) array([[ 3, 7, 13], [ 3, 15, 8]]) ``` 对**最外层**(axis = 0)的操作,即可以想象,将最外层内的元素进行"挤压",完成后,最外层括号消失。 > [[ 1, 4, 8], [ 2, 3, 5]] + [[ 2, 5, 1], [ 1, 10, 7]] —>[[ 3, 7, 13],[ 3, 15, 8]] 同时内两层结构(括号嵌套)不变 ```python >>> b.sum(axis = 1) array([[ 3, 7, 13], [ 3, 15, 8]]) ``` ### 4. 总结 刚开始接触 axis 操作的时候与大多数人理解一样,axis = 0 即代表往跨行操作,axis = 1即代表往跨列操作。这种理解方式仅对二维矩阵有效,遇到高维张量就束手无策了。希望今天介绍的这种从内到外"扒开"张量的理解方式对读者有所启发。 ------ 同步到我的简书 https://www.jianshu.com/u/bd506afc6fc1
author | hongtao |
---|---|
permlink | numpy-tensorflow-axis |
category | cn-stem |
json_metadata | {"community":"busy","app":"busy/2.5.6","format":"markdown","tags":["cn-stem","numpy","tensorflow","matrix","busy"],"users":[],"links":["https://images.unsplash.com/photo-1488229297570-58520851e868?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1649&q=80","https://www.jianshu.com/u/bd506afc6fc1"],"image":["https://ipfs.busy.org/ipfs/QmenrrLAVzm6bFTjeKfrsoNbk9ZHTEjKQscoregsMERcFU"]} |
created | 2019-06-12 15:31:42 |
last_update | 2019-06-13 08:57:57 |
depth | 0 |
children | 2 |
last_payout | 2019-06-19 15:31:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.004 HBD |
curator_payout_value | 0.610 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2,507 |
author_reputation | 3,241,267,862,629 |
root_title | 深入理解Numpy和Tensorflow中的Axis操作 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,506,193 |
net_rshares | 4,453,844,218,501 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wackou | 0 | 70,007,346,856 | 1.29% | ||
tombstone | 0 | 25,926,525,718 | 0.1% | ||
delegate.lafona | 0 | 391,445,361,390 | 20% | ||
drifter1 | 0 | 203,762,114 | 2.16% | ||
lola-carola | 0 | 212,886,676 | 2.16% | ||
kevinwong | 0 | 42,040,723,271 | 0.5% | ||
anwenbaumeister | 0 | 181,173,662 | 4.32% | ||
mammasitta | 0 | 1,299,125,437 | 0.21% | ||
jesse5th | 0 | 64,781,186 | 50% | ||
liberosist | 0 | 1,176,382,444 | 4.32% | ||
arconite | 0 | 128,177,930 | 0.25% | ||
psygambler | 0 | 243,594,952 | 2.16% | ||
lemouth | 0 | 52,737,176,088 | 10% | ||
tumutanzi | 0 | 3,616,275,260 | 0.5% | ||
rwilday | 0 | 51,679,148 | 100% | ||
lamouthe | 0 | 11,776,753,762 | 20% | ||
uceph | 0 | 354,010,356 | 100% | ||
justyy | 0 | 45,451,599,407 | 2% | ||
whoib | 0 | 524,747,785 | 70% | ||
curie | 0 | 1,326,199,311,698 | 4.32% | ||
hendrikdegrote | 0 | 55,320,656,178 | 4.32% | ||
vact | 0 | 80,142,297,290 | 4.32% | ||
steemstem | 0 | 828,657,159,648 | 20% | ||
dashfit | 0 | 429,966,591 | 2.16% | ||
gangstayid | 0 | 96,369,845 | 2.16% | ||
busy.org | 0 | 35,148,428 | 0.33% | ||
vodonik | 0 | 82,508,536 | 6.6% | ||
dna-replication | 0 | 5,671,438,412 | 20% | ||
gmedley | 0 | 281,208,517 | 2.16% | ||
coldhair | 0 | 1,151,090,190 | 0.5% | ||
moksamol | 0 | 165,600,544 | 2.16% | ||
getrichordie | 0 | 136,522,324 | 2.16% | ||
thatsweeneyguy | 0 | 66,503,076 | 2.16% | ||
szokerobert | 0 | 114,141,325 | 0.86% | ||
bloom | 0 | 74,726,444,728 | 20% | ||
eurogee | 0 | 73,857,714 | 2% | ||
kryzsec | 0 | 145,836,420 | 16% | ||
jiujitsu | 0 | 1,695,919,516 | 2.16% | ||
lekang | 0 | 582,903,016 | 2.16% | ||
helo | 0 | 23,456,686,140 | 10% | ||
samminator | 0 | 10,187,777,918 | 10% | ||
wishmaiden | 0 | 31,899,196 | 5% | ||
zerotoone | 0 | 420,841,382 | 2.16% | ||
locikll | 0 | 3,385,761,039 | 8.64% | ||
kjaeger | 0 | 54,806,798 | 50% | ||
mahdiyari | 0 | 17,711,284,789 | 10% | ||
lorenzor | 0 | 5,929,950,349 | 50% | ||
aboutyourbiz | 0 | 729,251,768 | 4.32% | ||
giuato | 0 | 131,620,785 | 2.16% | ||
alexander.alexis | 0 | 10,654,885,035 | 20% | ||
jayna | 0 | 495,474,050 | 0.64% | ||
suesa | 0 | 38,608,241,520 | 25% | ||
cryptokrieg | 0 | 744,582,959 | 4.32% | ||
rival | 0 | 2,232,587,263 | 2% | ||
tensor | 0 | 3,128,801,082 | 2.16% | ||
slickhustler007 | 0 | 172,041,484 | 4.32% | ||
corsica | 0 | 9,194,187,414 | 20% | ||
makrotheblack | 0 | 99,650,430 | 2.16% | ||
ludmila.kyriakou | 0 | 413,326,683 | 6% | ||
fancybrothers | 0 | 342,275,197 | 6% | ||
allcapsonezero | 0 | 2,120,408,980 | 2.16% | ||
howo | 0 | 31,100,066,468 | 10% | ||
tsoldovieri | 0 | 1,456,975,584 | 10% | ||
nitego | 0 | 88,029,259 | 1.29% | ||
neumannsalva | 0 | 649,991,651 | 2.16% | ||
wargof | 0 | 196,909,331 | 10% | ||
abigail-dantes | 0 | 346,449,490,625 | 20% | ||
timemaster | 0 | 0 | 26% | ||
phogyan | 0 | 78,752,791 | 2.16% | ||
esteemguy | 0 | 211,005,973 | 20% | ||
zonguin | 0 | 1,235,902,303 | 5% | ||
alexzicky | 0 | 7,589,902,898 | 5% | ||
mountain.phil28 | 0 | 3,600,893,195 | 25% | ||
jasonbu | 0 | 11,213,887,148 | 25% | ||
coolbuddy | 0 | 0 | 1% | ||
tuoficinavirtual | 0 | 98,084,588 | 25% | ||
iamphysical | 0 | 24,231,964,052 | 90% | ||
zest | 0 | 3,891,450,696 | 10% | ||
felixrodriguez | 0 | 573,837,743 | 10% | ||
azulear | 0 | 767,645,141 | 100% | ||
felicenavidad | 0 | 201,225,809 | 50% | ||
psicoluigi | 0 | 374,782,538 | 50% | ||
lmon | 0 | 4,577,468,395 | 50% | ||
massivevibration | 0 | 3,102,564,825 | 5% | ||
accelerator | 0 | 5,726,231,903 | 0.33% | ||
eurodale | 0 | 185,007,152 | 2.16% | ||
clweeks | 0 | 130,349,282 | 2.59% | ||
joshman | 0 | 1,413,618,294 | 0.3% | ||
superbing | 0 | 692,672,164 | 6.71% | ||
dokter-purnama | 0 | 257,743,236 | 2.16% | ||
erikkun28 | 0 | 0 | 1% | ||
cryptononymous | 0 | 455,408,579 | 2.16% | ||
dailystats | 0 | 2,112,637,814 | 6.82% | ||
gotgame | 0 | 80,086,440 | 2.16% | ||
poodai | 0 | 152,101,314 | 2.16% | ||
markmorbidity | 0 | 93,757,234 | 2.16% | ||
cryptocurrencyhk | 0 | 345,811,647 | 20% | ||
emdesan | 0 | 140,081,182 | 10% | ||
peaceandwar | 0 | 607,681,493 | 2.16% | ||
enzor | 0 | 311,145,809 | 10% | ||
joendegz | 0 | 259,053,975 | 2.16% | ||
florian-glechner | 0 | 184,595,350 | 0.43% | ||
jesusj1 | 0 | 73,894,877 | 100% | ||
lekosvapenglass | 0 | 69,922,554 | 40% | ||
carloserp-2000 | 0 | 37,328,649,441 | 100% | ||
carlos84 | 0 | 1,026,082,949 | 10% | ||
gra | 0 | 7,744,043,805 | 20% | ||
jianan | 0 | 1,069,428,205 | 6.96% | ||
imisstheoldkanye | 0 | 2,415,549,358 | 1% | ||
aalok | 0 | 105,700,782 | 26% | ||
shivagangula | 0 | 8,654,088 | 25% | ||
attoan.cmt | 0 | 50,008,187 | 2.16% | ||
cnbuddy | 0 | 12,330,892,531 | 1% | ||
nicole-st | 0 | 232,953,643 | 2.16% | ||
teukurival | 0 | 95,858,629 | 2.16% | ||
authorcolinbmw | 0 | 193,189,746 | 70% | ||
drmake | 0 | 2,299,509,990 | 2.16% | ||
anxin | 0 | 110,814,354 | 7.22% | ||
guga34 | 0 | 327,683,846 | 15% | ||
pechichemena | 0 | 103,592,255 | 0.86% | ||
amestyj | 0 | 6,161,703,954 | 100% | ||
sandracarrascal | 0 | 145,597,245 | 100% | ||
bitinvdig0 | 0 | 535,629,499 | 24% | ||
skycae | 0 | 531,260,509 | 4.32% | ||
xanderslee | 0 | 202,608,303 | 4.32% | ||
egotheist | 0 | 186,056,318 | 2% | ||
gerel | 0 | 72,828,314 | 2.16% | ||
kenadis | 0 | 4,683,876,746 | 20% | ||
esaia.mystic | 0 | 157,005,356 | 4.32% | ||
maticpecovnik | 0 | 2,934,920,454 | 8% | ||
funtraveller | 0 | 3,251,478,382 | 1% | ||
robotics101 | 0 | 1,759,149,666 | 20% | ||
tristan-muller | 0 | 80,198,661 | 20% | ||
steemerscare | 0 | 55,596,731 | 100% | ||
gentleshaid | 0 | 2,812,478,877 | 10% | ||
thescubageek | 0 | 241,068,274 | 2.16% | ||
fejiro | 0 | 216,312,225 | 10% | ||
nunesso | 0 | 35,738,796,028 | 50% | ||
ledjo1991 | 0 | 64,594,167 | 50% | ||
danaedwards | 0 | 421,909,275 | 4.32% | ||
ivymalifred | 0 | 1,966,645,447 | 50% | ||
sco | 0 | 19,473,899,935 | 20% | ||
douglimarbalzan | 0 | 422,774,568 | 100% | ||
ennyta | 0 | 961,318,569 | 50% | ||
rharphelle | 0 | 100,266,400 | 25% | ||
gordon92 | 0 | 274,535,622 | 2.16% | ||
bitcoinportugal | 0 | 74,881,477 | 2.16% | ||
stahlberg | 0 | 924,109,555 | 2.16% | ||
gabrielatravels | 0 | 378,773,321 | 1.08% | ||
cordeta | 0 | 74,947,997 | 2.16% | ||
reizak | 0 | 330,740,123 | 1.72% | ||
vjap55 | 0 | 247,852,299 | 100% | ||
zlatkamrs | 0 | 211,863,863 | 4.1% | ||
monie | 0 | 520,581,738 | 100% | ||
eliaschess333 | 0 | 11,641,374,384 | 50% | ||
shoganaii | 0 | 270,968,828 | 10% | ||
darkiche | 0 | 76,730,472 | 10% | ||
ydavgonzalez | 0 | 458,299,094 | 5% | ||
payger | 0 | 79,856,651 | 2.16% | ||
langford | 0 | 356,813,011 | 20% | ||
mattiarinaldoni | 0 | 0 | 1% | ||
irisworld | 0 | 87,805,668 | 2.16% | ||
mathowl | 0 | 4,628,436,514 | 10% | ||
shinedojo | 0 | 435,242,250 | 4.32% | ||
hongtao | 0 | 2,826,057,992 | 97% | ||
gaming.yer | 0 | 494,548,622 | 100% | ||
maiyude | 0 | 156,033,489 | 0.5% | ||
suesa-random | 0 | 12,796,960,385 | 50% | ||
steem-familia | 0 | 492,919,492 | 100% | ||
terrylovejoy | 0 | 3,362,687,209 | 8% | ||
onepracticalcat | 0 | 38,744,557 | 50% | ||
jcalero | 0 | 133,785,171 | 4.32% | ||
wisewoof | 0 | 118,979,641 | 2.16% | ||
marc-allaria | 0 | 476,503,855 | 2.16% | ||
olajidekehinde | 0 | 81,822,455 | 10% | ||
real2josh | 0 | 153,135,951 | 10% | ||
steepup | 0 | 536,950,541 | 8% | ||
gribouille | 0 | 636,561,537 | 20% | ||
traviseric | 0 | 248,727,760 | 50% | ||
woolfe19861008 | 0 | 89,192,803 | 7.24% | ||
yrmaleza | 0 | 375,153,576 | 50% | ||
stemng | 0 | 6,632,628,015 | 10% | ||
mininthecity | 0 | 176,240,628 | 3.45% | ||
kingabesh | 0 | 301,663,100 | 10% | ||
evangelista.yova | 0 | 485,135,253 | 100% | ||
miguelangel2801 | 0 | 796,864,349 | 50% | ||
dailychina | 0 | 2,007,722,166 | 6.75% | ||
didic | 0 | 2,381,436,306 | 2.16% | ||
jenniferjulieth | 0 | 415,322,221 | 100% | ||
operahoser | 0 | 293,401,109 | 0.64% | ||
therosepatch | 0 | 120,968,246 | 50% | ||
emiliomoron | 0 | 6,642,429,996 | 50% | ||
galam | 0 | 73,245,370 | 7% | ||
dexterdev | 0 | 954,910,049 | 10% | ||
intellihandling | 0 | 3,608,801,443 | 50% | ||
nwjordan | 0 | 611,299,683 | 4.32% | ||
oghie | 0 | 493,730,908 | 50% | ||
geopolis | 0 | 1,302,570,567 | 20% | ||
ajfernandez | 0 | 262,754,256 | 100% | ||
dongfengman | 0 | 619,752,368 | 7.22% | ||
robertbira | 0 | 2,114,633,784 | 5% | ||
bearded-benjamin | 0 | 59,432,109,983 | 50% | ||
teekingtv | 0 | 501,881,028 | 5% | ||
alexdory | 0 | 1,014,714,904 | 8% | ||
vegan.niinja | 0 | 243,610,572 | 2.16% | ||
aotearoa | 0 | 163,717,173 | 4.32% | ||
flugschwein | 0 | 5,107,806,795 | 19% | ||
cyprianj | 0 | 871,366,058 | 20% | ||
francostem | 0 | 2,751,212,193 | 20% | ||
ivan-g | 0 | 532,735,581 | 2.16% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
tajstar | 0 | 64,885,295 | 100% | ||
croctopus | 0 | 1,484,231,823 | 100% | ||
ingmarvin | 0 | 430,111,340 | 100% | ||
joelagbo | 0 | 133,356,437 | 5% | ||
emmanuel293 | 0 | 99,881,957 | 25% | ||
cryptofuwealth | 0 | 52,585,731 | 11% | ||
ethanlee | 0 | 162,569,982 | 6.09% | ||
scorpil | 0 | 250,487,180 | 100% | ||
norwegianbikeman | 0 | 83,113,832 | 2.16% | ||
ambitiouslife | 0 | 224,745,195 | 2.16% | ||
tomastonyperez | 0 | 14,114,765,785 | 50% | ||
bil.prag | 0 | 140,717,841 | 0.21% | ||
elvigia | 0 | 10,856,200,379 | 50% | ||
scoora82 | 0 | 276,463,507 | 24% | ||
lesmouths-travel | 0 | 976,506,185 | 13% | ||
ezravandi | 0 | 4,734,411,696 | 3.5% | ||
cjunros | 0 | 99,580,172 | 2.16% | ||
markko | 0 | 66,381,372 | 100% | ||
effofex | 0 | 1,542,114,306 | 10% | ||
luiscd8a | 0 | 433,158,336 | 80% | ||
samlee2018 | 0 | 59,057,796 | 50% | ||
eniolw | 0 | 301,344,504 | 5% | ||
de-stem | 0 | 8,396,423,883 | 19.8% | ||
elsll | 0 | 75,169,424 | 4.32% | ||
geadriana | 0 | 690,031,529 | 15% | ||
elpdl | 0 | 527,832,358 | 100% | ||
derbesserwisser | 0 | 173,623,896 | 100% | ||
serylt | 0 | 3,910,578,094 | 19.6% | ||
bavi | 0 | 126,477,006 | 2.16% | ||
berien | 0 | 110,537,155 | 2.16% | ||
misia1979 | 0 | 376,505,188 | 2.16% | ||
josedelacruz | 0 | 7,146,265,620 | 50% | ||
joseangelvs | 0 | 1,672,000,781 | 100% | ||
viannis | 0 | 530,327,844 | 50% | ||
mariusfebruary | 0 | 187,417,184,601 | 1.29% | ||
majapesi | 0 | 249,834,657 | 50% | ||
erickyoussif | 0 | 893,151,444 | 100% | ||
michaelwrites | 0 | 229,616,087 | 10% | ||
deholt | 0 | 824,283,388 | 17% | ||
goodway | 0 | 148,116,004 | 1% | ||
ntowl | 0 | 326,372,526 | 1.29% | ||
nigerian-yogagal | 0 | 72,101,817 | 2.16% | ||
temitayo-pelumi | 0 | 1,522,135,095 | 20% | ||
b3d | 0 | 398,914,558 | 100% | ||
andrick | 0 | 862,595,915 | 50% | ||
sweet-jenny8 | 0 | 1,222,940,194 | 7.22% | ||
yusvelasquez | 0 | 1,640,780,684 | 50% | ||
doctor-cog-diss | 0 | 502,653,933 | 20% | ||
alexworld | 0 | 437,701,819 | 25% | ||
gracelbm | 0 | 199,280,072 | 2.16% | ||
frost1903 | 0 | 47,558,921 | 50% | ||
avizor | 0 | 134,603,758 | 2.16% | ||
acont | 0 | 1,241,228,836 | 50% | ||
niouton | 0 | 159,919,868 | 0.86% | ||
elimao | 0 | 422,363,417 | 100% | ||
schroders | 0 | 1,636,968,068 | 1.29% | ||
anaestrada12 | 0 | 22,131,875,947 | 100% | ||
steemzeiger | 0 | 474,322,448 | 19.8% | ||
melissaofficial | 0 | 1,849,885,868 | 4.32% | ||
yorgermadison | 0 | 342,838,968 | 100% | ||
juliocaraballo | 0 | 67,344,443 | 50% | ||
moneybaby | 0 | 741,199,990 | 5% | ||
urme33 | 0 | 455,171,221 | 1% | ||
antunez25 | 0 | 422,276,262 | 100% | ||
haf67 | 0 | 375,383,950 | 100% | ||
chavas | 0 | 456,776,509 | 100% | ||
longer | 0 | 263,804,944 | 50% | ||
blewitt | 0 | 1,819,403,648 | 0.3% | ||
kafupraise | 0 | 78,139,187 | 34% | ||
biomimi | 0 | 189,908,754 | 40% | ||
ibk-gabriel | 0 | 121,868,651 | 10% | ||
drsensor | 0 | 1,710,825,274 | 8% | ||
mrnightmare89 | 0 | 3,123,660,871 | 26% | ||
ilovecryptopl | 0 | 574,805,105 | 3.45% | ||
purelyscience | 0 | 117,631,595 | 10% | ||
eglinson | 0 | 323,739,333 | 100% | ||
uzcateguiazambra | 0 | 439,958,929 | 100% | ||
yomismosoy | 0 | 224,713,687 | 50% | ||
casiloko | 0 | 250,510,664 | 50% | ||
bflanagin | 0 | 913,446,630 | 2.16% | ||
ubaldonet | 0 | 6,552,908,081 | 65% | ||
sina-adventure | 0 | 708,913,029 | 50% | ||
hljk | 0 | 283,047,646 | 100% | ||
asmeira | 0 | 504,090,041 | 100% | ||
garrillo | 0 | 331,338,137 | 100% | ||
yestermorrow | 0 | 1,891,843,131 | 6% | ||
acousticguitar | 0 | 1,237,920,867 | 50% | ||
laiyuehta | 0 | 92,978,875 | 5.05% | ||
hansmast | 0 | 297,792,210 | 2.16% | ||
turtlegraphics | 0 | 548,998,022 | 6.73% | ||
wstanley226 | 0 | 69,056,951 | 50% | ||
anttn | 0 | 12,882,801,660 | 10% | ||
reinaseq | 0 | 5,663,989,557 | 100% | ||
suasteguimichel | 0 | 60,530,703 | 50% | ||
yaelg | 0 | 2,452,048,017 | 5% | ||
pfernandezpetit | 0 | 346,378,991 | 100% | ||
mgarrillogonzale | 0 | 392,718,146 | 100% | ||
rubenp | 0 | 528,389,528 | 100% | ||
jeferc | 0 | 527,238,275 | 100% | ||
clement.poiret | 0 | 171,209,862 | 4.32% | ||
loveforlove | 0 | 173,202,185 | 10% | ||
lupafilotaxia | 0 | 23,511,439,732 | 100% | ||
fran.frey | 0 | 2,964,085,184 | 50% | ||
perpetuum-lynx | 0 | 421,797,273 | 19.6% | ||
alaiza | 0 | 447,628,036 | 100% | ||
jrevilla | 0 | 99,203,699 | 50% | ||
annaabi | 0 | 275,583,186 | 2.16% | ||
abraham10 | 0 | 63,581,066 | 82% | ||
alfonzoasdrubal | 0 | 550,271,822 | 100% | ||
emperorhassy | 0 | 578,448,974 | 10% | ||
smartkid809 | 0 | 72,943,022 | 32% | ||
squinty | 0 | 369,888,280 | 100% | ||
moniroy | 0 | 403,538,867 | 50% | ||
skorup87 | 0 | 15,807,472 | 11% | ||
trang | 0 | 374,977,573 | 2.16% | ||
stem-espanol | 0 | 86,355,755,061 | 100% | ||
praditya | 0 | 1,406,818,231 | 24% | ||
rishhk | 0 | 69,487,714 | 15% | ||
lapp | 0 | 449,146,088 | 100% | ||
steemtpistia | 0 | 448,645,364 | 100% | ||
crassipes | 0 | 448,883,634 | 100% | ||
yashshah991 | 0 | 64,862,850 | 50% | ||
gbemy | 0 | 69,898,715 | 20% | ||
aleestra | 0 | 2,697,662,408 | 100% | ||
rhethypo | 0 | 169,609,152 | 2.16% | ||
predict-crypto | 0 | 94,662,467 | 0.08% | ||
macoolette | 0 | 10,984,350,304 | 2.16% | ||
javier.dejuan | 0 | 4,424,471,327 | 20% | ||
witnesstools | 0 | 522,397,662 | 6.7% | ||
sincensura | 0 | 1,017,943,327 | 100% | ||
sciencetech | 0 | 78,396,562 | 2% | ||
faithfullwills | 0 | 67,136,903 | 85% | ||
agrovision | 0 | 449,145,776 | 100% | ||
hirally | 0 | 441,800,001 | 100% | ||
emynb | 0 | 336,301,167 | 100% | ||
embot | 0 | 437,059,935 | 100% | ||
fanta-steem | 0 | 404,906,588 | 30% | ||
cryptorunway | 0 | 63,430,590 | 50% | ||
desikaamukkahani | 0 | 85,292,125 | 4.32% | ||
reverseacid | 0 | 339,012,618 | 2.16% | ||
giulyfarci52 | 0 | 1,658,283,272 | 50% | ||
darklands | 0 | 1,774,162,033 | 1% | ||
ilovecoding | 0 | 518,387,513 | 6.7% | ||
nmcdougal94 | 0 | 208,229,969 | 2.16% | ||
ambercookie | 0 | 74,560,450 | 90% | ||
alvin0617 | 0 | 198,980,233 | 2.16% | ||
solarphasing | 0 | 385,013,694 | 5% | ||
cherryandberry | 0 | 0 | 5% | ||
stem.witness | 0 | 16,816,819,854 | 20% | ||
empressteemah | 0 | 97,289,147 | 5% | ||
xuhi | 0 | 62,821,487 | 50% | ||
hdu | 0 | 2,157,687,504 | 2% | ||
anthive | 0 | 67,211,510 | 50% | ||
steemexpress | 0 | 1,770,699,275 | 3.06% | ||
andiblok | 0 | 63,539,906 | 25% | ||
steemfuckeos | 0 | 325,435,184 | 6.71% | ||
double-negative | 0 | 517,907,249 | 20% | ||
alex-hm | 0 | 1,236,232,265 | 50% | ||
wilmer14molina | 0 | 1,015,810,930 | 50% | ||
eugenialobo | 0 | 502,681,499 | 100% | ||
ballesteroj | 0 | 364,965,760 | 100% | ||
jcmontilva | 0 | 462,915,013 | 100% | ||
rodriguezr | 0 | 387,404,223 | 100% | ||
marbely20 | 0 | 435,259,692 | 100% | ||
moyam | 0 | 529,108,129 | 100% | ||
emilycg | 0 | 381,465,962 | 100% | ||
darys | 0 | 464,547,983 | 100% | ||
sibaja | 0 | 471,947,566 | 100% | ||
balcej | 0 | 529,036,781 | 100% | ||
lmanjarres | 0 | 449,186,964 | 100% | ||
anaka | 0 | 526,011,374 | 100% | ||
benhurg | 0 | 529,113,738 | 100% | ||
judisa | 0 | 526,935,035 | 100% | ||
juddarivv | 0 | 529,107,364 | 100% | ||
mariamo | 0 | 411,037,195 | 100% | ||
kimmorales | 0 | 454,899,222 | 100% | ||
loraine25 | 0 | 434,868,039 | 100% | ||
kingnosa | 0 | 68,864,001 | 50% | ||
pamahdoo | 0 | 149,407,439 | 50% | ||
reedhhw | 0 | 50,057,517 | 50% | ||
delabo | 0 | 2,624,929,097 | 1% | ||
priyankachauhan | 0 | 180,097,334 | 3.45% | ||
cameravisual | 0 | 15,764,147,860 | 50% | ||
amin-ove | 0 | 110,900,820 | 50% | ||
goodcontentbot | 0 | 72,306,907 | 50% | ||
huilco | 0 | 528,764,754 | 100% | ||
hanyseek | 0 | 55,158,909 | 50% | ||
cerd26 | 0 | 84,613,296 | 100% | ||
herculean | 0 | 61,482,121 | 50% | ||
naythan | 0 | 91,666,843 | 2.16% | ||
combatsports | 0 | 1,527,380,958 | 4.32% | ||
allthetimer | 0 | 110,109,651 | 98% | ||
alexgamer | 0 | 110,860,902 | 50% | ||
donasys | 0 | 49,813,011 | 50% | ||
breakout101 | 0 | 793,618,358 | 2.16% | ||
mtfmohammad | 0 | 99,918,167 | 25% | ||
cleiver | 0 | 50,447,389 | 50% | ||
thewhalehunter | 0 | 53,247,881 | 50% | ||
chrisluke | 0 | 110,428,776 | 26% | ||
joannar | 0 | 115,430,655 | 25% | ||
pflanzenlilly | 0 | 249,216,424 | 50% | ||
sapphire.app | 0 | 423,520,792 | 50% | ||
nicephoto | 0 | 887,901,820 | 3.45% | ||
sumotori | 0 | 428,124,847 | 75% | ||
naturalproducts | 0 | 704,433,179 | 25% | ||
smalltall | 0 | 765,229,103 | 20% | ||
alexmonster | 0 | 100,528,938 | 50% | ||
smdragon | 0 | 111,739,058 | 50% | ||
gutenmorganism | 0 | 1,028,136,785 | 50% | ||
theinspiration | 0 | 70,956,809 | 100% | ||
faberleggenda | 0 | 526,910,905 | 100% | ||
epic4chris | 0 | 68,847,112 | 100% | ||
mohaaking | 0 | 116,901,890 | 50% | ||
gustavoagt | 0 | 298,509,899 | 97% | ||
vaccinusveritas | 0 | 6,809,084,182 | 50% | ||
celine-robichaud | 0 | 22,140,437 | 24% | ||
patris | 0 | 128,897,121 | 2.16% | ||
maclevis | 0 | 121,557,981 | 2.16% | ||
doggy5 | 0 | 50,407,291 | 100% | ||
imaloser | 0 | 48,969,048 | 50% | ||
ritch | 0 | 471,256,775 | 10% | ||
sembdelgado | 0 | 87,317,777 | 50% | ||
cjmoney | 0 | 50,371,362 | 50% | ||
t750 | 0 | 49,906,287 | 50% | ||
cojp | 0 | 56,439,396 | 50% | ||
descalante | 0 | 187,928,498 | 50% | ||
mswalker | 0 | 375,821,222 | 100% | ||
reitsportdokus | 0 | 67,153,359 | 2.16% | ||
steemboyuk | 0 | 76,516,551 | 30% | ||
trail-co | 0 | 153,075,052 | 30.17% | ||
crimcrim | 0 | 157,721,423 | 50% |
你那里天气如何?想要玩STEEM的第一款卡牌对战游戏吗?快来[steemmonsters.com](https://steemmonsters.com?ref=davidchen)如果不想再收到我的留言,请回复“取消”。
author | cnbuddy |
---|---|
permlink | re-hongtao-numpy-tensorflow-axis-20190612t155634212z |
category | cn-stem |
json_metadata | "" |
created | 2019-06-12 15:56:33 |
last_update | 2019-06-12 15:56:33 |
depth | 1 |
children | 0 |
last_payout | 2019-06-19 15:56:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 110 |
author_reputation | -1,449,160,991,441 |
root_title | 深入理解Numpy和Tensorflow中的Axis操作 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,507,373 |
net_rshares | 0 |
<div class='text-justify'> <div class='pull-left'> <center> <br /> <img width='200' src='https://res.cloudinary.com/drrz8xekm/image/upload/v1553698283/weenlqbrqvvczjy6dayw.jpg'> </center> <br/> </div> This post has been voted on by the **SteemSTEM** curation team and voting trail. It is elligible for support from <b><a href='https://www.steemstem.io/#!/@curie'>@curie</a></b>.<br /> If you appreciate the work we are doing, then consider supporting our witness [**stem.witness**](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=stem.witness). Additional witness support to the [**curie witness**](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=curie) would be appreciated as well.<br /> For additional information please join us on the [**SteemSTEM discord**]( https://discord.gg/BPARaqn) and to get to know the rest of the community!<br /> Please consider setting <b><a href='https://www.steemstem.io/#!/@steemstem'>@steemstem</a></b> as a beneficiary to your post to get a stronger support.<br /> Please consider using the <b><a href='https://www.steemstem.io'>steemstem.io</a></b> app to get a stronger support.</div>
author | steemstem |
---|---|
permlink | re-hongtao-numpy-tensorflow-axis-20190614t022753966z |
category | cn-stem |
json_metadata | {"app":"bloguable-bot"} |
created | 2019-06-14 02:27:57 |
last_update | 2019-06-14 02:27:57 |
depth | 1 |
children | 0 |
last_payout | 2019-06-21 02:27:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,174 |
author_reputation | 262,017,435,115,313 |
root_title | 深入理解Numpy和Tensorflow中的Axis操作 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 86,592,493 |
net_rshares | 0 |