Skip to main content

Keras ERNIE

Project description

keras ERNIE

Pre-trained ERNIE models could be loaded for feature extraction and prediction.

Install

pip install keras-ernie

Usage

Download Pre-trained ERNIE Models

Notes: Currently, only the following models are supported.

Model Description
ERNIE 1.0 Base for Chinese with params, config and vocabs
ERNIE 1.0 Base for Chinese(max-len-512) with params, config and vocabs
ERNIE 2.0 Base for English with params, config and vocabs

Load Pre-trained ERNIE Models

import os
from keras_ernie import load_from_checkpoint

ernie_path = "/root/ERNIE_stable-1.0.1"
init_checkpoint = os.path.join(ernie_path, 'params')
ernie_config_path = os.path.join(ernie_path, 'ernie_config.json')
ernie_vocab_path = os.path.join(ernie_path, 'vocab.txt')
ernie_version = "stable-1.0.1"

model = load_from_checkpoint(init_checkpoint, ernie_config_path, ernie_vocab_path, ernie_version,
            max_seq_len=128, num_labels=2, use_fp16=False, use_gpu=True, gpu_memory_growth=False,
            training=False, seq_len=None, name='ernie')
model.summary()

Convert Pre-trained ERNIE Model To Tensor Model

python paddle_to_tensor.py \
    --init_checkpoint ${MODEL_PATH}/params \
    --ernie_config_path ${MODEL_PATH}/ernie_config.json \
    --ernie_vocab_path ${MODEL_PATH}/vocab.txt \
    --ernie_version stable-1.0.1 \
    --max_seq_len 128 \
    --num_labels 2 \
    --use_fp16 false \
    --use_gpu true \
    --gpu_memory_growth false \

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

keras-ernie-1.0.4.tar.gz (26.1 kB view details)

Uploaded Source

File details

Details for the file keras-ernie-1.0.4.tar.gz.

File metadata

  • Download URL: keras-ernie-1.0.4.tar.gz
  • Upload date:
  • Size: 26.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.0.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for keras-ernie-1.0.4.tar.gz
Algorithm Hash digest
SHA256 930cb766eeec4b66fae2b62ec212be9469f07e006f498e9f6fb035776084ef34
MD5 19868e3c1fbfe0ebdf355210ec7e7664
BLAKE2b-256 86726c1fe9b381593aba3c3deeac8c239d3091aa5950ddf80267ff776399dfb3

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page