mlverse / torchaudio

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

datasets #17

Open Athospd opened 3 years ago

Athospd commented 3 years ago
Sys.time()
[1] "2020-11-02 01:12:45 -03"

library(magrittr)
url <- "https://pytorch.org/audio/datasets.html"
httr::GET(url) %>% 
    httr::content() %>% 
    xml2::xml_find_all('//*[@id="datasets"]/ul/li') %>%
    xml2::xml_text() %>%
    stringr::str_c("- [ ] ", ., "\n") %>%
    t() %>%
    cat()