Skip to content

Commit

Permalink
fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
SkafteNicki committed Nov 23, 2023
1 parent e2c935b commit f3eb874
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 12 deletions.
3 changes: 2 additions & 1 deletion faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,8 @@ We can give a grade on the Danish
[7-point grading](https://eng.uvm.dk/general--themes-and-projects/7-point-grading-scale) scale for foreign students who
need it, where their home university does not accept pass/no-pass. You need to contact the course responsible
[Nicki](mailto:[email protected]) within the first week of the course to request this. Secondly, make sure to also inform us
about doing the oral part of the exam because we need to ask you additional questions to be able to give an exact grade.
about it during the oral part of the exam because we need to ask you additional questions to be able to give an exact
grade.

## I am a EuroTEQ student, any special rules for me ❔

Expand Down
4 changes: 2 additions & 2 deletions s4_debugging_and_logging/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
<img src="../figures/icons/lightning.png" width="130">
</p>

Today we are initially going to go other three different topics that are all fundamentally necessary for any data
scientist/devops engineer:
Today we are initially going to go over three different topics that are all fundamentally necessary for any data
scientist or DevOps engineer:

* Debugging
* Profiling
Expand Down
18 changes: 9 additions & 9 deletions s5_continuous_integration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,20 @@ to the end of the pipeline.
This is where *continuous X* comes into play. The word *continuous* here refers to the fact that the
pipeline should *continuously* be updated as we make code changes. You can also choose to think of this as the
*automatization* of processes. The *X* then covers that the process we need to go through to
automate steps in the pipeline, depends on where we are in the pipeline e.g. the tools needed to
do continuous integration is different from the tools need to do continuous delivery.
automate steps in the pipeline depends on where we are in the pipeline e.g. the tools needed to
do continuous integration are different from the tools needed to do continuous delivery.

In this session we are going to focus on *continuous integration (CI)*. As indicated in the image above, CI usually
takes care of the first part of the developer pipeline that has to do with the code base, code building and code
testing. This is paramount to step in automatization as we would rather catch bugs in the beginning of our pipeline
In this session, we are going to focus on *continuous integration (CI)*. As indicated in the image above, CI usually
takes care of the first part of the developer pipeline which has to do with the code base, code building and code
testing. This is paramount to step in automatization as we would rather catch bugs at the beginning of our pipeline
than in the end.

!!! tip "Learning objectives"

The learning objectives of this session are:

* Being able to write unittests that covers both data and model in your ML pipeline
* Being able to write unit tests that cover both data and models in your ML pipeline
* Know how to implement CI using Github actions such that tests are automatically executed on code changes
* Can use pre-commit to secure that code that are not up to standard does not get committed
* Know how to implement CI for continues building of containers
* Basic knowledge how machine learning processes can be implemented in a continues way
* Can use pre-commit to secure that code that is not up to standard does not get committed
* Know how to implement CI for continuous building of containers
* Basic knowledge of how machine learning processes can be implemented in a continuous way

0 comments on commit f3eb874

Please sign in to comment.