bert_text_pretty 是一个bert 文本特征化和文本后处理解码的包,用于bert工程推理
Project description
bert_text_pretty 是一个bert 文本特征化和文本后处理解码的包,用于bert工程推理
# -*- coding:utf-8 -*-
import numpy as np
from bert_text_pretty import cls,ner,relation,tokenization
'''
简化文本特征化,解码
https://github.com/ssbuild/bert_text_pretty.git
'''
text_list = ["你是谁123456","你是谁123456222222222222"]
tokenizer = tokenization.FullTokenizer(vocab_file=r'F:\pretrain\chinese_L-12_H-768_A-12\vocab.txt',do_lower_case=True)
feat = cls.cls_text_feature(tokenizer,text_list,max_seq_len=128,with_padding=False)
print(feat)
feat = ner.ner_text_feature(tokenizer,text_list,max_seq_len=128,with_padding=False)
print(feat)
feat = relation.re_text_feature(tokenizer,text_list,max_seq_len=128,with_padding=False)
print(feat)
labels = ['标签1','标签2']
print(cls.load_labels(labels))
print(ner.load_label_bio(labels))
# def ner_decoding(example_all, id2label, logits_all,trans=None) # crf 解码
'''
example_all 文本list ,
id2label 标签 list or dict
logits_all 为bert 预测结果 (batch,seq_len,num_tags) or (batch,seq_len)
trans 是否启用trans预测 , 2D
解析crf序列 or 解析 已经解析过的crf序列
'''
#ner_pointer_decoding(example_all, id2label, logits_all,threshold=0.) # 指针 解码
'''
example_all 文本list ,
id2label 标签 list or dict
logits_all (batch,num_labels,seq_len,seq_len)
threshold 阈值
'''
# cls.cls_decoding(example_all,labels,logits) #分类
'''
example_all 文本list ,
id2label 标签 list or dict
logits_all (batch,hidden)
threshold 阈值
'''
# relation.re_decoding(example_all, id2spo, logits_all) #关旭
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file bert_text_pretty-0.0.18-py3-none-any.whl
.
File metadata
- Download URL: bert_text_pretty-0.0.18-py3-none-any.whl
- Upload date:
- Size: 13.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.5.0 importlib_metadata/4.8.2 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 95926b51a7556cb893d0ca8f046b67c03eba3d94e6f158959ccf11cea0e8178f |
|
MD5 | 3208d60aea9fa504e8dc9bfb380e5187 |
|
BLAKE2b-256 | de531cf62122fbb95dee2585cae86aef1759c689a40518f2c573316748a52401 |