当您存储一个没有足够的内存分配的numpy阵列时会发生什么?

发布于 2025-01-22 14:46:30 字数 369 浏览 0 评论 0原文

我只是在与NP.array及其内存分配一起玩,我希望如果您尝试存储一个对于内存分配太大的数组,您只会遇到错误,或者只会存储第一个X数字数字。相反,我只是回来了似乎是随机的数字。幕后发生了什么?

import numpy as np

def create_new_array(num_list):
  new_array = np.array(num_list,np.int8)
  return print(new_array)

create_new_array([31112 , 32321, 24567,456,324,789])

输出: [-120,65,-9,-56,68,21]

更改输入值稍微给出了完全不同的输出,我对此非常好奇。

I was just playing around with np.array and its memory allocation, I expected that if you tried to store an array that was too big for the memory allocation you would just get an error or would just store the first x number of digits. Instead I just got back seemingly random numbers. What is going on behind the scenes here?

import numpy as np

def create_new_array(num_list):
  new_array = np.array(num_list,np.int8)
  return print(new_array)

create_new_array([31112 , 32321, 24567,456,324,789])

output:
[-120, 65, -9, -56, 68, 21]

Changing the input values slightly gives completly differnt outputs and I'm very curiouse as to why this is.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泪痕残 2025-01-29 14:46:30

数字不是随机的;它们是补充。对于int8,它可以表示的最大正数为127,在此上面返回了数字的补充。例如:

>>> create_new_array([125, 126, 127, 128, 129, 130])
array([ 125,  126,  127, -128, -127, -126], dtype=int8)

The numbers are not random; they are the complements. For int8, the maximum positive number it can represent is 127, above which the numbers' complements are returned. For example:

>>> create_new_array([125, 126, 127, 128, 129, 130])
array([ 125,  126,  127, -128, -127, -126], dtype=int8)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文