Skip to content

Latest commit

 

History

History
47 lines (43 loc) · 1009 Bytes

machine-learning-cheat-sheet.md

File metadata and controls

47 lines (43 loc) · 1009 Bytes

Machine Learning

:TODO: python framework mataflow from metaflow import FlowSpec, step :TODO: python framework sklearn from sklearn.pipeline import Pipeline

graph LR;
    A[<b>Data In</b>
    * filtered
    * cleaned
    * labeled
    ] --> 
    B(<b>ML Algorithm</b>
    * frameworks
    * algorithms
    🔄️
    );

    B --> 
    C(<b>Data out</b>
    ✅️ example 🆗️
    )    
Loading

Necessary knowledges

graph LR;
    d[design] --> md[model <br>development] --> o[operations]
    md --> d 
    o --> md
Loading

design

  • Requirement engineering
  • ML UseCases prioritization
  • Data Availability Check

model development

  • Data Engineering
  • ML Model Engineering
  • Model Testing & Validation

operations

  • ML Model Deployment
  • CI/CD pipelines
  • Monitoring & triggering

Frameworks