CUNY-CL/yoyodyne

Non-autoregressive sequence generation

Open

#262 opened on Oct 25, 2024

View on GitHub
 (0 comments) (0 reactions) (1 assignee)Python (21 forks)auto 404
enhancementgood first issuenew architecture

Repository metrics

Stars
 (35 stars)
PR merge metrics
 (PR metrics pending)

Description

Right now, our dominant paradigm is autoregressive prediction. While this is SOTA ,it doesn't allow experimentation with other sequence-to-sequence tasks. Technically, we can define an arbitrary sequence length >>>> than any input or output and train a model to project an input to this length and then decode over it for non-autoregressive prediction. Example algorithms would be: Listen Attend Spell or CTC.

Contributor guide