A web app that predicts the rarity of a Pokémon card using deep learning. Input card features, and the model returns one of: Common, Uncommon, Rare, etc.
This app is practical for Pokémon market design as it lets the model predict card rarity — a key factor in determining market value.
- Kaggle Dataset found at: Pokemon TCG All Cards 1999 - 2023
- App Background image found at: Pinterest
pip install -r backend/requirements.txtcd backend
python3 train.pyAfter this, you should get two data files: model.pt and scalar.json
- Open Frontend Server:
cd frontend
npm run dev- Open Backend Server:
cd backend
python3 api.py- Check your result by opening browser at
localhost:5173(default for vite)
