decoder.py [48:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
	if not (labels is None):
		df[labels_name] = labels[idx]
		if labels_order is None:
			labels_order = np.unique(labels)        
		if coldict is None:
			coldict = dict(zip(labels_order, col_palette[:len(labels)]))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



visualize.py [69:74]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    if not (labels is None):
        df[labels_name] = labels[idx]
        if labels_order is None:
            labels_order = np.unique(labels)        
        if coldict is None:
            coldict = dict(zip(labels_order, col_palette[:len(labels)]))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



