CRAN Package Check Results for Maintainer ‘Tomasz Kalinowski <tomasz at posit.co>’

Last updated on 2025-08-09 01:50:16 CEST.

Package ERROR NOTE OK
guildai 13
keras 7 6
keras3 3 10
quickr 13
ragnar 1 12
Rapp 13
reticulate 2 11
tfdatasets 6 7

Package guildai

Current CRAN status: NOTE: 13

Version: 0.0.1
Check: Rd files
Result: NOTE checkRd: (-1) guild_merge.Rd:38: Lost braces; missing escapes or markup? 38 | \item{\code{summary_name}}{Name used for the run summary. Use '${run_id}' in the name to include the run ID.} | ^ checkRd: (-1) guild_merge_cli.Rd:88: Lost braces; missing escapes or markup? 88 | \item{summary_name}{Name used for the run summary. Use '${run_id}' in the name to include the run ID.} | ^ Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-devel-windows-x86_64, r-patched-linux-x86_64, r-release-linux-x86_64, r-release-macos-arm64, r-release-macos-x86_64, r-release-windows-x86_64, r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Package keras

Current CRAN status: NOTE: 7, OK: 6

Version: 2.15.0
Check: Rd cross-references
Result: NOTE Found the following Rd file(s) with Rd \link{} targets missing package anchors: KerasCallback.Rd: R6Class KerasConstraint.Rd: R6Class KerasLayer.Rd: R6Class KerasWrapper.Rd: R6Class Please provide package anchors for all Rd \link{} targets not in the package itself and the base packages. Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-windows-x86_64, r-patched-linux-x86_64, r-release-linux-x86_64, r-release-windows-x86_64

Version: 2.15.0
Check: installed package size
Result: NOTE installed size is 5.0Mb sub-directories of 1Mb or more: doc 2.0Mb help 2.1Mb Flavor: r-oldrel-macos-x86_64

Package keras3

Current CRAN status: NOTE: 3, OK: 10

Version: 1.4.0
Check: installed package size
Result: NOTE installed size is 14.5Mb sub-directories of 1Mb or more: doc 3.3Mb help 10.3Mb Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64, r-oldrel-windows-x86_64

Package quickr

Current CRAN status: OK: 13

Package ragnar

Current CRAN status: ERROR: 1, OK: 12

Version: 0.2.0
Check: examples
Result: ERROR Running examples in ‘ragnar-Ex.R’ failed The error most likely occurred in: > ### Name: ragnar_store_create > ### Title: Create and connect to a vector store > ### Aliases: ragnar_store_create ragnar_store_connect > > ### ** Examples > > # A store with a dummy embedding > store <- ragnar_store_create( + embed = \(x) matrix(stats::runif(10), nrow = length(x), ncol = 10), + version = 1 + ) > ragnar_store_insert(store, data.frame(text = "hello")) > > # A store with a schema. When inserting into this store, users need to > # provide an `area` column. > store <- ragnar_store_create( + embed = \(x) matrix(stats::runif(10), nrow = length(x), ncol = 10), + extra_cols = data.frame(area = character()), + version = 1 + ) > ragnar_store_insert(store, data.frame(text = "hello", area = "rag")) > > # If you already have a data.frame with chunks that will be inserted into > # the store, you can quickly create a suitable store with `vec_ptype()`: > chunks <- data.frame(text = letters, area = "rag") > store <- ragnar_store_create( + embed = \(x) matrix(stats::runif(10), nrow = length(x), ncol = 10), + extra_cols = vctrs::vec_ptype(chunks), + version = 1 + ) > ragnar_store_insert(store, chunks) > > # version = 2 (the default) has support for deoverlapping > store <- ragnar_store_create( + # if embed = NULL, then only bm25 search is used (not vss) + embed = NULL + ) > doc <- MarkdownDocument( + paste0(letters, collapse = ""), + origin = "/some/where" + ) > chunks <- markdown_chunk(doc, target_size = 3, target_overlap = 2 / 3) > chunks$context <- substring(chunks$text, 1, 1) > chunks # @document@origin: /some/where # A tibble: 24 × 4 start end context text <int> <int> <chr> <chr> 1 1 3 a abc 2 2 4 b bcd 3 3 5 c cde 4 4 6 d def 5 5 7 e efg 6 6 8 f fgh 7 7 9 g ghi 8 8 10 h hij 9 9 11 i ijk 10 10 12 j jkl # ℹ 14 more rows > ragnar_store_insert(store, chunks) > ragnar_store_build_index(store) *** caught segfault *** address 0x6575716170, cause 'memory not mapped' Traceback: 1: rapi_execute(stmt, convert_opts) 2: withCallingHandlers(expr, condition = function(cnd) { { .__handler_frame__. <- TRUE .__setup_frame__. <- frame if (inherits(cnd, "message")) { except <- c("warning", "error") } else if (inherits(cnd, "warning")) { except <- "error" } else { except <- "" } } while (!is_null(cnd)) { if (inherits(cnd, "error")) { out <- handlers[[1L]](cnd) if (!inherits(out, "rlang_zap")) throw(out) } inherit <- .subset2(.subset2(cnd, "rlang"), "inherit") if (is_false(inherit)) { return() } cnd <- .subset2(cnd, "parent") }}) 3: doTryCatch(return(expr), name, parentenv, handler) 4: tryCatchOne(expr, names, parentenv, handlers[[1L]]) 5: tryCatchList(expr, classes, parentenv, handlers) 6: tryCatch(withCallingHandlers(expr, condition = function(cnd) { { .__handler_frame__. <- TRUE .__setup_frame__. <- frame if (inherits(cnd, "message")) { except <- c("warning", "error") } else if (inherits(cnd, "warning")) { except <- "error" } else { except <- "" } } while (!is_null(cnd)) { if (inherits(cnd, "error")) { out <- handlers[[1L]](cnd) if (!inherits(out, "rlang_zap")) throw(out) } inherit <- .subset2(.subset2(cnd, "rlang"), "inherit") if (is_false(inherit)) { return() } cnd <- .subset2(cnd, "parent") }}), stackOverflowError = handlers[[1L]]) 7: rlang::try_fetch(rapi_execute(stmt, convert_opts), error = function(e) { rethrow_error_from_rapi(e, call)}) 8: rethrow_rapi_execute(res@stmt_lst$ref, duckdb_convert_opts_impl(res@connection@convert_opts, arrow = res@arrow)) 9: duckdb_execute(res) 10: duckdb_result(connection = conn, stmt_lst = stmt_lst, arrow = arrow) 11: .local(conn, statement, ...) 12: dbSendQuery(conn, statement, ...) 13: dbSendQuery(conn, statement, ...) 14: dbSendStatement(conn, statement, ...) 15: dbSendStatement(conn, statement, ...) 16: dbExecute(con, "INSTALL fts; LOAD fts;") 17: dbExecute(con, "INSTALL fts; LOAD fts;") 18: ragnar_store_build_index_v2(store, type) 19: ragnar_store_build_index(store) An irrecoverable exception occurred. R is aborting now ... Flavor: r-devel-linux-x86_64-fedora-clang

Package Rapp

Current CRAN status: OK: 13

Package reticulate

Current CRAN status: NOTE: 2, OK: 11

Version: 1.43.0
Check: installed package size
Result: NOTE installed size is 6.2Mb sub-directories of 1Mb or more: libs 3.7Mb Flavors: r-oldrel-macos-arm64, r-oldrel-macos-x86_64

Package tfdatasets

Current CRAN status: NOTE: 6, OK: 7

Version: 2.17.0
Check: Rd cross-references
Result: NOTE Unknown package ‘tfestimators’ in Rd xrefs Flavors: r-devel-linux-x86_64-debian-clang, r-devel-linux-x86_64-debian-gcc, r-devel-linux-x86_64-fedora-clang, r-devel-linux-x86_64-fedora-gcc, r-patched-linux-x86_64, r-release-linux-x86_64

These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.