Code Monkey home page Code Monkey logo

tf-x-transformers's Introduction

tf-x-transformers

PyPI version

tf2.0 version of x-transformers

Install

$ pip install tf-x-transformers

Usage

Encoder-only (BERT-like)

import tensorflow as tf
import tensorflow.experimental.numpy as tnp
from tf_x_transformers import TransformerWrapper, Encoder

model = TransformerWrapper(num_tokens=20000,
                           max_seq_len=1024,
                           attn_layers=Encoder(dim=512, depth=12, heads=8))

x = tnp.random.randint(0, 256, (1, 1024))
mask = tf.cast(tf.ones_like(x), dtype=tf.bool)

output = model(x, mask=mask)  # (1, 1024, 20000)

print(output.shape)

Compare

compare/Encoder_compare.ipynb
mean difference tensor(5.0120e-07)
max difference tensor(1.3351e-05)

Reference

https://github.com/lucidrains/x-transformers

tf-x-transformers's People

Contributors

junnyu avatar

Stargazers

 avatar  avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.