CI/CD cho Machine Learning
Ravi Bhadauria
Machine Learning Engineer

|): giữ nguyên ngắt dòng và thụt lềcommands: |
echo "Running python script..."
python3 script.py



>): loại bỏ ngắt dòngmessage: >
Successfully executed the code!
All processes completed
without any errors.
The results have been saved
in the designated
output directory.




-): xóa mọi ngắt dòng ở cuối


+): giữ mọi ngắt dòng ở cuối


${{ ... }}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
| Tên | Ký hiệu YAML |
|---|---|
| Chỉ thị kiểu Literal | | |
| Chỉ thị kiểu Gập | > |
| Chỉ thị cắt Strip | − |
| Chỉ thị cắt Keep | + |
| Biểu thức | ${{ ... }} |
| YAML nhiều tài liệu | ––– |
CI/CD cho Machine Learning