Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos in data-driven-development #14

Merged
merged 1 commit into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading