This is a fine-tuned version of
google/flan-t5-small, trained on a small custom dataset for generating personality descriptions based on astrological birth chart inputs in English.
Given a combination of Sun, Moon, and Venus signs, the model generates a natural-sounding English explanation of the personality traits commonly associated with that planetary arrangement.
'''Sun: Virgo, Moon: Capricorn, Venus: Libra'''
'''"You are analytical yet sociable, with an adventurous romantic spirit."'''
This is a proof-of-concept model trained on a small dataset. The output should be interpreted as entertainment and not as scientifically validated personality profiling.
This project is developed and maintained by [Your Name or Username].
Feel free to fine-tune further or use this as a base for more personalized horoscope applications.
1CREATE TABLE users (
2 id SERIAL PRIMARY KEY,
3 username TEXT NOT NULL,
4 birthdate DATE,
5 birthtime TIME,
6 birthplace TEXT
7);
8
9CREATE TABLE horoscopes (
10 id SERIAL PRIMARY KEY,
11 user_id INTEGER REFERENCES users(id),
12 sun TEXT,
13 moon TEXT,
14 venus TEXT,
15 interpretation TEXT
16);
17---