Load LightGBM library.
()
| 21 | |
| 22 | |
| 23 | def _load_lib(): |
| 24 | """Load LightGBM library.""" |
| 25 | lib_path = find_lib_path() |
| 26 | if len(lib_path) == 0: |
| 27 | return None |
| 28 | lib = ctypes.cdll.LoadLibrary(lib_path[0]) |
| 29 | lib.LGBM_GetLastError.restype = ctypes.c_char_p |
| 30 | return lib |
| 31 | |
| 32 | |
| 33 | _LIB = _load_lib() |