项目作者: duongkstn

项目描述 :
albert-vi-as-service: A Fork of bert-as-service to deploy albert_vi
高级语言: Python
项目地址: git://github.com/duongkstn/albert-vi-as-service.git
创建时间: 2020-04-27T07:06:17Z
项目社区:https://github.com/duongkstn/albert-vi-as-service

开源协议:MIT License

下载


Install

Install the server and client via pip. They can be installed separately or even on different machines:

  1. # server
  2. git clone https://github.com/duongkstn/albert-vi-as-service.git
  3. cd albert-vi-as-service/server
  4. pip install albert-vi-serving-server
  5. python setup.py install
  6. #client
  7. pip install bert-serving-client==1.10.0 # client, independent of `albert-vi-as-service`

Getting Started

1. Download a Pre-trained ALBERT_VI Model

Download a model of albert_vi, remember to download sentence piece model

2. Start the ALBERT_VI service

After installing the server, you should be able to use albert-vi-serving-start CLI as follows:

  1. albert-vi-serving-start -model_dir albert_vi_model/ -spm_model_file albertvi_30k-clean.model -config_name albert_config.json -ckpt_name model.ckpt-1015000

At client side, your code should be similar to original bert-as-service repos

It is noted that you can still use bert-serving-start command independently