|
1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- # ncnn
- python wrapper of ncnn with [pybind11](https://github.com/pybind/pybind11), only support python3.x now.
-
- ## Prerequisites
-
- **On Unix (Linux, OS X)**
-
- * A compiler with C++11 support
- * CMake >= 3.4
-
- **On Windows**
-
- * Visual Studio 2015 or higher
- * CMake >= 3.4
-
- ## Build
- 1. clone ncnn and init submodule.
- ```bash
- cd /pathto/ncnn
- git submodule init && git submodule update
- ```
- 2. build.
- ```bash
- mkdir build
- cd build
- cmake -DNCNN_BUILD_PYTHON=ON ..
- make
- ```
-
- ## Install
- ```bash
- cd /pathto/ncnn/python
- pip install .
- ```
-
- if you use conda or miniconda, you can also install as following:
- ```bash
- cd /pathto/ncnn/python
- python3 setup.py install
- ```
-
- ## Tests
- **test**
- ```bash
- cd /pathto/ncnn/python
- python3 tests/test.py
- ```
-
- **benchmark**
-
- ```bash
- cd /pathto/ncnn/python
- python3 tests/benchmark.py
- ```
-
- ## Numpy
- **ncnn.Mat->numpy.array, with no memory copy**
-
- ```bash
- mat = ncnn.Mat(...)
- mat_np = np.array(mat)
- ```
-
- **numpy.array->ncnn.Mat, with no memory copy**
- ```bash
- mat_np = np.array(...)
- mat = ncnn.Mat(mat_np)
- ```
-
- # Model Zoo
- install requirements
- ```bash
- pip install -U requirements.txt
- ```
- then you can import ncnn.model_zoo and get model list as follow:
- ```bash
- import ncnn
- import ncnn.model_zoo as model_zoo
-
- print(model_zoo.get_model_list())
- ```
- all model in model zoo has example in ncnn/python/examples folder
-
- # Custom Layer
-
- custom layer demo is in ncnn/python/ncnn/model_zoo/yolov5.py:23
|