def prune_transformer(model, amount=0.3):
            for name, module in model.named_modules():
                if isinstance(module, torch.nn.Linear):
                    prune.l1_unstructured(module, name='weight', amount=amount)
                    prune.remove(module, 'weight')
            return model

        # Efficient Multilingual NMT
        class LightTranslator(nn.Module):
            def __init__(self, vocab_size, d_model=512):
                super().__init__()
                self.encoder = TransformerEncoder(d_model)
                self.decoder = TransformerDecoder(d_model)

            def forward(self, src, tgt):
                memory = self.encoder(src)
                return self.decoder(tgt, memory)
Avatar of Ahmed Amine ALIANE

Ahmed Amine ALIANE

Algiers, Algeria

Research Engineer in NLP specializing in model efficiency and multilingual systems, with full-stack, Linux systems, and infrastructure expertise.

  • fingerprint About
  • menu_book Publications
  • architecture Projects
  • inventory_2 CV

#docker

Content tagged with "docker"

Research Infrastructure & APIs
[Full Stack] [FastAPI] [React] [Docker] [Infrastructure]

REST APIs, web interfaces, and deployment infrastructure built to expose research models to end users at CERIST.

© 2026 Ahmed Amine Aliane.