CI/CD cho Machine Learning
Ravi Bhadauria
Machine Learning Engineer
.yaml hoặc .yml#name: Ravi
occupation: Instructor
# This is a valid comment
programming_languages: # and this one too
python: Advanced
go: Intermediate
scala: Beginner
true hoặc falsenull hoặc ~'' hoặc ""# Integer
42
# Floating point
3.14
# Boolean
true
# Null values
null
# String value
a: "A string in YAML"
b: 'A string in YAML'
c: A string in YAML
Dãy (Sequence)
Viết theo hai kiểu:
Kiểu khối (block)
- first
- second
- third
Kiểu dòng (flow)
[first, second, third]
Ánh xạ (Mapping)
:key1: value1
blocklist:
- first
- second
flowlist: [1.2, 2, "fifty", true]


CI/CD cho Machine Learning