Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
akloeker committed Oct 8, 2024
1 parent ac59cd1 commit 8de8445
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions data-driven-development/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions data-driven-development/data_generation.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down
2 changes: 1 addition & 1 deletion data-driven-development/env/requirements.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
python-on-whales=0.68.0
python-on-whales==0.68.0

0 comments on commit 8de8445

Please sign in to comment.