lugl4313820 发表于 2024-12-11 10:01

《深度学习的数学——使用Python语言》2、numpy

<div class='showpostmsg'><p>1、打印版本</p>

<pre>
<code>&gt;&gt;&gt; import numpy as np
&gt;&gt;&gt; np.__version__
'2.2.0'
&gt;&gt;&gt; </code></pre>

<p>第一行代三志入numpy模式并将其重命为np,然后输入版本号。</p>

<p>2、定义数组</p>

<p>NumPy以数组为运算对象,它可以方便地将列表转换为数组,书中说到使用列表模拟进行运处没有使用数组的效率高。</p>

<pre>
<code>&gt;&gt;&gt; a = np.array()
&gt;&gt;&gt; a
array()
&gt;&gt;&gt; a.size
4
&gt;&gt;&gt; a.shape
(4,)
&gt;&gt;&gt; a.dtype
dtype('int64')
&gt;&gt;&gt; </code></pre>

<p>首先将 列表转换为NumPy数组。数组最基本的属性包话size和shape.这个数组的size为4,表示饮食4个元素:shape属性则是包含4的一个元组,表示这审一个包含4个元素的一维数组或者说一给向量。如果数组是二维的,那么其shape属性将包含两个元素,分别对应每一维的大小。</p>

<pre>
<code>&gt;&gt;&gt; b = np.array([,])
&gt;&gt;&gt; print(b)
[
]
&gt;&gt;&gt; b.shape
(2, 4)</code></pre>

<p>b的shape为(2,4)表示它是一个2行4列的数组。</p>
</div><script>                                        var loginstr = '<div class="locked">查看本帖全部内容,请<a href="javascript:;"   style="color:#e60000" class="loginf">登录</a>或者<a href="https://bbs.eeworld.com.cn/member.php?mod=register_eeworld.php&action=wechat" style="color:#e60000" target="_blank">注册</a></div>';
                                       
                                        if(parseInt(discuz_uid)==0){
                                                                                                (function($){
                                                        var postHeight = getTextHeight(400);
                                                        $(".showpostmsg").html($(".showpostmsg").html());
                                                        $(".showpostmsg").after(loginstr);
                                                        $(".showpostmsg").css({height:postHeight,overflow:"hidden"});
                                                })(jQuery);
                                        }                </script><script type="text/javascript">(function(d,c){var a=d.createElement("script"),m=d.getElementsByTagName("script"),eewurl="//counter.eeworld.com.cn/pv/count/";a.src=eewurl+c;m.parentNode.insertBefore(a,m)})(document,523)</script>

hellokitty_bean 发表于 2024-12-11 14:53

<p>可以呀,lu哥不停在试读,不停参加活动,正能量!点赞<img height="48" src="https://bbs.eeworld.com.cn/static/editor/plugins/hkemoji/sticker/facebook/loveliness.gif" width="48" /></p>

lugl4313820 发表于 2024-12-11 15:22

hellokitty_bean 发表于 2024-12-11 14:53
可以呀,lu哥不停在试读,不停参加活动,正能量!点赞

<p>这书看了有点用,就是基础较差,学起来吃力呀,后面好多数据知识。</p>

hellokitty_bean 发表于 2024-12-12 09:24

lugl4313820 发表于 2024-12-11 15:22
这书看了有点用,就是基础较差,学起来吃力呀,后面好多数据知识。

<p>嗯嗯,发现搞AI,即便是应用,也还是需要数学知识的。。。。。。。<img height="48" src="https://bbs.eeworld.com.cn/static/editor/plugins/hkemoji/sticker/facebook/smile.gif" width="48" /></p>
页: [1]
查看完整版本: 《深度学习的数学——使用Python语言》2、numpy