├── .gitignore ├── CRFRNN.py ├── README.md ├── _permutohedral.cp35-win_amd64.pyd ├── main_example.py ├── permutohedral.py ├── src ├── numpy.i ├── permutohedral.cpp ├── permutohedral.h ├── permutohedral.i └── setup.py └── tabby_cat.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangy1969/CRF-RNN_Tensorflow/HEAD/.gitignore -------------------------------------------------------------------------------- /CRFRNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangy1969/CRF-RNN_Tensorflow/HEAD/CRFRNN.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangy1969/CRF-RNN_Tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /_permutohedral.cp35-win_amd64.pyd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangy1969/CRF-RNN_Tensorflow/HEAD/_permutohedral.cp35-win_amd64.pyd -------------------------------------------------------------------------------- /main_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangy1969/CRF-RNN_Tensorflow/HEAD/main_example.py -------------------------------------------------------------------------------- /permutohedral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangy1969/CRF-RNN_Tensorflow/HEAD/permutohedral.py -------------------------------------------------------------------------------- /src/numpy.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangy1969/CRF-RNN_Tensorflow/HEAD/src/numpy.i -------------------------------------------------------------------------------- /src/permutohedral.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangy1969/CRF-RNN_Tensorflow/HEAD/src/permutohedral.cpp -------------------------------------------------------------------------------- /src/permutohedral.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangy1969/CRF-RNN_Tensorflow/HEAD/src/permutohedral.h -------------------------------------------------------------------------------- /src/permutohedral.i: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangy1969/CRF-RNN_Tensorflow/HEAD/src/permutohedral.i -------------------------------------------------------------------------------- /src/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangy1969/CRF-RNN_Tensorflow/HEAD/src/setup.py -------------------------------------------------------------------------------- /tabby_cat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/liangy1969/CRF-RNN_Tensorflow/HEAD/tabby_cat.png --------------------------------------------------------------------------------