Edit model card

You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

YAML Metadata Warning: empty or missing yaml metadata in repo card (https://huggingface.co/docs/hub/model-cards#model-card-metadata)

Size of the model is 48MB

Example of usage:

tokenizer = AutoTokenizer.from_pretrained("Abhijnan/assamese_albert")
model = AutoModel.from_pretrained("Abhijnan/assamese_albert")

assamese_text = 'সঁচাই পৃথিৱীখন যে ইমান সুন্দৰ'
assamese_token = tokenizer(assamese_text ,padding='longest', return_tensors="pt")
print(assamese_token)
outputs = model(assamese_token["input_ids"],assamese_token["attention_mask" ],  output_attentions=True) 
print(outputs[0].shape)  #for getting the last hidden states of the sequence
'''
Output:
--------

{'input_ids': tensor([[   3, 8799, 6403,   38,  630, 1092,    4]]), 'token_type_ids': tensor([[0, 0, 0, 0, 0, 0, 0]]), 'attention_mask': tensor([[1, 1, 1, 1, 1, 1, 1]])}

torch.Size([1, 7, 768])

Created by:
Abhijnan Nath
Email: abhijnan.nath@colostate.edu
Situated Grounding and Natural Language (SIGNAL) Lab (https://www.signallab.ai/)
Computer Science Department, CSU Fort Collins.
Linkedin: (https://www.linkedin.com/in/abhijnan-nath-737727169/
Github : https://github.com/AbhijnanNath)
Downloads last month
0