live_number.py怎么用
答案:3 悬赏:40 手机版
解决时间 2021-04-01 03:03
- 提问者网友:最美的风景
- 2021-03-31 10:28
阅读理解
Scientists at Harvard University and Bates College find female chimpanzees (黑猩猩) appear to treat sticks as dolls, carrying them around until they have children of their own. Young males engage in such behavior much less frequently.The new work by Sonya M. Kahlenberg and Richard W. Wrangham, described this week in the journal Current Biology, provides the first evidence of a wild nonhuman species playing with dolls, as well as the first known sex difference in a wild animal’s choice of playthings.The two researchers say their work adds to a growing body of evidence that human children are probably born with their own ideas of how they want to behave, rather than simply mirroring other girls who play with dolls and boys who play with trucks. Doll play among humans could have its origins in object—carrying by earlier apes (猿类), they say, suggesting that toy selection is probably not due entirely to socialization.“In humans, there are obvious sex differences in children’s toy play, and these are remarkably similar across cultures,” says Kahlenberg. “While socialization by elders and peers has been the primary explanation, our work suggests that biology may also have an important role to play in activity preferences.”In 14 years of data on chimpanzee behavior at the Kibale National Park in Uganda, Kahlenberg and Wrangham counted more than 100 examples of stickcarrying. Some young chimpanzees carried sticks into the nest to sleep with them and on one occasion built a separate nest for the stick. “We have seen juveniles occasionally carrying sticks for many years, and because they sometimes treated them rather like dolls, we wanted to know if in general this behavior tended to represent something like playing with dolls,” says Wrangham, a Professor at Harvard. “If the doll hypothesis (假设) was right, we thought that females should carry sticks more than males do, and that the chimpanzees should stop carrying sticks when they had their first child. We have now watched enough young chimpanzees to prove both points.”1.What does a female chimpanzee do with sticks?A.She gives them to her child to play with.B.She treats them as dolls.C.She makes useful tools from them.D.She treats them as weapons.2.What causes the different toy selection of chimpanzees, according to the passage?A.Sex difference.B.Socialization.C.Environment.D.Cultural difference.3.We can infer from the fourth paragraph that ________.A.socialization has nothing to do with human’s choice of playthingsB.sex difference is the only factor in human’s choice of playthingsC.the biology factor may also influence toy choiceD.people choose different toys in different cultures4.It can be concluded from the passage that ________.A.both humans and chimpanzees choose their playthings due to sex differenceB.different factors cause humans and chimpanzees to choose different playthingsC.only female chimpanzees have playthingsD.chimpanzees usually choose playthings for their children
最佳答案
- 五星知识达人网友:笑迎怀羞
- 2019-04-13 00:09
BACA解析文章介绍了再选择玩具方面猩猩和人有很多相似之处。1.细节题。根据第一段第2行treat sticks as dolls。2.细节题。根据第二段最后一句as well as the first known sex difference in a wild animal’s choice of playthings.可知性别差异是选择玩具的一个原因。3.细节题。根据第四段最后一句our work suggests that biology may also have an important role to play in activity preferences.可知C正确。4.推断题。根据文章特别的3,4段可知人类和动物在选择玩具方面都受到性别差异的影响。
全部回答
- 1楼网友:西岸风
- 2020-10-24 21:18
感谢回答,我学习了
- 2楼网友:低音帝王
- 2019-06-14 01:18
for layer_name, param in net.params.iteritems(): print layer_name + '\t' + str(param[0].data.shape), str(param[1].data.shape)
conv1 (96, 3, 11, 11) (96,) conv2 (256, 48, 5, 5) (256,) conv3 (384, 256, 3, 3) (384,) conv4 (384, 192, 3, 3) (384,) conv5 (256, 192, 3, 3) (256,) fc6 (4096, 9216) (4096,) fc7 (4096, 4096) (4096,) fc8 (1000, 4096) (1000,)
Since we're dealing with four-dimensional data here, we'll define a helper function for visualizing sets of rectangular heatmaps.
In [15]:
def vis_square(data): """Take an array of shape (n, height, width) or (n, height, width, 3) and visualize each (height, width) thing in a grid of size approx. sqrt(n) by sqrt(n)""" # normalize data for display data = (data - data.min()) / (data.max() -data.min()) # force the number of filters to be square n = int(np.ceil(np.sqrt(data.shape[0]))) padding = (((0, n ** 2 -data.shape[0]), (0, 1), (0, 1)) # add some space between filters + ((0, 0),) * (data.ndim - 3)) # don't pad the last dimension (if there is one) data = np.pad(data, padding, mode='constant', constant_values=1) # pad with ones (white) # tile the filters into an image data = data.reshape((n, n) + data.shape[1:]).transpose((0, 2, 1, 3) + tuple(range(4, data.ndim + 1))) data = data.reshape((n* data.shape[1], n * data.shape[3]) + data.shape[4:]) plt.imshow(data); plt.axis('off')
First we'll look at the first layer filters, conv1
In [16]:
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯