Dragunflie-420
commited on
Commit
•
1d59fb8
1
Parent(s):
6d8039b
Create model
Browse filesLlama Musenet by Meta. This is a pretrained text model for creating lyrics. My goal is to train this model to generate original song lyrics for artists as well turn poetry or spoken word into masterpieces accompanied with music The idea is to merge this bot into another bot to have two essences creating lyeics and also music like Udio and Suno. I also have a video bot and an IDE editor for music video that Im making into an all in one platform for music.
model
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Load model directly
|
2 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
3 |
+
|
4 |
+
tokenizer = AutoTokenizer.from_pretrained("breadlicker45/llama-musenet-test-untrained")
|
5 |
+
model = AutoModelForCausalLM.from_pretrained("breadlicker45/llama-musenet-test-untrained")
|