Janis Meyer
Janis Meyer
If you replace ```python import deepdoctection as dd d2_detector = dd.D2FrcnnDetector(...) ``` with ```python from deepdoctection.extern.d2detect import D2FrcnnDetector d2_detector = D2FrcnnDetector(...) ``` do you get an error? I don't know...
In build_train_config_overwrite add the argument ‘use_multi_proc=False’. If you are doing evaluation do the same for ‘build_val_config_overwrite’. Fintabnet converts PDFs into images and the default setting uses multiprocessing to speed this...
Hi, may I ask what deepdoctection version you are using? The ```python import deepdoctection as dd print(dd.__version__) ``` `PageParsingService` arguments haven't changed for a long time.
That’s the problem. Please upgrade to the latest release, e.g. 0.29
Can you check if you have both Tensorflow and Tensorpack installed ? ``` import deepdoctection as dd from os import environ print(dd.tensorpack_available()) dd.auto_select_lib_and_device() print(environ.get("USE_TENSORFLOW")) print(environ.get("USE_PYTORCH")) print(environ.get("USE_CUDA")) print(environ.get("USE_TF")) print(environ.get("USE_TORCH")) ``` Anyway,...
You need to install `Tensorpack` as well.
> I guess 'cause of the typing-extensions upgrade, now some other stuff isn't working, should i make separate issue? Yes, please. If it is something else, it's easier to work...
- Can you specify your Tensorflow version ? - Do you have a GPU available ? - This Tensorflow implementation is quite old, e.g. taken from [here](https://github.com/tensorpack/tensorpack/tree/master/examples/FasterRCNN). I adapted the...
I am not sure what you mean with “to make the analyzer work again” ? #322 is required because the TF models are wrapped with Offline-predictors based on Tensorpack. Solving...
This `NameError` generally pops up if something is not installed. In this case I suppose that PyTorch is missing. Check, if ```python import deepdoctection as dd print(dd.pytorch_available()) ``` prints `True`....