Skip to content

Instantly share code, notes, and snippets.

@YimianDai
Last active September 16, 2019 22:21
Show Gist options
  • Save YimianDai/8bde0aa0b8224d6c90530a1f56184c3d to your computer and use it in GitHub Desktop.
Save YimianDai/8bde0aa0b8224d6c90530a1f56184c3d to your computer and use it in GitHub Desktop.
Notes on MXNet / Gluon / Gluon-CV

Numpy 和 MXNet 里的的 NDArray 里面的 axis 是和 MATLAB 一样都是列优先的,所以 axis = 0 是每列每列来,axis = 1 则是每行每行来。

NumPy 支持逻辑索引,而 MXNet 的 NDArray 不支持,因此如果要做逻辑索引,需要将其转成 Numpy 数组。

  1. Data

  2. Model

  3. Loss

  4. Optimization

  5. Evaluation

  6. Miscellaneous

Gluon-CV 源码:

  • gluoncv
    • model_zoo
      • ssd
        • presets.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment