Machine Learning 的 CI/CD
Ravi Bhadauria
Machine Learning Engineer
.yaml 或 .yml# 開頭name: Ravi
occupation: Instructor
# This is a valid comment
programming_languages: # and this one too
python: Advanced
go: Intermediate
scala: Beginner
true 或 falsenull 或 ~'' 或 "" 包起來# 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
序列(Sequences)
有兩種寫法:
區塊風格
- first
- second
- third
流水風格
[first, second, third]
對映(Mappings)
: 分隔key1: value1
blocklist:
- first
- second
flowlist: [1.2, 2, "fifty", true]


Machine Learning 的 CI/CD