Metadata-Version: 2.1
Name: bert-for-tf2
Version: 0.1.1
Summary: A TensorFlow 2.0 Keras implementation of BERT.
Home-page: https://github.com/kpe/bert-for-tf2/
Author: kpe
Author-email: kpe.git@gmailbox.org
License: MIT
Keywords: tensorflow keras bert
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Requires-Python: >=3.6
Description-Content-Type: text/x-rst
Requires-Dist: tensorflow (>=1.99)
Requires-Dist: py-params (>=0.6.1)
Requires-Dist: params-flow (>=0.2.1)

BERT for TensorFlow v2
======================

|Build Status| |Coverage Status| |Version Status| |Python Versions|

This repo contains a TensorFlow v2 Keras implementation of `google-research/bert`_
with support for loading the original `pre-trained weights`_,
and producing activations numerically identical to the one you get from the original model.


LICENSE
-------

MIT. See `License File <https://github.com/kpe/bert-for-tf2/blob/master/LICENSE.txt>`_.

Install
-------

``bert-for-tf2`` is on the Python Package Index (PyPI):

::

    pip install bert-for-tf2

Usage
-----

TBD


Resources
---------

- `BERT`_ - BERT: Pre-training of Deep Bidirectional Transformers for Language Understanding
- `google-research/bert`_ - the original BERT implementation
- `kpe/params-flow`_ - utilities for reducing keras boilerplate code in custom layers

.. _`pre-trained weights`: https://github.com/google-research/bert#pre-trained-models
.. _`google-research/bert`: https://github.com/google-research/bert
.. _`BERT`: https://arxiv.org/abs/1810.04805
.. _`kpe/params-flow`: https://github.com/kpe/params-flow

.. |Build Status| image:: https://travis-ci.org/kpe/bert-for-tf2.svg?branch=master
   :target: https://travis-ci.org/kpe/bert-for-tf2
.. |Coverage Status| image:: https://coveralls.io/repos/kpe/bert-for-tf2/badge.svg?branch=master
   :target: https://coveralls.io/r/kpe/bert-for-tf2?branch=master
.. |Version Status| image:: https://badge.fury.io/py/bert-for-tf2.svg
   :target: https://badge.fury.io/py/bert-for-tf2
.. |Python Versions| image:: https://img.shields.io/pypi/pyversions/bert-for-tf2.svg



