deeplabcut.pose_estimation_tensorflow.core.evaluate
Functions:
| Name | Description |
|---|---|
Plotting |
Function used for plotting GT and predictions. |
calculatepafdistancebounds |
Returns distances along paf edges in train/test data |
evaluate_network |
Evaluates the network. |
get_available_requested_snapshots |
Intersects the requested snapshot names with the available snapshots. |
get_snapshots_by_index |
Assume available_snapshots is ordered in ascending order. |
keypoint_error |
Computes the RMSE error for each bodypart. |
make_results_file |
Makes result file in csv format and saves under evaluation_results directory. |
pairwisedistances |
Calculates the pairwise Euclidean distance metric over body parts vs. |
return_evaluate_network_data |
Returns the results for (previously evaluated) network. |
Plotting
Function used for plotting GT and predictions.
Source code in deeplabcut/pose_estimation_tensorflow/core/evaluate.py
calculatepafdistancebounds
calculatepafdistancebounds(config, shuffle=0, trainingsetindex=0, modelprefix='', numdigits=0, onlytrain=False)
Returns distances along paf edges in train/test data
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".
numdigits: number of digits to round for distances.
Source code in deeplabcut/pose_estimation_tensorflow/core/evaluate.py
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 | |
evaluate_network
evaluate_network(
config,
Shuffles=None,
trainingsetindex=0,
plotting=False,
show_errors=True,
comparisonbodyparts="all",
gputouse=None,
rescale=False,
modelprefix="",
per_keypoint_evaluation: bool = False,
snapshots_to_evaluate: list[str] = None,
)
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.
list, 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.
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-50000", "snapshot-75000", ...])
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", )
Note: This defaults to standard plotting for single-animal projects.
Source code in deeplabcut/pose_estimation_tensorflow/core/evaluate.py
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 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 | |
get_available_requested_snapshots
get_available_requested_snapshots(requested_snapshots: list[str], available_snapshots: list[str]) -> list[str]
Intersects the requested snapshot names with the available snapshots.
Returns: snapshot names
Source code in deeplabcut/pose_estimation_tensorflow/core/evaluate.py
get_snapshots_by_index
Assume available_snapshots is ordered in ascending order.
Returns snapshot names.
Source code in deeplabcut/pose_estimation_tensorflow/core/evaluate.py
keypoint_error
keypoint_error(
df_error: DataFrame, df_error_p_cutoff: DataFrame, train_indices: list[int], test_indices: list[int]
) -> pd.DataFrame
Computes the RMSE error for each bodypart.
The error dataframes can be in single animal format (non-hierarchical columns, one column for each bodypart) or multi-animal format (hierarchical columns with 3 levels: "scorer", "individuals", "bodyparts").
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
|
DataFrame
|
dataframe containing the RMSE error for each image, individual and bodypart |
required |
|
DataFrame
|
dataframe containing the RMSE error with p-cutoff for each image, individual and bodypart |
required |
|
list[int]
|
the indices of rows in the dataframe that are in the train set |
required |
|
list[int]
|
the indices of rows in the dataframe that are in the test set |
required |
Returns:
| Type | Description |
|---|---|
DataFrame
|
A dataframe containing 4 rows (train and test error, with and without p-cutoff) and one column for each bodypart. |
Source code in deeplabcut/pose_estimation_tensorflow/core/evaluate.py
make_results_file
Makes result file in csv format and saves under evaluation_results directory.
If the file exists (typically, when the network has already been evaluated), newer results are appended to it.
Source code in deeplabcut/pose_estimation_tensorflow/core/evaluate.py
pairwisedistances
Calculates the pairwise Euclidean distance metric over body parts vs.
images
Source code in deeplabcut/pose_estimation_tensorflow/core/evaluate.py
return_evaluate_network_data
return_evaluate_network_data(
config,
shuffle=0,
trainingsetindex=0,
comparisonbodyparts="all",
Snapindex=None,
rescale=False,
fulldata=False,
show_errors=True,
modelprefix="",
returnjustfns=True,
)
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[snapindex],scale,net_type]
If fulldata=True, also returns (the complete annotation and prediction array) Returns list of: (DataMachine, Data, data, trainIndices, testIndices, trainFraction, DLCscorer,comparisonbodyparts, cfg, Snapshots[snapindex])
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!
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/pose_estimation_tensorflow/core/evaluate.py
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 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 | |