Machine Learning 的 CI/CD
Ravi Bhadauria
Machine Learning Engineer

|):保留換行與縮排commands: |
echo "Running python script..."
python3 script.py



>):移除換行message: >
Successfully executed the code!
All processes completed
without any errors.
The results have been saved
in the designated
output directory.




-):移除結尾所有換行


+):保留結尾所有換行


${{ ... }}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
| 名稱 | YAML 符號 |
|---|---|
| 實字樣式指示符 | | |
| 摺疊樣式指示符 | > |
| strip 吞吃指示符 | − |
| keep 吞吃指示符 | + |
| Expressions | ${{ ... }} |
| 多文件 YAML | ––– |
Machine Learning 的 CI/CD