书栈网 · BookStack 本次搜索耗时 0.024 秒,为您找到 7676 个相关结果.
  • 2.2 按文体计数词汇

    2.2 按文体计数词汇 2.2 按文体计数词汇 在1 中,我们看到一个条件频率分布,其中条件为布朗语料库的每一节,并对每节计数词汇。FreqDist() 以一个简单的列表作为输入,ConditionalFreqDist() 以一个配对列表作为输入。 >>> from nltk . corpus import brown >>> c...
  • 1.9 加载你自己的语料库

    1.9 加载你自己的语料库 1.9 加载你自己的语料库 如果你有自己收集的文本文件,并且想使用前面讨论的方法访问它们,你可以很容易地在 NLTK 中的PlaintextCorpusReader 帮助下加载它们。检查你的文件在文件系统中的位置;在下面的例子中,我们假定你的文件在/usr/share/dict 目录下。不管是什么位置,将变量corpus_...
  • Check the return type of exit [exit-return]

    Check the return type of exit [exit-return] Check the return type of exit [exit-return] If mypy can determine that exit always returns False , mypychecks that the return t...
  • 2.4 字符串

    2.4 字符串 2.4 字符串 我们用来访问列表元素的一些方法也可以用在单独的词或字符串上。例如可以把一个字符串指定给一个变量 ,索引一个字符串 ,切片一个字符串 : >>> name = 'Monty' ![[ 1 ]](/ projects / nlp - py - 2e - zh / Images / 4b5cae275c53c5...
  • 进阶指南:如何编写可重用程序

    进阶指南:如何编写可重用程序 可重用性很重要 你的项目和可复用应用 安装必须环境 打包你的应用 使用你自己的包名 发布你的应用 通过 virtualenv 安装 Python 包 进阶指南:如何编写可重用程序 这篇进阶指南从 Tutorial 7 结尾的地方继续讲起。我们将会把我们的 Web-poll 放进一个独立的 Python 包...
  • Writing your first Django app, part 2

    Writing your first Django app, part 2 Database setup Creating models Activating models Playing with the API Introducing the Django Admin Creating an admin user Start the devel...
  • 15.2 Run Python code and interact with Python

    15.2 Run Python code and interact with Python References 15.2 Run Python code and interact with Python We know you love Python, so let’s make it super clear: R Markdown and kn...
  • AWS Chalice

    AWS Chalice Creating a new Chalice project Testing the Chalice API Deploying the Chalice API AWS Chalice Understanding the usage of AWS Chalice with LocalStack AWS Chalice ...
  • 第一个应用程序

    第一个应用程序 第一个应用程序 你现在已经确认数据库连接正常工作了,让我们来创建一个 Django app-一个包含模型,视图和Django代码,并且形式为独立Python包的完整Django应用。 在这里要先解释一些术语,初学者可能会混淆它们。 在第二章我们已经创建了 project , 那么 project 和 app 之间到底有什么不同呢?它...
  • 6. 模块

    6. 模块¶ 6.1. 深入模块¶ 6.1.1. 作为脚本来执行模块¶ 6.1.2. 模块的搜索路径¶ 6.1.3. “编译的” Python 文件¶ 6.2. 标准模块¶ 6.3. dir() 函数¶ 6.4. 包¶ 6.4.1. 从 * 导入包¶ 6.4.2. 包内引用¶ 6.4.3. 多重目录中的包¶ 6. 模块¶ 如果你退...