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.

I trained Llama2-7B after extending its tokenizer by 21,455 token on about 15B farsi text(common crawl, social, papers)

from transformers import LlamaForCausalLM, AutoTokenizer
import torch

model =  LlamaForCausalLM.from_pretrained("mostafaamiri/base_7B")
tokenizer = AutoTokenizer.from_pretrained("mostafaamiri/llama2_7B_15Btoken")
model.resize_token_embeddings(len(tokenizer))

model.load_adapter("mostafaamiri/llama2_7B_15Btoken")
Downloads last month

-

Downloads are not tracked for this model. How to track
Unable to determine this model's library. Check the docs .