itouchzh

Results 3 comments of itouchzh

I encountered the same error, changing to `c++14` does not solve the problem. Do you have other solutions, please ![image](https://github.com/RenYurui/Global-Flow-Local-Attention/assets/86830424/7a62038e-3343-4350-8baa-ea3c0881846d)

you can test add a parameter for the model? example this images, I can solve this problem in this way ![image](https://user-images.githubusercontent.com/86830424/213896514-1ebabc20-9eb0-4d1f-ab41-926ddc81c468.png)

```js class LinkNode { constructor(key, value) { this.key = key this.value = value this.prev = null this.next = null } } class LRUCache { constructor(capacity) { this.cache = new Map()...