Jonathan Morales Vélez
Jonathan Morales Vélez
I also facing the same issue. I cloned the repository and ran `docker-compose up -d` and then tried to `curl localhost`. For few seconds I got `curl: (52) Empty reply...
I created a [PR](https://github.com/idealo/image-super-resolution/pull/191) to address those issues
It took me a while to find how to download the pre-trained model that @amughrabi mentions I found [this comment](https://github.com/idealo/image-super-resolution/issues/129#issuecomment-649407306) where a model is downloaded from s3. I found the...
I created a [PR](https://github.com/idealo/image-super-resolution/pull/191) to address those issues
Use the S3 urls instead. Take a look at this [PR](https://github.com/idealo/image-super-resolution/pull/191)
changing the argument to mount the `config.yml` worked for me. From `-v $(pwd)/isr/config.yml:/home/isr/config.yml` To `-v $(pwd)/config.yml:/home/isr/config.yml` So I point to the `config.yml` directly as there's not such file as `isr/config.yml`....
Yes. Thanks for asking. I described my findings [here](https://github.com/idealo/image-super-resolution/issues/163#issuecomment-812038252)
I created a [PR](https://github.com/idealo/image-super-resolution/pull/191) to address those issues
Thank you! Downgrading from `0.12.7` to `0.12.6` worked for me as well. I am able to build and deploy now
Same for me. I run my app as shown below. ```bash node --require source-map-support/register-hook-require --require dd-trace/init ./dist/src/index.js ``` Additionally, I made the source maps inline in the `tsconfig.json`: ```json "sourceMap":...