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.




-): अंत में सभी newlines हटा देता है


+): अंत की सभी newlines बनाए रखता है


${{ ... }} के रूप में दर्शाई जाती हैं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 Chomping इंडिकेटर | − |
| Keep Chomping इंडिकेटर | + |
| Expressions | ${{ ... }} |
| मल्टी-डॉक्युमेंट YAML | ––– |
Machine Learning के लिए CI/CD