Allen Peng
Allen Peng
Our scenario involves two heterogeneous GPU clusters, Cluster A and Cluster B, each consisting of 20 GPU machines (A100-80G). Cluster A is internally equipped with both high-speed IB cards and...
Thanks for releasing the OpenFold code for structure prediction! However, I wonder if it is possible to train the ESMFold model based on OpenFold. To be specific, I want to...
1. LRU 在 set 的时候,如果当前 cache 大于capacity 时,不仅 keys 要删掉不经常使用的key,data 也要对应删除掉key对应的value吧, 像这样 ``` class LRUCache: def __init__(self, capacity): self.capacity = capacity self.data = [] self.kv = {} def get(self, key):...
Thanks for your published code. I encounter one problem when running the code as described in the Usage. My code is as follows ```python import torch from transformers import AutoTokenizer,...