Views
No views yet
1checkpoint = "google/t5-v1_1-xxl"
2
3model = T5EncoderModel.from_pretrained(
4 checkpoint, torch_dtype=torch.bfloat16
5)
6tokenizer = T5Tokenizer.from_pretrained(
7 checkpoint
8)
9
10model.push_to_hub("ariG23498/t5-v1_1-xxl-torch")
11tokenizer.push_to_hub("ariG23498/t5-v1_1-xxl-torch")```