Skip to content

Commit

Permalink
bump up to 0.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas Camillo authored and Lucas Camillo committed Jan 9, 2024
1 parent 54dd579 commit f7a5f3a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyaging/predict/_pred_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -626,7 +626,7 @@ def predict_ages_with_model(
for batch in main_tqdm(
dataloader, indent_level=indent_level + 1, logger=logger
):
batch_pred = model(batch[:, features].X)
batch_pred = model(batch[:, features].X.to(device))
predictions.append(batch_pred)

# Concatenate all batch predictions
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyaging"
version = "0.0.11"
version = "0.0.12"
description = "A Python-based compendium of GPU-optimized aging clocks."
authors = ["Lucas Paulo de Lima Camillo <[email protected]>"]
license = "BSD"
Expand Down

0 comments on commit f7a5f3a

Please sign in to comment.