farazk86
farazk86
**Describe the bug** When a ``generator`` decoder is used then the predicted output contains the ```` keywords which can be easily removed. But when a ``tagger`` decoder is used, a...
Hi, I cannot achieve the speed demonstrated in the gif: https://github.com/huggingface/tflite-android-transformers/tree/master/gpt2 It takes about 7 seconds to generate a single word on my build. I am even using gpuDelegate to...
Hi, I'm using layout parser to perform OCR on a research paper, but on almost every page of the pdf the text boxes are not properly aligned. For example I...
Hi, I'm following your colab example to fine tune a model: https://colab.research.google.com/drive/15qBZx5y9rdaQSyWpsreMDnTiZ5IlN0zD?usp=sharing It works fine on colab, but I'm training this on my local machine and I get the following...
on line ``39``, ```python l.append(v.item()) ``` gives the error: > AttributeError: 'float' object has no attribute 'item' changing to ``l.append(v)`` fixes this.
Following the discussion from this [forum post](https://forum.defold.com/t/discrepancy-in-documentation-regarding-non-consumable-products-in-google-play/80877/6), reporting the issue here. The following needs to be added to the game.project file for the non-consumable products to work correctly in Google...
I added code from your "dragtoscroll" example to drag the camera: ```lua local camera = require "orthographic.camera" local CAMERA_ID = hash("/camera") function init(self) msg.post(".", "acquire_input_focus") end function on_input(self, action_id, action)...