gpt4 book ai didi

python - 使用动态 token 的 PLY

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

我正在编写一个程序,可以解析以 .tex 文件编写的数学论文。这是我想要的:

该程序应该检测数学论文中的开头、结尾、章节、小节、小节、定理、引理、定义、猜想、推论、命题、练习、符号和示例,并忽略其余内容生成摘要。

一开始,程序应该保留所有字符,直到到达标记 MT 。在这种情况下,杠杆应保留 token 并输入 ig模式。然后它应该忽略所有字符,除非它检测到定理/引理/定义/猜想/推论/示例/练习/符号/命题,在这种情况下它会暂时输入 INITIAL模式并保留它或(子/子子)部分,在这种情况下它应该暂时进入 sec模式。

\newtheorem{<name>}{<heading>}[<counter>]\newtheorem{<name>}[<counter>]{<heading>}被检测为TH ptext THCC ptext THC ptextTH ptext THCS ptext THSC ptext THC分别在哪里ptext是一堆TEXT .

import sys
import logging
from ply.lex import TOKEN

if sys.version_info[0] >= 3:
raw_input = input

tokens = (
'BT', 'BL', 'BD', 'BCONJ', 'BCOR', 'BE', 'ET', 'EL', 'ED', 'ECONJ', 'ECOR', 'EE', 'SEC', 'SSEC', 'SSSEC', 'ES', 'TEXT','ITEXT','BIBS','MT','BN','EN','BEXE','EEXE','BP','EP','TH','THCS','THSC','THCC','THC',
)

states = (('ig', 'exclusive'), ('sec', 'exclusive'), ('th', 'exclusive'), ('tht','exclusive'),('thc','exclusive'))

logging.basicConfig(
level = logging.DEBUG,
filename = "lexlog.txt",
filemode = "w",
format = "%(filename)10s:%(lineno)4d:%(message)s"
)
log = logging.getLogger()

th_temp = ''
thn_temp = ''
term_dic = {'Theorem':'','Lemma':'','Corollary':'','Definition':'','Conjecture':'','Example':'','Exercise':'','Notation':'','Proposition':''}
idb_list = ['','','','','','','','','']
ide_list = ['','','','','','','','','']
bb = r'\\begin\{'
eb = r'\\end\{'
ie = r'\}'
def finalize_terms():
global idb_list
global ide_list
if term_dic['Theorem'] != '':
idb_list[0] = bb + term_dic['Theorem'] + ie
ide_list[0] = eb + term_dic['Theorem'] + ie
if term_dic['Lemma'] != '':
idb_list[1] = bb + term_dic['Lemma'] + ie
ide_list[1] = eb + term_dic['Lemma'] + ie
if term_dic['Corollary'] != '':
idb_list[2] = bb + term_dic['Corollary'] + ie
ide_list[2] = eb + term_dic['Corollary'] + ie
if term_dic['Definition'] != '':
idb_list[3] = bb + term_dic['Definition'] + ie
ide_list[3] = eb + term_dic['Definition'] + ie
if term_dic['Conjecture'] != '':
idb_list[4] = bb + term_dic['Conjecture'] + ie
ide_list[4] = eb + term_dic['Conjecture'] + ie
if term_dic['Example'] != '':
idb_list[5] = bb + term_dic['Example'] + ie
ide_list[5] = eb + term_dic['Example'] + ie
if term_dic['Exercise'] != '':
idb_list[6] = bb + term_dic['Exercise'] + ie
ide_list[6] = eb + term_dic['Exercise'] + ie
if term_dic['Notation'] != '':
idb_list[7] = bb + term_dic['Notation'] + ie
ide_list[7] = eb + term_dic['Notation'] + ie
if term_dic['Proposition'] != '':
idb_list[8] = bb + term_dic['Proposition'] + ie
ide_list[8] = eb + term_dic['Proposition'] + ie
print(idb_list)
print(ide_list)

以下是一些解析函数:

def t_TH(t):
r'\\newtheorem\{'
t.lexer.begin('th')
return t

def t_th_THCS(t):
r'\}\['
t.lexer.begin('thc')
return t

def t_tht_THC(t):
r'\}'
if term_dic.has_key(thn_temp) == False:
print(f"{thn_temp} is unknown!")
elif len(th_temp) == 0:
print(f"No abbreviation for {thn_temp} is found!")
else:
term_dic[thn_temp] = th_temp
print(f"The abbreviation for {thn_temp} is {th_temp}!")
th_temp = ''
thn_temp = ''
t.lexer.begin('INITIAL')
return t

def t_th_THCC(t):
r'\}\{'
t.lexer.begin('tht')
return t

def t_thc_THSC(t):
r'\]\{'
t.lexer.begin('tht')
return t

@TOKEN(idb_list[0])
def t_ig_BT(t):
t.lexer.begin('INITIAL')
return t

@TOKEN(ide_list[0])
def t_ET(t):
t.lexer.begin('ig')
return t

def t_INITIAL_sec_thc_TEXT(t):
r'[\s\S]'
return t

def t_th_TEXT(t):
r'[\s\S]'
th_temp = th_temp + t.value()
return t

def t_tht_TEXT(t):
r'[\s\S]'
thn_temp = thn_temp + t.value()
return t

def t_ig_ITEXT(t):
r'[\s\S]'
pass

import ply.lex as lex
lex.lex(debug=True, debuglog = log)

错误如下: ERROR: /Users/CatLover/Documents/Python_Beta/TexExtractor/texlexparse.py:154: No regular expression defined for rule 't_ET'

我不知道为什么使用 @TOKEN 为“t_ET”等定义的正则表达式不起作用。

最佳答案

Ply 是一个解析器生成器。它获取您的解析器/词法分析器描述并从中编译解析器/词法分析器。您无法在解析过程中更改语言的描述。

在这种特殊情况下,您最好编写一个流式(“在线”)扫描器。但如果你想使用 Ply,那么你最好不要尝试修改语法来忽略部分输入。只需解析整个输入并忽略您不感兴趣的部分。您可能会发现代码要简单得多。

关于python - 使用动态 token 的 PLY,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52804505/

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