📝 API Reference
Aegear: a computer vision toolkit for tracking and analyzing fish behavior in controlled aquaculture environments.
calibration
Scene calibration module.
This module is used to calibrate the camera and the scene size to get the pixel to cm ratio.
It includes a class SceneCalibration that handles the calibration process, including loading camera parameters,
assigning scene reference points, calibrating the scene, and rectifying images.
The calibration is performed using a set of screen points and a set of real-world reference points.
The class also provides a method to rectify images based on the calibration parameters. It uses OpenCV for image processing and assumes that the camera calibration parameters are stored in a file. The calibration points are expected to be in a specific order: top left, top right, bottom right, bottom left.
Note that this reference matching system is put in place due allow inconsistent camera placement with respect to the original take of the calibration pattern. This calibration system uses this information to rectify the image for easier tracking of the fish, and to estimate the pixel to cm ratio, hence allowing the correct metric tracking of the fish within the experiment.
SceneCalibration
Calibration of the camera and the scene size to get the pixel to cm ratio.
Source code in src\aegear\calibration.py
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 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 197 198 199 200 201 202 203 204 205 206 207 | |
assign_scene_calibration(points)
Assign the scene calibration points.
Parameters
list
The scene reference points to use for calibration. The 4x2 array of floats, designating the borders of the reference area used for final image rectification and pixel to cm ratio calculation. By convention, the points are in the order: top left, top right, bottom right, bottom left.
Source code in src\aegear\calibration.py
61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 | |
calibrate(screen_pts)
Run the scene characterization.
Parameters
screen_pts : list The screen points to use for calibration, which within the scene match the points assigned for the scene reference. As for the reference points, the points are in the order: top left, top right, bottom right, bottom left.
Returns
float The pixel to cm ratio.
Source code in src\aegear\calibration.py
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 | |
rectify_image(image)
Rectify the image.
Parameters
image : np.ndarray The image to rectify.
Returns
np.ndarray The rectified image.
Source code in src\aegear\calibration.py
130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | |
rectify_point(point)
Rectify a single point using the current calibration.
Parameters
point : tuple of float The (x, y) coordinates of the point to rectify.
Returns
tuple of float The rectified (x, y) coordinates.
Source code in src\aegear\calibration.py
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 | |
unrectify_point(point)
Map a point from the rectified image back to its original (distorted) image coordinates.
Source code in src\aegear\calibration.py
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 | |
motiondetection
Motion detection module.
This module provides the MotionDetector class that identifies motion by comparing three consecutive frames. The algorithm converts frames to grayscale, computes the absolute difference between frames, applies binary thresholding, combines the results, and uses morphological operations to filter the motion regions before extracting contours.
MotionDetector
Motion detector class that identifies motion by comparing three consecutive frames.
Source code in src\aegear\motiondetection.py
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 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 | |
detect(prev_frame, this_frame, next_frame)
Detect motion by comparing three consecutive frames.
The function converts the frames to grayscale, computes the absolute differences, thresholds them to produce binary images, combines the thresholded images, applies morphological operations to remove noise, and finally extracts contours. Detected contours are classified into "good" (within the area range) and "bad" (outside the area range but above a minimum threshold).
Parameters
prev_frame : numpy.ndarray Previous frame in BGR color space. this_frame : numpy.ndarray Current frame in BGR color space. next_frame : numpy.ndarray Next frame in BGR color space.
Returns
Tuple[List[numpy.ndarray], List[numpy.ndarray]] A tuple containing two lists of contours: - The first list contains contours with areas between min_area and max_area. - The second list contains contours with areas outside that range but above MIN_AREA.
Source code in src\aegear\motiondetection.py
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 | |
nn
datasets
TrackingDataset
Bases: Dataset
Source code in src\aegear\nn\datasets.py
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 566 567 568 569 570 571 572 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 704 705 706 707 708 709 710 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 816 817 818 819 820 821 822 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 | |
transform_offset_for_heatmap(offset, transform)
Apply rotation and scale to an offset vector, then map to heatmap coordinates.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
offset
|
np.ndarray shape (2,), the vector (search - template) |
required | |
transform
|
Tuple[float, float]
|
Tuple[float, float] = (rotation_deg, scale) |
required |
Returns:
| Type | Description |
|---|---|
|
np.ndarray of shape (2,), transformed and rescaled offset in heatmap coordinates |
Source code in src\aegear\nn\datasets.py
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 | |
CachedTrackingDataset
Bases: Dataset
Cached version of TrackingDataset. Loads crops and metadata from disk, avoiding video decoding at runtime. Each sample contains (template, search, heatmap).
Source code in src\aegear\nn\datasets.py
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 | |
BackgroundWindowDataset
Bases: Dataset
Dataset for sampling background (no-fish) windows from a video, using a sliding window approach. The user provides a list of frame indices known to contain only background (no fish present). Each sample is a cropped window from a background frame, with optional augmentation, rotation, and scaling. The output is (image, heatmap), where heatmap is always a zero tensor.
Source code in src\aegear\nn\datasets.py
960 961 962 963 964 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 1054 1055 1056 1057 1058 1059 | |
WebTrackingDataset
Bases: IterableDataset
Webdataset-based tracking dataset.
Reads template/search image pairs and metadata from tar files. Each sample contains (template, search, heatmap).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tar_urls
|
Path or list of paths to tar files (can include wildcards) Examples: - "path/to/tracking-{000000..000009}.tar" - ["path/to/shard1.tar", "path/to/shard2.tar"] - "s3://bucket/tracking-*.tar" |
required | |
output_size
|
int
|
Size of output heatmap (default: 128) |
128
|
gaussian_sigma
|
float
|
Sigma for Gaussian heatmap generation (default: 6.0) |
6.0
|
shuffle
|
bool
|
Whether to shuffle samples (default: True) |
True
|
transform
|
Optional[Callable]
|
Optional transform to apply to images |
None
|
empty_check
|
bool
|
If True, raises an error if no samples are found in shards |
False
|
Source code in src\aegear\nn\datasets.py
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 1165 1166 1167 1168 1169 1170 1171 1172 1173 | |
generate_heatmap(center)
Generate Gaussian heatmap centered at the given position.
Source code in src\aegear\nn\datasets.py
1107 1108 1109 1110 1111 1112 1113 1114 | |
decode_sample(sample)
Decode a webdataset sample into (template, search, heatmap) tuple.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
sample
|
Dictionary containing keys like 'template.jpg', 'search.jpg', 'json' |
required |
Returns:
| Type | Description |
|---|---|
|
Tuple of (template_tensor, search_tensor, heatmap_tensor) |
Source code in src\aegear\nn\datasets.py
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 | |
WebTrackingDatasetWithLength
Bases: WebTrackingDataset
Extended version with approximate length for DataLoader compatibility.
This is useful when you need a DataLoader with a known length for progress bars or epoch-based training.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
tar_urls
|
Path or list of paths to tar files |
required | |
length
|
int
|
Total number of samples in the dataset |
required |
output_size
|
int
|
Size of output heatmap (default: 128) |
128
|
gaussian_sigma
|
float
|
Sigma for Gaussian heatmap generation (default: 6.0) |
6.0
|
shuffle
|
bool
|
Whether to shuffle samples (default: True) |
True
|
transform
|
Optional[Callable]
|
Optional transform to apply to images |
None
|
Source code in src\aegear\nn\datasets.py
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 | |
split_coco_annotations(coco_json_path, train_ratio=0.8, seed=42)
Loads a COCO JSON and splits it into train/val dictionaries based on image-level split.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
coco_json_path
|
Path
|
Path to the COCO annotations.json. |
required |
train_ratio
|
float
|
Ratio of images to assign to the training set. |
0.8
|
seed
|
int
|
Random seed for reproducibility. |
42
|
Returns:
| Type | Description |
|---|---|
Tuple[dict, dict]
|
Tuple[dict, dict]: (train_dict, val_dict) |
Source code in src\aegear\nn\datasets.py
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 | |
fetch_shard_dataset(output_dir, verbose=True)
Fetch the shards dataset from GCS to a given directory
Source code in src\aegear\nn\datasets.py
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 | |
set_seed(seed=42)
Set random seed for reproducibility.
Source code in src\aegear\nn\datasets.py
1305 1306 1307 1308 1309 1310 1311 1312 1313 | |
split_shards_train_val(shard_dir, train_ratio=0.8, seed=42)
Split tar files into train and validation sets with a predictable seed.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
shard_dir
|
str
|
Directory containing the tar files |
required |
train_ratio
|
float
|
Ratio of data to use for training (default: 0.8) |
0.8
|
seed
|
int
|
Random seed for reproducibility |
42
|
Returns:
| Type | Description |
|---|---|
tuple
|
Tuple of (train_tar_files, val_tar_files) |
Source code in src\aegear\nn\datasets.py
1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 | |
create_webdataset_from_manifest(manifest_path, output_size=128, gaussian_sigma=6.0, train_ratio=0.8, seed=42, autodownload=True, verbose=True)
Create train and validation WebTrackingDatasets from a manifest file.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
manifest_path
|
str
|
Path to the manifest JSON file |
required |
output_size
|
int
|
Size of output heatmap |
128
|
gaussian_sigma
|
float
|
Sigma for Gaussian heatmap generation |
6.0
|
train_ratio
|
float
|
Ratio of data to use for training (default: 0.8) |
0.8
|
seed
|
int
|
Random seed for reproducible splitting (default: 42) |
42
|
autodownload
|
bool
|
Whether to auto-download shards if not present |
True
|
verbose
|
bool
|
Whether to print download progress |
True
|
Returns:
| Type | Description |
|---|---|
Tuple[WebTrackingDatasetWithLength, WebTrackingDatasetWithLength]
|
Tuple of (train_dataset, val_dataset) as WebTrackingDatasetWithLength instances |
Raises:
| Type | Description |
|---|---|
ValueError
|
If number of tar files does not match num_shards in manifest |
Source code in src\aegear\nn\datasets.py
1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 | |
load_dataset_from_shards(manifest_path, output_size=128, gaussian_sigma=6.0, batch_size=128, train_ratio=0.8, num_workers=0, seed=42, autodownload=True, verbose=True)
Load training and validation datasets from tar shards.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
manifest_path
|
str
|
Path to the manifest JSON file |
required |
output_size
|
int
|
Size of output heatmap |
128
|
gaussian_sigma
|
float
|
Sigma for Gaussian heatmap generation |
6.0
|
batch_size
|
int
|
Batch size for DataLoader |
128
|
train_ratio
|
float
|
Ratio of data to use for training |
0.8
|
num_workers
|
int
|
Number of DataLoader workers |
0
|
seed
|
int
|
Random seed for reproducibility |
42
|
autodownload
|
bool
|
Whether to auto-download shards if not present |
True
|
verbose
|
bool
|
Whether to print download progress |
True
|
Returns: Tuple of (train_dataset, val_dataset)
Source code in src\aegear\nn\datasets.py
1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 | |
model
CBAM
Bases: Module
Lightweight convolutional block attention module (CBAM) for channel and spatial attention.
Source code in src\aegear\nn\model.py
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 | |
EfficientUNet
Bases: Module
EfficientUNet backbone based on EfficientNet-B0, enhanced with CBAM (Convolutional Block Attention Module) attention blocks after each encoder and decoder stage.
The architecture removes the deepest (last) encoder and decoder stages compared to a standard UNet, resulting in a lighter model with fewer parameters and reduced memory usage, while retaining strong feature extraction and localization capabilities.
CBAM modules are used to improve feature representation by applying both channel and spatial attention at multiple levels of the network, allowing the model to focus on the object of interest while ignoring irrelevant information. This is particularly useful in scenarios where the object of interest (e.g., fish) may be small and difficult to distinguish from the background, or when there are multiple objects present in the image.
Source code in src\aegear\nn\model.py
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 | |
SiameseTracker
Bases: Module
Siamese UNet model for tracking, based on EfficientUNet.
This model is designed to take two inputs: a template image and a search image. The template image is the reference image of the object to be tracked, while the search image is the current frame in which the object is being searched for. The model processes both images through a shared UNet architecture, extracting features from both images and then concatenating them at each stage of the decoder. This allows the model to leverage the spatial information from both images, improving the tracking performance.
Source code in src\aegear\nn\model.py
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 | |
ConvClassifier
Bases: Module
A simple convolutional network for binary classification. This model is designed to classify whether a fish is present in a given region of interest (ROI) of the image.
Source code in src\aegear\nn\model.py
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 | |
ops
RunPodLauncher
Manages RunPod pod lifecycle for training jobs.
Source code in src\aegear\nn\ops\runpod_launcher.py
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 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 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 | |
get_pod_exit_code(pod_id)
Extract exit code from pod logs.
Looks for exit code patterns in the last lines of logs. Returns 0 if no exit code found or if pod terminated successfully. Returns 42 if CUDA validation failed (machine issue). Returns 1 for other failures.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pod_id
|
str
|
The pod ID to check |
required |
Returns:
| Type | Description |
|---|---|
int
|
Exit code (0, 1, 42, etc.) |
Source code in src\aegear\nn\ops\runpod_launcher.py
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 | |
PodManager
Manages RunPod pods with listing and termination capabilities.
Source code in src\aegear\nn\ops\runpod_launcher.py
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 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 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 512 513 514 515 516 517 518 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 566 567 568 569 570 571 572 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 | |
list_all_pods()
List all pods in the account.
Source code in src\aegear\nn\ops\runpod_launcher.py
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 | |
get_pod_details(pod_id)
Get detailed information about a specific pod.
Source code in src\aegear\nn\ops\runpod_launcher.py
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 | |
terminate_pod(pod_id)
Terminate a specific pod.
Source code in src\aegear\nn\ops\runpod_launcher.py
418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 | |
format_uptime(seconds)
Format uptime in human-readable format.
Source code in src\aegear\nn\ops\runpod_launcher.py
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 | |
format_cost(cost_per_hr, uptime_seconds)
Calculate and format accumulated cost.
Source code in src\aegear\nn\ops\runpod_launcher.py
451 452 453 454 455 456 457 | |
calculate_cost(cost_per_hr, uptime_seconds)
Calculate accumulated cost.
Source code in src\aegear\nn\ops\runpod_launcher.py
459 460 461 462 463 464 | |
print_pod_summary(pod, detailed=True)
Print formatted pod information.
Source code in src\aegear\nn\ops\runpod_launcher.py
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 512 513 514 | |
list_pods_command()
List all pods with detailed information.
Source code in src\aegear\nn\ops\runpod_launcher.py
516 517 518 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 566 567 568 | |
kill_pod_command(pod_id)
Kill a specific pod.
Source code in src\aegear\nn\ops\runpod_launcher.py
570 571 572 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 | |
kill_all_command(running_only=False)
Kill all pods (with confirmation).
Source code in src\aegear\nn\ops\runpod_launcher.py
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 | |
exit_codes
Exit codes for training and HPO workflows.
These codes are used to communicate specific failure modes between the training script, container runtime, and HPO orchestrator.
get_exit_code_description(code)
Get human-readable description for an exit code.
Source code in src\aegear\nn\ops\exit_codes.py
20 21 22 23 24 25 26 27 | |
runpod_launcher
RunPod pod management utilities for training and HPO workflows.
RunPodLauncher
Manages RunPod pod lifecycle for training jobs.
Source code in src\aegear\nn\ops\runpod_launcher.py
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 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 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 | |
get_pod_exit_code(pod_id)
Extract exit code from pod logs.
Looks for exit code patterns in the last lines of logs. Returns 0 if no exit code found or if pod terminated successfully. Returns 42 if CUDA validation failed (machine issue). Returns 1 for other failures.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pod_id
|
str
|
The pod ID to check |
required |
Returns:
| Type | Description |
|---|---|
int
|
Exit code (0, 1, 42, etc.) |
Source code in src\aegear\nn\ops\runpod_launcher.py
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 | |
PodManager
Manages RunPod pods with listing and termination capabilities.
Source code in src\aegear\nn\ops\runpod_launcher.py
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 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 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 512 513 514 515 516 517 518 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 566 567 568 569 570 571 572 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 | |
list_all_pods()
List all pods in the account.
Source code in src\aegear\nn\ops\runpod_launcher.py
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 | |
get_pod_details(pod_id)
Get detailed information about a specific pod.
Source code in src\aegear\nn\ops\runpod_launcher.py
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 | |
terminate_pod(pod_id)
Terminate a specific pod.
Source code in src\aegear\nn\ops\runpod_launcher.py
418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 | |
format_uptime(seconds)
Format uptime in human-readable format.
Source code in src\aegear\nn\ops\runpod_launcher.py
435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 | |
format_cost(cost_per_hr, uptime_seconds)
Calculate and format accumulated cost.
Source code in src\aegear\nn\ops\runpod_launcher.py
451 452 453 454 455 456 457 | |
calculate_cost(cost_per_hr, uptime_seconds)
Calculate accumulated cost.
Source code in src\aegear\nn\ops\runpod_launcher.py
459 460 461 462 463 464 | |
print_pod_summary(pod, detailed=True)
Print formatted pod information.
Source code in src\aegear\nn\ops\runpod_launcher.py
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 512 513 514 | |
list_pods_command()
List all pods with detailed information.
Source code in src\aegear\nn\ops\runpod_launcher.py
516 517 518 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 566 567 568 | |
kill_pod_command(pod_id)
Kill a specific pod.
Source code in src\aegear\nn\ops\runpod_launcher.py
570 571 572 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 | |
kill_all_command(running_only=False)
Kill all pods (with confirmation).
Source code in src\aegear\nn\ops\runpod_launcher.py
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 | |
training
Module containing various training-related utilities and functions.
WeightedBCEWithLogitsLoss
Custom weighted binary cross-entropy loss emphasizing Gaussian center.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
limit
|
float
|
Threshold for positive region. |
0.5
|
pos_weight
|
float
|
Weight for positive region. |
10.0
|
Source code in src\aegear\nn\training.py
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 | |
EfficientUNetLoss
Bases: WeightedBCEWithLogitsLoss
EfficientUNet loss combining BCE, centroid, sparsity, and Dice losses.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
limit
|
float
|
Threshold for positive region. |
0.5
|
pos_weight
|
float
|
Weight for positive region. |
5.0
|
centroid_weight
|
float
|
Weight for centroid distance loss. |
0.0025
|
sparsity_weight
|
float
|
Weight for sparsity loss. |
0.1
|
dice_weight
|
float
|
Weight for Dice loss. |
1.0
|
Source code in src\aegear\nn\training.py
1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 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 | |
dice_loss(pred, target, smooth=1.0)
staticmethod
Compute Dice loss (1 - Dice coefficient).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pred
|
Tensor
|
Logits from model. |
required |
target
|
Tensor
|
Ground truth mask. |
required |
smooth
|
float
|
Smoothing factor. |
1.0
|
Returns:
| Type | Description |
|---|---|
|
torch.Tensor: Dice loss value. |
Source code in src\aegear\nn\training.py
1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 | |
centroid_distance_loss(pred, target)
staticmethod
Compute centroid distance loss between prediction and target.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
pred
|
Tensor
|
Predicted logits. |
required |
target
|
Tensor
|
Target heatmap. |
required |
Returns:
| Type | Description |
|---|---|
|
torch.Tensor: Mean centroid distance. |
Source code in src\aegear\nn\training.py
1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 | |
SiameseLoss
Bases: EfficientUNetLoss
Siamese loss combining EfficientUNetLoss and RGB consistency loss.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
limit
|
float
|
Threshold for positive region. |
0.5
|
pos_weight
|
float
|
Weight for positive region. |
10.0
|
centroid_weight
|
float
|
Weight for centroid distance loss. |
0.0025
|
sparsity_weight
|
float
|
Weight for sparsity loss. |
0.001
|
dice_weight
|
float
|
Weight for Dice loss. |
1.0
|
rgb_weight
|
float
|
Weight for RGB consistency loss. |
0.005
|
rgb_sigma
|
float
|
Sigma for Gaussian in RGB loss. |
2.0
|
rgb_threshold
|
float
|
Threshold for mask in RGB loss. |
0.5
|
Source code in src\aegear\nn\training.py
1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 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 | |
rgb_consistency_loss(template_img, search_img, pred_heatmap)
Compute RGB consistency loss between template and search images.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
template_img
|
Tensor
|
Template image tensor. |
required |
search_img
|
Tensor
|
Search image tensor. |
required |
pred_heatmap
|
Tensor
|
Predicted heatmap tensor. |
required |
Returns:
| Type | Description |
|---|---|
|
torch.Tensor: RGB consistency loss value. |
Source code in src\aegear\nn\training.py
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 | |
BaseVisualizer
Base class for visualizers used in training visualization.
Source code in src\aegear\nn\training.py
1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 | |
SiameseTrackingVisualizer
Bases: BaseVisualizer
Visualizer for Siamese tracking model performance and activations.
Source code in src\aegear\nn\training.py
1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 | |
performance(num_samples=5, save=True)
Visualize performance samples for Siamese tracking.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
num_samples
|
int
|
Number of samples per group (worst, middle, best). |
5
|
Source code in src\aegear\nn\training.py
1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 | |
activations(num_samples=3, save=True)
Visualize activations for Siamese tracking model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
num_samples
|
int
|
Number of samples to visualize. |
3
|
Source code in src\aegear\nn\training.py
1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 | |
EfficientUNetVisualizer
Bases: BaseVisualizer
Visualizer for EfficientUNet model performance and activations.
Source code in src\aegear\nn\training.py
1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 | |
performance(num_samples=5, save=True)
Visualize performance samples for EfficientUNet.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
num_samples
|
int
|
Number of samples per group (worst, middle, best). |
5
|
Source code in src\aegear\nn\training.py
1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 | |
activations(num_samples=3, save=True)
Visualize activations for EfficientUNet model.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
num_samples
|
int
|
Number of samples to visualize. |
3
|
Source code in src\aegear\nn\training.py
1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 | |
setup_logging(log_level=logging.INFO)
Set up logging for training.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
log_level
|
int
|
Logging level. |
INFO
|
Returns:
| Type | Description |
|---|---|
|
logging.Logger: Configured logger instance. |
Source code in src\aegear\nn\training.py
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | |
get_device()
Get the best available torch device (MPS, CUDA, or CPU).
Returns:
| Type | Description |
|---|---|
|
torch.device: The selected device. |
Source code in src\aegear\nn\training.py
53 54 55 56 57 58 59 60 61 62 63 64 | |
load_datasets(cache_dir, datasets, batch_size=128, gaussian_sigma=15.0)
Load training and validation datasets and create DataLoaders.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
cache_dir
|
str
|
Directory containing cached datasets. |
required |
datasets
|
list
|
List of dataset names. |
required |
batch_size
|
int
|
Batch size for DataLoader. |
128
|
gaussian_sigma
|
float
|
Sigma for Gaussian heatmap. |
15.0
|
Returns:
| Name | Type | Description |
|---|---|---|
tuple |
(train_loader, val_loader, train_dataset, val_dataset) |
Source code in src\aegear\nn\training.py
66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 | |
setup_model(weights='IMAGENET1K_V1', continue_training=False, use_best_model=False, model_dir='../data/training/models/efficient_unet', pretrained_model_dir='../models/', device=None, **model_kwargs)
Set up the EfficientUNet model for training or fine-tuning.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
weights
|
str
|
Pretrained weights identifier. |
'IMAGENET1K_V1'
|
continue_training
|
bool
|
Whether to continue training from a checkpoint. |
False
|
use_best_model
|
bool
|
Use the best model checkpoint. |
False
|
model_dir
|
str
|
Directory for saving/loading models. |
'../data/training/models/efficient_unet'
|
pretrained_model_dir
|
str
|
Directory for pretrained models. |
'../models/'
|
device
|
device
|
Device to load model on. |
None
|
**model_kwargs
|
Additional model arguments. |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
EfficientUNet |
Initialized model. |
Source code in src\aegear\nn\training.py
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 | |
freeze_model_layers(model, freeze_layers)
Freeze specified layers in the model (set requires_grad=False).
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
Model instance. |
required | |
freeze_layers
|
list
|
List of layers (or names) to freeze. |
required |
Source code in src\aegear\nn\training.py
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | |
set_layers_eval(model, layers)
Set specified layers to evaluation mode.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
Model instance. |
required | |
layers
|
list
|
List of layers (or names) to set to eval mode. |
required |
Source code in src\aegear\nn\training.py
143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 | |
load_training_stages(model, stages_path=None)
Load training stages from a JSON file and resolve layer names to model attributes. Args: model: The model instance (EfficientUNet or SiameseTracker). stages_path: Path to the JSON file. Returns: List of training stage dicts with freeze_layers resolved.
Source code in src\aegear\nn\training.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 | |
get_default_training_stages(model_name, epochs=10, lr=0.0001)
Return default training stages for the given model name ('efficient_unet' or 'siamese'). The returned format matches what load_training_stages expects (layer names as strings). Args: model_name: 'efficient_unet' or 'siamese' epochs: Number of epochs for the stage(s). lr: Learning rate for the stage(s). Returns: List of training stage dicts with freeze_layers as strings.
Source code in src\aegear\nn\training.py
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 | |
collect_val_results(val_batches, device)
Collect validation results from batches for visualization and metrics.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
val_batches
|
list
|
List of validation batches. |
required |
device
|
device
|
Device for tensor operations. |
required |
Returns:
| Name | Type | Description |
|---|---|---|
list |
List of dicts containing results per sample. |
Raises:
| Type | Description |
|---|---|
ValueError
|
If a batch does not have 3 or 4 elements (unexpected batch size). |
Source code in src\aegear\nn\training.py
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 | |
get_model_type(model, explicit_type=None)
Determine the model type ('efficient_unet' or 'siamese') from the model instance or explicit argument.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
Model instance. |
required | |
explicit_type
|
str
|
Explicit model type if provided. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
str |
Model type ('efficient_unet' or 'siamese'). |
Source code in src\aegear\nn\training.py
280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 | |
process_train_batch(model, batch, model_type, device, loss_fn, return_components=False)
Process a single training batch for the given model type.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
Model instance. |
required | |
batch
|
Batch data from DataLoader. |
required | |
model_type
|
str
|
Model type ('efficient_unet' or 'siamese'). |
required |
device
|
Torch device. |
required | |
loss_fn
|
Loss function. |
required | |
return_components
|
bool
|
If True, return loss components. |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
tuple |
(loss, output) or (loss, output, components) if return_components=True |
Source code in src\aegear\nn\training.py
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 | |
process_val_batch(model, batch, model_type, device, loss_fn, return_components=False)
Process a single validation batch for the given model type.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
Model instance. |
required | |
batch
|
Batch data from DataLoader. |
required | |
model_type
|
str
|
Model type ('efficient_unet' or 'siamese'). |
required |
device
|
Torch device. |
required | |
loss_fn
|
Loss function. |
required | |
return_components
|
bool
|
If True, return loss components. |
False
|
Returns:
| Name | Type | Description |
|---|---|---|
tuple |
(loss, batch_tuple) or (loss, batch_tuple, components) if return_components=True |
Source code in src\aegear\nn\training.py
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 382 383 384 385 386 387 388 | |
get_visualizer(model_type, model, device, val_results, stage, epoch, output_dir)
Get the appropriate visualizer instance for the model type.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model_type
|
str
|
Model type ('efficient_unet' or 'siamese'). |
required |
model
|
Model instance. |
required | |
device
|
Torch device. |
required | |
val_results
|
Validation results. |
required | |
stage
|
int
|
Training stage index. |
required |
epoch
|
int
|
Epoch index. |
required |
output_dir
|
str
|
Directory for visualizer outputs. |
required |
Returns:
| Type | Description |
|---|---|
|
object or None: Visualizer instance or None if not applicable. |
Source code in src\aegear\nn\training.py
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 | |
create_scheduler(optimizer, scheduler_config, **kwargs)
Create a PyTorch LR scheduler from a config dict. Args: optimizer: Optimizer instance. scheduler_config (dict): Dict with 'type' and scheduler-specific kwargs. train_loader: DataLoader (needed for OneCycleLR). epochs: Number of epochs (needed for OneCycleLR). Returns: torch.optim.lr_scheduler._LRScheduler or ReduceLROnPlateau
Source code in src\aegear\nn\training.py
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 | |
scheduler_config_to_json(scheduler_config)
Serialize scheduler config dict to JSON string.
Source code in src\aegear\nn\training.py
446 447 448 | |
scheduler_config_from_json(json_str)
Deserialize scheduler config dict from JSON string.
Source code in src\aegear\nn\training.py
450 451 452 | |
get_epoch_progress_message(current_epoch, total_epochs, epoch_time, epoch_times)
Generate a progress message for the current epoch.
Source code in src\aegear\nn\training.py
454 455 456 457 458 459 460 461 462 463 464 | |
compute_validation_metrics(model, val_loader, device, model_type, loss_fn=None)
Compute validation metrics: average centroid distance, confidence, within-radius percentages, and loss components.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
The trained model. |
required | |
val_loader
|
Validation data loader. |
required | |
device
|
Torch device. |
required | |
model_type
|
str
|
Model type ('efficient_unet' or 'siamese'). |
required |
loss_fn
|
Optional loss function to compute loss components. |
None
|
Returns:
| Name | Type | Description |
|---|---|---|
dict |
Dictionary containing metrics and loss components. |
Source code in src\aegear\nn\training.py
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 512 513 514 515 516 517 518 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 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 | |
save_model_with_clearml(model, path, clearml_task=None, artifact_name=None, metadata=None)
Save a model checkpoint and register it with ClearML if a task is provided.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
model
|
The PyTorch model to save. |
required | |
path
|
str
|
Path to save the model. |
required |
clearml_task
|
ClearML Task object or None. |
None
|
|
artifact_name
|
str
|
Name for the artifact in ClearML. |
None
|
metadata
|
dict
|
Optional metadata to attach. |
None
|
Source code in src\aegear\nn\training.py
585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 | |
train(model, train_loader, val_loader, device, model_dir, checkpoint_dir, epoch_vis, training_stages, loss_fn=None, epoch_save_interval=1, model_type=None, use_visualizer=False, weight_decay=0.005, clearml_task=None, scheduler_config=None)
Unified training function for EfficientUNet and SiameseTracker. model_type: 'efficient_unet' or 'siamese'. If None, inferred from model class name.
Source code in src\aegear\nn\training.py
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 704 705 706 707 708 709 710 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 816 817 818 819 820 821 822 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 | |
get_confidence(heatmap)
Get confidence score from a heatmap by finding the maximum value.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
heatmap
|
Tensor
|
Heatmap tensor of shape (B, 1, H, W). |
required |
Returns:
| Name | Type | Description |
|---|---|---|
float |
Confidence score (max value in heatmap). |
Source code in src\aegear\nn\training.py
926 927 928 929 930 931 932 933 934 935 936 937 938 939 | |
overlay_heatmap_on_rgb(rgb_tensor, heatmap, alpha=0.5, centroid_color=(0, 1, 0))
Overlay heatmap onto RGB image and draw a circle at the predicted centroid.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
rgb_tensor
|
Tensor
|
RGB image tensor of shape (3, H, W). |
required |
heatmap
|
ndarray
|
Heatmap array of shape (H, W). |
required |
alpha
|
float
|
Blending weight for overlay. |
0.5
|
centroid_color
|
tuple
|
(R, G, B) color for centroid (0-1 range). |
(0, 1, 0)
|
Returns:
| Type | Description |
|---|---|
|
np.ndarray: Overlay image of shape (H, W, 3). |
Source code in src\aegear\nn\training.py
942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 | |
denormalize(img_tensor, clamp=True)
Denormalize an image tensor using ImageNet mean and std.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
img_tensor
|
Tensor
|
Normalized image tensor. |
required |
clamp
|
bool
|
Whether to clamp output to [0, 1]. |
True
|
Returns:
| Type | Description |
|---|---|
|
torch.Tensor: Denormalized image tensor. |
Source code in src\aegear\nn\training.py
976 977 978 979 980 981 982 983 984 985 986 987 988 989 | |
get_centroids_per_sample(heatmap)
Get centroids from a batch of heatmaps.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
heatmap
|
Tensor
|
Batch of heatmaps (B, 1, H, W). |
required |
Returns:
| Name | Type | Description |
|---|---|---|
list |
List of (x, y, confidence) tuples or None per sample. |
Source code in src\aegear\nn\training.py
992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 | |
tracker
Prediction
A class to represent a prediction made by the model.
Source code in src\aegear\tracker.py
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 | |
FishTracker
Source code in src\aegear\tracker.py
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 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 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 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 | |
run_tracking(video, start_frame, end_frame, model_track_register, progress_reporter=None, ui_update=None)
Run the tracking on a video.
Source code in src\aegear\tracker.py
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 | |
trajectory
Utility functions for working with 2D trajectories in image frames, including drawing, smoothing, and computing properties of motion paths.
Assumes trajectory is a list of (x, y) pixel coordinates sampled at video frame rate.
smooth_trajectory(trajectory, filterSize=15)
Apply Savitzky-Golay filter to smooth a trajectory.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
trajectory
|
list of (t, x, y)
|
Frame id with raw trajectory points. |
required |
filterSize
|
int
|
Window size for filtering (must be odd and >= 5). |
15
|
Returns:
| Type | Description |
|---|---|
list[tuple[int, int, int]]
|
list of (t, x, y): Smoothed trajectory points. |
Source code in src\aegear\trajectory.py
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 | |
detect_trajectory_outliers(trajectory, threshold=20.0)
Detects large jumps in pixel space, indicating likely tracking failures.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
trajectory
|
list[tuple[int, int, int]]
|
List of (frame_idx, x, y) tuples. |
required |
threshold
|
float
|
Maximum allowed pixel movement per frame. |
20.0
|
Returns:
| Type | Description |
|---|---|
list[int]
|
List of frame indices where jump exceeds threshold. |
Source code in src\aegear\trajectory.py
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 | |
utils
Kalman2D
A simple 2D Kalman filter for tracking.
Source code in src\aegear\utils.py
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 | |
resource_path(relative_path)
Get the absolute path to the resource, works for dev and PyInstaller.
Source code in src\aegear\utils.py
16 17 18 19 20 21 22 23 | |
get_latest_model_path(directory, model_name)
Find the latest model file in the given directory matching the base model name. Model files are expected to be named as: modelname_YYYY-MM-DD.pth
Source code in src\aegear\utils.py
26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | |
load_model_with_weights(model_class, model_path, device)
Load a model with weights from a checkpoint.
Parameters
model_class : torch.nn.Module Model class to instantiate model_path : str Path to model checkpoint device : str Device to load model on ('cuda' or 'cpu')
Returns
torch.nn.Module Loaded model
Source code in src\aegear\utils.py
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 | |
download_dataset(dataset_dir, dataset_type='tracking')
Download dataset from GCS if not already present.
Parameters
dataset_dir : str Directory to download the dataset to dataset_type : str Type of dataset to download ('tracking' or 'detection')
Source code in src\aegear\utils.py
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 | |
video
VideoClip
Minimalistic video clip class for reading video files.
Source code in src\aegear\video.py
4 5 6 7 8 9 10 11 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 | |
get_frame(t)
Return the frame at time t (in seconds).
Source code in src\aegear\video.py
16 17 18 19 20 21 | |
get_frame_by_index(frame_id)
Return the frame at the given frame index.
Source code in src\aegear\video.py
23 24 25 26 27 28 29 30 31 32 33 34 35 | |
get_frame_width()
Return the width of the video frames.
Source code in src\aegear\video.py
37 38 39 40 41 | |
get_frame_height()
Return the height of the video frames.
Source code in src\aegear\video.py
43 44 45 46 47 | |
get_frame_shape()
Return the shape of the video frames.
Source code in src\aegear\video.py
49 50 51 52 53 | |
visualization
Visualization utilities for model inspection using FiftyOne.
FiftyOneDatasetBuilder
Base class for building FiftyOne datasets from model predictions.
Source code in src\aegear\visualization.py
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 | |
build_dataset(fo_dataset_name, batch_size=128, num_workers=4)
Build and populate a FiftyOne dataset.
Parameters
fo_dataset_name : str Name for the FiftyOne dataset batch_size : int Batch size for inference num_workers : int Number of workers for data loading
Returns
fo.Dataset Populated FiftyOne dataset
Source code in src\aegear\visualization.py
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 | |
TrackingDatasetBuilder
Bases: FiftyOneDatasetBuilder
Builder for tracking model evaluation datasets in FiftyOne.
Source code in src\aegear\visualization.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 197 198 199 200 201 202 203 204 205 206 207 208 | |
build_dataset(fo_dataset_name, batch_size=128, num_workers=4)
Build FiftyOne dataset for tracking model evaluation.
Source code in src\aegear\visualization.py
56 57 58 59 60 61 62 63 64 65 66 67 68 69 | |
DetectionDatasetBuilder
Bases: FiftyOneDatasetBuilder
Builder for detection model evaluation datasets in FiftyOne.
Source code in src\aegear\visualization.py
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 325 326 | |
build_dataset(fo_dataset_name, batch_size=128, num_workers=4)
Build FiftyOne dataset for detection model evaluation.
Source code in src\aegear\visualization.py
214 215 216 217 218 219 220 221 222 223 224 225 226 227 | |