doccano安装部署

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档

文章目录

  • 前言
  • 一、doccano是什么?
  • 二、使用步骤
    • 1.安装
    • 2.启动
  • 总结


前言

NLP标注工具目前有很多,开源好用的就包括这个doccano,部署简答,支持多用户标注。


一、doccano是什么?

doccano是一款NLP标注工具。https://github.com/doccano/doccano

二、使用步骤

1.安装

代码如下(示例):

pip install doccano

2.启动

代码如下(示例):

doccano --username admin --password 123456

目前官网初始化和启动命令未更新,经测试,这样启动是好用的。
启动后显示如下:

Setup Database.
Operations to perform:
  Apply all migrations: admin, api, auth, authtoken, contenttypes, sessions, social_django
Running migrations:
  No migrations to apply.
  Your models have changes that are not yet reflected in a migration, and so won't be applied.
  Run 'manage.py makemigrations' to make new migrations, and then re-run 'manage.py migrate' to apply them.
Create admin user.
User admin already exists.
Setting password for User admin.
Starting server with port 8000.
Performing system checks...

System check identified no issues (0 silenced).
April 13, 2022 - 09:21:14
Django version 2.2.13, using settings 'app.settings'
Starting development server at http://0.0.0.0:8000/
Quit the server with CTRL-BREAK.

总结

提示:这里对文章进行总结:
例如:以上就是今天要讲的内容,本文仅仅简单介绍了pandas的使用,而pandas提供了大量能使我们快速便捷地处理数据的函数和方法。

你可能感兴趣的:(自然语言处理)