Downloads · 30 days
11
13% of all-time downloads
summerMC/SummerGPT2
SummerGPT2 is a machine learning model from summerMC. Use it for the machine learning task on the model card, and read the license before you ship it in a product.
GPT Weight-Derived Reservoir language model.
Downloads · 30 days
11
13% of all-time downloads
All-time downloads
84
Public
Parameters
10.6M
21.2 MB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors21.2 MB · 86%
How the weights are stored.
F1610.6M · 100%
From the Hugging Face model README
GPT Weight-Derived Reservoir language model.
from transformers import AutoTokenizer, AutoModelForCausalLM
path = "summerMC/SummerGPT2"
tokenizer = AutoTokenizer.from_pretrained(
path,
trust_remote_code=True,
)
model = AutoModelForCausalLM.from_pretrained(
path,
trust_remote_code=True,
dtype="auto",
)
This repository contains custom Transformers modeling code.