gpt4 book ai didi

python - 如何读取大型文本文件避免逐行读取::Python

转载 作者:行者123 更新时间:2023-12-03 17:11:17 30 4
gpt4 key购买 nike

我有一个大数据文件 (N,4),我正在逐行映射。我的文件是 10 GB,下面给出了一个简单的实现。虽然下面的工作,它需要大量的时间。
我想实现这个逻辑,以便直接读取文本文件并且我可以访问元素。此后,我需要根据第 2 列元素对整个(映射)文件进行排序。
我在网上看到的示例假设数据块较小( d )并使用 f[:] = d[:]但我不能这样做,因为 d在我的情况下是巨大的并且吃我的RAM。
PS:我知道如何使用 np.loadtxt 加载文件并使用 argsort 对它们进行排序,但对于 GB 文件大小,该逻辑失败(内存错误)。将不胜感激任何方向。

nrows, ncols = 20000000, 4  # nrows is really larger than this no. this is just for illustration
f = np.memmap('memmapped.dat', dtype=np.float32,
mode='w+', shape=(nrows, ncols))

filename = "my_file.txt"

with open(filename) as file:

for i, line in enumerate(file):
floats = [float(x) for x in line.split(',')]
f[i, :] = floats
del f

最佳答案

编辑:与其自己动手分块,不如使用 pandas 的分块功能,这比 numpy 的 load_txt 快得多。

import numpy as np
import pandas as pd

## create csv file for testing
np.random.seed(1)
nrows, ncols = 100000, 4
data = np.random.uniform(size=(nrows, ncols))
np.savetxt('bigdata.csv', data, delimiter=',')

## read it back
chunk_rows = 12345
# Replace np.empty by np.memmap array for large datasets.
odata = np.empty((nrows, ncols), dtype=np.float32)
oindex = 0
chunks = pd.read_csv('bigdata.csv', chunksize=chunk_rows,
names=['a', 'b', 'c', 'd'])
for chunk in chunks:
m, _ = chunk.shape
odata[oindex:oindex+m, :] = chunk
oindex += m

# check that it worked correctly.
assert np.allclose(data, odata, atol=1e-7)
分块模式下的 pd.read_csv 函数返回一个可以在循环中使用的特殊对象,例如 for chunk in chunks: ;在每次迭代时,它将读取文件的一个块并将其内容作为 pandas DataFrame 返回,在这种情况下可以将其视为一个 numpy 数组。需要参数 names 以防止它将 csv 文件的第一行视为列名。
下面的旧答案 numpy.loadtxt 函数使用文件名或其他将在循环中返回行的结构,例如:
for line in f: 
do_something()
它甚至不需要伪装成一个文件;一个字符串列表就可以了!
我们可以读取小到足以放入内存的文件块,并向 np.loadtxt 提供成批的行。
def get_file_lines(fname, seek, maxlen):
"""Read lines from a section of a file.

Parameters:

- fname: filename
- seek: start position in the file
- maxlen: maximum length (bytes) to read

Return:

- lines: list of lines (only entire lines).
- seek_end: seek position at end of this chunk.

Reference: https://stackoverflow.com/a/63043614/6228891
Copying: any of CC-BY-SA, CC-BY, GPL, BSD, LPGL
Author: Han-Kwang Nienhuys
"""
f = open(fname, 'rb') # binary for Windows \r\n line endings
f.seek(seek)
buf = f.read(maxlen)
n = len(buf)
if n == 0:
return [], seek

# find a newline near the end
for i in range(min(10000, n)):
if buf[-i] == 0x0a:
# newline
buflen = n - i + 1
lines = buf[:buflen].decode('utf-8').split('\n')
seek_end = seek + buflen
return lines, seek_end
else:
raise ValueError('Could not find end of line')

import numpy as np

## create csv file for testing
np.random.seed(1)
nrows, ncols = 10000, 4

data = np.random.uniform(size=(nrows, ncols))
np.savetxt('bigdata.csv', data, delimiter=',')

# read it back
fpos = 0
chunksize = 456 # Small value for testing; make this big (megabytes).

# we will store the data here. Replace by memmap array if necessary.
odata = np.empty((nrows, ncols), dtype=np.float32)
oindex = 0

while True:
lines, fpos = get_file_lines('bigdata.csv', fpos, chunksize)
if not lines:
# end of file
break
rdata = np.loadtxt(lines, delimiter=',')
m, _ = rdata.shape
odata[oindex:oindex+m, :] = rdata
oindex += m

assert np.allclose(data, odata, atol=1e-7)
免责声明:我在 Linux 中对此进行了测试。我希望这能在 Windows 中工作,但可能是 '\r' 字符的处理会导致问题。

关于python - 如何读取大型文本文件避免逐行读取::Python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63042315/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com