MaryGPT is a is a text generation model and a fine-tuned version of
GPT-J 6B.
This will be used as a base model for
AI Artist Yuma Kishi👤’s activity, including art creation and exhibition curation.
All data was obtained ethically and in compliance with the site's terms and conditions.
No copyright texts are used in the training of this model without the permission.
This model was trained for 402 billion tokens over 383,500 steps on TPU v3-256 pod. It was trained as an autoregressive language model, using cross-entropy loss to maximize the likelihood of predicting the next token correctly.
1from transformers import AutoTokenizer, AutoModelForCausalLM
2
3tokenizer = AutoTokenizer.from_pretrained("obake2ai/MaryGPT")
4model = AutoModelForCausalLM.from_pretrained("obake2ai/MaryGPT")