Views
No views yet
eval_accuracy: 0.6866eval_loss: 1.4876perplexity: 4.42661from transformers import AutoTokenizer, AutoModelForMaskedLM
2
3model_checkpoint = "LazarusNLP/NusaBERT-base"
4
5tokenizer = AutoTokenizer.from_pretrained(model_checkpoint)
6model = AutoModelForMaskedLM.from_pretrained(model_checkpoint)learning_rate: 0.0003train_batch_size: 256eval_batch_size: 256seed: 42optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08lr_scheduler_type: linearlr_scheduler_warmup_steps: 24000training_steps: 5000001@misc{wongso2024nusabert,
2 title={NusaBERT: Teaching IndoBERT to be Multilingual and Multicultural},
3 author={Wilson Wongso and David Samuel Setiawan and Steven Limcorn and Ananto Joyoadikusumo},
4 year={2024},
5 eprint={2403.01817},
6 archivePrefix={arXiv},
7 primaryClass={cs.CL}
8}