Welcome to the Automated Knowledge Graph Construction project, developed during the Stylumia Hackathon. This project aims to streamline the creation of knowledge graphs by integrating a React-based frontend with a Flask backend, utilizing Apache Kafka for efficient data processing.
An example ontology generated for two products.
Stylumia-Hackathon/
├── frontend/ # React-based frontend
│ ├── src/ # Source files for the React app
│ ├── .bolt/ # Configuration files
│ ├── package.json # Node.js project metadata
│ └── vite.config.ts # Vite configuration
├── generate-description/ # Backend-related scripts
│ ├── flask_app/ # Flask-based backend API
│ └── myenv/ # Python virtual environment
├── docker-compose.yml # Docker Compose setup for Apache Kafka
├── unifashionLLM.ipynb # Code for loading and fine-tuning the LLava model with LoRA
└── README.md # Project documentation
To set up and run the project locally, follow these steps:
-
Navigate to the
frontend
directory:cd frontend
-
Install dependencies:
npm install
-
Start the development server:
npm run dev
-
Access the application:
Open your browser and navigate to
http://localhost:5173
.
-
Ensure Docker is installed and running on your system.
-
Navigate to the root of the project directory:
cd ..
-
Start the Kafka services using Docker Compose:
docker-compose up -d
-
Verify that Kafka is running:
docker ps
Ensure the Kafka container is listed and running.
-
Navigate to the
kg-construct
directory:cd kg-construct
-
Create a virtual environment (if not already done):
python -m venv myenv
-
Activate the virtual environment:
-
On macOS/Linux:
source myenv/bin/activate
-
On Windows:
myenv\Scripts\activate
-
-
Navigate to the
flask_app
directory:cd flask_app
-
Install required Python dependencies:
pip install -r requirements.txt
-
Start the Flask application:
python app.py
Ensure the Kafka container is running for proper Flask-Kafka integration.