From ba43d7e6b00217e9bbcd7bcbf486132dcae203a5 Mon Sep 17 00:00:00 2001 From: Coet Date: Wed, 29 Aug 2018 16:56:35 +0800 Subject: [PATCH] Destroyed How to train a model? (markdown) --- How-to-train-a-model?.md | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 How-to-train-a-model?.md diff --git a/How-to-train-a-model?.md b/How-to-train-a-model?.md deleted file mode 100644 index a876b98..0000000 --- a/How-to-train-a-model?.md +++ /dev/null @@ -1,11 +0,0 @@ -1. Define a model, which is initialized with `args`. -[example](https://github.com/fastnlp/fastNLP/blob/743a6d75474fa393bc849c0392317c2c6bd868e4/fastNLP/models/sequence_modeling.py#L12) - -2. Set model parameters in the config file. The parameters you set will be packed as `args` and used in model initialization. -[example](https://github.com/fastnlp/fastNLP/blob/743a6d75474fa393bc849c0392317c2c6bd868e4/reproduction/chinese_word_seg/cws.cfg#L1) - -3. Write a script to use Trainer. -[example](https://github.com/fastnlp/fastNLP/blob/743a6d75474fa393bc849c0392317c2c6bd868e4/reproduction/chinese_word_seg/cws_train.py#L51) - -#### Chinese Word Segmentation (CWS) -CWS data can be downloaded from [here](http://sighan.cs.uchicago.edu/bakeoff2005/).