@@ -172,10 +172,9 @@ class ContinuousDataLoader(cebra_data.Loader):
172172 * auxiliary variables, using the empirical distribution of how behavior various across
173173 ``time_offset`` timesteps (``time_delta``). Sampling for this setting is implemented
174174 in :py:class:`cebra.distributions.continuous.TimedeltaDistribution`.
175- * alternatively, the distribution can be selected to be a Gaussian or von Mises-Fisher distribution
175+ * alternatively, the distribution can be selected to be a Gaussian distribution
176176 parametrized by a fixed ``delta`` around the reference sample, using the implementation in
177- :py:class:`cebra.distributions.continuous.DeltaNormalDistribution` and
178- :py:class:`cebra.distributions.continuous.DeltaVMFDistribution`.
177+ :py:class:`cebra.distributions.continuous.DeltaNormalDistribution`.
179178
180179 Args:
181180 See dataclass fields.
@@ -228,11 +227,13 @@ def _init_distribution(self):
228227 self .dataset .continuous_index ,
229228 self .delta ,
230229 device = self .device )
231- elif self .conditional == "delta_vmf" :
232- self .distribution = cebra .distributions .DeltaVMFDistribution (
233- self .dataset .continuous_index ,
234- self .delta ,
235- device = self .device )
230+ # TODO(stes): Add this distribution from internal xCEBRA codebase at a later point
231+ # in time, currently not in use.
232+ #elif self.conditional == "delta_vmf":
233+ # self.distribution = cebra.distributions.DeltaVMFDistribution(
234+ # self.dataset.continuous_index,
235+ # self.delta,
236+ # device=self.device)
236237 else :
237238 raise ValueError (self .conditional )
238239
0 commit comments