Bryan Wang
Bryan Wang
### Steps to Reproduce Here is a minimal example, mostly just derived from the grails tutorial: Controller: ``` @SuppressWarnings('MethodName') class ContentController extends RestfulController { ContentSearchService contentSearchService def search(String q) {...
For me, decreasing the batch size of test dataloader was very helpful for GPU speed and memory. So in train.py, changing ` test_loader = data.DataLoader( test_set, batch_size=len(test_set), shuffle=False, collate_fn=test_set.collate_fn)` to...
What is the recommended way to do K-fold cross validation with a webdataset? I wasn't able to find any examples on it.
The issue is that `ReftTrainer.save_model` does not save the `ReftConfig`, only the intervention. As a workaround, we can load the model from the checkpoint using the following code (by reinstantiating...