CI/CD for Machine Learning
Ravi Bhadauria
Machine Learning Engineer

|): preserves line break and indentationcommands: |
echo "Running python script..."
python3 script.py



>): removes line breaksmessage: >
Successfully executed the code!
All processes completed
without any errors.
The results have been saved
in the designated
output directory.




-): removes all newlines at the end


+): retains all newlines at the end


${{ ... }}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
| Name | YAML Symbol |
|---|---|
| Literal Style Indicator | | |
| Fold Style Indicator | > |
| Strip Chomping Indicator | − |
| Keep Chomping Indicator | + |
| Expressions | ${{ ... }} |
| Multi-document YAML | ––– |
CI/CD for Machine Learning