Scott McAllister
Scott McAllister
When the access token expires, a user would need to login again, sending a request to the backend's `/login/access-token` route to get a new access token.
@emsi Take a look here first: https://github.com/tiangolo/full-stack-fastapi-postgresql/blob/490c554e23343eec0736b06e59b2108fdd057fdc/%7B%7Bcookiecutter.project_slug%7D%7D/backend/app/app/api/api_v1/endpoints/login.py#L36 Then follow the core.security import to here: https://github.com/tiangolo/full-stack-fastapi-postgresql/blob/490c554e23343eec0736b06e59b2108fdd057fdc/%7B%7Bcookiecutter.project_slug%7D%7D/backend/app/app/core/security.py#L15 As you can see there, the expiration is either pulled in from the app settings...
For me this occurs during tests when you are hitting a database that does not yet have the superuser created in it. Normally, that first superuser is created by a...
Hi @lisaam. Thanks for the speedy follow up! I was making the requests overnight starting around 10pm EST. The errors responses started very late (~3am) and persisted for nearly every...
> I think you could help us most by running it now during the day. I'll give it a go tomorrow and report back.
@hardik-ajmani I'm in nearly the same boat as you, trying to convert the recognizer to ONNX using both [keras-onnx](https://github.com/onnx/keras-onnx) and [tf2onnx](https://github.com/onnx/tensorflow-onnx). My system info: - Python 3.7.4 - Windows 10...
@nickshawn You're probably trying to apply augmentations that expect the input image to have 3 color channels. If you have a gray-scale image as your input - which it seems...
I'm also stuck scratching my head on this. Has anyone found a solution that doesn't involve creating a new tag each and every time?
> Actually, I found another fots implementaiton: https://github.com/Vipermdl/OCR_detection_IC15.git. And you can find the pretrained model in its "issues" page. The Baidu link for that pre-trained model isnt working for lots...
I'm also experiencing this issue. Windows 10 (1809) torch 1.4.0 cuda 10.1 Here's how to reproduce. First, I adjusted the model to support ONNX convesion by changing the following in...