https://github.com/yahoojapan/NGT

sort by:
Revision Author Date Message Commit Date
53730ae v1.6.0 add ONNG creation mode to the ngt command 01 February 2019, 04:36:18 UTC
9929c12 v1.5.1 pypi is available 17 January 2019, 07:19:03 UTC
bc5a163 v1.5.0 release NGTQ (NGT with Quantization) 13 December 2018, 05:17:12 UTC
79ba11c v1.4.5 deal with invalid zero vectors in queries for consine similarity. 20 October 2018, 01:36:44 UTC
355754a v1.4.4 deal with too long build time and invalid objects. 24 September 2018, 08:42:03 UTC
788fd75 fix minor bugs 04 September 2018, 06:58:30 UTC
9acca3d v4.1.2 add READMEs and fix a few minor bugs. 17 August 2018, 04:28:42 UTC
6e9adfa update the version 09 August 2018, 02:34:00 UTC
efd61e8 fix a bug of object dimensions 09 August 2018, 01:48:17 UTC
16d5b72 add sample.py 08 August 2018, 01:03:57 UTC
7594214 Update README.md 08 August 2018, 00:35:38 UTC
49cd11e update python README.md 07 August 2018, 23:48:13 UTC
7a94e60 v1.4.0 add ONNG 07 August 2018, 01:14:15 UTC
4306d40 fixed python sample code 14 June 2018, 13:54:52 UTC
1f7c44d Merge pull request #18 from supership-jp/python_cosine enable cosine distance for python binding 13 June 2018, 12:06:44 UTC
3ae54aa Merge pull request #17 from supership-jp/load_index_example example to load index with python 13 June 2018, 12:04:31 UTC
abeb3fc Merge pull request #16 from supership-jp/pip-10.0 ご対応ありがとうございます!マージいたします。 13 June 2018, 12:01:02 UTC
3d96092 enable cosine distance for python binding 29 May 2018, 04:45:12 UTC
4f5acb7 example to load index with python 29 May 2018, 04:31:29 UTC
65a8405 support pip==10.0 29 May 2018, 04:22:18 UTC
61ace19 v1.3.3 minor updates 11 May 2018, 04:36:37 UTC
eee2147 Merge pull request #15 from kiksan123/kik fix python usage 16 April 2018, 02:38:12 UTC
f0b339f fix python usage 02 April 2018, 16:36:53 UTC
472ea0c v1.3.2 small updates 22 February 2018, 00:47:14 UTC
dde1b77 Merge pull request #10 from yahoojapan/fix_readme_typo fix typo in README. 21 February 2018, 21:49:26 UTC
2589932 fix typo in README. 21 February 2018, 12:51:51 UTC
2ea08d6 v1.3.1. fix a compile error for Mac OS. 01 February 2018, 06:45:50 UTC
6617e44 v1.3.0 release python NGT. 26 January 2018, 06:33:45 UTC
aa509ce v1.2.1. update C API and fix some small bugs. 14 November 2017, 02:35:51 UTC
ef704c1 v1.2.0 add C API. 04 July 2017, 23:15:06 UTC
2949b80 v1.1.0 speed up the distance computations by using AVX and modify trivial things. 13 April 2017, 04:51:45 UTC
8a16a53 Merge pull request #7 from kou1okada/master Cygwin support and some cleanups of `CMakeLists.txt`. 06 December 2016, 07:27:15 UTC
c51fba1 Add a comment for POSIX environment. 29 November 2016, 15:06:30 UTC
3fe6748 Oops, CMAKE_CXX_STANDARD can not be used on CMake before version 3.1. 29 November 2016, 11:23:35 UTC
413b1a4 Use default compile flags for DEBUG and RELEASE. CMake already set default compiler flags as below: * CMAKE_CXX_FLAGS_DEBUG : -g * CMAKE_CXX_FLAGS_RELEASE : -O3 -DNDEBUG 29 November 2016, 10:49:45 UTC
84140f8 Set the option for the C++11 to independent from compiler type. 29 November 2016, 10:47:13 UTC
56cb608 Make an option to enable `-Wall` flag. 29 November 2016, 10:20:21 UTC
1691552 DESTINATION of install library should be `lib` instead of `lib<qual>`. The 32-bit architecture has no way to execute binary under the `lib64`. Of course, the 32-bit binary must not be installed under the `lib64`. On the other hand, the 64-bit binary, it is enough to install it into the 'lib'. Maybe the `lib64` should be just a symbolic link to the `lib`. Maybe the 64-bit architecture should have meaningless to use the `lib64`. 29 November 2016, 09:39:36 UTC
836fc89 The home directory of user "y" is meaningless for most of peoples. 29 November 2016, 09:20:11 UTC
9db4a41 Bugfix: install library TARGETS need DESTINATIONs. See * CMake 2.8.0 Documentation # Commands:[install](https://cmake.org/cmake/help/v2.8.0/cmake.html#command:install). You can find descriptions as below: ``` For non-DLL platforms shared libraries are treated as LIBRARY targets, except that those marked with the FRAMEWORK property are treated as FRAMEWORK targets on OS X. For DLL platforms the DLL part of a shared library is treated as a RUNTIME target and the corresponding import library is treated as an ARCHIVE target. All Windows-based systems including Cygwin are DLL platforms. ``` Because of above reason, in cygwin environment, cmake failes as below: ... CMake Error at lib/NGT/CMakeLists.txt:20 (install): install Library TARGETS given no DESTINATION! Because, in cygwin environment, the shared library will be installed into RUNTIME DESTINATION. So, install library TARGETS also need RUNTIME DESTINATION. 29 November 2016, 08:27:44 UTC
c596ec9 add the LICENSE file. 24 November 2016, 02:41:51 UTC
985ffad v1.0.0 to change the license. 21 November 2016, 23:56:03 UTC
cac4429 update README.md for the ngt command. 06 October 2016, 04:17:41 UTC
c71cd1d add README for the command ngt. 06 October 2016, 03:54:37 UTC
ae71092 merge from the internal NGT v0.5. 06 October 2016, 02:43:58 UTC
a80648f import 06 October 2016, 02:43:58 UTC
1ed41c6 Merge pull request #3 from yahoojapan/fixed_virtual_destruct added virtual destruct for ObjectSpace.h 05 October 2016, 04:41:21 UTC
5f5a22e export from internal NGT to release v0.4.2. 05 October 2016, 02:32:08 UTC
46a23d1 added virtual destruct for ObjectSpace.h 03 October 2016, 03:44:51 UTC
c4b9121 Merge pull request #2 from yahoojapan/fixed_mmap_members 30 September 2016, 08:57:02 UTC
e9dc711 delete old funcs 30 September 2016, 08:14:07 UTC
3b4915e fixed mmap_manager_files 30 September 2016, 06:07:40 UTC
7e6bb89 Merge pull request #1 from yahoojapan/code_fix_160926 fixed const member 26 September 2016, 23:12:57 UTC
5616536 fixed initialize code 26 September 2016, 10:45:33 UTC
cc726d6 fixed const member 26 September 2016, 04:52:15 UTC
6354377 v0.4.0 15 September 2016, 02:58:56 UTC
back to top