Vision AutoML¶
AudioClassificationTask
¶
Bases: BaseModel
Configuration for audio classification tasks.
audio_dir is the root directory containing audio files.
labels_file is a CSV with audio_path and label columns.
Source code in app/vision_automl/models.py
87 88 89 90 91 92 93 94 95 96 97 98 99 | |
CausalLMTask
¶
Bases: TextTask
Configuration for causal language modelling tasks.
CSV must have a text column.
Source code in app/vision_automl/models.py
126 127 128 129 130 131 132 | |
ImageClassificationTask
¶
Bases: ImageTask
Configuration for single-label image classification tasks.
Source code in app/vision_automl/models.py
38 39 40 41 | |
ImageMultiLabelClassificationTask
¶
Bases: ImageTask
Configuration for multi-label image classification tasks.
Source code in app/vision_automl/models.py
158 159 160 161 162 | |
ImageRegressionTask
¶
Bases: ImageTask
Configuration for image regression tasks (predict numeric values).
Source code in app/vision_automl/models.py
165 166 167 168 169 | |
ImageSegmentationTask
¶
Bases: ImageTask
Configuration for semantic/panoptic image segmentation tasks.
Source code in app/vision_automl/models.py
44 45 46 47 | |
ImageTask
¶
Bases: BaseModel
Base Pydantic model describing common image task inputs.
Source code in app/vision_automl/models.py
12 13 14 15 16 17 18 19 20 21 | |
KeypointDetectionTask
¶
Bases: ImageTask
Configuration for keypoint detection tasks.
The labels CSV must include a keypoints column with JSON-encoded
[x, y, visibility] lists.
Source code in app/vision_automl/models.py
72 73 74 75 76 77 78 79 | |
MaskedLMTask
¶
Bases: TextTask
Configuration for masked language modelling tasks.
CSV must have a text column.
Source code in app/vision_automl/models.py
144 145 146 147 148 149 150 | |
ObjectDetectionTask
¶
Bases: ImageTask
Configuration for object detection tasks.
The labels CSV must include boxes and class_labels columns
(JSON-encoded lists per row).
Source code in app/vision_automl/models.py
50 51 52 53 54 55 56 57 58 | |
QuestionAnsweringTask
¶
Bases: TextTask
Configuration for extractive question answering tasks.
CSV must have question, context, answer_start, and
answer_text columns.
Source code in app/vision_automl/models.py
116 117 118 119 120 121 122 123 | |
Seq2SeqLMTask
¶
Bases: TextTask
Configuration for sequence-to-sequence tasks.
CSV must have input_text and target_text columns.
Source code in app/vision_automl/models.py
135 136 137 138 139 140 141 | |
SequenceClassificationTask
¶
Bases: TextTask
Configuration for text sequence classification tasks.
CSV must have text and label columns.
Source code in app/vision_automl/models.py
107 108 109 110 111 112 113 | |
TextTask
¶
Bases: BaseModel
Base Pydantic model for text-based tasks.
Source code in app/vision_automl/models.py
24 25 26 27 28 29 30 | |
VideoClassificationTask
¶
Bases: ImageTask
Configuration for video classification tasks.
The labels CSV must include a video_path column pointing to video
files relative to train_dir.
Source code in app/vision_automl/models.py
61 62 63 64 65 66 67 68 69 | |
Route definitions for the vision AutoML service.
find_best_model_for_vision(request, user_id, dataset_id, dataset_version=None, filename_column='filename', label_column='label', task_type='image_classification', time_budget=60, model_size='small', dataset_split=None)
async
¶
Fetch a vision dataset from AutoDW, run AutoML training, and upload the best model.
Steps
- Fetch dataset metadata from AutoDW.
- Resolve the correct download URL (respecting splits if present).
- Download the dataset ZIP to a temporary directory and extract it.
- Validate CSV structure and image file presence.
- Train a vision AutoML model within the given time budget.
- Zip the model artifacts.
- Upload the model and leaderboard back to AutoDW.
Returns:
| Type | Description |
|---|---|
JSONResponse
|
200 – success message and leaderboard summary. |
JSONResponse
|
400 – validation error (bad inputs or unsupported dataset). |
JSONResponse
|
502 – AutoDW communication failure. |
JSONResponse
|
500 – unexpected runtime error. |
Source code in app/vision_automl/router.py
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 | |
Service layer for vision AutoML workflows.
Mirrors the structure of tabular_automl/services.py so both pipelines share a consistent public API consumed by their respective main.py files.
AutodwError
¶
Bases: Exception
Raised on AutoDW communication failures.
Source code in app/vision_automl/services.py
204 205 | |
DatasetValidationError
¶
Bases: ValueError
Raised when the uploaded dataset fails structural validation.
Source code in app/vision_automl/services.py
200 201 | |
build_upload_payload(dataset_id, dataset_version, metadata, task_type, leaderboard_json)
¶
Return (model_id, form_data_dict) for the AutoDW upload request.
Mirrors tabular's build_upload_payload.
Source code in app/vision_automl/services.py
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 | |
collect_missing_files(df, images_dir, filename_col, label_col)
¶
Return a list of filenames referenced in the CSV but absent on disk.
Source code in app/vision_automl/services.py
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 | |
convert_leaderboard_safely(optuna_result)
¶
Extract leaderboard information from an Optuna result dict.
Returns (leaderboard_json, leaderboard_str) — mirrors the tabular
convert_leaderboard_safely signature so main.py can treat both
pipelines identically.
Source code in app/vision_automl/services.py
520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 | |
download_dataset(download_url, workdir, original_filename)
¶
Stream-download the ZIP dataset and return its local path.
Source code in app/vision_automl/services.py
269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 | |
extract_and_locate_dataset(zip_path, workdir)
¶
Extract a vision dataset ZIP and return (csv_path, images_dir).
Raises DatasetValidationError for structural problems.
Source code in app/vision_automl/services.py
291 292 293 294 295 296 297 298 299 300 301 302 303 304 | |
fetch_dataset_metadata(autodw_base, user_id, dataset_id, dataset_version)
¶
Fetch and return dataset metadata from AutoDW.
Source code in app/vision_automl/services.py
223 224 225 226 227 228 229 230 231 232 233 234 235 236 | |
get_num_params_if_available(repo_id, revision=None)
¶
Try to retrieve number of parameters for a HF model, if available.
Source code in app/vision_automl/services.py
112 113 114 115 116 117 118 119 120 121 122 123 124 125 | |
normalize_dataframe_filenames(df, filename_column, csv_path)
¶
Normalize filenames to basenames and persist CSV back to disk.
Source code in app/vision_automl/services.py
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 | |
resolve_download_url(autodw_base, user_id, dataset_id, dataset_version, metadata, split)
¶
Determine the correct dataset download URL, accounting for splits.
Source code in app/vision_automl/services.py
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 | |
resolve_images_root(images_dir)
¶
Resolve common nested packaging patterns inside uploaded image zips.
Source code in app/vision_automl/services.py
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 | |
search_hf_for_pytorch_models_with_estimated_parameters(filter='image-classification', limit=3, sort='downloads')
¶
Search HF for PyTorch image-classification models annotated with param counts.
Source code in app/vision_automl/services.py
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | |
serialize_and_zip_model(result, workdir)
¶
Package the trained model directory into a ZIP archive.
Returns the path to the ZIP file.
Mirrors tabular's serialize_and_zip_predictor.
Source code in app/vision_automl/services.py
492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 | |
sort_models_by_size(models, size_tier)
¶
Filter and sort models by size tier based on estimated parameter counts.
Source code in app/vision_automl/services.py
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 | |
train_automl(csv_path, images_dir, filename_column, label_column, time_budget, model_size, workdir, task_type='image_classification')
async
¶
Run Optuna-based vision AutoML and return the result dict.
Source code in app/vision_automl/services.py
455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 | |
upload_model(upload_url, zip_path, payload, task_id)
¶
Upload the zipped model to AutoDW and return the raw response.
Source code in app/vision_automl/services.py
570 571 572 573 574 575 576 577 578 579 580 581 582 583 | |
validate_vision_inputs(csv_path, images_dir, filename_column, label_column, task_type='image_classification')
¶
Validate dataset structure for the given task type.
Returns an error string on failure, or None if everything is valid.
Mirrors the signature/contract of tabular's validate_tabular_inputs.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
csv_path
|
Path
|
Path to the labels CSV. |
required |
images_dir
|
Path
|
Root directory containing image/audio/video files. Unused for pure text tasks. |
required |
filename_column
|
str
|
Column name containing file paths (image/audio tasks). |
required |
label_column
|
str
|
Column name containing labels (classification tasks). |
required |
task_type
|
str
|
One of the supported task type slugs. |
'image_classification'
|
Source code in app/vision_automl/services.py
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 | |
ML engine¶
Per-task hyperparameter and model config loader.
load_task_config(task_type)
¶
Load and return the JSON config for the given task type.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
task_type
|
str
|
One of the supported task type slugs. |
required |
Returns:
| Type | Description |
|---|---|
dict
|
Dict with keys: small_models, medium_models, large_models, |
dict
|
lr_low, lr_high, batch_sizes, weight_decay_low, weight_decay_high, |
dict
|
max_epochs, early_stopping_patience. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If the task type is not supported. |
Source code in app/vision_automl/ml_engine/configs/__init__.py
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | |
AudioClassificationDataModule
¶
Datamodule for audio classification tasks.
CSV columns: audio_path (relative to root_dir) and label.
Audio is loaded with torchaudio (must be installed separately).
Source code in app/vision_automl/ml_engine/datamodule.py
573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 | |
CausalLMDataModule
¶
Datamodule for causal language modelling tasks.
CSV column: text. Labels are produced by shifting input_ids
right by one position (handled by the model internally when labels
equals input_ids).
Source code in app/vision_automl/ml_engine/datamodule.py
965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 | |
ImageClassificationDataModule
¶
Handles dataset preparation and dataloaders for image classification tasks.
Source code in app/vision_automl/ml_engine/datamodule.py
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 | |
setup()
¶
Create train/val/test splits, datasets, label maps, and processor.
Source code in app/vision_automl/ml_engine/datamodule.py
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 | |
ImageSegmentationDataModule
¶
Bases: ImageClassificationDataModule
Datamodule for image segmentation tasks.
Uses the same CSV + class-subdir image layout as image classification.
The collate function passes labels (pixel-level segmentation maps)
to the processor. The labels CSV must contain a mask_filename
column pointing to the segmentation mask image (same class-subdir layout).
Source code in app/vision_automl/ml_engine/datamodule.py
208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 | |
KeypointDetectionDataModule
¶
Bases: ImageClassificationDataModule
Datamodule for keypoint detection tasks.
Uses the same CSV + image layout as image classification.
The keypoints_col should contain a JSON list of
[x, y, visibility] entries (one per keypoint).
Source code in app/vision_automl/ml_engine/datamodule.py
519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 | |
MaskedLMDataModule
¶
Datamodule for masked language modelling tasks.
CSV column: text. Uses DataCollatorForLanguageModeling to
randomly mask tokens at runtime.
Source code in app/vision_automl/ml_engine/datamodule.py
1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 | |
ObjectDetectionDataModule
¶
Datamodule for object detection tasks.
CSV columns: filename (image file), boxes (JSON list of
[x_min, y_min, x_max, y_max]), class_labels (JSON list of
int class IDs). Images live in class-neutral flat layout under
root_dir/images/.
Source code in app/vision_automl/ml_engine/datamodule.py
263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 | |
QuestionAnsweringDataModule
¶
Datamodule for extractive question answering tasks.
CSV columns: question, context, answer_start (char offset),
answer_text.
Source code in app/vision_automl/ml_engine/datamodule.py
823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 | |
Seq2SeqLMDataModule
¶
Datamodule for sequence-to-sequence tasks.
CSV columns: input_text and target_text.
Source code in app/vision_automl/ml_engine/datamodule.py
1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 | |
SequenceClassificationDataModule
¶
Datamodule for text sequence classification tasks.
CSV columns: text and label.
Source code in app/vision_automl/ml_engine/datamodule.py
711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 | |
VideoClassificationDataModule
¶
Datamodule for video classification tasks.
CSV columns: video_path (relative to root_dir) and label.
Frames are decoded using torchvision.io.read_video.
Source code in app/vision_automl/ml_engine/datamodule.py
389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 | |
CausalLMFromCSVDataset
¶
Bases: Dataset
Dataset for causal language modelling tasks.
Expected CSV column: text. The datamodule tokenises and shifts
labels automatically.
Source code in app/vision_automl/ml_engine/dataset.py
205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 | |
ImageClassificationFromCSVDataset
¶
Bases: Dataset
Torch dataset that reads image paths and labels from a CSV/DataFrame.
Source code in app/vision_automl/ml_engine/dataset.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 | |
__len__()
¶
Return number of samples.
Source code in app/vision_automl/ml_engine/dataset.py
53 54 55 | |
QuestionAnsweringFromCSVDataset
¶
Bases: Dataset
Dataset for extractive QA tasks.
Expected CSV columns: question, context, answer_start (int),
answer_text (str). Returns raw strings; the datamodule tokenises them.
Source code in app/vision_automl/ml_engine/dataset.py
131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 | |
Seq2SeqFromCSVDataset
¶
Bases: Dataset
Dataset for sequence-to-sequence tasks.
Expected CSV columns: input_text and target_text.
Source code in app/vision_automl/ml_engine/dataset.py
173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 | |
TextClassificationFromCSVDataset
¶
Bases: Dataset
Torch dataset that reads text and labels from a CSV/DataFrame.
Expected columns: text (str) and label (str or int).
Returns (text, label_idx) tuples — the collate function in the
datamodule applies the tokeniser.
Source code in app/vision_automl/ml_engine/dataset.py
88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 | |
AudioClassificationModel
¶
Bases: Module
Thin nn.Module wrapping HF AutoModelForAudioClassification.
Source code in app/vision_automl/ml_engine/model.py
136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | |
CausalLMModel
¶
Bases: Module
Thin nn.Module wrapping HF AutoModelForCausalLM.
Source code in app/vision_automl/ml_engine/model.py
212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 | |
forward(input_ids, attention_mask=None, labels=None)
¶
Always returns the scalar language modelling loss.
Source code in app/vision_automl/ml_engine/model.py
219 220 221 222 223 224 225 226 227 228 | |
ImageClassificationModel
¶
Bases: Module
Thin nn.Module wrapping HF AutoModelForImageClassification.
Source code in app/vision_automl/ml_engine/model.py
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | |
ImageSegmentationModel
¶
Bases: Module
Thin nn.Module wrapping HF AutoModelForImageSegmentation.
Source code in app/vision_automl/ml_engine/model.py
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 | |
forward(pixel_values, labels=None)
¶
Returns loss (scalar) when labels provided, else logits.
Source code in app/vision_automl/ml_engine/model.py
74 75 76 77 | |
KeypointDetectionModel
¶
Bases: Module
Thin nn.Module wrapping HF AutoModelForKeypointDetection.
Source code in app/vision_automl/ml_engine/model.py
120 121 122 123 124 125 126 127 128 129 130 131 132 133 | |
forward(pixel_values, labels=None)
¶
Returns loss when labels provided, else raw output.
Source code in app/vision_automl/ml_engine/model.py
130 131 132 133 | |
MaskedLMModel
¶
Bases: Module
Thin nn.Module wrapping HF AutoModelForMaskedLM.
Source code in app/vision_automl/ml_engine/model.py
254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 | |
forward(input_ids, attention_mask=None, labels=None)
¶
Returns the scalar masked language modelling loss.
Source code in app/vision_automl/ml_engine/model.py
261 262 263 264 265 266 267 268 269 270 | |
ObjectDetectionModel
¶
Bases: Module
Thin nn.Module wrapping HF AutoModelForObjectDetection.
Source code in app/vision_automl/ml_engine/model.py
80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | |
forward(pixel_values, labels=None)
¶
Returns loss when labels provided (list of dicts), else raw output.
Source code in app/vision_automl/ml_engine/model.py
91 92 93 94 | |
QuestionAnsweringModel
¶
Bases: Module
Thin nn.Module wrapping HF AutoModelForQuestionAnswering.
Source code in app/vision_automl/ml_engine/model.py
186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | |
forward(input_ids, attention_mask=None, start_positions=None, end_positions=None)
¶
Returns loss scalar when start/end positions provided, else raw output.
Source code in app/vision_automl/ml_engine/model.py
193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 | |
Seq2SeqLMModel
¶
Bases: Module
Thin nn.Module wrapping HF AutoModelForSeq2SeqLM.
Source code in app/vision_automl/ml_engine/model.py
231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 | |
forward(input_ids, attention_mask=None, decoder_input_ids=None, labels=None)
¶
Returns the scalar seq2seq loss.
Source code in app/vision_automl/ml_engine/model.py
238 239 240 241 242 243 244 245 246 247 248 249 250 251 | |
SequenceClassificationModel
¶
Bases: Module
Thin nn.Module wrapping HF AutoModelForSequenceClassification.
Source code in app/vision_automl/ml_engine/model.py
159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 | |
VideoClassificationModel
¶
Bases: Module
Thin nn.Module wrapping HF AutoModelForVideoClassification.
Source code in app/vision_automl/ml_engine/model.py
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 | |
EarlyStopping
¶
Simple early stopping callback based on monitored metric.
Source code in app/vision_automl/ml_engine/trainer.py
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | |
on_epoch_end(trainer, epoch, logs)
¶
Update state after epoch; may signal stopping on trainer.
Source code in app/vision_automl/ml_engine/trainer.py
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 | |
FabricTrainer
¶
Minimal trainer using Lightning Fabric.
Supports both:
- Classification tasks where the model returns logits and the trainer
computes the loss via loss_fn (model_computes_loss=False).
- Generative / structured-prediction tasks where the model computes
its own loss internally and returns a scalar tensor
(model_computes_loss=True).
Source code in app/vision_automl/ml_engine/trainer.py
97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 | |
test()
¶
Evaluate on test set; return (avg_loss, accuracy).
Source code in app/vision_automl/ml_engine/trainer.py
268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 | |
train_epoch(epoch, start_time)
¶
Train for a single epoch and return average training loss.
Source code in app/vision_automl/ml_engine/trainer.py
211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 | |
validate(start_time)
¶
Evaluate on validation set; return (avg_loss, accuracy).
Source code in app/vision_automl/ml_engine/trainer.py
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 | |
run_optuna_search(*, task_type='image_classification', csv_path, images_dir=None, filename_column='filename', label_column='label', n_trials=3, timeout=None, model_size='small', workdir, **extra_kwargs)
¶
Run an Optuna hyperparameter search for the given task type.
Dispatches to the appropriate per-task objective via OBJECTIVE_REGISTRY.
extra_kwargs are forwarded to the objective (e.g. text_column for
text tasks).
Raises:
| Type | Description |
|---|---|
ValueError
|
If |
Source code in app/vision_automl/ml_engine/trainer.py
844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 | |