A high-capacity Transformer model for English → Japanese translation, trained on 1 Million sentence pairs from the Sampuran dataset. This model balances high capacity ($pprox 65$ Million parameters) with aggressive regularization (Dropout $\mathbf0.45$) to ensure generalization across a large dataset.
The model can be loaded and used for inference with the included tokenizers.
1import keras
2from huggingface_hub import hf_hub_download
3
4# Download model file
5model_path = hf_hub_download(repo_id="RinKana/eng-jpn-transformer-nmt-efficient-63M", filename="transformer_model.keras")
6model = keras.models.load_model(model_path)