deeplabcut.compat
Compatibility file for methods available with either PyTorch or Tensorflow.
Functions:
| Name | Description |
|---|---|
analyze_images |
Analyzes images with a DeepLabCut model and stores the output in an H5 file. |
analyze_time_lapse_frames |
Analyzed all images (of type = frametype) in a folder and stores the output in |
analyze_videos |
Makes prediction based on a trained network. |
convert_detections2tracklets |
This should be called at the end of deeplabcut.analyze_videos for multianimal |
create_tracking_dataset |
Creates a tracking dataset to train a ReID tracklet stitcher. |
evaluate_network |
Evaluates the network. |
export_model |
Export DeepLabCut models for the model zoo or for live inference. |
extract_maps |
Extracts the scoremap, locref, partaffinityfields (if available). |
extract_save_all_maps |
Extracts the scoremap, location refinement field and part affinity field prediction of the model. The maps |
get_available_aug_methods |
Args: |
get_project_engine |
Args: |
return_evaluate_network_data |
Returns the results for (previously evaluated) network. |
return_train_network_path |
Returns the training and test pose config file names as well as the folder where |
train_network |
Trains the network with the labels in the training dataset. |
visualize_locrefs |
Plots a scoremap and the corresponding location refinement field on an image. |
visualize_paf |
Plots the PAF on top of the image. |
visualize_scoremaps |
Plots scoremaps as an image overlay. |
analyze_images
analyze_images(
config: str | Path,
images: str | Path | list[str] | list[Path],
frame_type: str | None = None,
destfolder: str | Path | None = None,
shuffle: int = 1,
trainingsetindex: int = 0,
max_individuals: int | None = None,
device: str | None = None,
snapshot_index: int | None = None,
detector_snapshot_index: int | None = None,
save_as_csv: bool = False,
modelprefix: str = "",
plotting: bool | str = False,
pcutoff: float | None = None,
bbox_pcutoff: float | None = None,
plot_skeleton: bool = False,
**torch_kwargs
) -> dict[str, dict[str, np.ndarray | np.ndarray]]
Analyzes images with a DeepLabCut model and stores the output in an H5 file.
This method is only implemented for PyTorch models.
The labels are stored as Pandas DataFrame, which contains the name of the network, body part name, (x, y) label position in pixels, and the likelihood for each frame per body part.
Parameters
config : str, Path Full path of the project's config.yaml file.
str, Path, list[str], list[Path]
The image(s) to run inference on. Can be the path to an image, the path to a directory containing images, or a list of image paths or directories containing images.
string, optional
Filters the images to analyze to only the ones with the given suffix (e.g.
setting frame_type=".png" will only analyze ".png" images). The default
behavior analyzes all ".jpg", ".jpeg" and ".png" images.
str, Path, optional
The directory where the predictions will be stored. If None, the predictions
will be stored in the same directory as the first image given in the images
argument (if it's a directory, that directory will be used; if it's an image,
the directory containing the image will be used).
int, optional
An integer specifying the shuffle with which to run image analysis.
int, optional
Integer specifying which TrainingsetFraction to use. By default, the first one is used (note that TrainingFraction is a list in config.yaml).
int, optional
The maximum number of individuals to detect in each image. Set to the number of individuals in the project if None.
str, optional
The CUDA device to use for training. If None, the device will be taken from the
pytorch_config.yaml file. Examples: {"cpu", "cuda", "cuda:0", "cuda:1"}. For
more information, see https://pytorch.org/docs/stable/notes/cuda.html
int, optional
Index (starting at 0) of the snapshot to use for image analysis. To evaluate the last one, use -1. Default uses the value set in the project config.
int, optional
Only for Top-Down PyTorch models. If defined, uses the detector with the given index for pose estimation. To evaluate the last one, use -1. Default uses the value set in the project config.
bool, optional
Saves the predictions in a .csv file. The default is False; if provided it
must be either True or False.
str, optional
Directory containing the deeplabcut models to use when running image analysis. By default, the models are assumed to exist in the project folder.
bool, str, default=False
Plots the predictions made by the model on the analyzed images. Results will be
stored in a folder named LabeledImages_{scorer}, where scorer is the name
of the model used to analyze the images. This folder will be in the same
directory as the file containing the predictions (either the given destfolder,
or the folder containing the first image to analyze).
If provided it must be either True, False, "bodypart", or
"individual". Setting to True defaults as "bodypart" for
multi-animal projects. If a detector is used, the predicted bounding boxes
will also be plotted.
float, optional, default=None
The cutoff score when plotting pose predictions. Must be None or in (0, 1). If None, the pcutoff is read from the project configuration file.
float, optional, default=None
The cutoff score when plotting bounding box predictions. Must be None or in (0, 1). If None, it is read from the project configuration file.
bool, default=False
If a skeleton is defined in the project's config.yaml, whether to plot the skeleton connecting the predicted bodyparts on the images.
torch_kwargs
Any extra parameters to pass to the PyTorch API, such as ctd_conditions
Returns
A dictionary mapping image paths (as strings) to model predictions.
Examples
If you want to analyze all frames in /analysis/project/my_images >>> import deeplabcut >>> deeplabcut.analyze_images( >>> "/analysis/project/reaching-task/config.yaml", >>> "/analysis/project/my_images", >>> ) >>>
If you want to analyze two specific images with your shuffle 3 model
import deeplabcut deeplabcut.analyze_images( "/analysis/project/reaching-task/config.yaml", images=["image_001.png", "img_002.jpg"], shuffle=3, )
If you want to analyze frames in a folder, save them and plot predictions: >>> import deeplabcut >>> deeplabcut.analyze_images( >>> "/analysis/project/reaching-task/config.yaml", >>> "/analysis/project/my_images", >>> shuffle=3, >>> destfolder="/analysis/project/my_images_analyzed", >>> plotting=True, >>> ) >>>
Source code in deeplabcut/compat.py
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 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 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 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 | |
analyze_time_lapse_frames
analyze_time_lapse_frames(
config: str,
directory: str,
frametype: str = ".png",
shuffle: int = 1,
trainingsetindex: int = 0,
gputouse: int | None = None,
device: str | None = None,
save_as_csv: bool = False,
modelprefix: str = "",
engine: Engine | None = None,
)
Analyzed all images (of type = frametype) in a folder and stores the output in one file.
You can crop the frames (before analysis), by changing 'cropping'=True and setting 'x1','x2','y1','y2' in the config file.
Output: The labels are stored as MultiIndex Pandas Array, which contains the name of the network, body part name, (x, y) label position in pixels, and the likelihood for each frame per body part. These arrays are stored in an efficient Hierarchical Data Format (HDF) in the same directory, where the video is stored. However, if the flag save_as_csv is set to True, the data can also be exported in comma-separated values format (.csv), which in turn can be imported in many programs, such as MATLAB, R, Prism, etc.
Parameters
config : string Full path of the config.yaml file as a string.
string
Full path to directory containing the frames that shall be analyzed
string, optional
Checks for the file extension of the frames. Only images with this extension are
analyzed. The default is .png
int, optional
An integer specifying the shuffle index of the training dataset used for training the network. The default is 1.
int, optional
Integer specifying which TrainingsetFraction to use. By default the first (note that TrainingFraction is a list in config.yaml).
int, optional.
Only for TensorFlow models. For PyTorch models, please use device. Natural
number indicating the number of your GPU (see number in nvidia-smi). If you do
not have a GPU put None. See:
https://nvidia.custhelp.com/app/answers/detail/a_id/3751/~/useful-nvidia-smi-queries
str, optional
The CUDA device to use for training. If None, the device will be taken from the
pytorch_config.yaml file. Examples: {"cpu", "cuda", "cuda:0", "cuda:1"}. For
more information, see https://pytorch.org/docs/stable/notes/cuda.html
bool, optional
Saves the predictions in a .csv file. The default is False; if provided if
must be either True or False
Examples
If you want to analyze all frames in /analysis/project/timelapseexperiment1
import deeplabcut deeplabcut.analyze_time_lapse_frames( '/analysis/project/reaching-task/config.yaml', '/analysis/project/timelapseexperiment1' )
Note: for test purposes one can extract all frames from a video with ffmeg, e.g.
ffmpeg -i testvideo.avi "thumb%04d.png"
Source code in deeplabcut/compat.py
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 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 | |
analyze_videos
analyze_videos(
config: str,
videos: list[str],
video_extensions: str | Sequence[str] | None = None,
shuffle: int = 1,
trainingsetindex: int = 0,
gputouse: str | None = None,
save_as_csv: bool = False,
in_random_order: bool = True,
destfolder: str | None = None,
batch_size: int | None = None,
cropping: list[int] | None = None,
TFGPUinference: bool = True,
dynamic: tuple[bool, float, int] = (False, 0.5, 10),
modelprefix: str = "",
robust_nframes: bool = False,
allow_growth: bool = False,
use_shelve: bool = False,
auto_track: bool = True,
n_tracks: int | None = None,
animal_names: list[str] | None = None,
calibrate: bool = False,
identity_only: bool = False,
use_openvino: str | None = None,
engine: Engine | None = None,
**torch_kwargs
)
Makes prediction based on a trained network.
The index of the trained network is specified by parameters in the config file (in particular the variable 'snapshotindex').
The labels are stored as MultiIndex Pandas Array, which contains the name of the network, body part name, (x, y) label position in pixels, and the likelihood for each frame per body part. These arrays are stored in an efficient Hierarchical Data Format (HDF) in the same directory where the video is stored. However, if the flag save_as_csv is set to True, the data can also be exported in comma-separated values format (.csv), which in turn can be imported in many programs, such as MATLAB, R, Prism, etc.
Parameters
config: str Full path of the config.yaml file.
list[str]
A list of strings containing the full paths to videos for analysis or a path to the directory, where all the videos with same extension are stored.
str | Sequence[str] | None, optional, default=None
Controls how videos are filtered, based on file extension.
File paths and directory contents are treated differently:
- None (default): file paths are accepted as-is; directories are
scanned for files with a recognized video extension.
- str or Sequence[str] (e.g. "mp4" or ["mp4", "avi"]):
both file paths and directory contents are filtered by the given
extension(s).
int, optional, default=1
An integer specifying the shuffle index of the training dataset used for training the network.
int, optional, default=0
Integer specifying which TrainingsetFraction to use. By default the first (note that TrainingFraction is a list in config.yaml).
int or None, optional, default=None
Only for the TensorFlow engine (for the PyTorch engine see the torch_kwargs:
you can use device).
Indicates the GPU to use (see number in nvidia-smi). If you do not have a
GPU put None.
See: https://nvidia.custhelp.com/app/answers/detail/a_id/3751/~/useful-nvidia-smi-queries
bool, optional, default=False
Saves the predictions in a .csv file.
bool, optional (default=True)
Whether or not to analyze videos in a random order.
This is only relevant when specifying a video directory in videos.
string or None, optional, default=None
Specifies the destination folder for analysis data. If None, the path of
the video is used. Note that for subsequent analysis this folder also needs to
be passed.
int or None, optional, default=None
Currently not supported by the PyTorch engine.
Change batch size for inference; if given overwrites value in pose_cfg.yaml.
list or None, optional, default=None
List of cropping coordinates as [x1, x2, y1, y2].
Note that the same cropping parameters will then be used for all videos.
If different video crops are desired, run analyze_videos on individual
videos with the corresponding cropping coordinates.
bool, optional, default=True
Only for the TensorFlow engine. Perform inference on GPU with TensorFlow code. Introduced in "Pretraining boosts out-of-domain robustness for pose estimation" by Alexander Mathis, Mert Yüksekgönül, Byron Rogers, Matthias Bethge, Mackenzie W. Mathis. Source: https://arxiv.org/abs/1909.11229
tuple(bool, float, int) triple containing (state, det_threshold, margin)
If the state is true, then dynamic cropping will be performed. That means that if an object is detected (i.e. any body part > detectiontreshold), then object boundaries are computed according to the smallest/largest x position and smallest/largest y position of all body parts. This window is expanded by the margin and from then on only the posture within this crop is analyzed (until the object is lost, i.e. <detectiontreshold). The current position is utilized for updating the crop window for the next frame (this is why the margin is important and should be set large enough given the movement of the animal).
str, optional, default=""
Directory containing the deeplabcut models to use when evaluating the network. By default, the models are assumed to exist in the project folder.
bool, optional, default=False
Evaluate a video's number of frames in a robust manner. This option is slower (as the whole video is read frame-by-frame), but does not rely on metadata, hence its robustness against file corruption.
bool, optional, default=False.
Only for the TensorFlow engine.
For some smaller GPUs the memory issues happen. If True, the memory
allocator does not pre-allocate the entire specified GPU memory region, instead
starting small and growing as needed.
See issue: https://forum.image.sc/t/how-to-stop-running-out-of-vram/30551/2
bool, optional, default=False
By default, data are dumped in a pickle file at the end of the video analysis. Otherwise, data are written to disk on the fly using a "shelf"; i.e., a pickle-based, persistent, database-like object by default, resulting in constant memory footprint.
The following parameters are only relevant for multi-animal projects:
bool, optional, default=True
By default, tracking and stitching are automatically performed, producing the final h5 data file. This is equivalent to the behavior for single-animal projects.
If False, one must run convert_detections2tracklets and
stitch_tracklets afterwards, in order to obtain the h5 file.
This function has 3 related sub-calls:
bool, optional, default=False
If True and animal identity was learned by the model, assembly and tracking
rely exclusively on identity prediction.
bool, optional, default=False
If True, use training data to calibrate the animal assembly procedure. This
improves its robustness to wrong body part links, but requires very little
missing data.
int or None, optional, default=None
Number of tracks to reconstruct. By default, taken as the number of individuals defined in the config.yaml. Another number can be passed if the number of animals in the video is different from the number of animals the model was trained on.
list[str], optional
If you want the names given to individuals in the labeled data file, you can
specify those names as a list here. If given and n_tracks is None, n_tracks
will be set to len(animal_names). If n_tracks is not None, then it must be
equal to len(animal_names). If it is not given, then animal_names will
be loaded from the individuals in the project config.yaml file.
str, optional
Only for the TensorFlow engine. Use "CPU" for inference if OpenVINO is available in the Python environment.
Engine, optional, default = None.
The default behavior loads the engine for the shuffle from the metadata. You can overwrite this by passing the engine as an argument, but this should generally not be done.
torch_kwargs
Any extra parameters to pass to the PyTorch API, such as device which can
be used to specify the CUDA device to use for training.
Returns
DLCScorer: str the scorer used to analyze the videos
Examples
Analyzing a single video on Windows
deeplabcut.analyze_videos( 'C:\myproject\reaching-task\config.yaml', ['C:\yourusername\rig-95\Videos\reachingvideo1.avi'], )
Analyzing a single video on Linux/MacOS
deeplabcut.analyze_videos( '/analysis/project/reaching-task/config.yaml', ['/analysis/project/videos/reachingvideo1.avi'], )
Analyze all videos of type avi in a folder
deeplabcut.analyze_videos( '/analysis/project/reaching-task/config.yaml', ['/analysis/project/videos'], video_extensions='.avi', )
Analyze multiple videos
deeplabcut.analyze_videos( '/analysis/project/reaching-task/config.yaml', [ '/analysis/project/videos/reachingvideo1.avi', '/analysis/project/videos/reachingvideo2.avi', ], )
Analyze multiple videos with shuffle=2
deeplabcut.analyze_videos( '/analysis/project/reaching-task/config.yaml', [ '/analysis/project/videos/reachingvideo1.avi', '/analysis/project/videos/reachingvideo2.avi', ], shuffle=2, )
Analyze multiple videos with shuffle=2, save results as an additional csv file
deeplabcut.analyze_videos( '/analysis/project/reaching-task/config.yaml', [ '/analysis/project/videos/reachingvideo1.avi', '/analysis/project/videos/reachingvideo2.avi', ], shuffle=2, save_as_csv=True, )
Source code in deeplabcut/compat.py
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 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 958 959 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 | |
convert_detections2tracklets
convert_detections2tracklets(
config: str,
videos: list[str],
video_extensions: str | Sequence[str] | None = None,
shuffle: int = 1,
trainingsetindex: int = 0,
overwrite: bool = False,
destfolder: str | None = None,
ignore_bodyparts: list[str] | None = None,
inferencecfg: dict | None = None,
modelprefix: str = "",
greedy: bool = False,
calibrate: bool = False,
window_size: int = 0,
identity_only: int = False,
track_method: str = "",
engine: Engine | None = None,
)
This should be called at the end of deeplabcut.analyze_videos for multianimal projects!
Parameters
config : string Full path of the config.yaml file as a string.
list
A list of strings containing the full paths to videos for analysis or a path to the directory, where all the videos with same extension are stored.
str | Sequence[str] | None, optional, default=None
Controls how videos are filtered, based on file extension.
File paths and directory contents are treated differently:
- None (default): file paths are accepted as-is; directories are
scanned for files with a recognized video extension.
- str or Sequence[str] (e.g. "mp4" or ["mp4", "avi"]):
both file paths and directory contents are filtered by the given
extension(s).
int, optional
An integer specifying the shuffle index of the training dataset used for training the network. T he default is 1.
int, optional
Integer specifying which TrainingsetFraction to use. By default the first (note that TrainingFraction is a list in config.yaml).
bool, optional.
Overwrite tracks file i.e. recompute tracks from full detections and overwrite.
string, optional
Specifies the destination folder for analysis data (default is the path of the video). Note that for subsequent analysis this folder also needs to be passed.
optional
List of body part names that should be ignored during tracking (advanced). By default, all the body parts are used.
Default is None.
Configuration file for inference (assembly of individuals). Ideally should be obtained from cross validation (during evaluation). By default the parameters are loaded from inference_cfg.yaml, but these get_level_values can be overwritten.
bool, optional (default=False)
If True, use training data to calibrate the animal assembly procedure. This improves its robustness to wrong body part links, but requires very little missing data.
int, optional (default=0)
Recurrent connections in the past window_size frames are
prioritized during assembly. By default, no temporal coherence cost
is added, and assembly is driven mainly by part affinity costs.
bool, optional (default=False)
If True and animal identity was learned by the model, assembly and tracking rely exclusively on identity prediction.
string, optional
Specifies the tracker used to generate the pose estimation data. For multiple animals, must be either 'box', 'skeleton', or 'ellipse' and will be taken from the config.yaml file if none is given.
Engine, optional, default = None.
The default behavior loads the engine for the shuffle from the metadata. You can overwrite this by passing the engine as an argument, but this should generally not be done.
Examples
If you want to convert detections to tracklets:
import deeplabcut deeplabcut.convert_detections2tracklets( "/analysis/project/reaching-task/config.yaml", ["/analysis/project/video1.mp4"], video_extensions='.mp4', )
If you want to convert detections to tracklets based on box_tracker:
import deeplabcut deeplabcut.convert_detections2tracklets( "/analysis/project/reaching-task/config.yaml", ["/analysis/project/video1.mp4"], video_extensions=".mp4", track_method="box", )
Source code in deeplabcut/compat.py
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 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 | |
create_tracking_dataset
create_tracking_dataset(
config: str,
videos: list[str],
track_method: str,
video_extensions: str | Sequence[str] | None = None,
shuffle: int = 1,
trainingsetindex: int = 0,
gputouse: int | None = None,
destfolder: str | None = None,
batch_size: int | None = None,
cropping: list[int] | None = None,
TFGPUinference: bool = True,
modelprefix: str = "",
robust_nframes: bool = False,
n_triplets: int = 1000,
engine: Engine | None = None,
) -> str
Creates a tracking dataset to train a ReID tracklet stitcher.
Parameters
config: str Full path of the config.yaml file.
list[str]
A list of strings containing the full paths to videos from which to create a tracking dataset, or a path to the directory where all the videos with same extension are stored.
str
Specifies the tracker used to generate the pose estimation data. Must be either 'box', 'skeleton', or 'ellipse'.
str | Sequence[str] | None, optional, default=None
Controls how videos are filtered, based on file extension.
File paths and directory contents are treated differently:
- None (default): file paths are accepted as-is; directories are
scanned for files with a recognized video extension.
- str or Sequence[str] (e.g. "mp4" or ["mp4", "avi"]):
both file paths and directory contents are filtered by the given
extension(s).
int, optional, default=1
An integer specifying the shuffle index of the training dataset used for training the network.
int, optional, default=0
Integer specifying which TrainingsetFraction to use. By default the first (note that TrainingFraction is a list in config.yaml).
int or None, optional, default=None
Only for the TensorFlow engine (for the PyTorch engine use device).
Indicates the GPU to use (see number in nvidia-smi). If you do not have a
GPU put None. See:
https://nvidia.custhelp.com/app/answers/detail/a_id/3751/~/useful-nvidia-smi-queries
bool, optional, default=True
Only for the TensorFlow engine. Perform inference on GPU with TensorFlow code. Introduced in "Pretraining boosts out-of-domain robustness for pose estimation" by Alexander Mathis, Mert Yüksekgönül, Byron Rogers, Matthias Bethge, Mackenzie W. Mathis. Source: https://arxiv.org/abs/1909.11229
destfolder
Specifies the destination folder for analysis data. If None, the path of
the video is used. Note that for subsequent analysis this folder also needs to
be passed.
str, optional, default=""
Directory containing the deeplabcut models to use when evaluating the network. By default, the models are assumed to exist in the project folder.
bool, optional, default=False
Evaluate a video's number of frames in a robust manner. This option is slower (as the whole video is read frame-by-frame), but does not rely on metadata, hence its robustness against file corruption.
int, default=1000
The number of triplets to extract for the dataset.
Engine, optional, default = None.
The default behavior loads the engine for the shuffle from the metadata. You can overwrite this by passing the engine as an argument, but this should generally not be done.
Returns
DLCScorer: str the scorer used to analyze the videos
Source code in deeplabcut/compat.py
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 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 | |
evaluate_network
evaluate_network(
config: str | Path,
shuffles: Sequence[int] = (1,),
trainingsetindex: int | str = 0,
plotting: bool | str = False,
show_errors: bool = True,
comparison_bodyparts: str | list[str] = "all",
gputouse: str | None = None,
rescale: bool = False,
modelprefix: str = "",
per_keypoint_evaluation: bool = False,
snapshots_to_evaluate: list[str] | None = None,
pcutoff: float | list[float] | dict[str, float] | None = None,
engine: Engine | None = None,
**torch_kwargs
)
Evaluates the network.
Evaluates the network based on the saved models at different stages of the training network. The evaluation results are stored in the .h5 and .csv file under the subdirectory 'evaluation_results'. Change the snapshotindex parameter in the config file to 'all' in order to evaluate all the saved models.
Parameters
config : string Full path of the config.yaml file.
sequence of int, optional, default=[1]
List of integers specifying the shuffle indices of the training dataset.
int or str, optional, default=0
Integer specifying which "TrainingsetFraction" to use. Note that "TrainingFraction" is a list in config.yaml. This variable can also be set to "all".
bool or str, optional, default=False
Plots the predictions on the train and test images.
If provided it must be either True, False, "bodypart", or
"individual". Setting to True defaults as "bodypart" for
multi-animal projects.
If a detector is used, the predicted bounding boxes will also be plotted.
bool, optional, default=True
Display train and test errors.
str or list, optional, default="all"
The average error will be computed for those body parts only. The provided list has to be a subset of the defined body parts.
int or None, optional, default=None
Indicates the GPU to use (see number in nvidia-smi). If you do not have a
GPU put `None``.
See: https://nvidia.custhelp.com/app/answers/detail/a_id/3751/~/useful-nvidia-smi-queries
bool, optional, default=False
Evaluate the model at the 'global_scale' variable (as set in the
pose_config.yaml file for a particular project). I.e. every image will be
resized according to that scale and prediction will be compared to the resized
ground truth. The error will be reported in pixels at rescaled to the
original size. I.e. For a [200,200] pixel image evaluated at
global_scale=.5, the predictions are calculated on [100,100] pixel images,
compared to 1/2*ground truth and this error is then multiplied by 2!.
The evaluation images are also shown for the original size!
str, optional, default=""
Directory containing the deeplabcut models to use when evaluating the network. By default, the models are assumed to exist in the project folder.
bool, default=False
Compute the train and test RMSE for each keypoint, and save the results to a {model_name}-keypoint-results.csv in the evaluation-results folder
List[str], optional, default=None
List of snapshot names to evaluate (e.g. ["snapshot-5000", "snapshot-7500"]).
float | list[float] | dict[str, float] | None, default=None
Only for the PyTorch engine. For the TensorFlow engine, please set the pcutoff
in the config.yaml file.
The cutoff to use for computing evaluation metrics. When None (default), the
cutoff will be loaded from the project config. If a list is provided, there
should be one value for each bodypart and one value for each unique bodypart
(if there are any). If a dict is provided, the keys should be bodyparts
mapping to pcutoff values for each bodypart. Bodyparts that are not defined
in the dict will have pcutoff set to 0.6.
Engine, optional, default = None.
The default behavior loads the engine for the shuffle from the metadata. You can overwrite this by passing the engine as an argument, but this should generally not be done.
torch_kwargs
You can add any keyword arguments for the deeplabcut.pose_estimation_pytorch
evaluate_network function here. These arguments are passed to the downstream
function. Available parameters are snapshotindex, which overrides the
snapshotindex parameter in the project configuration file. For top-down models
the detector_snapshot_index parameter can override the index of the detector
to use for evaluation in the project configuration file.
Returns
None
Examples
If you do not want to plot and evaluate with shuffle set to 1.
deeplabcut.evaluate_network( '/analysis/project/reaching-task/config.yaml', shuffles=[1], )
If you want to plot and evaluate with shuffle set to 0 and 1.
deeplabcut.evaluate_network( '/analysis/project/reaching-task/config.yaml', shuffles=[0, 1], plotting=True, )
If you want to plot assemblies for a maDLC project
deeplabcut.evaluate_network( '/analysis/project/reaching-task/config.yaml', shuffles=[1], plotting="individual", )
If you have a PyTorch model for which you want to set a different p-cutoff for "left_ear" and "right_ear" bodyparts, and keep the one set in the project config for other bodyparts:
deeplabcut.evaluate_network( "/analysis/project/reaching-task/config.yaml", shuffles=[0, 1], pcutoff={"left_ear": 0.8, "right_ear": 0.8}, )
Note: This defaults to standard plotting for single-animal projects.
Source code in deeplabcut/compat.py
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 | |
export_model
export_model(
cfg_path: str,
shuffle: int = 1,
trainingsetindex: int = 0,
snapshotindex: int | None = None,
iteration: int = None,
TFGPUinference: bool = True,
overwrite: bool = False,
make_tar: bool = True,
wipepaths: bool = False,
without_detector: bool = False,
modelprefix: str = "",
engine: Engine | None = None,
) -> None
Export DeepLabCut models for the model zoo or for live inference.
Saves the pose configuration, snapshot files, and frozen TF graph of the model to
directory named exported-models within the project directory (and an
exported-models-pytorch directory for PyTorch models).
Parameters
string
path to the DLC Project config.yaml file
int, optional
the shuffle of the model to export. default = 1
int, optional
the index of the training fraction for the model you wish to export. default = 1
int, optional
the snapshot index for the weights you wish to export. If None, uses the snapshotindex as defined in 'config.yaml'. Default = None
int, optional
The model iteration (active learning loop) you wish to export. If None, the iteration listed in the config file is used.
bool, optional
use the tensorflow inference model? Default = True For inference using DeepLabCut-live, it is recommended to set TFGPIinference=False
bool, optional
if the model you wish to export has already been exported, whether to overwrite. default = False
bool, optional
Do you want to compress the exported directory to a tar file? Default = True This is necessary to export to the model zoo, but not for live inference.
bool, optional
Removes the actual path of your project and the init_weights from pose_cfg.
bool, optional
PyTorch engine only. Exports top-down models without the detector.
Engine, optional, default = None.
The default behavior loads the engine for the shuffle from the metadata. You can overwrite this by passing the engine as an argument, but this should generally not be done.
Example:
Export the first stored snapshot for model trained with shuffle 3:
deeplabcut.export_model('/analysis/project/reaching-task/config.yaml',shuffle=3, snapshotindex=-1)
Source code in deeplabcut/compat.py
1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 | |
extract_maps
extract_maps(
config,
shuffle: int = 0,
trainingsetindex: int = 0,
gputouse: int | None = None,
device: str | None = None,
rescale: bool = False,
Indices: list[int] | None = None,
modelprefix: str = "",
engine: Engine | None = None,
)
Extracts the scoremap, locref, partaffinityfields (if available).
Returns a dictionary indexed by: trainingsetfraction, snapshotindex, and imageindex for those keys, each item contains: (image, scmap, locref, paf, bpt_names, partaffinity_graph, imagename, True/False if this image was in trainingset).
config : string Full path of the config.yaml file as a string.
integer
integers specifying shuffle index of the training dataset. The default is 0.
int, optional
Integer specifying which TrainingsetFraction to use. By default the first (note that TrainingFraction is a list in config.yaml). This variable can also be set to "all".
int or None, optional, default=None
For the TensorFlow engine (for the PyTorch engine see device). Specifies
the GPU to use (see number in nvidia-smi). If you do not have a GPU put
None. See: https://nvidia.custhelp.com/app/answers/detail/a_id/3751/~/useful-nvidia-smi-queries
str or None, optional, default=None
The CUDA device to use for training. If None, the device will be taken from the
pytorch_config.yaml file. Examples: {"cpu", "cuda", "cuda:0", "cuda:1"}. See
https://pytorch.org/docs/stable/notes/cuda.html for more information.
bool, default False
Evaluate the model at the 'global_scale' variable (as set in the test/pose_config.yaml file for a particular project). I.e. every image will be resized according to that scale and prediction will be compared to the resized ground truth. The error will be reported in pixels at rescaled to the original size. I.e. For a [200,200] pixel image evaluated at global_scale=.5, the predictions are calculated on [100,100] pixel images, compared to 1/2*ground truth and this error is then multiplied by 2!. The evaluation images are also shown for the original size!
Engine, optional, default = None.
The default behavior loads the engine for the shuffle from the metadata. You can overwrite this by passing the engine as an argument, but this should generally not be done.
Examples
If you want to extract the data for image 0 and 103 (of the training set) for model trained with shuffle 0.
deeplabcut.extract_maps(configfile,0,Indices=[0,103])
Source code in deeplabcut/compat.py
1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 | |
extract_save_all_maps
extract_save_all_maps(
config,
shuffle: int = 1,
trainingsetindex: int = 0,
comparison_bodyparts: str | list[str] = "all",
extract_paf: bool = True,
all_paf_in_one: bool = True,
gputouse: int | None = None,
device: str | None = None,
rescale: bool = False,
Indices: list[int] | None = None,
modelprefix: str = "",
dest_folder: str = None,
snapshot_index: int | str | None = None,
detector_snapshot_index: int | str | None = None,
engine: Engine | None = None,
)
Extracts the scoremap, location refinement field and part affinity field prediction of the model. The maps will be rescaled to the size of the input image and stored in the corresponding model folder in /evaluation-results.
config : string Full path of the config.yaml file as a string.
integer
integers specifying shuffle index of the training dataset. The default is 1.
int, optional
Integer specifying which TrainingsetFraction to use. By default the first (note that TrainingFraction is a list in config.yaml). This variable can also be set to "all".
list of bodyparts, Default is "all".
The average error will be computed for those body parts only (Has to be a subset of the body parts).
bool
Extract part affinity fields by default. Note that turning it off will make the function much faster.
bool
By default, all part affinity fields are displayed on a single frame. If false, individual fields are shown on separate frames.
int or None, optional, default=None
For the TensorFlow engine (for the PyTorch engine see device). Specifies
the GPU to use (see number in nvidia-smi). If you do not have a GPU put
None. See: https://nvidia.custhelp.com/app/answers/detail/a_id/3751/~/useful-nvidia-smi-queries
str or None, optional, default=None
The CUDA device to use for training. If None, the device will be taken from the
pytorch_config.yaml file. Examples: {"cpu", "cuda", "cuda:0", "cuda:1"}. See
https://pytorch.org/docs/stable/notes/cuda.html for more information.
default None
For which images shall the scmap/locref and paf be computed? Give a list of images
int, optional (default=None)
Number of plots per row in grid plots. By default, calculated to approximate a squared grid of plots
Only for PyTorch models. Index (starting at 0) of the snapshot we
want to extract maps with. To evaluate the last one, use -1. To extract maps for all snapshots, use "all". Default uses the value set in the project config.
Only for TD PyTorch models. If defined, uses the detector
with the given index for pose estimation. To extract maps for all detector snapshots, use "all". Default uses the value set in the project config.
Engine, optional, default = None.
The default behavior loads the engine for the shuffle from the metadata. You can overwrite this by passing the engine as an argument, but this should generally not be done.
Examples
Calculated maps for images 0, 1 and 33.
deeplabcut.extract_save_all_maps('/analysis/project/reaching-task/config.yaml', shuffle=1,Indices=[0,1,33])
Source code in deeplabcut/compat.py
1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 | |
get_available_aug_methods
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
Engine
|
the engine for which augmentation methods should be returned |
required |
Returns:
| Type | Description |
|---|---|
tuple[str, ...]
|
the augmentations available for the given engine, where the first one is the default method to use |
Raises:
| Type | Description |
|---|---|
RuntimeError
|
if no augmentations methods are defined for the given engine |
Source code in deeplabcut/compat.py
get_project_engine
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
dict
|
the project configuration file |
required |
Returns:
| Type | Description |
|---|---|
Engine
|
the engine specified for the project, or the default engine if none is specified |
Source code in deeplabcut/compat.py
return_evaluate_network_data
return_evaluate_network_data(
config: str,
shuffle: int = 0,
trainingsetindex: int = 0,
comparison_bodyparts: str | list[str] = "all",
snapshotindex: str | int | None = None,
rescale: bool = False,
fulldata: bool = False,
show_errors: bool = True,
modelprefix: str = "",
returnjustfns: bool = True,
engine: Engine | None = None,
)
Returns the results for (previously evaluated) network. deeplabcut.evaluate_network(..) Returns list of (per model): [trainingsiterations,tr ainfraction,shuffle,trainerror,testerror,pcutoff,trainerrorpcutoff,testerrorpcutoff, Snapshots[snapshotindex],scale,net_type]
This function is only implemented for tensorflow models/shuffles, and will throw an error if called with a PyTorch shuffle.
If fulldata=True, also returns (the complete annotation and prediction array) Returns list of: (DataMachine, Data, data, trainIndices, testIndices, trainFraction, DLCscorer, comparison_bodyparts, cfg, Snapshots[snapshotindex] )
config : string Full path of the config.yaml file as a string.
integer
integers specifying shuffle index of the training dataset. The default is 0.
int, optional
Integer specifying which TrainingsetFraction to use. By default the first (note that TrainingFraction is a list in config.yaml). This variable can also be set to "all".
list of bodyparts, Default is "all".
The average error will be computed for those body parts only (Has to be a subset of the body parts).
bool, default False
Evaluate the model at the 'global_scale' variable (as set in the test/pose_config.yaml file for a particular project). I.e. every image will be resized according to that scale and prediction will be compared to the resized ground truth. The error will be reported in pixels at rescaled to the original size. I.e. For a [200,200] pixel image evaluated at global_scale=.5, the predictions are calculated on [100,100] pixel images, compared to 1/2*ground truth and this error is then multiplied by 2!. The evaluation images are also shown for the original size!
Engine, optional, default = None.
The default behavior loads the engine for the shuffle from the metadata. You can overwrite this by passing the engine as an argument, but this should generally not be done.
Examples
If you do not want to plot
deeplabcut._evaluate_network_data('/analysis/project/reaching-task/config.yaml', shuffle=[1])
If you want to plot
deeplabcut.evaluate_network('/analysis/project/reaching-task/config.yaml',shuffle=[1],plotting=True)
Source code in deeplabcut/compat.py
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 | |
return_train_network_path
return_train_network_path(
config, shuffle: int = 1, trainingsetindex: int = 0, modelprefix: str = "", engine: Engine | None = None
) -> tuple[Path, Path, Path]
Returns the training and test pose config file names as well as the folder where the snapshot is.
Parameters
config : string Full path of the config.yaml file as a string.
int
Integer value specifying the shuffle index to select for training.
int, optional
Integer specifying which TrainingsetFraction to use. By default the first (note that TrainingFraction is a list in config.yaml).
str, optional
Directory containing the deeplabcut models to use when evaluating the network. By default, the models are assumed to exist in the project folder.
Engine, optional, default = None.
The default behavior loads the engine for the shuffle from the metadata. You can overwrite this by passing the engine as an argument, but this should generally not be done.
Returns the triple: trainposeconfigfile, testposeconfigfile, snapshotfolder
Source code in deeplabcut/compat.py
train_network
train_network(
config: str | Path,
shuffle: int = 1,
trainingsetindex: int = 0,
max_snapshots_to_keep: int | None = None,
display_iters: int | None = None,
save_iters: int | None = None,
max_iters: int | None = None,
epochs: int | None = None,
save_epochs: int | None = None,
allow_growth: bool = True,
gputouse: str | None = None,
autotune: bool = False,
keepdeconvweights: bool = True,
modelprefix: str = "",
superanimal_name: str = "",
superanimal_transfer_learning: bool = False,
engine: Engine | None = None,
device: str | None = None,
snapshot_path: str | Path | None = None,
detector_path: str | Path | None = None,
batch_size: int | None = None,
detector_batch_size: int | None = None,
detector_epochs: int | None = None,
detector_save_epochs: int | None = None,
pose_threshold: float | None = 0.1,
pytorch_cfg_updates: dict | None = None,
)
Trains the network with the labels in the training dataset.
Parameters
config : string Full path of the config.yaml file as a string.
int, optional, default=1
Integer value specifying the shuffle index to select for training.
int, optional, default=0
Integer specifying which TrainingsetFraction to use. Note that TrainingFraction is a list in config.yaml.
int or None
Sets how many snapshots are kept, i.e. states of the trained network. Every
saving iteration many times a snapshot is stored, however only the last
max_snapshots_to_keep many are kept! If you change this to None, then all
are kept.
See: https://github.com/DeepLabCut/DeepLabCut/issues/8#issuecomment-387404835
optional, default=None
This variable is actually set in pose_config.yaml. However, you can
overwrite it with this hack. Don't use this regularly, just if you are too lazy
to dig out the pose_config.yaml file for the corresponding project. If
None, the value from there is used, otherwise it is overwritten!
optional, default=None
Only for the TensorFlow engine (for the PyTorch engine see the torch_kwargs:
you can use save_epochs).
This variable is actually set in pose_config.yaml. However, you can
overwrite it with this hack. Don't use this regularly, just if you are too lazy
to dig out the pose_config.yaml file for the corresponding project.
If None, the value from there is used, otherwise it is overwritten!
optional, default=None
Only for the TensorFlow engine (for the PyTorch engine see the torch_kwargs:
you can use epochs).
This variable is actually set in pose_config.yaml. However, you can
overwrite it with this hack. Don't use this regularly, just if you are too lazy
to dig out the pose_config.yaml file for the corresponding project.
If None, the value from there is used, otherwise it is overwritten!
optional, default=None
Only for the PyTorch engine (equivalent to the max_iters parameter for the
TensorFlow engine). The maximum number of epochs to train the model for. If
None, the value will be read from the pytorch_config.yaml file. An epoch is a
single pass through the training dataset, which means your model has seen each
training image exactly once. So if you have 64 training images for your network,
an epoch is 64 iterations with batch size 1 (or 32 iterations with batch size 2,
16 with batch size 4, etc.).
optional, default=None
Only for the PyTorch engine (equivalent to the save_iters parameter for the
TensorFlow engine). The number of epochs between each snapshot save. If
None, the value will be read from the pytorch_config.yaml file.
bool, optional, default=True.
Only for the TensorFlow engine.
For some smaller GPUs the memory issues happen. If True, the memory
allocator does not pre-allocate the entire specified GPU memory region, instead
starting small and growing as needed.
See issue: https://forum.image.sc/t/how-to-stop-running-out-of-vram/30551/2
optional, default=None
Only for the TensorFlow engine (for the PyTorch engine see the torch_kwargs:
you can use device).
Natural number indicating the number of your GPU (see number in nvidia-smi).
If you do not have a GPU put None.
See: https://nvidia.custhelp.com/app/answers/detail/a_id/3751/~/useful-nvidia-smi-queries
bool, optional, default=False
Only for the TensorFlow engine.
Property of TensorFlow, somehow faster if False
(as Eldar found out, see https://github.com/tensorflow/tensorflow/issues/13317).
bool, optional, default=True
Also restores the weights of the deconvolution layers (and the backbone) when training from a snapshot. Note that if you change the number of bodyparts, you need to set this to false for re-training.
str, optional, default=""
Directory containing the deeplabcut models to use when evaluating the network. By default, the models are assumed to exist in the project folder.
str, optional, default =""
Only for the TensorFlow engine. For the PyTorch engine, you need to specify
this through the weight_init when creating the training dataset.
Specified if transfer learning with superanimal is desired
bool, optional, default = False.
Only for the TensorFlow engine. For the PyTorch engine, you need to specify
this through the weight_init when creating the training dataset.
If set true, the training is transfer learning (new decoding layer). If set
false, and superanimal_name is True, then the training is fine-tuning (reusing
the decoding layer)
Engine, optional, default = None.
The default behavior loads the engine for the shuffle from the metadata. You can overwrite this by passing the engine as an argument, but this should generally not be done.
str, optional, default = None.
Only for the PyTorch engine. The device to run the training on (e.g. "cuda:0")
str or Path, optional, default = None.
Only for the PyTorch engine. The path to the pose model snapshot to resume training from.
str or Path, optional, default = None.
Only for the PyTorch engine. The path to the detector model snapshot to resume training from.
int, optional, default = None.
Only for the PyTorch engine. The batch size to use while training.
int, optional, default = None.
Only for the PyTorch engine. The batch size to use while training the detector.
int, optional, default = None.
Only for the PyTorch engine. The number of epochs to train the detector for.
int, optional, default = None.
Only for the PyTorch engine. The number of epochs between each detector snapshot save.
float, optional, default = 0.1.
Only for the PyTorch engine. Used for memory-replay. Pseudo-predictions with confidence lower than this threshold are discarded for memory-replay
dict, optional, default = None.
A dictionary of updates to the pytorch config. The keys are the dot-separated paths to the values to update in the config. For example, to update the gpus to run the training on, you can use:
Returns
None
Examples
To train the network for first shuffle of the training dataset
deeplabcut.train_network('/analysis/project/reaching-task/config.yaml')
To train the network for second shuffle of the training dataset
deeplabcut.train_network( '/analysis/project/reaching-task/config.yaml', shuffle=2, keepdeconvweights=True, )
To train the network for shuffle created with a PyTorch engine, while overriding the number of epochs, batch size and other parameters.
deeplabcut.train_network( '/analysis/project/reaching-task/config.yaml', shuffle=1, batch_size=8, epochs=100, save_epochs=10, display_iters=50, )
Source code in deeplabcut/compat.py
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 | |
visualize_locrefs
visualize_locrefs(
image: ndarray, scmap: ndarray, locref_x: ndarray, locref_y: ndarray, step: int = 5, zoom_width: int = 0
)
Plots a scoremap and the corresponding location refinement field on an image.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
ndarray
|
An image as a numpy array of shape (h, w, channels) |
required |
|
ndarray
|
A scoremap of shape (h, w) |
required |
|
ndarray
|
The x-coordinate of the location refinement field, of shape (h, w) |
required |
|
ndarray
|
The y-coordinate of the location refinement field, of shape (h, w) |
required |
|
int
|
The step with which to plot the location refinement field. |
5
|
|
int
|
The zoom width with which to plot the scoremaps. |
0
|
Returns:
| Type | Description |
|---|---|
|
The figure and axis on which the image scoremap and locref field were plot. |
Source code in deeplabcut/compat.py
visualize_paf
Plots the PAF on top of the image.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
ndarray
|
Shape (height, width, channels). The image on which the model was run. |
required |
|
ndarray
|
Shape (height, width, 2 * len(paf_graph)). The PAF output by the model. |
required |
|
int
|
The step with which to plot the scoremaps. |
5
|
|
list | None
|
The colormap to use. |
None
|
Returns:
| Type | Description |
|---|---|
|
The figure and axis on which the image PAF was plot. |
Source code in deeplabcut/compat.py
visualize_scoremaps
Plots scoremaps as an image overlay.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
ndarray
|
An image as a numpy array of shape (h, w, channels) |
required |
|
ndarray
|
A scoremap of shape (h, w) |
required |
Returns:
| Type | Description |
|---|---|
|
The figure and axis on which the image scoremap was plot. |