Skip to content

Commit a09eeb6

Browse files
change multimodal data integration task name to matching modalities (#778)
* change task name to matching modalities in README and folder name * make kNN AUC description modality-agnostic * add other folders in here * removed old multimodal integration folder * removed backup README * Rename multimodal_data_integration in tasks/__init__ * Update procrustes.py * Markdown lint * Rename hardcoded reference --------- Co-authored-by: Scott Gigante <84813314+scottgigante-immunai@users.noreply.github.com> Co-authored-by: Scott Gigante <scott.gigante@immunai.com> Former-commit-id: d77a949
1 parent e2784ce commit a09eeb6

17 files changed

Lines changed: 9 additions & 9 deletions

File tree

openproblems/tasks/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from . import denoising
22
from . import dimensionality_reduction
33
from . import label_projection
4-
from . import multimodal_data_integration
4+
from . import matching_modalities
55
from . import regulatory_effect_prediction
66
from . import spatial_decomposition
77
from ._batch_integration import batch_integration_embed

openproblems/tasks/multimodal_data_integration/README.md renamed to openproblems/tasks/matching_modalities/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Multimodal data integration
1+
# Matching modalities
22

33
## The task
44

@@ -25,13 +25,13 @@ observations sharing the same coordinates in the latent space.
2525

2626
## The metrics
2727

28-
Metrics for multimodal data integration aim to characterize how well the aligned
28+
Metrics for matching modalities aim to characterize how well the aligned
2929
datasets correspond to the ground truth.
3030

31-
* **kNN AUC**: Let $f(i) ∈ F$ be the scRNA-seq measurement of cell $i$, and $g(i) ∈ G$
32-
be the scATAC- seq measurement of cell $i$. kNN-AUC calculates the average percentage
33-
overlap of neighborhoods of $f(i)$ in $F$ with neighborhoods of $g(i)$ in $G$. Higher
34-
is better.
31+
* **kNN AUC**: Let $f(i) ∈ F$ be the modality 1 (e.g., scRNA-seq) measurement of cell $i$,
32+
and $g(i) ∈ G$ be the modality 2 (e.g., scATAC-seq) measurement of cell $i$. kNN-AUC
33+
calculates the average percentage overlap of neighborhoods of $f(i)$ in $F$ with
34+
neighborhoods of $g(i)$ in $G$. Higher is better.
3535
* **MSE**: Mean squared error (MSE) is the average distance between each pair of matched
3636
observations of the same cell in the learned latent space. Lower is better.
3737

openproblems/tasks/multimodal_data_integration/__init__.py renamed to openproblems/tasks/matching_modalities/__init__.py

File renamed without changes.
File renamed without changes.

openproblems/tasks/multimodal_data_integration/datasets/__init__.py renamed to openproblems/tasks/matching_modalities/datasets/__init__.py

File renamed without changes.

openproblems/tasks/multimodal_data_integration/datasets/citeseq.py renamed to openproblems/tasks/matching_modalities/datasets/citeseq.py

File renamed without changes.

openproblems/tasks/multimodal_data_integration/datasets/scicar.py renamed to openproblems/tasks/matching_modalities/datasets/scicar.py

File renamed without changes.

openproblems/tasks/multimodal_data_integration/methods/__init__.py renamed to openproblems/tasks/matching_modalities/methods/__init__.py

File renamed without changes.

openproblems/tasks/multimodal_data_integration/methods/baseline.py renamed to openproblems/tasks/matching_modalities/methods/baseline.py

File renamed without changes.

openproblems/tasks/multimodal_data_integration/methods/harmonic_alignment.py renamed to openproblems/tasks/matching_modalities/methods/harmonic_alignment.py

File renamed without changes.

0 commit comments

Comments
 (0)