Nothing
test_that("tf_map", {
skip_if_no_tensorflow()
expect_equal(grab(tf_map(as_tensor(1:5), ~.x+1L)), array(2:6))
expect_equal(grab(tf_map(as_tensor(1:5), ~ .+1L)), array(2:6))
fn <- function(a) a+1L
expect_equal(grab(tf_map(as_tensor(1:5), fn )), array(2:6))
expect_equal(grab(tf_map(as_tensor(1:5), "fn")), array(2:6))
})
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.