Codes for kNN-based Jonker-Volgenant algorithm described in our paper "OoDAnalyzer: Interactive Analysis of Out-of-Distribution Samples" (TVCG 2020).
pip3 install fastlapjv
Tested on Windows, and Linux with python 3.6.
Run this example to compare our method and the eaxct JV algorithm. Runing this example requires the installation of scipy and lapjv.
Note: the latest lapjv uses some new features of python 3.8 or higher, and fastlapjv does not support python 3.8 or higher now. If you want to compare fastlapjv and lapjv, please use version 1.3.1 of lapjv, which support python 3.6.
python test/test.py
This code is implemented based on the published code of lapjv, and it is our pleasure to acknowledge their contributions.
If you use this code for your research, please consider citing:
@article{chen2020oodanalyzer,
title = {{OoDAnalyzer}: Interactive Analysis of Out-of-Distribution Samples},
author = {Chen, Changjian and Yuan, Jun and Lu, Yafeng and Liu, Yang and Yuan, Songtao and Liu, Shixia},
journal = {IEEE Transactions on Visualization and Computer Graphics (accepted)},
year = {2020}
}
If you have any problem about our code, feel free to contact
or describe your problem in Issues.