Frank

Results 10 comments of Frank

Important part is that the existing API's will not change. The only thing that will change is how easychart build its screen under the hood. Second vue.js will be bundled...

The location of the input field is currently so generic its hard to predict if a date or normal value is needed. On top of that, the value field can...

> Building on top of @m-abs solution (didn't have to change the `Exec` property - already in quotes), this is for RHEL (Fedora/CentOS) users: > > ```shell > # Ensure...

that's not an absurd thing to have, many pdf servicse have page/file limits for this. You can solve this by slicing your pdfs with an other pdf lib and then...

There is a setting for that [link](https://github.com/VikParuchuri/marker/tree/97ce0512655c48ec383d25a6c886cacf79e0ac35?tab=readme-ov-file#useful-settings)

Inspect the settings in marker/settings.py. You can override any settings with environment variables.

can you give the snippet?

i achieved similar results with pickle: ``` python def load_models(device=None, dtype=None, langs=None, pickle_path='models.pkl'): from marker.models import setup_recognition_model, setup_texify_model, setup_order_model, setup_layout_model, \ setup_detection_model from marker.postprocessors.editor import load_editing_model if os.path.exists(pickle_path): print(f"Loading models...

also here is a revisted code from rainny-day: ``` python import os os.environ[ "PYTORCH_ENABLE_MPS_FALLBACK"] = "1" # For some reason, transformers decided to use .isin for a simple op, which...

in python instead of using the marker load_all_models use this function. [example](https://github.com/VikParuchuri/marker/blob/master/convert_single.py)