Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add interface for model initialization #124

Merged
merged 3 commits into from
Aug 2, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Add missing seed to test case
  • Loading branch information
lhjohn committed Aug 1, 2024
commit ea07c75e5dce2c9ca6dfa85b58eb68c885e474ce
4 changes: 2 additions & 2 deletions tests/testthat/test-TrainingCache.R
Original file line number Diff line number Diff line change
@@ -10,10 +10,10 @@ resNetSettings <- setResNet(numLayers = c(1, 2, 4),
device = "cpu",
batchSize = 64,
epochs = 1,
seed = NULL),
seed = 42),
hyperParamSearch = "random",
randomSample = 3,
randomSampleSeed = NULL)
randomSampleSeed = 42)

trainCache <- trainingCache$new(testLoc)
paramSearch <- resNetSettings$param
Loading