Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel
Geeks-sid bb8821dd39
Refactor inference manager code
2 weeks ago
..
0be31c2487
fixed version dicom-anonymizer==1.0.12
1 month ago
cli
2dd1456251
Merge branch 'mlcommons:master' into issue-800-code-issues-codacy
1 month ago
b003c3c2a6
Merge branch 'master' into 828-feature-add-the-ability-to-split-csvs-for-trainingvalidationtesting-as-a-separate-script
1 month ago
7f47e5b83e
added `.float()` before `torch.std`
3 weeks ago
92f2f16a4c
added `Optional` to `grad_clipping`
3 months ago
6b69e89143
fix: fixing the linting issue
1 month ago
80e1aaf446
commenting out auroc
4 weeks ago
518a1d43bf
blacked all the code base
1 month ago
518a1d43bf
blacked all the code base
1 month ago
518a1d43bf
blacked all the code base
1 month ago
6a4cf34b26
fixed logic, and ensuring that it gets invoked during test
1 month ago
2ff385d5ee
renamed
3 months ago
2 years ago
27e5f9280d
Merge branch 'master' into VukW-deprecated-pkg_resources
1 month ago
bb8821dd39
Refactor inference manager code
2 weeks ago
9c9ce6aca3
updated typing definition
3 months ago
edcec18164
added `Optional` to base modules
3 months ago
b93bd038eb
added check for singleFoldValidation
1 month ago
3c61892f9d
updated version for development
1 month ago

README.md

You have to be logged in to leave a comment. Sign In

Documentation: start with index.md.

I/O

flowchart TD
    subgraph Input Files
        InputData[(InputData)] 
        InputYAMLConfig 
    end

    subgraph Parsing
        InputData[(InputData)] -->|pandas| df[(DataFrame)]
        InputYAMLConfig --> ConfigManager[/ConfigManager/] -->|error checks and defaults| parameters([parameters])
    end

Top-Level Parsing

flowchart TD
    df[(DataFrame)] --> |Training| TrainingManager[/TrainingManager/] --> Data_TV[(Data for Training & Validation)] --> Loop_Train[\Training Loop\]
    df --> |Inference or Testing| InferenceManager[/InferenceManager/] --> Data_Test[(Data for Testing)] --> Loop_Inference[\Inference Loop\]
    parameters([parameters]) -->|Configuration| TrainingManager
    parameters([parameters]) -->|Configuration| InferenceManager
    Loop_Train -->|Training| Trainer[/Trainer/] --> Model[(Trained Model & Metrics)]
    Loop_Train -->|Validation| Validator[/Validator/] --> Model
    Loop_Train <==>|Training & Validation| CommonObjects[\compute.generic.create_pytorch_objects\]
    Loop_Inference -->|Inference| InferenceEngine[/InferenceEngine/] --> Predictions[(Predictions)]
    Loop_Inference <==> CommonObjects
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...