首页 > 其他 > 详细

学习笔记(6)- pytext训练会话助手

时间:2020-01-25 19:22:15      阅读:100      评论:0      收藏:0      [点我收藏+]

https://github.com/facebookresearch/pytext

https://pytext.readthedocs.io/en/master/

https://pytext.readthedocs.io/en/master/train_your_first_model.html

(pytext) $ pytext
 
Usage: pytext [OPTIONS] COMMAND [ARGS]...
 
Configs can be passed by file or directly from json. If neither --config-
file or --config-json is passed, attempts to read the file from stdin.
 
Example:
 
pytext train < demos/docnn.json
 
Options:
--config-file TEXT
--config-json TEXT
--help Show this message and exit.
 
Commands:
export Convert a pytext model snapshot to a caffe2 model.
predict Start a repl executing examples against a caffe2 model.
test Test a trained model snapshot.
train Train a model and save the best snapshot.

技术分享图片

训练数据:
/Users/huihui/git/pytext/tests/data/train_data_tiny.tsv
/Users/huihui/git/pytext/tests/data/test_data_tiny.tsv

参数设置:/Users/huihui/git/pytext/demo/configs/docnn.json

(pytext) $ cat demo/configs/docnn.json
{
  "version": 8,
  "task": {
    "DocumentClassificationTask": {
      "data": {
        "source": {
          "TSVDataSource": {
            "field_names": ["label", "slots", "text"],
            "train_filename": "tests/data/train_data_tiny.tsv",
            "test_filename": "tests/data/test_data_tiny.tsv",
            "eval_filename": "tests/data/test_data_tiny.tsv"
          }
        }
      },
      "model": {
        "DocModel": {
          "representation": {
            "DocNNRepresentation": {}
          }
        }
      }
    }
  }
}

测试结果
技术分享图片

学习笔记(6)- pytext训练会话助手

原文:https://www.cnblogs.com/xuehuiping/p/12205347.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!