models
Athospd opened this issue · 1 comments
Athospd commented
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()
- Conformer
- ConvTasNet
- DeepSpeech
- Emformer
- HDemucs
- HuBERTPretrainModel
- RNNT
- RNNTBeamSearch
- Tacotron2
- Wav2Letter
- Wav2Vec2Model
- WaveRNN
jwijffels commented
- Wav2Vec2Model maybe?