Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document representation evaluation functions #177

Open
ziw-liu opened this issue Sep 27, 2024 · 0 comments
Open

Document representation evaluation functions #177

ziw-liu opened this issue Sep 27, 2024 · 0 comments
Assignees
Labels
documentation Improvements or additions to documentation representation Representation learning (SSL)
Milestone

Comments

@ziw-liu
Copy link
Collaborator

ziw-liu commented Sep 27, 2024

Document the distance and displacement functions:

def calculate_cosine_similarity_cell(embedding_dataset, fov_name, track_id):
"""Extract embeddings and calculate cosine similarities for a specific cell"""
# Filter the dataset for the specific infected cell
filtered_data = embedding_dataset.where(
(embedding_dataset["fov_name"] == fov_name)
& (embedding_dataset["track_id"] == track_id),
drop=True,
)
# Extract the feature embeddings and time points
features = filtered_data["features"].values # (sample, features)
time_points = filtered_data["t"].values # (sample,)
# Get the first time point's embedding
first_time_point_embedding = features[0].reshape(1, -1)
# Calculate cosine similarity between each time point and the first time point
cosine_similarities = []
for i in range(len(time_points)):
similarity = cosine_similarity(
first_time_point_embedding, features[i].reshape(1, -1)
)
cosine_similarities.append(similarity[0][0])
return time_points, cosine_similarities
def compute_displacement_mean_std(
embedding_dataset, max_tau=10, use_cosine=False, use_dissimilarity=False
):
"""Compute the norm of differences between embeddings at t and t + tau"""
# Get the arrays of (fov_name, track_id, t, and embeddings)
fov_names = embedding_dataset["fov_name"].values
track_ids = embedding_dataset["track_id"].values
timepoints = embedding_dataset["t"].values
embeddings = embedding_dataset["features"].values
# Dictionary to store displacements for each tau
displacement_per_tau = defaultdict(list)
# Iterate over all entries in the dataset
for i in range(len(fov_names)):
fov_name = fov_names[i]
track_id = track_ids[i]
current_time = timepoints[i]
current_embedding = embeddings[i]
# For each time point t, compute displacements for t + tau
for tau in range(1, max_tau + 1):
future_time = current_time + tau
# Find if future_time exists for the same (fov_name, track_id)
matching_indices = np.where(
(fov_names == fov_name)
& (track_ids == track_id)
& (timepoints == future_time)
)[0]
if len(matching_indices) == 1:
# Get the embedding at t + tau
future_embedding = embeddings[matching_indices[0]]
if use_cosine:
# Compute cosine similarity
similarity = cosine_similarity(
current_embedding.reshape(1, -1),
future_embedding.reshape(1, -1),
)[0][0]
# Choose whether to use similarity or dissimilarity
if use_dissimilarity:
displacement = 1 - similarity # Cosine dissimilarity
else:
displacement = similarity # Cosine similarity
else:
# Compute the Euclidean distance, elementwise square on difference
displacement = np.sum((current_embedding - future_embedding) ** 2)
# Store the displacement for the given tau
displacement_per_tau[tau].append(displacement)
# Compute mean and std displacement for each tau by averaging the displacements
mean_displacement_per_tau = {
tau: np.mean(displacements)
for tau, displacements in displacement_per_tau.items()
}
std_displacement_per_tau = {
tau: np.std(displacements)
for tau, displacements in displacement_per_tau.items()
}
return mean_displacement_per_tau, std_displacement_per_tau
def compute_displacement(
embedding_dataset,
max_tau=10,
use_cosine=False,
use_dissimilarity=False,
use_umap=False,
):
"""Compute the norm of differences between embeddings at t and t + tau"""
# Get the arrays of (fov_name, track_id, t, and embeddings)
fov_names = embedding_dataset["fov_name"].values
track_ids = embedding_dataset["track_id"].values
timepoints = embedding_dataset["t"].values
if use_umap:
umap1 = embedding_dataset["UMAP1"].values
umap2 = embedding_dataset["UMAP2"].values
embeddings = np.vstack((umap1, umap2)).T
else:
embeddings = embedding_dataset["features"].values
# Dictionary to store displacements for each tau
displacement_per_tau = defaultdict(list)
# Iterate over all entries in the dataset
for i in range(len(fov_names)):
fov_name = fov_names[i]
track_id = track_ids[i]
current_time = timepoints[i]
current_embedding = embeddings[i]
# For each time point t, compute displacements for t + tau
for tau in range(1, max_tau + 1):
future_time = current_time + tau
# Find if future_time exists for the same (fov_name, track_id)
matching_indices = np.where(
(fov_names == fov_name)
& (track_ids == track_id)
& (timepoints == future_time)
)[0]
if len(matching_indices) == 1:
# Get the embedding at t + tau
future_embedding = embeddings[matching_indices[0]]
if use_cosine:
# Compute cosine similarity
similarity = cosine_similarity(
current_embedding.reshape(1, -1),
future_embedding.reshape(1, -1),
)[0][0]
# Choose whether to use similarity or dissimilarity
if use_dissimilarity:
displacement = 1 - similarity # Cosine dissimilarity
else:
displacement = similarity # Cosine similarity
else:
# Compute the Euclidean distance, elementwise square on difference
displacement = np.sum((current_embedding - future_embedding) ** 2)
# Store the displacement for the given tau
displacement_per_tau[tau].append(displacement)
return displacement_per_tau
def calculate_normalized_euclidean_distance_cell(embedding_dataset, fov_name, track_id):
filtered_data = embedding_dataset.where(
(embedding_dataset["fov_name"] == fov_name)
& (embedding_dataset["track_id"] == track_id),
drop=True,
)
features = filtered_data["features"].values # (sample, features)
time_points = filtered_data["t"].values # (sample,)
normalized_features = features / np.linalg.norm(features, axis=1, keepdims=True)
# Get the first time point's normalized embedding
first_time_point_embedding = normalized_features[0].reshape(1, -1)
euclidean_distances = []
for i in range(len(time_points)):
distance = np.linalg.norm(
first_time_point_embedding - normalized_features[i].reshape(1, -1)
)
euclidean_distances.append(distance)
return time_points, euclidean_distances
def compute_displacement_mean_std_full(embedding_dataset, max_tau=10):
fov_names = embedding_dataset["fov_name"].values
track_ids = embedding_dataset["track_id"].values
timepoints = embedding_dataset["t"].values
embeddings = embedding_dataset["features"].values
cell_identifiers = np.array(
list(zip(fov_names, track_ids)),
dtype=[("fov_name", "O"), ("track_id", "int64")],
)
unique_cells = np.unique(cell_identifiers)
displacement_per_tau = defaultdict(list)
for cell in unique_cells:
fov_name = cell["fov_name"]
track_id = cell["track_id"]
indices = np.where((fov_names == fov_name) & (track_ids == track_id))[0]
cell_timepoints = timepoints[indices]
cell_embeddings = embeddings[indices]
sorted_indices = np.argsort(cell_timepoints)
cell_timepoints = cell_timepoints[sorted_indices]
cell_embeddings = cell_embeddings[sorted_indices]
for i in range(len(cell_timepoints)):
current_time = cell_timepoints[i]
current_embedding = cell_embeddings[i]
current_embedding = current_embedding / np.linalg.norm(current_embedding)
for tau in range(0, max_tau + 1):
future_time = current_time + tau
future_index = np.where(cell_timepoints == future_time)[0]
if len(future_index) >= 1:
future_embedding = cell_embeddings[future_index[0]]
future_embedding = future_embedding / np.linalg.norm(
future_embedding
)
distance = np.linalg.norm(current_embedding - future_embedding)
displacement_per_tau[tau].append(distance)
mean_displacement_per_tau = {
tau: np.mean(displacements)
for tau, displacements in displacement_per_tau.items()
}
std_displacement_per_tau = {
tau: np.std(displacements)
for tau, displacements in displacement_per_tau.items()
}
return mean_displacement_per_tau, std_displacement_per_tau

@ziw-liu ziw-liu added the documentation Improvements or additions to documentation label Sep 27, 2024
@ziw-liu ziw-liu added the representation Representation learning (SSL) label Sep 27, 2024
@ziw-liu ziw-liu added this to the v0.3.0 milestone Sep 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
documentation Improvements or additions to documentation representation Representation learning (SSL)
Projects
None yet
Development

No branches or pull requests

2 participants