Fixed the bug in flow matching (#68)
* fix a bug in flow matching * fixed the bugs in flow matching * fixed format --------- Co-authored-by: Geoffrey19 <sympathischmann35@gmail.com>
This commit is contained in:
@@ -307,7 +307,7 @@ class ActionProcessor(nn.Module):
|
||||
torch.Tensor: Sampled timesteps of shape [batch_size]
|
||||
"""
|
||||
sample = self.beta_dist.sample([batch_size]).to(device=device, dtype=dtype)
|
||||
time = (1 - sample) / self.s
|
||||
time = (1 - sample) * self.s
|
||||
return time
|
||||
|
||||
def proprioception_proj(
|
||||
|
||||
Reference in New Issue
Block a user