Skip to content

Commit

Permalink
Remove 3.13 in actions for now
Browse files Browse the repository at this point in the history
  • Loading branch information
spirosmaggioros committed Nov 6, 2024
1 parent 54999eb commit 25e3efa
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 50 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/macos-tests-3.13.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .github/workflows/ubuntu-tests-3.13.yml

This file was deleted.

4 changes: 1 addition & 3 deletions spare_scores/svm.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,9 +346,7 @@ def get_stats(self, y_test: np.ndarray, y_score: np.ndarray) -> None:
self.stats["F1"].append(2 * precision * recall / (precision + recall))
else:
self.stats["MAE"].append(metrics.mean_absolute_error(y_test, y_score))
self.stats["RMSE"].append(
metrics.root_mean_squared_error(y_test, y_score)
)
self.stats["RMSE"].append(metrics.root_mean_squared_error(y_test, y_score))
self.stats["R2"].append(metrics.r2_score(y_test, y_score))
logging.debug(
" > "
Expand Down

0 comments on commit 25e3efa

Please sign in to comment.