Automatically tuning hyperparameters in Raster Vision #1962
Unanswered
natedailey7
asked this question in
Q&A
Replies: 1 comment 2 replies
-
I have a similar usecase and I ended up just adding a return statement in the train() function for the metrics and then used Optuna. to optimize based on the returned metric. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello,
I'm wondering if anyone has a recommendation for automatically tuning hyperparameters in Raster Vision (ex. learning rate, batch size, class loss weights). That is, so that different values are tried in order to find the best one. I've looked into Ray Tune, but I'm not sure how to implement something like this without getting deep into Raster Vision's guts (such as, in the
train()
function). Would anyone recommended any methods?Beta Was this translation helpful? Give feedback.
All reactions