Git Product home page Git Product logo

transformer-translator's Introduction

Transformer for Machine Translation

This is a PyTorch implementation of the Transformer model described in the paper Attention Is All You Need.

The model is trained to translate from English to Vietnamese on the IWSLT 2015 dataset

Since limited GPU resources are available, I use pretrained BERT base as the encoder.

Usage

First, install the dependencies:

pip install -r requirements.txt

Then, run the training script:

python3 src/train.py \
    --accelerator gpu

Or if you just want to try it out, you can download the checkpoint with following command:

#!/bin/bash
fileid="1K6ULeDN4DIEdMF-Vo5EmLA4wHj4s7dfK"
filename="checkpoints/last.ckpt"
html=`curl -c ./cookie -s -L "https://drive.google.com/uc?export=download&id=${fileid}"`
curl -Lb ./cookie "https://drive.google.com/uc?export=download&`echo ${html}|grep -Po '(confirm=[a-zA-Z0-9\-_]+)'`&id=${fileid}" -o ${filename}

After training, you can run the demo script to translate a sentence:

python3 src/test.py --ckpt_path <path to checkpoint>

where:

  • <path to checkpoint> is the path to the checkpoint file you want to use. Default is ./checkpoints/last.ckpt

Demo

transformer-translator's People

Contributors

hoang1007 avatar ppvan 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.