├── .gitignore ├── Code Implementation ├── LICENSE ├── LINA White Paper v1.md ├── LINA_images ├── .gitkeep ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 13.png ├── 14.png ├── 15.png ├── 16.png ├── 17.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png ├── LYRICS_REQUIREMENTS.md ├── Lina_AI_Lyrics_Generator.py ├── Lyric ├── Fading Away.txt ├── I Wait.txt ├── Lyric-Generation-with-GPT ├── New Horizon.txt ├── Remember Mer.txt ├── Shadow in the Night.txt ├── Shine Like Summer.txt └── lost.txt ├── README.md ├── White Paper v1.docx └── generate_lina_image.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/.gitignore -------------------------------------------------------------------------------- /Code Implementation: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/Code Implementation -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/LICENSE -------------------------------------------------------------------------------- /LINA White Paper v1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/LINA White Paper v1.md -------------------------------------------------------------------------------- /LINA_images/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LINA_images/1.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LINA_images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/LINA_images/10.png -------------------------------------------------------------------------------- /LINA_images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/LINA_images/11.png -------------------------------------------------------------------------------- /LINA_images/12.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LINA_images/13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/LINA_images/13.png -------------------------------------------------------------------------------- /LINA_images/14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/LINA_images/14.png -------------------------------------------------------------------------------- /LINA_images/15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/LINA_images/15.png -------------------------------------------------------------------------------- /LINA_images/16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/LINA_images/16.png -------------------------------------------------------------------------------- /LINA_images/17.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LINA_images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/LINA_images/2.png -------------------------------------------------------------------------------- /LINA_images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/LINA_images/3.png -------------------------------------------------------------------------------- /LINA_images/4.png: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /LINA_images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/LINA_images/5.png -------------------------------------------------------------------------------- /LINA_images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/LINA_images/6.png -------------------------------------------------------------------------------- /LINA_images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/LINA_images/7.png -------------------------------------------------------------------------------- /LINA_images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/LINA_images/8.png -------------------------------------------------------------------------------- /LINA_images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/LINA_images/9.png -------------------------------------------------------------------------------- /LYRICS_REQUIREMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/LYRICS_REQUIREMENTS.md -------------------------------------------------------------------------------- /Lina_AI_Lyrics_Generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/Lina_AI_Lyrics_Generator.py -------------------------------------------------------------------------------- /Lyric/Fading Away.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/Lyric/Fading Away.txt -------------------------------------------------------------------------------- /Lyric/I Wait.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/Lyric/I Wait.txt -------------------------------------------------------------------------------- /Lyric/Lyric-Generation-with-GPT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/Lyric/Lyric-Generation-with-GPT -------------------------------------------------------------------------------- /Lyric/New Horizon.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/Lyric/New Horizon.txt -------------------------------------------------------------------------------- /Lyric/Remember Mer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/Lyric/Remember Mer.txt -------------------------------------------------------------------------------- /Lyric/Shadow in the Night.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/Lyric/Shadow in the Night.txt -------------------------------------------------------------------------------- /Lyric/Shine Like Summer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/Lyric/Shine Like Summer.txt -------------------------------------------------------------------------------- /Lyric/lost.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/Lyric/lost.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/README.md -------------------------------------------------------------------------------- /White Paper v1.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/White Paper v1.docx -------------------------------------------------------------------------------- /generate_lina_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/victorykop/LINA-AI/HEAD/generate_lina_image.py --------------------------------------------------------------------------------