junxnone / aiwiki

AI Wiki
https://junxnone.github.io/aiwiki
17 stars 2 forks source link

ML Arch #376

Open junxnone opened 1 year ago

junxnone commented 1 year ago

ML 架构


graph TD
    A[Inputs:Images/Text/Audio/Video] -->|Preprocessing| BT

    subgraph Model
        B(Init Model)
        B -->  BT[Training]
        BT--> |Tuning Model HyperParameters| BT
        BT --> BE(Final Model)
    end
    subgraph Result
    IC(Classification Result)
    ID(Detection Result)
    IS(Segmentation Result)
    E(QA)
    F(Generated Content)
    end
    BE --> |PostProcessing| Result