ROGERDJQ
f3ee16a5f6
[new] add ConfusionMatrix, ConfusionMatrixMetric ( #272 )
* add ConfusionMatrix, ConfusionMatrixMetric
* add confusionmatrix to utils
* add ConfusionMatrixmetric
* add ConfusionMatrixMetric
* init for test
* begin test
* test finish
* doc finish
5 years ago
yh_cc
699a0ef74d
1.增强viterbi解码使得可以加入start, end; 2.修改BertEnocder中注释的typo
6 years ago
yh_cc
218f3aaded
1.修复BertEncoder中的flip时报错的bug; 2.删除Metric中fast_param_map防止误触发导致不好debug的问题
6 years ago
Yige Xu
980aba9898
[update] update index documents
6 years ago
yh_cc
ac0454c89b
更新部分内部引用
6 years ago
yh_cc
38fea0fcfa
1.增强CMRC2018Metric的使用范围; 2. StaticEmbedding支持仅使用来自于pretrain embedding的token
6 years ago
Yige Xu
6cb3713b2c
修复针对pytorch1.3.0版本bug的一个bug
6 years ago
Yige Xu
be432c3b39
fix a bug in ClassifyFPRMetric
6 years ago
Yige Xu
0547572d58
add ClassifyFPRMetric
6 years ago
yh
7e41b9d355
1.新增CMRC2018的metric,loss,pipe,loader等; 2. 新增中文Bert的使用教程
6 years ago
ChenXin
56a41b0a63
replace the :doc: tags by :mod: tags to fix some bugs
6 years ago
ChenXin
60a535db08
fix a little error in doc.
TODO: fix the bug doc of the class which inherit the class from outer space
6 years ago
ChenXin
b1fe5f5321
split the class's doc & __init__'s doc (core part)
6 years ago
ChenXin
4caacadeae
delete the alias in files.
6 years ago
yh_cc
e903db0e70
增加中文分类Pipe;使用矩阵加速BertEmbedding部分pool_method;调整部分测试用例名称;修复metric中对warning的误报
6 years ago
yh
1994029ab8
1.当前支持的encoding_type都支持从tag_vocab中自动判断;避免触发无意识导致的metric bug; 2. 修复部分inplace操作无法求导的问题; 3.Vocabulary将一些属性通过property暴露
6 years ago
yh_cc
cbe5b347e5
SpanFMetric增加对encoding_type和tag_vocab的检查
6 years ago
yh_cc
55e736bf4c
SpanFMetric增加对encoding_type和tag_vocab的检查
6 years ago
yh
7a0903d9ba
1.删除Trainer中的prefetch参数; 2.增加中文分词的下载; 3.增加DataBundle的delete_dataset, delete_vocab
6 years ago
yh
32a2f197e1
增加对metric name设置的支持
6 years ago
yh
3624f7dafd
增加conll2003Pipe
6 years ago
yh
efb909d191
修复SpanFMetric中的micro计算bug
6 years ago
xuyige
c2d687528e
fix bugs and add test codes for: 1. models.snli; 2. core.metrics.extractive_qa; 3. io.data_loader.mnli
6 years ago
ChenXin
df0bc2aec3
根据代码修改了文档
6 years ago
xuyige
28d9ae0778
更新一些过时代码
6 years ago
xuyige
d70aa96e4c
大幅度更新:1、更新requirements;2、将modules.aggregator的内容移至modules.encoder;3、将SQuADMetric重命名为ExtractiveQAMetric;4、更新reproduction的README;5、将reproduction/text_classification的dataloader移动到fastNLP.io.data_loader并做适配性修改
6 years ago
yh_cc
9a8fe42cd4
新增NER的数据加载与模型代码; 修改metric中的typo; 修改LSTM中的默认初始化将forget gate设置为1.
6 years ago
yh_cc
2f5d8967a3
1. 适配将Batch修改为pytorch的DataLoader的修改
2. 修改embedding.py中的bug
3. ConllReader默认跳过所有的DOCSTART标签
4. 交换bert的heavy lifting到_bert, 将BertEncoder在bert.py中暴露
5. crf中allow_transition的include_end_start修改为false,以与CRF的默认值适配
6. allow_transition与SpanMetric支持BIOES类型的tag
7. datainfo中增加打印格式化输出
6 years ago
yh_cc
30b012ac20
修复metric和loss在映射时出现重复同名输入时会覆盖的bug
6 years ago
yh_cc
9e5c4f665c
Merge branch 'dev0.5.0' of github.com:fastnlp/fastNLP into dev0.5.0
6 years ago
yh_cc
bddce51b05
merge update
6 years ago
ChenXin
9bfedbdfe9
修复了 metrics 文档中的公式
6 years ago
xuyige
e643d7aed5
update reproduction/README.md
6 years ago
xuyige
429ff57846
Update metrics.py
update documents in metrics.py
6 years ago
ChenXin
bdec6187a2
一些符合 PEP8 的微调
6 years ago
ChenXin
9c07850019
修改了 models 部分 import 的顺序,__all__ 暴露的内容
6 years ago
ChenXin
32fdb48754
修改了 core 部分 import 的顺序,__all__ 暴露的内容
6 years ago
yh_cc
0a8f7c0e69
1. 修复metric中的bug; 2.增加metric测试
6 years ago
yh_cc
349194fe85
删除用于分词的metric,因为有可能引起错误
6 years ago
yh_cc
56ff4ac7a1
统一不同位置的seq_len_to_mask, 现统一到core.utils.seq_len_to_mask
6 years ago
ChenXin
4926b33df0
core部分的测试和一些小修改
6 years ago
yh_cc
b9558e21e6
1. 从安装文件中删除api/automl的安装
2. metric中存在seq_len的bug
3. sampler中存在命名错误,已修改
6 years ago
ChenXin
ef525bf74c
core部分的注释基本检查完成
6 years ago
yh_cc
ded4228f93
1.增加对Trainer和Tester的多卡支持;
6 years ago
yh_cc
6e265e5ae9
完善了trainer,callback等的文档; 修改了部分代码的命名以使得代码从文档中隐藏
6 years ago
yh
4a57011315
增加对Trainer的注释
6 years ago
yh_cc
cdfd3d3388
Merge branch 'dev' of github.com:choosewhatulike/fastNLP-private into dev
6 years ago
yh_cc
47f812647d
1. 删除了LSTM中print的内容; 2. 将Trainer和Tester的use_cuda修改为了device; 3.补充Trainer的文档
6 years ago
xuyige
55783314bc
update documents on metrics
6 years ago
ChenXin
967e5e5683
doc tools
6 years ago