No description
Find a file
2025-08-02 11:31:48 +00:00
__pycache__ added isolated function to merge into the dashboard 2025-08-02 05:09:00 +02:00
CHALLENGE_2/sleepysound upload 2025-08-02 03:31:38 +02:00
data final commit 2025-08-02 10:56:20 +02:00
PlantDashboard Merge branch 'main' of https://repos.hackathon.bz.it/2025-summer/team-2 2025-08-02 11:27:55 +02:00
test2_with_training push 2025-08-02 00:45:58 +02:00
test2_with_training_tuned_with_basil_and_tomaetos UPLOAD 2025-08-02 11:27:45 +02:00
test3 upload 2025-08-02 11:50:05 +02:00
testLLMinteraction1plant code updated to support gpu 2025-08-01 19:28:06 +02:00
.cache.sqlite push 2025-08-02 00:45:58 +02:00
.DS_Store final commit 2025-08-02 10:56:20 +02:00
.gitignore upload other files of flutter 2025-08-02 08:17:05 +02:00
forDashboardIntegration.py added isolated function to merge into the dashboard 2025-08-02 05:09:00 +02:00
LICENSE Initial commit 2025-08-01 15:31:26 +00:00
links.txt working wather api connection and first strach of code 2025-08-01 18:44:43 +02:00
new steps.txt new steps 2025-08-02 01:00:02 +02:00
NOI Hackathon 2025 - Gruppo FOS.pdf adding dashboard to the commit 2025-08-01 20:50:52 +02:00
path.txt final dashboard adjustments 2025-08-02 06:14:14 +02:00
README.md Update README.md 2025-08-02 11:31:48 +00:00
script.py added isolated function to merge into the dashboard 2025-08-02 05:09:00 +02:00

# WeGrow

*Hackathon Project - [NOI Hackathon] [2025]*

## 🚀 Overview

Hi everyone! We are WeGrow, we are working on a project involving a chatbot which will predict the growth and health of plants.

## 🎯 Problem Statement

The main challenge was to find the right LLM to work in a short time. In particular, to find LLM that parsed text to images and including also meteo api + gps integration to shape the answer of the LLM. We have tested our solution on the basilicum plant, and predicting its growth depending upon different weather condition. There is also the possibility to predict the growth indoor, and not only outside. In that case the user decides the parameters (as humidity, temperature, pressure and so on with a GUI). On the other hand , if the user wants to predict the growth of the plant outside, the LLM will individuate the current weather for the wished period of the user.

As a problem , we faced an issue to describe the final picture obtained through the various LLM, using Llava as the last one. We ran into GPU exaustation problem, withouth a fully understanding of such problem.

## 💡 Solution

To address the problems of the correct answering we had to reading various articles on the correct open source LLM to use. We used :

- StableDiffusionInstructPix2PixPipeline.from_pretrained("timbrooks/instruct-pix2pix") : to have the images + text as input and give an image as output.

To install it I have installed ollama for windows from here :

https://ollama.com/download

- Llava to generate from the final image a text (unsuccessful). To install it we did:

  git clone https://github.com/haotian-liu/LLaVA.git

  cd LLaVA

  pip install -e .

- Successfully tried to train a model by crawling images from google of basil and tomaetos and training it, to try to optimize the ouput of StableDiffusionInstructPix2PixPipeline.from_pretrained("timbrooks/instruct-pix2pix"), without actually many changes.

## Features

- [ ] Interactive dashboard sliders

- [ ] Possibility to decide the environment condititions (open vs. controlled (e.g. laboratory))

- [ ] Augmented precision of the data trough the open meteo api and the gps integration

- [ ] Possibility with the selection of the local environment to run the application completely local, transforming the application in to a lightweight and robust friend

## 🛠️ Tech Stack

**Frontend:**

- Python with tkinter

**Backend:**

- python scripts

**Other Tools:**

- Open meteo api

- All the llms to predict the growth explained later

### Installation

1. Clone the repository


git clone https://github.com/your-username/NOIProject.git

cd NOIProject

1. Install dependencies


\# Go into PlantDashboard and create your venv (e.g. PlantEnv)

python3 -m venv PlantEnv

1. Installing the application


\#Always in the PlantDashBoard

pip install -r requirements.txt

## 🚀 Using the application

After following the installation steps, you can use our application by simply activating the venv with "source PlantEnv/bin/activate" and running "python launcher.py" from inside the PlantDashBoard folder