Paper Reading VCP CLIP
VCP-CLIP VCP-CLIP: A visual context prompting model for zero-shot anomaly segmentation https://github.com/xiaozhen228/VCP-CLIP Main Contributions pre-vcp, 用visual context生成text prompt中的[...
VCP-CLIP VCP-CLIP: A visual context prompting model for zero-shot anomaly segmentation https://github.com/xiaozhen228/VCP-CLIP Main Contributions pre-vcp, 用visual context生成text prompt中的[...
Set and MultiSet based on gnu 2.9 底层用红黑树实现(RB Tree) 不同点在于使用rb tree::insert_unique/rb tree::insert_equal, 其他相同 Set Container /* typedef _Key key_type; typedef _Compare key_comp...
Map and MultiMap based on gnu 2.9 底层用红黑树实现(RB Tree) 不同点在于使用rb tree::insert_unique/rb tree::insert_equal 并且multimap不支持[]访问元素, 其他相同 Map Container /* typedef Key key_type; typedef ...
Deque based on gnu 2.9 双向队列 对外表现为连续随机访问, 内部实现为分段连续, 由(map + buffer)组成 Iterator /* typedef __deque_iterator<T, T&, T*, BufSiz> iterator; typedef __deque_itera...
Stack based on gnu 2.9 底层支撑的Sequence可以为deque, list, vector Achieve /* typedef typename Sequence::value_type value_type; typedef typename Sequence::size_type size_type; typedef t...
Queue based on gnu 2.9 底层支撑的Sequence可以为deque, list Achieve queue /* typedef typename Sequence::value_type value_type; typedef typename Sequence::size_type size_type; typedef typ...
CLIP Learning Transferable Visual Models From Natural Language Supervision https://github.com/OpenAI/CLIP Main Contributions Contrastive pre-training Zero-shot prediction Pseudocode...
Vector based on gnu 2.9 Container vector /* typedef T value_type; typedef value_type* pointer; typedef const value_type* const_pointer; typedef value_type* iterator; typedef const value_type*...
Array based on gnu 4.9 Container array traits template<typename _Tp, std::size_t _Nm> struct __array_traits { // C标准的数组 typedef _Tp _Type[_Nm]; // 给一个数组和要查找的位置, 返回数组在该位置的引用 ...
List based on gnu 2.9 双向循环链表 Container list node template <class T> struct __list_node { typedef void* void_pointer; void_pointer next; void_pointer prev; T data; }; list /...