240 发简信
IP属地:天津
  • c++中的字符串分割函数

    ''' char * strtok ( char * str, const char * delimiters ); ''' 做华为笔试的时候,...

  • 通道注意力模块为什么用两层1 * 1的卷积

    在通道注意力模块中,先使用1*1的卷积进行通道下采样,再进行通道下采样,比使用一层1*1卷积层要好。其原因是(1) 增加非线性,更好拟合通道复杂...

  • const_reference top() const何时调用

    在读stl源码时,看到像reference top()和const_reference top() const等函数,一直在疑惑编译器怎么在调用...