Nothing
test_that("load a file", {
dict <- safe_load_file(test_path("safetensors/hello.safetensors"))
expect_equal(names(dict), c("hello", "world"))
expect_equal(dict$hello$shape, c(10, 10))
expect_true(all(as.numeric(dict$hello) == 1))
expect_equal(dict$world$shape, c(5, 10))
expect_true(all(as.numeric(dict$world) == 0))
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.