Rino Ajeti
Rino Ajeti
 ```@fireo.transactional def put_on_transaction_endpoint_generic(transaction=None, model_dict=None, entity_name=None, key=None, *args, **kwargs): transaction = fireo.transaction() entities = eval(entity_name).collection.get(key) if not entities and model_dict: for attr in model_dict.keys(): if not attr in ['id', 'key',...
Hi, @AxeemHaider Are update and save methods reserved keywords? I dont see them here: https://octabyte.io/FireO/reserved-words/ I figure it out where is the problem of this bug: USE CASE 1 -...
Hi @SaadAttieh , I tried this way and it worked for me, see if it is what you want: ``` class UserAddress(Model): street = TextField() city = TextField() ... class...
> we've noticed several reports, e.g. : #11079, but has not been able to reproduce this issue. I tried to downgrade those libraries pandas, numpy, PyMuPDF, opencv-contrib-python, opencv-python, paddlepaddle, paddlepaddle....
@jzhang533 Since you cannot reproduce the issue. Can you share pls the entire requirement.txt on what worked for you on mac using: "pip freeze > requirements.txt" so then I can...
@LmYjQ What version of PyMuPDF do you have? I found out where my problem is but I don't know yet how to fix it.
My problem is that I cannot install PyMuPDF version 1.20.2 as @jzhang533 suggested on his req: pip install --verbose PyMuPDF==1.20.2 > pip_install_log.txt 2>&1 My full logs are here: [pip_install_log.txt](https://github.com/PaddlePaddle/PaddleOCR/files/14558668/pip_install_log.txt) More...
NEW UPDATES: I did debug the error on this package paddleocr==2.7.0.3 The error doesn't seems to be on PyMuPDF==1.20.2 bcs i dissabled the import of this library completely on debug...
CONFIRMED: I can confirm that paddlepaddle does not work on apple M3 pro WHAT I TRIED: All possibilities of following python interpreter version and paddle package version: paddlepaddle==2.4.2 paddlepaddle==2.5.0 paddlepaddle==2.6.0...
I found a temporary fix while debugging: 1. go to file: "env/lib/python3.12/site-packages/mmcv/utils/ext_loader.py" 2. change line 13 - 17 with this code: From: ``` ext = importlib.import_module('mmcv.' + name) for fun...