Views
No views yet
checkpoint-120001Training steps completed: 12,000
2Planned 1-epoch total steps: 49,042
3Approximate epoch progress: ~24.5%
4Dataset size: ~250K samples1aurora-lyrics-BF16.gguf # BF16 master GGUF, highest fidelity, about 16 GB
2aurora-lyrics-Q8_0.gguf # Q8_0 quantized GGUF, high quality, about 8 GBaurora-lyrics-Q8_0.gguf for normal local generation and testing.aurora-lyrics-BF16.gguf when you want the highest fidelity and have enough VRAM/RAM.1user:
2assistant:Lyrics:1Artist: <artist or virtual artist>
2Lyrics:1Artist: <artist name or virtual artist>
2Mood: <emotion or vibe>
3Genre: <style / genre / production direction>
4Title: <optional song title>
5Lyrics:1Artist: Virtual Pop Artist
2Mood: bittersweet romantic
3Genre: emotional pop, acoustic guitar, big chorus
4Title: Midnight Letters
5Lyrics:Lyrics: with the generated song.Lyrics:.1Artist: Virtual Pop Artist
2Mood: sad romantic
3Genre: cinematic piano pop, big chorus
4Title: Rain On My Phone
5Lyrics:
6[Verse]
7I saw your name light up the glass
8Like a ghost from the summer past1temperature: 0.80 - 0.95
2top_p: 0.90 - 0.95
3top_k: 40 - 80
4repeat_penalty: 1.08 - 1.15
5max_tokens: 500 - 900
6context: 4096 - 81920.95 and use a different seed.1llama-cli \
2 -m aurora-lyrics-Q8_0.gguf \
3 -ngl 999 \
4 -c 8192 \
5 -n 700 \
6 --temp 0.85 \
7 --top-p 0.92 \
8 --top-k 50 \
9 --repeat-penalty 1.10 \
10 -p $'Artist: Virtual Pop Artist\nMood: heartbroken\nGenre: emotional pop ballad, piano, big chorus\nTitle: After The Rain\nLyrics:\n'1llama-server \
2 -m aurora-lyrics-Q8_0.gguf \
3 --host 0.0.0.0 \
4 --port 8080 \
5 -ngl 999 \
6 -c 8192 \
7 --temp 0.85 \
8 --top-p 0.92 \
9 --top-k 50 \
10 --repeat-penalty 1.101Artist: Virtual Pop Artist
2Mood: emotional, lonely, cinematic
3Genre: modern pop ballad, piano, big chorus
4Title: Alone At Midnight
5Lyrics:1from llama_cpp import Llama
2
3llm = Llama(
4 model_path="aurora-lyrics-Q8_0.gguf",
5 n_gpu_layers=-1,
6 n_ctx=8192,
7 flash_attn=True,
8 verbose=False,
9)
10
11prompt = """Artist: Virtual Pop Artist
12Mood: sad romantic
13Genre: cinematic piano pop, big chorus
14Title: Rain On My Phone
15Lyrics:
16"""
17
18out = llm(
19 prompt,
20 max_tokens=700,
21 temperature=0.85,
22 top_p=0.92,
23 top_k=50,
24 repeat_penalty=1.10,
25)
26
27print(out["choices"][0]["text"])Lyrics: for more controlled structure:1Artist: Virtual Pop Artist
2Mood: emotional, lonely, cinematic
3Genre: modern pop ballad, piano, big chorus
4Title: Alone At Midnight
5Lyrics:
6Write structured song lyrics with sections like [Verse], [Pre-Chorus], [Chorus], and [Bridge]. Keep it singable, emotional, and pop-focused.Lyrics:.Write an emotional pop chorus about missing someone in the rain.1User: write lyrics
2Assistant:1Artist: Virtual Pop Artist
2Mood: emotional
3Genre: pop ballad
4Title: Missing You In The Rain
5Lyrics: