derek-thomas's picture
derek-thomas HF staff
Updating for falcon
e4449d4
|
raw
history blame
2.7 kB
graph TD
    style NB0 fill:#333,stroke:#FF9D00,color:#FFD21E
    style NB1 fill:#333,stroke:#FF9D00,color:#FFD21E
    style NB2 fill:#333,stroke:#FF9D00,color:#FFD21E
    style NB3 fill:#333,stroke:#FF9D00,color:#FFD21E
    style NB4 fill:#333,stroke:#FF9D00,color:#FFD21E
    style D fill:#333,stroke:#FF9D00,color:#FFD21E
    style G fill:#333,stroke:#FF9D00,color:#FFD21E
    style A fill:#333,stroke:#FF9D00,color:#FFD21E
    style B fill:#333,stroke:#FF9D00,color:#FFD21E
    style C fill:#333,stroke:#FF9D00,color:#FFD21E
    style E fill:#333,stroke:#FF9D00,color:#FFD21E
    style F fill:#333,stroke:#FF9D00,color:#FFD21E

    subgraph Notebooks
        NB0[00-poe-generate-falcon-reasoning.ipynb]
        NB1[01-poe-dataset-creation.ipynb]
        NB2[02-autotrain.ipynb]
        NB3[03-poe-token-count-exploration.ipynb]
        NB4[04-poe-eval.ipynb]
    end

    subgraph Models
        D[Fine-Tuned MODELS]
        G[BASE_MODEL: tiiuae/Falcon3-7B-Instruct]
    end
    
    subgraph Datasets
        A[(layoric/labeled-multiple-choice-explained)]
        B[(derek-thomas/labeled-multiple-choice-explained-falcon-reasoning)]
        C[(derek-thomas/labeled-multiple-choice-explained-falcon-tokenized)]
        E[Deployment Config]
        F[(derek-thomas/labeled-multiple-choice-explained-falcon-results)]
    end

    A --> NB0
    G --> NB0
    NB0 --> B
    NB0 ==> NB1

    B --> NB1
    NB1 --> C
    NB1 ==> NB2

    C --> NB2
    NB2 --> D
    NB2 ==> NB3

    C --> NB3
    NB3 --> E
    NB3 ==> NB4

    C --> NB4
    D --> NB4
    G --> NB4
    NB4 --> F

    click NB0 href "https://huggingface.co/derek-thomas/prompt-order-experiment/blob/main/00-poe-generate-falcon-reasoning.ipynb"
    click NB1 href "https://huggingface.co/derek-thomas/prompt-order-experiment/blob/main/01-poe-dataset-creation.ipynb"
    click NB2 href "https://huggingface.co/derek-thomas/prompt-order-experiment/blob/main/02-autotrain.ipynb"
    click NB3 href "https://huggingface.co/derek-thomas/prompt-order-experiment/blob/main/03-poe-token-count-exploration.ipynb"
    click NB4 href "https://huggingface.co/derek-thomas/prompt-order-experiment/blob/main/04-poe-eval.ipynb"
    click G href "https://huggingface.co/tiiuae/Falcon3-7B-Instruct"
    click A href "https://huggingface.co/datasets/layoric/labeled-multiple-choice-explained"
    click B href "https://huggingface.co/datasets/derek-thomas/labeled-multiple-choice-explained-falcon-reasoning"
    click C href "https://huggingface.co/datasets/derek-thomas/labeled-multiple-choice-explained-falcon-tokenized"
    click F href "https://huggingface.co/datasets/derek-thomas/labeled-multiple-choice-explained-falcon-results"