GithubHelp home page GithubHelp logo

beyondacm / autochecker4chinese Goto Github PK

View Code? Open in Web Editor NEW
287.0 287.0 85.0 3.5 MB

中文文本错别字检测以及自动纠错 / Autochecker & autocorrecter for chinese

Jupyter Notebook 85.75% Python 14.25%

autochecker4chinese's People

Contributors

beyondacm avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

autochecker4chinese's Issues

pinyin

hi,where is the pinyin file ?

'function' object has no attribute 'get'

Traceback (most recent call last):
File "Autochecker4Chinese.py", line 128, in
main()
File "Autochecker4Chinese.py", line 117, in main
correct_sent = auto_correct_sentence( err_sent_1 )
File "Autochecker4Chinese.py", line 99, in auto_correct_sentence
correct_phrase = auto_correct(phrase.encode("utf-8"))
File "Autochecker4Chinese.py", line 76, in auto_correct
c1_order, c2_order, c3_order = get_candidates(error_phrase)
File "Autochecker4Chinese.py", line 58, in get_candidates
error_pinyin = pinyin.get(error_phrase, format="strip", delimiter="/")#.encode("utf-8")
Thanks a lot!

只按照单词频率来纠正吗?

我看到如下代码, 似乎只考虑了单词的频率,而没有结合语境考虑问题. 感觉需要改进算法
def auto_correct( error_phrase ):

c1_order, c2_order, c3_order = get_candidates(error_phrase)
# print c1_order, c2_order, c3_order
if c1_order:
    return max(c1_order, key=phrase_freq.get )
elif c2_order:
    return max(c2_order, key=phrase_freq.get )
else:
    return max(c3_order, key=phrase_freq.get )

A question with ”word_freq”?

I think the follow function needs a small change, and I marked it by ****. Because when you using "max(c1_order, key=phrase_freq.get )", the type of data maybe string.
def construct_dict( file_path ):
word_freq = {}
with open(file_path, mode='r', encoding='UTF-8') as f:
for line in f:
info = line.split()
word = info[0]
frequency = info[1] -------------- frequency = int(info[1])
word_freq[word] = frequency
return word_freq

纠正错误

机七-->机
并没有纠正“七”,这是哪里出了问题?

Operating Environment

There are so many problems when I ran your program, and I list all of them:

  1. Please list all the denpendent libraies and operating environment. Your program seems base on python2, please make the statement that other reader can understand first.

  2. reload and ys.setdefaultencoding('utf-8') functions could not be found. I tried to remove both of them, however a series problem occurred.

Thank for your contribution, hope you can solve these problems soon

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.