Skip to content

Commit

Permalink
fix file extension
Browse files Browse the repository at this point in the history
  • Loading branch information
jjshoots committed Aug 21, 2024
1 parent 03aa00a commit 00424de
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wingman/wingman.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,9 +95,9 @@ def __init__(

# file paths
self._model_file: Path = (
self._model_directory / f"weights{self._current_ckpt}.path"
self._model_directory / f"weights{self._current_ckpt}.pth"
)
self._optim_file: Path = self._model_directory / "optimizer_path"
self._optim_file: Path = self._model_directory / "optimizer.pth"
self._lowest_loss_file: Path = self._model_directory / "lowest_loss.npy"
self._intermediary_file: Path = self._model_directory / "weights-1.npy"
self._log_file: Path = self._model_directory / "log.txt"
Expand Down

0 comments on commit 00424de

Please sign in to comment.