├── README.md ├── model └── chinese_L-12_H-768_A-12 │ ├── bert_config.json │ └── vocab.txt ├── modeling.py ├── optimization.py ├── text_similarity_predict.py └── tokenization.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugby0823/bert-predict/HEAD/README.md -------------------------------------------------------------------------------- /model/chinese_L-12_H-768_A-12/bert_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugby0823/bert-predict/HEAD/model/chinese_L-12_H-768_A-12/bert_config.json -------------------------------------------------------------------------------- /model/chinese_L-12_H-768_A-12/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugby0823/bert-predict/HEAD/model/chinese_L-12_H-768_A-12/vocab.txt -------------------------------------------------------------------------------- /modeling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugby0823/bert-predict/HEAD/modeling.py -------------------------------------------------------------------------------- /optimization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugby0823/bert-predict/HEAD/optimization.py -------------------------------------------------------------------------------- /text_similarity_predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugby0823/bert-predict/HEAD/text_similarity_predict.py -------------------------------------------------------------------------------- /tokenization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rugby0823/bert-predict/HEAD/tokenization.py --------------------------------------------------------------------------------