CI/CD pentru Machine Learning
Ravi Bhadauria
Machine Learning Engineer

|): păstrează întreruperile de linie și indentareacommands: |
echo "Running python script..."
python3 script.py



>): elimină întreruperile de liniemessage: >
Successfully executed the code!
All processes completed
without any errors.
The results have been saved
in the designated
output directory.




-): elimină toate liniile noi de la sfârșit


+): păstrează toate liniile noi de la sfârșit


${{ ... }}database:
host: ${{ config.database.host }}
port: ${{ config.database.port }}
username: ${{ config.database.username }}
password: ${{ config.database.password }}
___
- name: John
age: 30
___
- name: Jane
age: 28
___
- name: Bob
age: 35
occupation: Developer
| Denumire | Simbol YAML |
|---|---|
| Indicator stil literal | | |
| Indicator stil fold | > |
| Indicator chomping strip | − |
| Indicator chomping keep | + |
| Expresii | ${{ ... }} |
| YAML cu mai multe documente | ––– |
CI/CD pentru Machine Learning