From 8de8445904ff590cc6cec3f547a462968a10fda4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Amarin=20Kl=C3=B6ker?= Date: Tue, 8 Oct 2024 10:39:14 +0200 Subject: [PATCH] Fix typos --- data-driven-development/README.md | 4 ++-- ...n => data-driven-development-demo-image-segmentation.json} | 0 ...n => data-driven-development-demo-scenario-execution.json} | 0 data-driven-development/data_generation.py | 4 ++-- data-driven-development/env/requirements.txt | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) rename data-driven-development/config/{data-driven-delevopment-demo-image-segmentation.json => data-driven-development-demo-image-segmentation.json} (100%) rename data-driven-development/config/{data-driven-delevopment-demo-scenario-execution.json => data-driven-development-demo-scenario-execution.json} (100%) diff --git a/data-driven-development/README.md b/data-driven-development/README.md index 69a4f4a..c8dc708 100644 --- a/data-driven-development/README.md +++ b/data-driven-development/README.md @@ -20,14 +20,14 @@ The subsequent demonstration showcases rapid *data driven development* and speci Install and activate the conda environment: ```bash -conda env install -f env/environment.yml +conda env create -f env/environment.yml conda activate carlos_data_driven_development ``` Alternatively, you can also use Pip: ```bash -pip install -r requirements.txt +pip install -r env/requirements.txt ``` In the initial demo [software-prototyping](../software-prototyping), we demonstrated the integration of a Function Under Test (FUT) with CARLOS, exploring its capabilities through practical experimentation. While these tests validated the general functionality of our image segmentation module, it became clear that there is considerable potential to improve its performance. Given that this module, like many AD functions, relies heavily on machine learning models trained with specific datasets, the quality and quantity of this training data are crucial. diff --git a/data-driven-development/config/data-driven-delevopment-demo-image-segmentation.json b/data-driven-development/config/data-driven-development-demo-image-segmentation.json similarity index 100% rename from data-driven-development/config/data-driven-delevopment-demo-image-segmentation.json rename to data-driven-development/config/data-driven-development-demo-image-segmentation.json diff --git a/data-driven-development/config/data-driven-delevopment-demo-scenario-execution.json b/data-driven-development/config/data-driven-development-demo-scenario-execution.json similarity index 100% rename from data-driven-development/config/data-driven-delevopment-demo-scenario-execution.json rename to data-driven-development/config/data-driven-development-demo-scenario-execution.json diff --git a/data-driven-development/data_generation.py b/data-driven-development/data_generation.py index 410b808..3935837 100755 --- a/data-driven-development/data_generation.py +++ b/data-driven-development/data_generation.py @@ -181,8 +181,8 @@ def main(): argparser.add_argument( '--config', metavar='C', - default='./config/data-driven-delevopment-demo-image-segmentation.json', - help='Config file which should be used (default: ./config/data-driven-delevopment-demo-image-segmentation.json)' + default='./config/data-driven-development-demo-image-segmentation.json', + help='Config file which should be used (default: ./config/data-driven-development-demo-image-segmentation.json)' ) args = argparser.parse_args() diff --git a/data-driven-development/env/requirements.txt b/data-driven-development/env/requirements.txt index 707b9dd..21f3cdd 100644 --- a/data-driven-development/env/requirements.txt +++ b/data-driven-development/env/requirements.txt @@ -1 +1 @@ -python-on-whales=0.68.0 +python-on-whales==0.68.0