Lik Xun Yuan (Lx)
Lik Xun Yuan (Lx)
Curious to know how you get this exact value of `ratio = 300 / 72` and does it work for another pdf?
Hope this helps. ``` def load_args(json_path): data = None with open(json_path) as f: data = json.load(f) return data def get_model(args, device): model, criterion, postprocessors = build_model(args) model.to(device) if args.model_load_path: print(f"loading...
Ran into the same problem and figured out it's because the GPU card isn't supported. For people who wish to try AWQ quantized models, you can check your GPU's compute...