DeepAR in Julia

Does anybody know if there is a Julia package for DeepAR from Amazon?
Do I just have to make do by calling its Python package?

3 Likes

while I’m not aware of any DeepAR implementations in Julia, its not clear to me if their models are open sourced, but they link their papers which is based on MobileNet, so it is definitely doable in Flux. If you’re instead interested in calling their SDK through a REST/ C FFI utility similar to their open source (and equivalently python) projects, that should be straightforward via HTTP.jl.

2 Likes

I’ve implemented a basic version of DeepAR in this repository: GitHub - josemanuel22/DeepAR.jl: Julia DeepAR implementation

Your contributions are welcome!