guoyande
guoyande
Code file name "clip_txt.py": _MODELS = [ 'RN50::openai', 'RN50::yfcc15m', 'RN50::cc12m', 'RN101::openai', 'RN101::yfcc15m', 'RN50x4::openai', 'ViT-B-32::openai', 'ViT-B-32::laion2b_e16', 'ViT-B-32::laion400m_e31', 'ViT-B-32::laion400m_e32', 'ViT-B-16::openai', 'ViT-B-16::laion400m_e31', 'ViT-B-16::laion400m_e32', # older version name format 'RN50', 'RN101', 'RN50x4', # 'RN50x16',...
### usage mode I use the Block example. In the block example, the original data is written to a file. I write the original data to the storage engine. ###...
Current master branch code compile command > mkdir build && cd build && cmake .. -DCMAKE_INSTALL_PREFIX=/home/guoyande/guoyande/lib/braft -DBRPC_INCLUDE_PATH=/home/guoyande/guoyande/lib/brpc/include -DBRPC_LIB=/home/guoyande/guoyande/lib/brpc/lib64 && make -j8 error > [ 93%] Linking CXX shared library ../output/lib/libbraft.so...
I have a scenario now. Raft receives data and writes the data to the index engine at the same time. The index engine also stores the data persistently. So I...
我的项目使用了brpc,但需要连接etcd做服务发现,brpc中有写好的etcd client代码吗?我使用的功能如下:1、基本功能(put, get等),2、etcd client得心跳监控,3、watch监控节点变化的功能。如果没有etcd client代码,我使用https://github.com/etcd-cpp-apiv3/etcd-cpp-apiv3 这个etcd官方推荐的库可以吗?或者有好的方式推荐一下