GithubHelp home page GithubHelp logo

gugundi / neuralmachinetranslation Goto Github PK

View Code? Open in Web Editor NEW
6.0 6.0 3.0 259.6 MB

Neural Machine Tranlation using Local Attention

Shell 0.13% Python 29.48% Jupyter Notebook 70.39%
attention attention-mechanism encoder-decoder encoder-decoder-model iwslt local-attention multi30k nmt python python3

neuralmachinetranslation's People

Contributors

chrisfugl avatar gugundi avatar oldouz1364 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

neuralmachinetranslation's Issues

About pad with window

I noticed pad with window in the encoder section,

def pad_with_window_size(self, batch):
    size = batch.size()
    n = len(size)
    if n == 2:
        length, batch_size = size
        padded_length = length + (2 * self.window_size + 1)
        padded = torch.empty((padded_length, batch_size), dtype=torch.long, device=self.device)
        padded[:self.window_size, :] = self.pad
        padded[self.window_size:self.window_size + length, :] = batch
        padded[-(self.window_size + 1):, :] = self.pad
    elif n == 3:
        length, batch_size, hidden = size
        padded_length = length + (2 * self.window_size + 1)
        padded = torch.empty((padded_length, batch_size, hidden), dtype=torch.long, device=self.device)
        padded[:self.window_size, :, :] = self.pad
        padded[self.window_size:self.window_size + length, :, :] = batch
        padded[-(self.window_size + 1):, :, :] = self.pad
    else:
        raise Exception(f'Cannot pad batch with {n} dimensions.')
    return padded

When calculating the attention, pad with window on the output of the encoder, that is when n==3, can this achieve the same effect? But this will seriously hurt my results when I try to do this.

About code

Hi, I want to ask some about your code.
In 176-188 lines in model.py, why to do this:
if start < self.window_size:
d = self.window_size - start
score[i, j, :d] = epsilon
if end > li + self.window_size:
d = (li + self.window_size) - end
score[i, j, d:] = epsilon

Shouldn’t it judge whether the selected window is beyond length?

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.