Skip to content

22kartikeya/AIMLabX

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 

Repository files navigation

🧠 AIMLabX

An interactive visualizer for classic AI problems like TSP, Tic Tac Toe, Water Jug, 8 Puzzle, and Predicate Logic Resolution — all in one platform built with React + Flask.

App Screenshot


📚 Table of Contents

  • ⚙️ Tech Stack
  • 🚀 Features
  • 🧪 AI/ML Problems Included
  • 🛠️ Run Locally
  • 🌐 Deployment
  • 🙌 Credits
  • 📜 License

⚙️ Tech Stack

  • Frontend: ReactJS, Tailwind CSS, Framer Motion
  • Backend: Python Flask, NLTK, Custom AI algorithms
  • Others: REST APIs, Axios, Glassmorphism UI

🚀 Features

  • 🎯 Visualize AI algorithms in real-time
  • 🧠 Understand core concepts like DFS, BFS, Minimax, A*, etc.
  • 📊 Solve logic problems with a Predicate Resolver (NLTK)
  • 🎨 Elegant and animated UI (with hover effects and glass blur)
  • 📱 Fully responsive design

🧪 AI/ML Problems Included

  • ✔️ DFS and BFS for Travelling Salesman Problem
  • ✔️ Tic Tac Toe (PvP and Vs Computer with Minimax)
  • ✔️ Water Jug Problem using Hill Climbing
  • ✔️ 8 Puzzle using Greedy Best First Search
  • ✔️ A* Algorithm for 8 Puzzle and Water Jug
  • ✔️ Marcus Logic Resolver using NLTK's Predicate Logic

🛠️ Run Locally

  1. Clone the repository:
git clone https://github.com/22kartikeya/AIMLabX.git
  1. Navigate to the project directory:
cd AIMLabX
  1. Navigate to the backend directory:
cd be
  1. Create a virtual environment:
  • On macOS and Linux:
python3 -m venv venv
  • On Windows:
python -m venv venv
  1. Activate the virtual environment:
  • On macOS and Linux:
source venv/bin/activate
  • On Windows:
venv\Scripts\activate
  1. Install the dependencies:
  • On macOS and Linux:
pip3 install -r requirements.txt
  • On Windows:
pip install -r requirements.txt
  1. Navigate to the frontend directory:
cd ../fe
  1. Install the dependencies:
npm install
  1. Run the frontend:
npm run dev
  1. Navigate to the backend directory:
cd ../be
  1. Run the Flask app:
flask run
  1. Open your browser and go to http://localhost:5173/ to view the app.

🌐 Deployment

The entire project is deployed using Render for both frontend and backend.

🙌 Credits

Made with ❤️ by Kartikeya Gupta 🔗 LinkedIn


📄 License

This project is licensed under the MIT License.

MIT License © 2025 Kartikeya Gupta
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall
be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

AIMLabX – An interactive AI-based visualization platform to explore search algorithms like A*, BFS, DFS, and more.

Resources

License

Stars

3 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors