compute_similarity_matrix
Compute a pairwise similarity matrix for trained GRADIEND models.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
models
|
Dict[str, object]
|
Mapping from display/model id to a trained model. For
|
required |
measure
|
str
|
Similarity measure. Supported values are |
'cosine'
|
part
|
Optional[str]
|
GRADIEND part to compare. Supported values for vector/mass
measures are |
None
|
topk
|
Optional[Union[int, float]]
|
Optional coordinate selection. Required for |
None
|
value
|
str
|
Output value for |
'intersection_frac'
|
seed_aggregate
|
str
|
Aggregation used when a model id maps to a list/tuple of
seed models. Supported values are |
'mean'
|
dispersion
|
str
|
Optional dispersion metadata for list/tuple seed cells.
Supported values are |
'none'
|
seed_pairing_mode
|
str
|
How seed groups are paired. |
'matched'
|
Returns:
| Type | Description |
|---|---|
Dict[str, Any]
|
For one model per id, a payload with |
Dict[str, Any]
|
|
Dict[str, Any]
|
|
Dict[str, Any]
|
|
Dict[str, Any]
|
list/tuple seed groups, every cell aggregates the selected seed-pair |
Dict[str, Any]
|
scores, and the payload also contains |
Dict[str, Any]
|
|
Dict[str, Any]
|
|
Dict[str, Any]
|
available. |
Raises:
| Type | Description |
|---|---|
TypeError
|
If |
ValueError
|
If fewer than two model ids are passed, a model group is
empty, |
Source code in gradiend/comparison/similarity.py
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 | |