gpt4 book ai didi

python - 构建 Whoosh 索引时超出最大递归深度

转载 作者:行者123 更新时间:2023-12-01 01:11:04 26 4
gpt4 key购买 nike

我正在尝试使用 Whoosh 索引一些文档。然而,当我尝试将文档添加到 Whoosh 索引时,Python 最终返回以下错误:

RecursionError: maximum recursion depth exceeded while calling a Python object

我尝试过使用limitmb索引编写器的设置,以及更改索引提交到硬盘驱动器的频率。这似乎改变了成功索引的文档数量,但是不久之后索引就会因 RecursionError 而停止。

我的代码如下:

from whoosh.index import create_in
from whoosh.fields import *
from whoosh.qparser import QueryParser
from bs4 import BeautifulSoup
import os

schema = Schema(title=TEXT(stored=True), docID=ID(stored=True), content=TEXT(stored=True))
ix = create_in("index", schema)

writer = ix.writer(limitmb=1024, procs=4, multisegment=True);

for root, dirs, files in os.walk('aquaint'):
for file in files:
with open(os.path.join(root, file), "r") as f:
soup = BeautifulSoup(f.read(), 'html.parser')
for doc in soup.find_all('doc'):
try:
t = doc.find('headline').string
except:
t = "No title available"
try:
d = doc.find('docno').string
except:
d = "No docID available"
try:
c = doc.find('text').string
except:
c = "No content available"

writer.add_document(title=t, docID=d, content=c)
writer.commit()

我加载的文件来自 TRAC 稳健轨道 ( https://trec.nist.gov/data/t14_robust.html ),并具有以下格式(由于许可,我无法共享整个文件):

<DOC>
<DOCNO> APW1XXXXXXXXX </DOCNO>
<DOCTYPE> NEWS STORY </DOCTYPE>
<DATE_TIME> 1998-01-06 00:17:00 </DATE_TIME>
<HEADER>
XXXX
</HEADER>
<BODY>
<SLUG> BC-Sports-Motorcycling-Grand Prix-Doohan </SLUG>
<HEADLINE>
Doohan calls for upgrade to 1000cc bikes
</HEADLINE>
<TEXT>
News article text here
</TEXT>
(PROFILE
(WS SL:BC-Sports-Motorcycling-Grand Prix-Doohan; CT:s;
(REG:EURO;)
(REG:BRIT;)
(REG:SCAN;)
(REG:MEST;)
(REG:AFRI;)
(REG:INDI;)
(REG:ENGL;)
(REG:ASIA;)
(LANG:ENGLISH;))
)
</BODY>
<TRAILER>
AP-NY-06-01-98 0017EDT
</TRAILER>
</DOC>

加载的每个文件都包含多个此类文档,以 <DOC> 开头和结尾。标签。

我不明白是什么导致了这个错误,有人可以帮助我吗?非常感谢您的帮助!

最佳答案

我发现问题是什么,我错误地认为BeautifulSoup在调用doc.find('headline').string时会返回一个字符串,将其替换为str(doc.find ('headline').string) 似乎已经为我解决了这个问题,并且 Whoosh 现在可以正确索引。

关于python - 构建 Whoosh 索引时超出最大递归深度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54866823/

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