91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python中numpy.load()的使用方法

發布時間:2020-11-02 12:51:02 來源:億速云 閱讀:2050 作者:小新 欄目:編程語言

小編給大家分享一下Python中numpy.load()的使用方法,希望大家閱讀完這篇文章后大所收獲,下面讓我們一起去探討吧!

numpy.load()函數從具有npy擴展名(.npy)的磁盤文件返回輸入數組。

用法:

numpy.load(file, mmap_mode=None, allow_pickle=True, fix_imports=True, encoding=’ASCII’)

參數:

file :file-like對象,字符串或pathlib.Path。要讀取的文件。 File-like對象必須支持seek()和read()方法。

mmap_mode :如果不為None,則使用給定模式memory-map文件(有關詳細信息,請參見numpy.memmap

模式說明)。

allow_pickle :允許加載存儲在npy文件中的腌制對象數組。

fix_imports :僅在在Python 3上加載Python 2生成的腌制文件時有用,該文件包括包含對象數組的npy /npz文件。

encoding :僅當在Python 3中加載Python 2生成的腌制文件時有用,該文件包含包含對象數組的npy /npz文件。

Returns :數據存儲在文件中。對于.npz文件,必須關閉NpzFile類的返回實例,以避免泄漏文件描述符。

代碼1:

# Python program explaining   # load() function     import numpy as geek   a = geek.array(([i + j for i in range(3)                         for j in range(3)])) # a is printed. print("a is:") print(a)   geek.save('geekfile', a) print("the array is saved in the file geekfile.npy")   # the array is saved in the file geekfile.npy   b = geek.load('geekfile.npy')   # the array is loaded into b print("b is:") print(b)   # b is printed from geekfile.npy print("b is printed from geekfile.npy")

輸出:

a is: [0, 1, 2, 1, 2, 3, 2, 3, 4] the array is saved in the file geekfile.npy b is: [0, 1, 2, 1, 2, 3, 2, 3, 4] b is printed from geekfile.npy

代碼2:

# Python program explaining   # load() function     import numpy as geek   # a and b are numpy arrays. a = geek.array(([i + j for i in range(3)                         for j in range(3)])) b = geek.array([i + 1 for i in range(3)])   # a and b are printed. print("a is:") print(a) print("b is:") print(b)   # a and b are stored in geekfile.npz geek.savez('geekfile.npz', a = a, b = b)   print("a and b are stored in geekfile.npz")   # compressed file is loaded c = geek.load('geekfile.npz')   print("after loading...") print("a is:", c['a']) print("b is:", c['b'])

輸出:

a is: [0 1 2 1 2 3 2 3 4] b is: [1 2 3] a and b are stored in geekfile.npz after loading... a is:[0 1 2 1 2 3 2 3 4] b is:[1 2 3]

看完了這篇文章,相信你對Python中numpy.load()的使用方法有了一定的了解,想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

自贡市| 廉江市| 桑植县| 亚东县| 伊金霍洛旗| 香港| 广西| 汤阴县| 墨江| 佛山市| 忻州市| 潮州市| 温宿县| 肥东县| 重庆市| 漳平市| 夏津县| 泸州市| 蓬安县| 三都| 民丰县| 定西市| 东至县| 伊春市| 大丰市| 卓资县| 大同县| 塔城市| 黔西县| 应城市| 平阳县| 建阳市| 嘉义市| 武穴市| 甘泉县| 利津县| 青田县| 安龙县| 丰台区| 临湘市| 临洮县|