We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a36468 commit f49909aCopy full SHA for f49909a
NEWS.md
@@ -3,6 +3,8 @@
3
## Bug Fixes
4
5
* `t_opt("adamw")` now actually uses AdamW and not Adam.
6
+* Caching: Cache directory is now created, even if its parent
7
+ directory does not exist.
8
9
# mlr3torch 0.3.1
10
R/cache.R
@@ -25,8 +25,6 @@ get_cache_dir = function(cache = NULL) {
25
cache = R_user_dir("mlr3torch", "cache")
26
}
27
28
- assert(check_directory_exists(cache), check_path_for_output(cache),
29
- .var.name = "cache is a valid path")
30
normalizePath(cache, mustWork = FALSE)
31
32
0 commit comments