Skip to content

Commit

Permalink
Update configs
Browse files Browse the repository at this point in the history
  • Loading branch information
Catchxu committed May 30, 2024
1 parent 486900e commit 3a41992
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/stands/configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ def __init__(self, gene_dim):
self.z_dim = self.out_dim[-1]




class STConfigs(object):
def __init__(self, gene_dim):
self.gene_dim = gene_dim
Expand All @@ -16,8 +14,6 @@ def __init__(self, gene_dim):
self.GATEncoder = {'nheads': [4, 1]}




class FullConfigs(object):
def __init__(self, gene_dim, patch_size):
self.gene_dim = gene_dim
Expand Down Expand Up @@ -50,8 +46,6 @@ def __init__(self, gene_dim, patch_size):
}




class MBConfigs(object):
def __init__(self, z_dim):
self.MBBlock = {
Expand All @@ -62,8 +56,6 @@ def __init__(self, z_dim):
}




class DisConfigs(object):
def __init__(self, g_dim, p_dim=None, only_ST=False, only_SC=False):
self.only_gene = only_SC or only_ST
Expand All @@ -72,8 +64,6 @@ def __init__(self, g_dim, p_dim=None, only_ST=False, only_SC=False):
self.dim_list = [self.in_dim] + self.out_dim




class GMMConfigs(object):
def __init__(self):
self.GMM = {
Expand All @@ -83,8 +73,6 @@ def __init__(self):
}




class ClusterConfigs(object):
def __init__(self, z_dim):
self.alpha = 1
Expand Down

0 comments on commit 3a41992

Please sign in to comment.