在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Bleu值计算工具

Bleu值计算工具

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:8.61M
  • 下载次数:1
  • 浏览次数:294
  • 发布时间:2021-02-03
  • 实例类别:一般编程问题
  • 发 布 人:好学IT男
  • 文件格式:.zip
  • 所需积分:2
 

实例介绍

【实例简介】
用于Bleu值计算.
【实例截图】
【核心代码】
dc7ce4f0-1577-4f07-84eb-f55fa75d1dd4
└── Bleu
├── Bleu.exe
├── Bleu.exe.config
├── Bleu.pdb
├── Bleu.py
├── build
│   └── lib
│   └── nltk
│   ├── app
│   │   ├── chartparser_app.py
│   │   ├── chunkparser_app.py
│   │   ├── collocations_app.py
│   │   ├── concordance_app.py
│   │   ├── __init__.py
│   │   ├── nemo_app.py
│   │   ├── rdparser_app.py
│   │   ├── srparser_app.py
│   │   ├── wordfreq_app.py
│   │   └── wordnet_app.py
│   ├── book.py
│   ├── ccg
│   │   ├── api.py
│   │   ├── chart.py
│   │   ├── combinator.py
│   │   ├── __init__.py
│   │   ├── lexicon.py
│   │   └── logic.py
│   ├── chat
│   │   ├── eliza.py
│   │   ├── iesha.py
│   │   ├── __init__.py
│   │   ├── rude.py
│   │   ├── suntsu.py
│   │   ├── util.py
│   │   └── zen.py
│   ├── chunk
│   │   ├── api.py
│   │   ├── __init__.py
│   │   ├── named_entity.py
│   │   ├── regexp.py
│   │   └── util.py
│   ├── classify
│   │   ├── api.py
│   │   ├── decisiontree.py
│   │   ├── __init__.py
│   │   ├── maxent.py
│   │   ├── megam.py
│   │   ├── naivebayes.py
│   │   ├── positivenaivebayes.py
│   │   ├── rte_classify.py
│   │   ├── scikitlearn.py
│   │   ├── senna.py
│   │   ├── svm.py
│   │   ├── tadm.py
│   │   ├── textcat.py
│   │   ├── util.py
│   │   └── weka.py
│   ├── cluster
│   │   ├── api.py
│   │   ├── em.py
│   │   ├── gaac.py
│   │   ├── __init__.py
│   │   ├── kmeans.py
│   │   └── util.py
│   ├── collections.py
│   ├── collocations.py
│   ├── compat.py
│   ├── corpus
│   │   ├── europarl_raw.py
│   │   ├── __init__.py
│   │   ├── reader
│   │   │   ├── aligned.py
│   │   │   ├── api.py
│   │   │   ├── bnc.py
│   │   │   ├── bracket_parse.py
│   │   │   ├── categorized_sents.py
│   │   │   ├── chasen.py
│   │   │   ├── childes.py
│   │   │   ├── chunked.py
│   │   │   ├── cmudict.py
│   │   │   ├── comparative_sents.py
│   │   │   ├── conll.py
│   │   │   ├── crubadan.py
│   │   │   ├── dependency.py
│   │   │   ├── framenet.py
│   │   │   ├── ieer.py
│   │   │   ├── indian.py
│   │   │   ├── __init__.py
│   │   │   ├── ipipan.py
│   │   │   ├── knbc.py
│   │   │   ├── lin.py
│   │   │   ├── mte.py
│   │   │   ├── nkjp.py
│   │   │   ├── nombank.py
│   │   │   ├── nps_chat.py
│   │   │   ├── opinion_lexicon.py
│   │   │   ├── panlex_lite.py
│   │   │   ├── pl196x.py
│   │   │   ├── plaintext.py
│   │   │   ├── ppattach.py
│   │   │   ├── propbank.py
│   │   │   ├── pros_cons.py
│   │   │   ├── reviews.py
│   │   │   ├── rte.py
│   │   │   ├── semcor.py
│   │   │   ├── senseval.py
│   │   │   ├── sentiwordnet.py
│   │   │   ├── sinica_treebank.py
│   │   │   ├── string_category.py
│   │   │   ├── switchboard.py
│   │   │   ├── tagged.py
│   │   │   ├── timit.py
│   │   │   ├── toolbox.py
│   │   │   ├── twitter.py
│   │   │   ├── udhr.py
│   │   │   ├── util.py
│   │   │   ├── verbnet.py
│   │   │   ├── wordlist.py
│   │   │   ├── wordnet.py
│   │   │   ├── xmldocs.py
│   │   │   └── ycoe.py
│   │   └── util.py
│   ├── data.py
│   ├── decorators.py
│   ├── downloader.py
│   ├── draw
│   │   ├── cfg.py
│   │   ├── dispersion.py
│   │   ├── __init__.py
│   │   ├── table.py
│   │   ├── tree.py
│   │   └── util.py
│   ├── featstruct.py
│   ├── grammar.py
│   ├── help.py
│   ├── inference
│   │   ├── api.py
│   │   ├── discourse.py
│   │   ├── __init__.py
│   │   ├── mace.py
│   │   ├── nonmonotonic.py
│   │   ├── prover9.py
│   │   ├── resolution.py
│   │   └── tableau.py
│   ├── __init__.py
│   ├── internals.py
│   ├── jsontags.py
│   ├── lazyimport.py
│   ├── metrics
│   │   ├── agreement.py
│   │   ├── aline.py
│   │   ├── association.py
│   │   ├── confusionmatrix.py
│   │   ├── distance.py
│   │   ├── __init__.py
│   │   ├── paice.py
│   │   ├── scores.py
│   │   ├── segmentation.py
│   │   └── spearman.py
│   ├── misc
│   │   ├── babelfish.py
│   │   ├── chomsky.py
│   │   ├── __init__.py
│   │   ├── minimalset.py
│   │   ├── sort.py
│   │   └── wordfinder.py
│   ├── parse
│   │   ├── api.py
│   │   ├── bllip.py
│   │   ├── chart.py
│   │   ├── corenlp.py
│   │   ├── dependencygraph.py
│   │   ├── earleychart.py
│   │   ├── evaluate.py
│   │   ├── featurechart.py
│   │   ├── generate.py
│   │   ├── __init__.py
│   │   ├── malt.py
│   │   ├── nonprojectivedependencyparser.py
│   │   ├── pchart.py
│   │   ├── projectivedependencyparser.py
│   │   ├── recursivedescent.py
│   │   ├── shiftreduce.py
│   │   ├── stanford.py
│   │   ├── transitionparser.py
│   │   ├── util.py
│   │   └── viterbi.py
│   ├── probability.py
│   ├── sem
│   │   ├── boxer.py
│   │   ├── chat80.py
│   │   ├── cooper_storage.py
│   │   ├── drt_glue_demo.py
│   │   ├── drt.py
│   │   ├── evaluate.py
│   │   ├── glue.py
│   │   ├── hole.py
│   │   ├── __init__.py
│   │   ├── lfg.py
│   │   ├── linearlogic.py
│   │   ├── logic.py
│   │   ├── relextract.py
│   │   ├── skolemize.py
│   │   └── util.py
│   ├── sentiment
│   │   ├── __init__.py
│   │   ├── sentiment_analyzer.py
│   │   ├── util.py
│   │   └── vader.py
│   ├── stem
│   │   ├── api.py
│   │   ├── arlstem.py
│   │   ├── __init__.py
│   │   ├── isri.py
│   │   ├── lancaster.py
│   │   ├── porter.py
│   │   ├── regexp.py
│   │   ├── rslp.py
│   │   ├── snowball.py
│   │   ├── util.py
│   │   └── wordnet.py
│   ├── tag
│   │   ├── api.py
│   │   ├── brill.py
│   │   ├── brill_trainer.py
│   │   ├── crf.py
│   │   ├── hmm.py
│   │   ├── hunpos.py
│   │   ├── __init__.py
│   │   ├── mapping.py
│   │   ├── perceptron.py
│   │   ├── senna.py
│   │   ├── sequential.py
│   │   ├── stanford.py
│   │   ├── tnt.py
│   │   └── util.py
│   ├── tbl
│   │   ├── api.py
│   │   ├── demo.py
│   │   ├── erroranalysis.py
│   │   ├── feature.py
│   │   ├── __init__.py
│   │   ├── rule.py
│   │   └── template.py
│   ├── test
│   │   ├── all.py
│   │   ├── bleu.doctest
│   │   ├── bnc.doctest
│   │   ├── ccg.doctest
│   │   ├── ccg_semantics.doctest
│   │   ├── chat80.doctest
│   │   ├── childes.doctest
│   │   ├── childes_fixt.py
│   │   ├── chunk.doctest
│   │   ├── classify.doctest
│   │   ├── classify_fixt.py
│   │   ├── collections.doctest
│   │   ├── collocations.doctest
│   │   ├── compat.doctest
│   │   ├── compat_fixt.py
│   │   ├── concordance.doctest
│   │   ├── corpus.doctest
│   │   ├── corpus_fixt.py
│   │   ├── crubadan.doctest
│   │   ├── data.doctest
│   │   ├── dependency.doctest
│   │   ├── discourse.doctest
│   │   ├── discourse_fixt.py
│   │   ├── doctest_nose_plugin.py
│   │   ├── drt.doctest
│   │   ├── featgram.doctest
│   │   ├── featstruct.doctest
│   │   ├── framenet.doctest
│   │   ├── generate.doctest
│   │   ├── gensim.doctest
│   │   ├── gensim_fixt.py
│   │   ├── gluesemantics.doctest
│   │   ├── gluesemantics_malt.doctest
│   │   ├── gluesemantics_malt_fixt.py
│   │   ├── grammar.doctest
│   │   ├── grammartestsuites.doctest
│   │   ├── index.doctest
│   │   ├── inference.doctest
│   │   ├── inference_fixt.py
│   │   ├── __init__.py
│   │   ├── internals.doctest
│   │   ├── japanese.doctest
│   │   ├── logic.doctest
│   │   ├── metrics.doctest
│   │   ├── misc.doctest
│   │   ├── nonmonotonic.doctest
│   │   ├── nonmonotonic_fixt.py
│   │   ├── paice.doctest
│   │   ├── parse.doctest
│   │   ├── portuguese_en.doctest
│   │   ├── portuguese_en_fixt.py
│   │   ├── probability.doctest
│   │   ├── probability_fixt.py
│   │   ├── propbank.doctest
│   │   ├── relextract.doctest
│   │   ├── resolution.doctest
│   │   ├── runtests.py
│   │   ├── segmentation_fixt.py
│   │   ├── semantics.doctest
│   │   ├── semantics_fixt.py
│   │   ├── sentiment.doctest
│   │   ├── sentiwordnet.doctest
│   │   ├── simple.doctest
│   │   ├── stem.doctest
│   │   ├── tag.doctest
│   │   ├── tokenize.doctest
│   │   ├── toolbox.doctest
│   │   ├── translate.doctest
│   │   ├── translate_fixt.py
│   │   ├── tree.doctest
│   │   ├── treeprettyprinter.doctest
│   │   ├── treetransforms.doctest
│   │   ├── unit
│   │   │   ├── __init__.py
│   │   │   ├── test_2x_compat.py
│   │   │   ├── test_aline.py
│   │   │   ├── test_chunk.py
│   │   │   ├── test_classify.py
│   │   │   ├── test_collocations.py
│   │   │   ├── test_concordance.py
│   │   │   ├── test_corenlp.py
│   │   │   ├── test_corpora.py
│   │   │   ├── test_corpus_views.py
│   │   │   ├── test_hmm.py
│   │   │   ├── test_json2csv_corpus.py
│   │   │   ├── test_naivebayes.py
│   │   │   ├── test_rte_classify.py
│   │   │   ├── test_seekable_unicode_stream_reader.py
│   │   │   ├── test_senna.py
│   │   │   ├── test_stem.py
│   │   │   ├── test_tag.py
│   │   │   ├── test_tgrep.py
│   │   │   ├── test_tokenize.py
│   │   │   ├── test_twitter_auth.py
│   │   │   ├── test_wordnet.py
│   │   │   ├── translate
│   │   │   │   ├── __init__.py
│   │   │   │   ├── test_bleu.py
│   │   │   │   ├── test_gdfa.py
│   │   │   │   ├── test_ibm1.py
│   │   │   │   ├── test_ibm2.py
│   │   │   │   ├── test_ibm3.py
│   │   │   │   ├── test_ibm4.py
│   │   │   │   ├── test_ibm5.py
│   │   │   │   ├── test_ibm_model.py
│   │   │   │   ├── test_nist.py
│   │   │   │   └── test_stack_decoder.py
│   │   │   └── utils.py
│   │   ├── util.doctest
│   │   ├── wordnet.doctest
│   │   ├── wordnet_fixt.py
│   │   ├── wordnet_lch.doctest
│   │   └── wsd.doctest
│   ├── text.py
│   ├── tgrep.py
│   ├── tokenize
│   │   ├── api.py
│   │   ├── casual.py
│   │   ├── __init__.py
│   │   ├── mwe.py
│   │   ├── nist.py
│   │   ├── punkt.py
│   │   ├── regexp.py
│   │   ├── repp.py
│   │   ├── sexpr.py
│   │   ├── simple.py
│   │   ├── stanford.py
│   │   ├── stanford_segmenter.py
│   │   ├── texttiling.py
│   │   ├── toktok.py
│   │   ├── treebank.py
│   │   └── util.py
│   ├── toolbox.py
│   ├── translate
│   │   ├── api.py
│   │   ├── bleu_score.py
│   │   ├── chrf_score.py
│   │   ├── gale_church.py
│   │   ├── gdfa.py
│   │   ├── gleu_score.py
│   │   ├── ibm1.py
│   │   ├── ibm2.py
│   │   ├── ibm3.py
│   │   ├── ibm4.py
│   │   ├── ibm5.py
│   │   ├── ibm_model.py
│   │   ├── __init__.py
│   │   ├── metrics.py
│   │   ├── nist_score.py
│   │   ├── phrase_based.py
│   │   ├── ribes_score.py
│   │   └── stack_decoder.py
│   ├── treeprettyprinter.py
│   ├── tree.py
│   ├── treetransforms.py
│   ├── twitter
│   │   ├── api.py
│   │   ├── common.py
│   │   ├── __init__.py
│   │   ├── twitterclient.py
│   │   ├── twitter_demo.py
│   │   └── util.py
│   ├── util.py
│   ├── VERSION
│   └── wsd.py
├── dist
│   └── nltk-3.3-py3.7.egg
├── future
│   ├── backports
│   │   ├── datetime.py
│   │   ├── email
│   │   │   ├── base64mime.py
│   │   │   ├── charset.py
│   │   │   ├── _encoded_words.py
│   │   │   ├── encoders.py
│   │   │   ├── errors.py
│   │   │   ├── feedparser.py
│   │   │   ├── generator.py
│   │   │   ├── header.py
│   │   │   ├── headerregistry.py
│   │   │   ├── _header_value_parser.py
│   │   │   ├── __init__.py
│   │   │   ├── iterators.py
│   │   │   ├── message.py
│   │   │   ├── mime
│   │   │   │   ├── application.py
│   │   │   │   ├── audio.py
│   │   │   │   ├── base.py
│   │   │   │   ├── image.py
│   │   │   │   ├── __init__.py
│   │   │   │   ├── message.py
│   │   │   │   ├── multipart.py
│   │   │   │   ├── nonmultipart.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── application.cpython-37.pyc
│   │   │   │   │   ├── audio.cpython-37.pyc
│   │   │   │   │   ├── base.cpython-37.pyc
│   │   │   │   │   ├── image.cpython-37.pyc
│   │   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   │   ├── message.cpython-37.pyc
│   │   │   │   │   ├── multipart.cpython-37.pyc
│   │   │   │   │   ├── nonmultipart.cpython-37.pyc
│   │   │   │   │   └── text.cpython-37.pyc
│   │   │   │   └── text.py
│   │   │   ├── _parseaddr.py
│   │   │   ├── parser.py
│   │   │   ├── _policybase.py
│   │   │   ├── policy.py
│   │   │   ├── __pycache__
│   │   │   │   ├── base64mime.cpython-37.pyc
│   │   │   │   ├── charset.cpython-37.pyc
│   │   │   │   ├── _encoded_words.cpython-37.pyc
│   │   │   │   ├── encoders.cpython-37.pyc
│   │   │   │   ├── errors.cpython-37.pyc
│   │   │   │   ├── feedparser.cpython-37.pyc
│   │   │   │   ├── generator.cpython-37.pyc
│   │   │   │   ├── header.cpython-37.pyc
│   │   │   │   ├── headerregistry.cpython-37.pyc
│   │   │   │   ├── _header_value_parser.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── iterators.cpython-37.pyc
│   │   │   │   ├── message.cpython-37.pyc
│   │   │   │   ├── _parseaddr.cpython-37.pyc
│   │   │   │   ├── parser.cpython-37.pyc
│   │   │   │   ├── _policybase.cpython-37.pyc
│   │   │   │   ├── policy.cpython-37.pyc
│   │   │   │   ├── quoprimime.cpython-37.pyc
│   │   │   │   └── utils.cpython-37.pyc
│   │   │   ├── quoprimime.py
│   │   │   └── utils.py
│   │   ├── html
│   │   │   ├── entities.py
│   │   │   ├── __init__.py
│   │   │   ├── parser.py
│   │   │   └── __pycache__
│   │   │   ├── entities.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── parser.cpython-37.pyc
│   │   ├── http
│   │   │   ├── client.py
│   │   │   ├── cookiejar.py
│   │   │   ├── cookies.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── client.cpython-37.pyc
│   │   │   │   ├── cookiejar.cpython-37.pyc
│   │   │   │   ├── cookies.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── server.cpython-37.pyc
│   │   │   └── server.py
│   │   ├── __init__.py
│   │   ├── _markupbase.py
│   │   ├── misc.py
│   │   ├── __pycache__
│   │   │   ├── datetime.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── _markupbase.cpython-37.pyc
│   │   │   ├── misc.cpython-37.pyc
│   │   │   ├── socket.cpython-37.pyc
│   │   │   ├── socketserver.cpython-37.pyc
│   │   │   └── total_ordering.cpython-37.pyc
│   │   ├── socket.py
│   │   ├── socketserver.py
│   │   ├── test
│   │   │   ├── badcert.pem
│   │   │   ├── badkey.pem
│   │   │   ├── dh512.pem
│   │   │   ├── https_svn_python_org_root.pem
│   │   │   ├── __init__.py
│   │   │   ├── keycert2.pem
│   │   │   ├── keycert.passwd.pem
│   │   │   ├── keycert.pem
│   │   │   ├── nokia.pem
│   │   │   ├── nullbytecert.pem
│   │   │   ├── nullcert.pem
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── pystone.cpython-37.pyc
│   │   │   │   ├── ssl_servers.cpython-37.pyc
│   │   │   │   └── support.cpython-37.pyc
│   │   │   ├── pystone.py
│   │   │   ├── sha256.pem
│   │   │   ├── ssl_cert.pem
│   │   │   ├── ssl_key.passwd.pem
│   │   │   ├── ssl_key.pem
│   │   │   ├── ssl_servers.py
│   │   │   └── support.py
│   │   ├── total_ordering.py
│   │   ├── urllib
│   │   │   ├── error.py
│   │   │   ├── __init__.py
│   │   │   ├── parse.py
│   │   │   ├── __pycache__
│   │   │   │   ├── error.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── parse.cpython-37.pyc
│   │   │   │   ├── request.cpython-37.pyc
│   │   │   │   ├── response.cpython-37.pyc
│   │   │   │   └── robotparser.cpython-37.pyc
│   │   │   ├── request.py
│   │   │   ├── response.py
│   │   │   └── robotparser.py
│   │   └── xmlrpc
│   │   ├── client.py
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── client.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── server.cpython-37.pyc
│   │   └── server.py
│   ├── builtins
│   │   ├── disabled.py
│   │   ├── __init__.py
│   │   ├── iterators.py
│   │   ├── misc.py
│   │   ├── newnext.py
│   │   ├── newround.py
│   │   ├── newsuper.py
│   │   └── __pycache__
│   │   ├── disabled.cpython-37.pyc
│   │   ├── __init__.cpython-37.pyc
│   │   ├── iterators.cpython-37.pyc
│   │   ├── misc.cpython-37.pyc
│   │   ├── newnext.cpython-37.pyc
│   │   ├── newround.cpython-37.pyc
│   │   └── newsuper.cpython-37.pyc
│   ├── __init__.py
│   ├── moves
│   │   ├── builtins.py
│   │   ├── collections.py
│   │   ├── configparser.py
│   │   ├── copyreg.py
│   │   ├── dbm
│   │   │   ├── dumb.py
│   │   │   ├── gnu.py
│   │   │   ├── __init__.py
│   │   │   ├── ndbm.py
│   │   │   └── __pycache__
│   │   │   ├── dumb.cpython-37.pyc
│   │   │   ├── gnu.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── ndbm.cpython-37.pyc
│   │   ├── _dummy_thread.py
│   │   ├── html
│   │   │   ├── entities.py
│   │   │   ├── __init__.py
│   │   │   ├── parser.py
│   │   │   └── __pycache__
│   │   │   ├── entities.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── parser.cpython-37.pyc
│   │   ├── http
│   │   │   ├── client.py
│   │   │   ├── cookiejar.py
│   │   │   ├── cookies.py
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── client.cpython-37.pyc
│   │   │   │   ├── cookiejar.cpython-37.pyc
│   │   │   │   ├── cookies.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── server.cpython-37.pyc
│   │   │   └── server.py
│   │   ├── __init__.py
│   │   ├── itertools.py
│   │   ├── _markupbase.py
│   │   ├── pickle.py
│   │   ├── __pycache__
│   │   │   ├── builtins.cpython-37.pyc
│   │   │   ├── collections.cpython-37.pyc
│   │   │   ├── configparser.cpython-37.pyc
│   │   │   ├── copyreg.cpython-37.pyc
│   │   │   ├── _dummy_thread.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── itertools.cpython-37.pyc
│   │   │   ├── _markupbase.cpython-37.pyc
│   │   │   ├── pickle.cpython-37.pyc
│   │   │   ├── queue.cpython-37.pyc
│   │   │   ├── reprlib.cpython-37.pyc
│   │   │   ├── socketserver.cpython-37.pyc
│   │   │   ├── subprocess.cpython-37.pyc
│   │   │   ├── sys.cpython-37.pyc
│   │   │   ├── _thread.cpython-37.pyc
│   │   │   └── winreg.cpython-37.pyc
│   │   ├── queue.py
│   │   ├── reprlib.py
│   │   ├── socketserver.py
│   │   ├── subprocess.py
│   │   ├── sys.py
│   │   ├── test
│   │   │   ├── __init__.py
│   │   │   ├── __pycache__
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   └── support.cpython-37.pyc
│   │   │   └── support.py
│   │   ├── _thread.py
│   │   ├── tkinter
│   │   │   ├── colorchooser.py
│   │   │   ├── commondialog.py
│   │   │   ├── constants.py
│   │   │   ├── dialog.py
│   │   │   ├── dnd.py
│   │   │   ├── filedialog.py
│   │   │   ├── font.py
│   │   │   ├── __init__.py
│   │   │   ├── messagebox.py
│   │   │   ├── __pycache__
│   │   │   │   ├── colorchooser.cpython-37.pyc
│   │   │   │   ├── commondialog.cpython-37.pyc
│   │   │   │   ├── constants.cpython-37.pyc
│   │   │   │   ├── dialog.cpython-37.pyc
│   │   │   │   ├── dnd.cpython-37.pyc
│   │   │   │   ├── filedialog.cpython-37.pyc
│   │   │   │   ├── font.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── messagebox.cpython-37.pyc
│   │   │   │   ├── scrolledtext.cpython-37.pyc
│   │   │   │   ├── simpledialog.cpython-37.pyc
│   │   │   │   ├── tix.cpython-37.pyc
│   │   │   │   └── ttk.cpython-37.pyc
│   │   │   ├── scrolledtext.py
│   │   │   ├── simpledialog.py
│   │   │   ├── tix.py
│   │   │   └── ttk.py
│   │   ├── urllib
│   │   │   ├── error.py
│   │   │   ├── __init__.py
│   │   │   ├── parse.py
│   │   │   ├── __pycache__
│   │   │   │   ├── error.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── parse.cpython-37.pyc
│   │   │   │   ├── request.cpython-37.pyc
│   │   │   │   ├── response.cpython-37.pyc
│   │   │   │   └── robotparser.cpython-37.pyc
│   │   │   ├── request.py
│   │   │   ├── response.py
│   │   │   └── robotparser.py
│   │   ├── winreg.py
│   │   └── xmlrpc
│   │   ├── client.py
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── client.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   └── server.cpython-37.pyc
│   │   └── server.py
│   ├── __pycache__
│   │   └── __init__.cpython-37.pyc
│   ├── standard_library
│   │   ├── __init__.py
│   │   └── __pycache__
│   │   └── __init__.cpython-37.pyc
│   ├── tests
│   │   ├── base.py
│   │   ├── __init__.py
│   │   └── __pycache__
│   │   ├── base.cpython-37.pyc
│   │   └── __init__.cpython-37.pyc
│   ├── types
│   │   ├── __init__.py
│   │   ├── newbytes.py
│   │   ├── newdict.py
│   │   ├── newint.py
│   │   ├── newlist.py
│   │   ├── newmemoryview.py
│   │   ├── newobject.py
│   │   ├── newopen.py
│   │   ├── newrange.py
│   │   ├── newstr.py
│   │   └── __pycache__
│   │   ├── __init__.cpython-37.pyc
│   │   ├── newbytes.cpython-37.pyc
│   │   ├── newdict.cpython-37.pyc
│   │   ├── newint.cpython-37.pyc
│   │   ├── newlist.cpython-37.pyc
│   │   ├── newmemoryview.cpython-37.pyc
│   │   ├── newobject.cpython-37.pyc
│   │   ├── newopen.cpython-37.pyc
│   │   ├── newrange.cpython-37.pyc
│   │   └── newstr.cpython-37.pyc
│   └── utils
│   ├── __init__.py
│   ├── __pycache__
│   │   ├── __init__.cpython-37.pyc
│   │   └── surrogateescape.cpython-37.pyc
│   └── surrogateescape.py
├── future-0.16.0-py3.7.egg-info
│   ├── dependency_links.txt
│   ├── entry_points.txt
│   ├── installed-files.txt
│   ├── PKG-INFO
│   ├── SOURCES.txt
│   └── top_level.txt
├── INSTALL.txt
├── LICENSE.txt
├── MANIFEST.in
├── nltk
│   ├── app
│   │   ├── chartparser_app.py
│   │   ├── chunkparser_app.py
│   │   ├── collocations_app.py
│   │   ├── concordance_app.py
│   │   ├── __init__.py
│   │   ├── nemo_app.py
│   │   ├── rdparser_app.py
│   │   ├── srparser_app.py
│   │   ├── wordfreq_app.py
│   │   └── wordnet_app.py
│   ├── book.py
│   ├── ccg
│   │   ├── api.py
│   │   ├── chart.py
│   │   ├── combinator.py
│   │   ├── __init__.py
│   │   ├── lexicon.py
│   │   ├── logic.py
│   │   └── __pycache__
│   │   ├── api.cpython-35.pyc
│   │   ├── api.cpython-37.pyc
│   │   ├── chart.cpython-35.pyc
│   │   ├── chart.cpython-37.pyc
│   │   ├── combinator.cpython-35.pyc
│   │   ├── combinator.cpython-37.pyc
│   │   ├── __init__.cpython-35.pyc
│   │   ├── __init__.cpython-37.pyc
│   │   ├── lexicon.cpython-35.pyc
│   │   ├── lexicon.cpython-37.pyc
│   │   ├── logic.cpython-35.pyc
│   │   └── logic.cpython-37.pyc
│   ├── chat
│   │   ├── eliza.py
│   │   ├── iesha.py
│   │   ├── __init__.py
│   │   ├── rude.py
│   │   ├── suntsu.py
│   │   ├── util.py
│   │   └── zen.py
│   ├── chunk
│   │   ├── api.py
│   │   ├── __init__.py
│   │   ├── named_entity.py
│   │   ├── __pycache__
│   │   │   ├── api.cpython-35.pyc
│   │   │   ├── api.cpython-37.pyc
│   │   │   ├── __init__.cpython-35.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── regexp.cpython-35.pyc
│   │   │   ├── regexp.cpython-37.pyc
│   │   │   ├── util.cpython-35.pyc
│   │   │   └── util.cpython-37.pyc
│   │   ├── regexp.py
│   │   └── util.py
│   ├── classify
│   │   ├── api.py
│   │   ├── decisiontree.py
│   │   ├── __init__.py
│   │   ├── maxent.py
│   │   ├── megam.py
│   │   ├── naivebayes.py
│   │   ├── positivenaivebayes.py
│   │   ├── __pycache__
│   │   │   ├── api.cpython-35.pyc
│   │   │   ├── api.cpython-37.pyc
│   │   │   ├── decisiontree.cpython-35.pyc
│   │   │   ├── decisiontree.cpython-37.pyc
│   │   │   ├── __init__.cpython-35.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── maxent.cpython-35.pyc
│   │   │   ├── maxent.cpython-37.pyc
│   │   │   ├── megam.cpython-35.pyc
│   │   │   ├── megam.cpython-37.pyc
│   │   │   ├── naivebayes.cpython-35.pyc
│   │   │   ├── naivebayes.cpython-37.pyc
│   │   │   ├── positivenaivebayes.cpython-35.pyc
│   │   │   ├── positivenaivebayes.cpython-37.pyc
│   │   │   ├── rte_classify.cpython-35.pyc
│   │   │   ├── rte_classify.cpython-37.pyc
│   │   │   ├── scikitlearn.cpython-35.pyc
│   │   │   ├── scikitlearn.cpython-37.pyc
│   │   │   ├── senna.cpython-35.pyc
│   │   │   ├── senna.cpython-37.pyc
│   │   │   ├── tadm.cpython-35.pyc
│   │   │   ├── tadm.cpython-37.pyc
│   │   │   ├── textcat.cpython-35.pyc
│   │   │   ├── textcat.cpython-37.pyc
│   │   │   ├── util.cpython-35.pyc
│   │   │   ├── util.cpython-37.pyc
│   │   │   ├── weka.cpython-35.pyc
│   │   │   └── weka.cpython-37.pyc
│   │   ├── rte_classify.py
│   │   ├── scikitlearn.py
│   │   ├── senna.py
│   │   ├── svm.py
│   │   ├── tadm.py
│   │   ├── textcat.py
│   │   ├── util.py
│   │   └── weka.py
│   ├── cluster
│   │   ├── api.py
│   │   ├── em.py
│   │   ├── gaac.py
│   │   ├── __init__.py
│   │   ├── kmeans.py
│   │   ├── __pycache__
│   │   │   ├── api.cpython-35.pyc
│   │   │   ├── em.cpython-35.pyc
│   │   │   ├── gaac.cpython-35.pyc
│   │   │   ├── __init__.cpython-35.pyc
│   │   │   ├── kmeans.cpython-35.pyc
│   │   │   └── util.cpython-35.pyc
│   │   └── util.py
│   ├── collections.py
│   ├── collocations.py
│   ├── compat.py
│   ├── corpus
│   │   ├── europarl_raw.py
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── __init__.cpython-35.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── util.cpython-35.pyc
│   │   │   └── util.cpython-37.pyc
│   │   ├── reader
│   │   │   ├── aligned.py
│   │   │   ├── api.py
│   │   │   ├── bnc.py
│   │   │   ├── bracket_parse.py
│   │   │   ├── categorized_sents.py
│   │   │   ├── chasen.py
│   │   │   ├── childes.py
│   │   │   ├── chunked.py
│   │   │   ├── cmudict.py
│   │   │   ├── comparative_sents.py
│   │   │   ├── conll.py
│   │   │   ├── crubadan.py
│   │   │   ├── dependency.py
│   │   │   ├── framenet.py
│   │   │   ├── ieer.py
│   │   │   ├── indian.py
│   │   │   ├── __init__.py
│   │   │   ├── ipipan.py
│   │   │   ├── knbc.py
│   │   │   ├── lin.py
│   │   │   ├── mte.py
│   │   │   ├── nkjp.py
│   │   │   ├── nombank.py
│   │   │   ├── nps_chat.py
│   │   │   ├── opinion_lexicon.py
│   │   │   ├── panlex_lite.py
│   │   │   ├── pl196x.py
│   │   │   ├── plaintext.py
│   │   │   ├── ppattach.py
│   │   │   ├── propbank.py
│   │   │   ├── pros_cons.py
│   │   │   ├── __pycache__
│   │   │   │   ├── aligned.cpython-35.pyc
│   │   │   │   ├── aligned.cpython-37.pyc
│   │   │   │   ├── api.cpython-35.pyc
│   │   │   │   ├── api.cpython-37.pyc
│   │   │   │   ├── bnc.cpython-35.pyc
│   │   │   │   ├── bnc.cpython-37.pyc
│   │   │   │   ├── bracket_parse.cpython-35.pyc
│   │   │   │   ├── bracket_parse.cpython-37.pyc
│   │   │   │   ├── categorized_sents.cpython-35.pyc
│   │   │   │   ├── categorized_sents.cpython-37.pyc
│   │   │   │   ├── chasen.cpython-35.pyc
│   │   │   │   ├── chasen.cpython-37.pyc
│   │   │   │   ├── childes.cpython-35.pyc
│   │   │   │   ├── childes.cpython-37.pyc
│   │   │   │   ├── chunked.cpython-35.pyc
│   │   │   │   ├── chunked.cpython-37.pyc
│   │   │   │   ├── cmudict.cpython-35.pyc
│   │   │   │   ├── cmudict.cpython-37.pyc
│   │   │   │   ├── comparative_sents.cpython-35.pyc
│   │   │   │   ├── comparative_sents.cpython-37.pyc
│   │   │   │   ├── conll.cpython-35.pyc
│   │   │   │   ├── conll.cpython-37.pyc
│   │   │   │   ├── crubadan.cpython-35.pyc
│   │   │   │   ├── crubadan.cpython-37.pyc
│   │   │   │   ├── dependency.cpython-35.pyc
│   │   │   │   ├── dependency.cpython-37.pyc
│   │   │   │   ├── framenet.cpython-35.pyc
│   │   │   │   ├── framenet.cpython-37.pyc
│   │   │   │   ├── ieer.cpython-35.pyc
│   │   │   │   ├── ieer.cpython-37.pyc
│   │   │   │   ├── indian.cpython-35.pyc
│   │   │   │   ├── indian.cpython-37.pyc
│   │   │   │   ├── __init__.cpython-35.pyc
│   │   │   │   ├── __init__.cpython-37.pyc
│   │   │   │   ├── ipipan.cpython-35.pyc
│   │   │   │   ├── ipipan.cpython-37.pyc
│   │   │   │   ├── knbc.cpython-35.pyc
│   │   │   │   ├── knbc.cpython-37.pyc
│   │   │   │   ├── lin.cpython-35.pyc
│   │   │   │   ├── lin.cpython-37.pyc
│   │   │   │   ├── mte.cpython-35.pyc
│   │   │   │   ├── mte.cpython-37.pyc
│   │   │   │   ├── nkjp.cpython-35.pyc
│   │   │   │   ├── nkjp.cpython-37.pyc
│   │   │   │   ├── nombank.cpython-35.pyc
│   │   │   │   ├── nombank.cpython-37.pyc
│   │   │   │   ├── nps_chat.cpython-35.pyc
│   │   │   │   ├── nps_chat.cpython-37.pyc
│   │   │   │   ├── opinion_lexicon.cpython-35.pyc
│   │   │   │   ├── opinion_lexicon.cpython-37.pyc
│   │   │   │   ├── panlex_lite.cpython-35.pyc
│   │   │   │   ├── panlex_lite.cpython-37.pyc
│   │   │   │   ├── pl196x.cpython-35.pyc
│   │   │   │   ├── pl196x.cpython-37.pyc
│   │   │   │   ├── plaintext.cpython-35.pyc
│   │   │   │   ├── plaintext.cpython-37.pyc
│   │   │   │   ├── ppattach.cpython-35.pyc
│   │   │   │   ├── ppattach.cpython-37.pyc
│   │   │   │   ├── propbank.cpython-35.pyc
│   │   │   │   ├── propbank.cpython-37.pyc
│   │   │   │   ├── pros_cons.cpython-35.pyc
│   │   │   │   ├── pros_cons.cpython-37.pyc
│   │   │   │   ├── reviews.cpython-35.pyc
│   │   │   │   ├── reviews.cpython-37.pyc
│   │   │   │   ├── rte.cpython-35.pyc
│   │   │   │   ├── rte.cpython-37.pyc
│   │   │   │   ├── semcor.cpython-35.pyc
│   │   │   │   ├── semcor.cpython-37.pyc
│   │   │   │   ├── senseval.cpython-35.pyc
│   │   │   │   ├── senseval.cpython-37.pyc
│   │   │   │   ├── sentiwordnet.cpython-35.pyc
│   │   │   │   ├── sentiwordnet.cpython-37.pyc
│   │   │   │   ├── sinica_treebank.cpython-35.pyc
│   │   │   │   ├── sinica_treebank.cpython-37.pyc
│   │   │   │   ├── string_category.cpython-35.pyc
│   │   │   │   ├── string_category.cpython-37.pyc
│   │   │   │   ├── switchboard.cpython-35.pyc
│   │   │   │   ├── switchboard.cpython-37.pyc
│   │   │   │   ├── tagged.cpython-35.pyc
│   │   │   │   ├── tagged.cpython-37.pyc
│   │   │   │   ├── timit.cpython-35.pyc
│   │   │   │   ├── timit.cpython-37.pyc
│   │   │   │   ├── toolbox.cpython-35.pyc
│   │   │   │   ├── toolbox.cpython-37.pyc
│   │   │   │   ├── twitter.cpython-35.pyc
│   │   │   │   ├── twitter.cpython-37.pyc
│   │   │   │   ├── udhr.cpython-35.pyc
│   │   │   │   ├── udhr.cpython-37.pyc
│   │   │   │   ├── util.cpython-35.pyc
│   │   │   │   ├── util.cpython-37.pyc
│   │   │   │   ├── verbnet.cpython-35.pyc
│   │   │   │   ├── verbnet.cpython-37.pyc
│   │   │   │   ├── wordlist.cpython-35.pyc
│   │   │   │   ├── wordlist.cpython-37.pyc
│   │   │   │   ├── wordnet.cpython-35.pyc
│   │   │   │   ├── wordnet.cpython-37.pyc
│   │   │   │   ├── xmldocs.cpython-35.pyc
│   │   │   │   ├── xmldocs.cpython-37.pyc
│   │   │   │   ├── ycoe.cpython-35.pyc
│   │   │   │   └── ycoe.cpython-37.pyc
│   │   │   ├── reviews.py
│   │   │   ├── rte.py
│   │   │   ├── semcor.py
│   │   │   ├── senseval.py
│   │   │   ├── sentiwordnet.py
│   │   │   ├── sinica_treebank.py
│   │   │   ├── string_category.py
│   │   │   ├── switchboard.py
│   │   │   ├── tagged.py
│   │   │   ├── timit.py
│   │   │   ├── toolbox.py
│   │   │   ├── twitter.py
│   │   │   ├── udhr.py
│   │   │   ├── util.py
│   │   │   ├── verbnet.py
│   │   │   ├── wordlist.py
│   │   │   ├── wordnet.py
│   │   │   ├── xmldocs.py
│   │   │   └── ycoe.py
│   │   └── util.py
│   ├── data.py
│   ├── decorators.py
│   ├── downloader.py
│   ├── draw
│   │   ├── cfg.py
│   │   ├── dispersion.py
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── cfg.cpython-35.pyc
│   │   │   ├── cfg.cpython-37.pyc
│   │   │   ├── dispersion.cpython-35.pyc
│   │   │   ├── dispersion.cpython-37.pyc
│   │   │   ├── __init__.cpython-35.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── table.cpython-35.pyc
│   │   │   ├── table.cpython-37.pyc
│   │   │   ├── tree.cpython-35.pyc
│   │   │   ├── tree.cpython-37.pyc
│   │   │   ├── util.cpython-35.pyc
│   │   │   └── util.cpython-37.pyc
│   │   ├── table.py
│   │   ├── tree.py
│   │   └── util.py
│   ├── featstruct.py
│   ├── grammar.py
│   ├── help.py
│   ├── inference
│   │   ├── api.py
│   │   ├── discourse.py
│   │   ├── __init__.py
│   │   ├── mace.py
│   │   ├── nonmonotonic.py
│   │   ├── prover9.py
│   │   ├── __pycache__
│   │   │   ├── api.cpython-35.pyc
│   │   │   ├── api.cpython-37.pyc
│   │   │   ├── discourse.cpython-35.pyc
│   │   │   ├── discourse.cpython-37.pyc
│   │   │   ├── __init__.cpython-35.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── mace.cpython-35.pyc
│   │   │   ├── mace.cpython-37.pyc
│   │   │   ├── prover9.cpython-35.pyc
│   │   │   ├── prover9.cpython-37.pyc
│   │   │   ├── resolution.cpython-35.pyc
│   │   │   ├── resolution.cpython-37.pyc
│   │   │   ├── tableau.cpython-35.pyc
│   │   │   └── tableau.cpython-37.pyc
│   │   ├── resolution.py
│   │   └── tableau.py
│   ├── __init__.py
│   ├── internals.py
│   ├── jsontags.py
│   ├── lazyimport.py
│   ├── metrics
│   │   ├── agreement.py
│   │   ├── aline.py
│   │   ├── association.py
│   │   ├── confusionmatrix.py
│   │   ├── distance.py
│   │   ├── __init__.py
│   │   ├── paice.py
│   │   ├── __pycache__
│   │   │   ├── agreement.cpython-35.pyc
│   │   │   ├── agreement.cpython-37.pyc
│   │   │   ├── aline.cpython-35.pyc
│   │   │   ├── aline.cpython-37.pyc
│   │   │   ├── association.cpython-35.pyc
│   │   │   ├── association.cpython-37.pyc
│   │   │   ├── confusionmatrix.cpython-35.pyc
│   │   │   ├── confusionmatrix.cpython-37.pyc
│   │   │   ├── distance.cpython-35.pyc
│   │   │   ├── distance.cpython-37.pyc
│   │   │   ├── __init__.cpython-35.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── paice.cpython-35.pyc
│   │   │   ├── paice.cpython-37.pyc
│   │   │   ├── scores.cpython-35.pyc
│   │   │   ├── scores.cpython-37.pyc
│   │   │   ├── segmentation.cpython-35.pyc
│   │   │   ├── segmentation.cpython-37.pyc
│   │   │   ├── spearman.cpython-35.pyc
│   │   │   └── spearman.cpython-37.pyc
│   │   ├── scores.py
│   │   ├── segmentation.py
│   │   └── spearman.py
│   ├── misc
│   │   ├── babelfish.py
│   │   ├── chomsky.py
│   │   ├── __init__.py
│   │   ├── minimalset.py
│   │   ├── __pycache__
│   │   │   ├── babelfish.cpython-35.pyc
│   │   │   ├── babelfish.cpython-37.pyc
│   │   │   ├── chomsky.cpython-35.pyc
│   │   │   ├── chomsky.cpython-37.pyc
│   │   │   ├── __init__.cpython-35.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── minimalset.cpython-35.pyc
│   │   │   ├── minimalset.cpython-37.pyc
│   │   │   ├── wordfinder.cpython-35.pyc
│   │   │   └── wordfinder.cpython-37.pyc
│   │   ├── sort.py
│   │   └── wordfinder.py
│   ├── parse
│   │   ├── api.py
│   │   ├── bllip.py
│   │   ├── chart.py
│   │   ├── corenlp.py
│   │   ├── dependencygraph.py
│   │   ├── earleychart.py
│   │   ├── evaluate.py
│   │   ├── featurechart.py
│   │   ├── generate.py
│   │   ├── __init__.py
│   │   ├── malt.py
│   │   ├── nonprojectivedependencyparser.py
│   │   ├── pchart.py
│   │   ├── projectivedependencyparser.py
│   │   ├── __pycache__
│   │   │   ├── api.cpython-35.pyc
│   │   │   ├── api.cpython-37.pyc
│   │   │   ├── bllip.cpython-35.pyc
│   │   │   ├── bllip.cpython-37.pyc
│   │   │   ├── chart.cpython-35.pyc
│   │   │   ├── chart.cpython-37.pyc
│   │   │   ├── corenlp.cpython-35.pyc
│   │   │   ├── corenlp.cpython-37.pyc
│   │   │   ├── dependencygraph.cpython-35.pyc
│   │   │   ├── dependencygraph.cpython-37.pyc
│   │   │   ├── earleychart.cpython-35.pyc
│   │   │   ├── earleychart.cpython-37.pyc
│   │   │   ├── evaluate.cpython-35.pyc
│   │   │   ├── evaluate.cpython-37.pyc
│   │   │   ├── featurechart.cpython-35.pyc
│   │   │   ├── featurechart.cpython-37.pyc
│   │   │   ├── __init__.cpython-35.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── malt.cpython-35.pyc
│   │   │   ├── malt.cpython-37.pyc
│   │   │   ├── nonprojectivedependencyparser.cpython-35.pyc
│   │   │   ├── nonprojectivedependencyparser.cpython-37.pyc
│   │   │   ├── pchart.cpython-35.pyc
│   │   │   ├── pchart.cpython-37.pyc
│   │   │   ├── projectivedependencyparser.cpython-35.pyc
│   │   │   ├── projectivedependencyparser.cpython-37.pyc
│   │   │   ├── recursivedescent.cpython-35.pyc
│   │   │   ├── recursivedescent.cpython-37.pyc
│   │   │   ├── shiftreduce.cpython-35.pyc
│   │   │   ├── shiftreduce.cpython-37.pyc
│   │   │   ├── transitionparser.cpython-35.pyc
│   │   │   ├── transitionparser.cpython-37.pyc
│   │   │   ├── util.cpython-35.pyc
│   │   │   ├── util.cpython-37.pyc
│   │   │   ├── viterbi.cpython-35.pyc
│   │   │   └── viterbi.cpython-37.pyc
│   │   ├── recursivedescent.py
│   │   ├── shiftreduce.py
│   │   ├── stanford.py
│   │   ├── transitionparser.py
│   │   ├── util.py
│   │   └── viterbi.py
│   ├── probability.py
│   ├── __pycache__
│   │   ├── collections.cpython-35.pyc
│   │   ├── collections.cpython-37.pyc
│   │   ├── collocations.cpython-35.pyc
│   │   ├── collocations.cpython-37.pyc
│   │   ├── compat.cpython-35.pyc
│   │   ├── compat.cpython-37.pyc
│   │   ├── data.cpython-35.pyc
│   │   ├── data.cpython-37.pyc
│   │   ├── decorators.cpython-35.pyc
│   │   ├── decorators.cpython-37.pyc
│   │   ├── downloader.cpython-35.pyc
│   │   ├── downloader.cpython-37.pyc
│   │   ├── featstruct.cpython-35.pyc
│   │   ├── featstruct.cpython-37.pyc
│   │   ├── grammar.cpython-35.pyc
│   │   ├── grammar.cpython-37.pyc
│   │   ├── help.cpython-35.pyc
│   │   ├── help.cpython-37.pyc
│   │   ├── __init__.cpython-35.pyc
│   │   ├── __init__.cpython-37.pyc
│   │   ├── internals.cpython-35.pyc
│   │   ├── internals.cpython-37.pyc
│   │   ├── jsontags.cpython-35.pyc
│   │   ├── jsontags.cpython-37.pyc
│   │   ├── lazyimport.cpython-35.pyc
│   │   ├── lazyimport.cpython-37.pyc
│   │   ├── probability.cpython-35.pyc
│   │   ├── probability.cpython-37.pyc
│   │   ├── text.cpython-35.pyc
│   │   ├── text.cpython-37.pyc
│   │   ├── toolbox.cpython-35.pyc
│   │   ├── toolbox.cpython-37.pyc
│   │   ├── tree.cpython-35.pyc
│   │   ├── tree.cpython-37.pyc
│   │   ├── treetransforms.cpython-35.pyc
│   │   ├── treetransforms.cpython-37.pyc
│   │   ├── util.cpython-35.pyc
│   │   ├── util.cpython-37.pyc
│   │   ├── wsd.cpython-35.pyc
│   │   └── wsd.cpython-37.pyc
│   ├── sem
│   │   ├── boxer.py
│   │   ├── chat80.py
│   │   ├── cooper_storage.py
│   │   ├── drt_glue_demo.py
│   │   ├── drt.py
│   │   ├── evaluate.py
│   │   ├── glue.py
│   │   ├── hole.py
│   │   ├── __init__.py
│   │   ├── lfg.py
│   │   ├── linearlogic.py
│   │   ├── logic.py
│   │   ├── __pycache__
│   │   │   ├── boxer.cpython-35.pyc
│   │   │   ├── boxer.cpython-37.pyc
│   │   │   ├── drt.cpython-35.pyc
│   │   │   ├── drt.cpython-37.pyc
│   │   │   ├── evaluate.cpython-35.pyc
│   │   │   ├── evaluate.cpython-37.pyc
│   │   │   ├── glue.cpython-35.pyc
│   │   │   ├── glue.cpython-37.pyc
│   │   │   ├── __init__.cpython-35.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── lfg.cpython-35.pyc
│   │   │   ├── lfg.cpython-37.pyc
│   │   │   ├── linearlogic.cpython-35.pyc
│   │   │   ├── linearlogic.cpython-37.pyc
│   │   │   ├── logic.cpython-35.pyc
│   │   │   ├── logic.cpython-37.pyc
│   │   │   ├── relextract.cpython-35.pyc
│   │   │   ├── relextract.cpython-37.pyc
│   │   │   ├── skolemize.cpython-35.pyc
│   │   │   ├── skolemize.cpython-37.pyc
│   │   │   ├── util.cpython-35.pyc
│   │   │   └── util.cpython-37.pyc
│   │   ├── relextract.py
│   │   ├── skolemize.py
│   │   └── util.py
│   ├── sentiment
│   │   ├── __init__.py
│   │   ├── sentiment_analyzer.py
│   │   ├── util.py
│   │   └── vader.py
│   ├── stem
│   │   ├── api.py
│   │   ├── arlstem.py
│   │   ├── __init__.py
│   │   ├── isri.py
│   │   ├── lancaster.py
│   │   ├── porter.py
│   │   ├── __pycache__
│   │   │   ├── api.cpython-35.pyc
│   │   │   ├── api.cpython-37.pyc
│   │   │   ├── __init__.cpython-35.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── isri.cpython-35.pyc
│   │   │   ├── isri.cpython-37.pyc
│   │   │   ├── lancaster.cpython-35.pyc
│   │   │   ├── lancaster.cpython-37.pyc
│   │   │   ├── porter.cpython-35.pyc
│   │   │   ├── porter.cpython-37.pyc
│   │   │   ├── regexp.cpython-35.pyc
│   │   │   ├── regexp.cpython-37.pyc
│   │   │   ├── rslp.cpython-35.pyc
│   │   │   ├── rslp.cpython-37.pyc
│   │   │   ├── snowball.cpython-35.pyc
│   │   │   ├── snowball.cpython-37.pyc
│   │   │   ├── util.cpython-35.pyc
│   │   │   ├── util.cpython-37.pyc
│   │   │   ├── wordnet.cpython-35.pyc
│   │   │   └── wordnet.cpython-37.pyc
│   │   ├── regexp.py
│   │   ├── rslp.py
│   │   ├── snowball.py
│   │   ├── util.py
│   │   └── wordnet.py
│   ├── tag
│   │   ├── api.py
│   │   ├── brill.py
│   │   ├── brill_trainer.py
│   │   ├── crf.py
│   │   ├── hmm.py
│   │   ├── hunpos.py
│   │   ├── __init__.py
│   │   ├── mapping.py
│   │   ├── perceptron.py
│   │   ├── __pycache__
│   │   │   ├── api.cpython-35.pyc
│   │   │   ├── api.cpython-37.pyc
│   │   │   ├── brill.cpython-35.pyc
│   │   │   ├── brill.cpython-37.pyc
│   │   │   ├── brill_trainer.cpython-35.pyc
│   │   │   ├── brill_trainer.cpython-37.pyc
│   │   │   ├── crf.cpython-35.pyc
│   │   │   ├── crf.cpython-37.pyc
│   │   │   ├── hmm.cpython-35.pyc
│   │   │   ├── hmm.cpython-37.pyc
│   │   │   ├── hunpos.cpython-35.pyc
│   │   │   ├── hunpos.cpython-37.pyc
│   │   │   ├── __init__.cpython-35.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── mapping.cpython-35.pyc
│   │   │   ├── mapping.cpython-37.pyc
│   │   │   ├── perceptron.cpython-35.pyc
│   │   │   ├── perceptron.cpython-37.pyc
│   │   │   ├── senna.cpython-35.pyc
│   │   │   ├── senna.cpython-37.pyc
│   │   │   ├── sequential.cpython-35.pyc
│   │   │   ├── sequential.cpython-37.pyc
│   │   │   ├── stanford.cpython-35.pyc
│   │   │   ├── stanford.cpython-37.pyc
│   │   │   ├── tnt.cpython-35.pyc
│   │   │   ├── tnt.cpython-37.pyc
│   │   │   ├── util.cpython-35.pyc
│   │   │   └── util.cpython-37.pyc
│   │   ├── senna.py
│   │   ├── sequential.py
│   │   ├── stanford.py
│   │   ├── tnt.py
│   │   └── util.py
│   ├── tbl
│   │   ├── api.py
│   │   ├── demo.py
│   │   ├── erroranalysis.py
│   │   ├── feature.py
│   │   ├── __init__.py
│   │   ├── __pycache__
│   │   │   ├── erroranalysis.cpython-35.pyc
│   │   │   ├── erroranalysis.cpython-37.pyc
│   │   │   ├── feature.cpython-35.pyc
│   │   │   ├── feature.cpython-37.pyc
│   │   │   ├── __init__.cpython-35.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── rule.cpython-35.pyc
│   │   │   ├── rule.cpython-37.pyc
│   │   │   ├── template.cpython-35.pyc
│   │   │   └── template.cpython-37.pyc
│   │   ├── rule.py
│   │   └── template.py
│   ├── test
│   │   ├── all.py
│   │   ├── bleu.doctest
│   │   ├── bnc.doctest
│   │   ├── ccg.doctest
│   │   ├── ccg_semantics.doctest
│   │   ├── chat80.doctest
│   │   ├── childes.doctest
│   │   ├── childes_fixt.py
│   │   ├── chunk.doctest
│   │   ├── classify.doctest
│   │   ├── classify_fixt.py
│   │   ├── collections.doctest
│   │   ├── collocations.doctest
│   │   ├── compat.doctest
│   │   ├── compat_fixt.py
│   │   ├── concordance.doctest
│   │   ├── corpus.doctest
│   │   ├── corpus_fixt.py
│   │   ├── crubadan.doctest
│   │   ├── data.doctest
│   │   ├── dependency.doctest
│   │   ├── discourse.doctest
│   │   ├── discourse_fixt.py
│   │   ├── doctest_nose_plugin.py
│   │   ├── drt.doctest
│   │   ├── featgram.doctest
│   │   ├── featstruct.doctest
│   │   ├── framenet.doctest
│   │   ├── generate.doctest
│   │   ├── gensim.doctest
│   │   ├── gensim_fixt.py
│   │   ├── gluesemantics.doctest
│   │   ├── gluesemantics_malt.doctest
│   │   ├── gluesemantics_malt_fixt.py
│   │   ├── grammar.doctest
│   │   ├── grammartestsuites.doctest
│   │   ├── index.doctest
│   │   ├── inference.doctest
│   │   ├── inference_fixt.py
│   │   ├── __init__.py
│   │   ├── internals.doctest
│   │   ├── japanese.doctest
│   │   ├── logic.doctest
│   │   ├── metrics.doctest
│   │   ├── misc.doctest
│   │   ├── nonmonotonic.doctest
│   │   ├── nonmonotonic_fixt.py
│   │   ├── paice.doctest
│   │   ├── parse.doctest
│   │   ├── portuguese_en.doctest
│   │   ├── portuguese_en_fixt.py
│   │   ├── probability.doctest
│   │   ├── probability_fixt.py
│   │   ├── propbank.doctest
│   │   ├── relextract.doctest
│   │   ├── resolution.doctest
│   │   ├── runtests.py
│   │   ├── segmentation_fixt.py
│   │   ├── semantics.doctest
│   │   ├── semantics_fixt.py
│   │   ├── sentiment.doctest
│   │   ├── sentiwordnet.doctest
│   │   ├── simple.doctest
│   │   ├── stem.doctest
│   │   ├── tag.doctest
│   │   ├── tokenize.doctest
│   │   ├── toolbox.doctest
│   │   ├── translate.doctest
│   │   ├── translate_fixt.py
│   │   ├── tree.doctest
│   │   ├── treeprettyprinter.doctest
│   │   ├── treetransforms.doctest
│   │   ├── unit
│   │   │   ├── __init__.py
│   │   │   ├── test_2x_compat.py
│   │   │   ├── test_aline.py
│   │   │   ├── test_chunk.py
│   │   │   ├── test_classify.py
│   │   │   ├── test_collocations.py
│   │   │   ├── test_concordance.py
│   │   │   ├── test_corenlp.py
│   │   │   ├── test_corpora.py
│   │   │   ├── test_corpus_views.py
│   │   │   ├── test_hmm.py
│   │   │   ├── test_json2csv_corpus.py
│   │   │   ├── test_naivebayes.py
│   │   │   ├── test_rte_classify.py
│   │   │   ├── test_seekable_unicode_stream_reader.py
│   │   │   ├── test_senna.py
│   │   │   ├── test_stem.py
│   │   │   ├── test_tag.py
│   │   │   ├── test_tgrep.py
│   │   │   ├── test_tokenize.py
│   │   │   ├── test_twitter_auth.py
│   │   │   ├── test_wordnet.py
│   │   │   ├── translate
│   │   │   │   ├── __init__.py
│   │   │   │   ├── test_bleu.py
│   │   │   │   ├── test_gdfa.py
│   │   │   │   ├── test_ibm1.py
│   │   │   │   ├── test_ibm2.py
│   │   │   │   ├── test_ibm3.py
│   │   │   │   ├── test_ibm4.py
│   │   │   │   ├── test_ibm5.py
│   │   │   │   ├── test_ibm_model.py
│   │   │   │   ├── test_nist.py
│   │   │   │   └── test_stack_decoder.py
│   │   │   └── utils.py
│   │   ├── util.doctest
│   │   ├── wordnet.doctest
│   │   ├── wordnet_fixt.py
│   │   ├── wordnet_lch.doctest
│   │   └── wsd.doctest
│   ├── text.py
│   ├── tgrep.py
│   ├── tokenize
│   │   ├── api.py
│   │   ├── casual.py
│   │   ├── __init__.py
│   │   ├── mwe.py
│   │   ├── nist.py
│   │   ├── punkt.py
│   │   ├── __pycache__
│   │   │   ├── api.cpython-35.pyc
│   │   │   ├── api.cpython-37.pyc
│   │   │   ├── casual.cpython-35.pyc
│   │   │   ├── casual.cpython-37.pyc
│   │   │   ├── __init__.cpython-35.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── mwe.cpython-35.pyc
│   │   │   ├── mwe.cpython-37.pyc
│   │   │   ├── punkt.cpython-35.pyc
│   │   │   ├── punkt.cpython-37.pyc
│   │   │   ├── regexp.cpython-35.pyc
│   │   │   ├── regexp.cpython-37.pyc
│   │   │   ├── repp.cpython-35.pyc
│   │   │   ├── repp.cpython-37.pyc
│   │   │   ├── sexpr.cpython-35.pyc
│   │   │   ├── sexpr.cpython-37.pyc
│   │   │   ├── simple.cpython-35.pyc
│   │   │   ├── simple.cpython-37.pyc
│   │   │   ├── stanford_segmenter.cpython-35.pyc
│   │   │   ├── stanford_segmenter.cpython-37.pyc
│   │   │   ├── texttiling.cpython-35.pyc
│   │   │   ├── texttiling.cpython-37.pyc
│   │   │   ├── toktok.cpython-35.pyc
│   │   │   ├── toktok.cpython-37.pyc
│   │   │   ├── treebank.cpython-35.pyc
│   │   │   ├── treebank.cpython-37.pyc
│   │   │   ├── util.cpython-35.pyc
│   │   │   └── util.cpython-37.pyc
│   │   ├── regexp.py
│   │   ├── repp.py
│   │   ├── sexpr.py
│   │   ├── simple.py
│   │   ├── stanford.py
│   │   ├── stanford_segmenter.py
│   │   ├── texttiling.py
│   │   ├── toktok.py
│   │   ├── treebank.py
│   │   └── util.py
│   ├── toolbox.py
│   ├── translate
│   │   ├── api.py
│   │   ├── bleu_score.py
│   │   ├── chrf_score.py
│   │   ├── gale_church.py
│   │   ├── gdfa.py
│   │   ├── gleu_score.py
│   │   ├── ibm1.py
│   │   ├── ibm2.py
│   │   ├── ibm3.py
│   │   ├── ibm4.py
│   │   ├── ibm5.py
│   │   ├── ibm_model.py
│   │   ├── __init__.py
│   │   ├── metrics.py
│   │   ├── nist_score.py
│   │   ├── phrase_based.py
│   │   ├── __pycache__
│   │   │   ├── api.cpython-35.pyc
│   │   │   ├── api.cpython-37.pyc
│   │   │   ├── bleu_score.cpython-35.pyc
│   │   │   ├── bleu_score.cpython-37.pyc
│   │   │   ├── ibm1.cpython-35.pyc
│   │   │   ├── ibm1.cpython-37.pyc
│   │   │   ├── ibm2.cpython-35.pyc
│   │   │   ├── ibm2.cpython-37.pyc
│   │   │   ├── ibm3.cpython-35.pyc
│   │   │   ├── ibm3.cpython-37.pyc
│   │   │   ├── ibm4.cpython-35.pyc
│   │   │   ├── ibm4.cpython-37.pyc
│   │   │   ├── ibm5.cpython-35.pyc
│   │   │   ├── ibm5.cpython-37.pyc
│   │   │   ├── ibm_model.cpython-35.pyc
│   │   │   ├── ibm_model.cpython-37.pyc
│   │   │   ├── __init__.cpython-35.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── metrics.cpython-35.pyc
│   │   │   ├── metrics.cpython-37.pyc
│   │   │   ├── ribes_score.cpython-35.pyc
│   │   │   ├── ribes_score.cpython-37.pyc
│   │   │   ├── stack_decoder.cpython-35.pyc
│   │   │   └── stack_decoder.cpython-37.pyc
│   │   ├── ribes_score.py
│   │   └── stack_decoder.py
│   ├── treeprettyprinter.py
│   ├── tree.py
│   ├── treetransforms.py
│   ├── twitter
│   │   ├── api.py
│   │   ├── common.py
│   │   ├── __init__.py
│   │   ├── twitterclient.py
│   │   ├── twitter_demo.py
│   │   └── util.py
│   ├── util.py
│   ├── VERSION
│   └── wsd.py
├── nltk.egg-info
│   ├── dependency_links.txt
│   ├── not-zip-safe
│   ├── PKG-INFO
│   ├── requires.txt
│   ├── SOURCES.txt
│   └── top_level.txt
├── PKG-INFO
├── python_version.py
├── README.md
├── setup.cfg
├── setup.py
└── Url.txt

118 directories, 1480 files

标签:

实例下载地址

Bleu值计算工具

不能下载?内容有错? 点击这里报错 + 投诉 + 提问

好例子网口号:伸出你的我的手 — 分享

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警