From b1377613c46d2f7a3c936e002338bb9172df08c9 Mon Sep 17 00:00:00 2001 From: Danilo Lessa Bernardineli Date: Wed, 26 Nov 2025 23:41:57 -0300 Subject: [PATCH 1/3] Update README.md --- README.md | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f08c73b..62e6bb7 100644 --- a/README.md +++ b/README.md @@ -55,10 +55,18 @@ This program is a machine learning model designed to predict flood inundation co - Data can be downloaded from the [Google Drive](https://drive.google.com/drive/folders/1TW4Vfhu9SrrVrvonclicaWqy5hHBY7vv?usp=sharing) - Save the folder as `data` in the parent directory -4. Set up a virtual environment (optional but recommended): +3. Instantiate a conda enviroment for Python 3.11: + `` + conda create -n inflow_ai python=3.11 + conda activate inflow_ai + conda install -c conda-forge rasterio=1.4.3 + `` + + +5. Set up a virtual environment (optional but recommended): `python3 -m venv env source env/bin/activate # On Windows, use env\Scripts\activate` -5. Install the required libraries: +6. Install the required libraries: `pip install -r requirements.txt` From 8d2251f747a9b0c6943bf23ad961772860693b7f Mon Sep 17 00:00:00 2001 From: Danilo Lessa Bernardineli Date: Wed, 26 Nov 2025 23:43:30 -0300 Subject: [PATCH 2/3] Update README.md --- README.md | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 62e6bb7..b8b0cd9 100644 --- a/README.md +++ b/README.md @@ -56,17 +56,13 @@ This program is a machine learning model designed to predict flood inundation co - Save the folder as `data` in the parent directory 3. Instantiate a conda enviroment for Python 3.11: - `` + ``` conda create -n inflow_ai python=3.11 conda activate inflow_ai conda install -c conda-forge rasterio=1.4.3 - `` - - -5. Set up a virtual environment (optional but recommended): -`python3 -m venv env source env/bin/activate # On Windows, use env\Scripts\activate` + ``` -6. Install the required libraries: +4. Install the required libraries: `pip install -r requirements.txt` From 82f2317298bea2e9bac50d7f5cea235ee9ae4a1a Mon Sep 17 00:00:00 2001 From: Danilo Lessa Bernardineli Date: Wed, 26 Nov 2025 23:46:30 -0300 Subject: [PATCH 3/3] Update requirements.txt --- requirements.txt | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/requirements.txt b/requirements.txt index 77e1c67..9d664a5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,24 +1,24 @@ # Ensure Python >= 3.11 -datetime==5.5 -geopandas==1.0.1 +datetime~=5.5 +geopandas~=1.0.1 descartes -h5py==3.12.1 -joblib==1.5.0 -loguru==0.7.3 -matplotlib==3.10.0 -netCDF4==1.7.2 -numpy==1.26.4 -pandas==2.2.2 -pathlib==1.0.1 -py_hydroweb==1.0.2 -rasterio==1.4.3 -requests==2.32.3 -scikit-learn==1.6.1 -scipy==1.13.1 +h5py~=3.12.1 +joblib~=1.5.0 +loguru~=0.7.3 +matplotlib~=3.10.0 +netCDF4~=1.7.2 +numpy~=1.26.4 +pandas~=2.2.2 +pathlib~=1.0.1 +py_hydroweb~=1.0.2 +rasterio~=1.4.3 +requests~=2.32.3 +scikit-learn~=1.6.1 +scipy~=1.13.1 shapely -tensorflow==2.18.0 -tqdm>=4.66.1 -typer==0.15.1 -wget==3.2 -xarray==2025.1.1 \ No newline at end of file +tensorflow~=2.18.0 +tqdm~=4.66.1 +typer~=0.15.1 +wget~=3.2 +xarray~=2025.1.1