Skip to content

Commit

Permalink
cargo fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
L-M-Sherlock committed Aug 25, 2023
1 parent 06a9863 commit 6974454
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/training.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,7 @@ impl<B: Backend<FloatElem = f32>> Model<B> {
delta_ts.clone().unsqueeze::<2>().transpose(),
stability.clone(),
);
let logits =
Tensor::cat(vec![-retention.clone() + 1, retention.clone()], 1);
let logits = Tensor::cat(vec![-retention.clone() + 1, retention.clone()], 1);
info!("stability: {}", &stability);
info!(
"delta_ts: {}",
Expand Down

0 comments on commit 6974454

Please sign in to comment.