mlverse / torchaudio

R interface to torchaudio
https://mlverse.github.io/torchaudio/
Other
26 stars 6 forks source link

models #19

Open Athospd opened 3 years ago

Athospd commented 3 years ago
Sys.time()
[1] "2023-03-25 14:21:28 GMT"

library(magrittr)
url <- "https://pytorch.org/audio/stable/models.html"

httr::GET(url) %>% 
  httr::content() %>% 
  rvest::html_element("table") %>% 
  rvest::html_table() %>%
  dplyr::mutate(
    model = X1 %>% stringr::str_c("- [ ] ", .)
  ) %>%
  dplyr::pull(model) %>%
  paste0(collapse = "\n") %>%
  cat()
jwijffels commented 2 years ago