lugl4313820 发表于 2024-12-11 16:25

《深度学习的数学——使用Python语言》3、NumPy数据类型

<div class='showpostmsg'><p>第1.2.2节中,讲到NumPy的底层是用C语言实现的,因为NumPy支持C语言中所有的数据类型,在数据输入时,可以由用户选择数据类型,也可以显让NumPy替我们选择:</p>

<p>&nbsp; 用代码进行试验如下:</p>

<pre>
<code>&gt;&gt;&gt; a = np.array(,dtype = "uint8")
&gt;&gt;&gt; a.dtype
dtype('uint8')
&gt;&gt;&gt; a = np.array(,dtype = "uint16")
&gt;&gt;&gt; a.dtype
dtype('uint16')
&gt;&gt;&gt; b = np.array()
&gt;&gt;&gt; b.dtype
dtype('int64')</code></pre>

<p>&nbsp;</p>

<pre>
<code>&gt;&gt;&gt; b = np.array()
&gt;&gt;&gt; b.dtype
dtype('float64')</code></pre>

<p>我在初始化时,传一个浮点数,然后就自动选择为float64了。</p>

<p>例子中还列举了,如果指定类型与输入的不对,那么将按设置的数据类型进行截断。</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>

Jacktang 发表于 2024-12-12 07:44

<p>书还是值得读读的</p>
页: [1]
查看完整版本: 《深度学习的数学——使用Python语言》3、NumPy数据类型