Davron Sherbaev

Results 22 comments of Davron Sherbaev

Hello every one, what if we simply specify `decoder_input_ids` as an argument to generate call? ``` generated_ids = self.model.generate( inputs=input_features, decoder_input_ids=torch.tensor( [decoder_ids], dtype=torch.long ), ).cpu() ``` As I understood it...

make sure you add setupProxy.js file in your src folder

the contents should be: ``` module.exports = (app) => { app.use((_, res, next) => { res.setHeader('Cross-Origin-Opener-Policy', 'same-origin'); res.setHeader('Cross-Origin-Embedder-Policy', 'require-corp'); next(); }); }; ```

we are experiencing similar performance issues. Checkboxes, Tags, Tooltips are 3-5 times slower than v4

same error. In my case the .get() is gone in infinite loop because of this. `chord(tasks, chain(result_effect, post_effect))` ```log [2024-05-28 08:06:08,744: ERROR/MainProcess] Chord '728c02da-f8e1-4080-890c-3e02d1c4fcd5' raised: ChordError('Dependency f8c21096-da06-4ff5-bbc8-0c56444d26d6 raised WorkerException("Exception(\'Random exception\')",...

Oh sorry, it seems like it does not work on Windows 11, but its in fact implemented

I was able to resolve the error by upgrading to v3 version (initially we used v2) of the action and downgrading to node v14 with setup node action

```diff --git a/node_modules/rc-tree/es/TreeNode.js b/node_modules/rc-tree/es/TreeNode.js index c63e2e9..b41d6c0 100644 --- a/node_modules/rc-tree/es/TreeNode.js +++ b/node_modules/rc-tree/es/TreeNode.js @@ -352,7 +352,7 @@ var InternalTreeNode = /*#__PURE__*/function (_React$Component) { onContextMenu: _this.onContextMenu, onClick: _this.onSelectorClick, onDoubleClick: _this.onSelectorDoubleClick, - onDragStart: mergedDraggable...

Found this [PR](https://github.com/react-component/tree/pull/166), which creates this bug

python3.9 installs 2.x.x version correctly. Starting from 3.10 pip refuses to find cyhunspell 2.0.2 I found a fix: ```sh apt install -y autoconf libtool gettext autopoint pip install https://github.com/MSeal/cython_hunspell/archive/refs/tags/2.0.3.tar.gz ```