Skip to content

Instantly share code, notes, and snippets.

View kmaehashi's full-sized avatar
📛

Kenichi Maehashi kmaehashi

📛
View GitHub Profile
# -*- coding: utf-8 -*-
import cupy
import threading
import random
import sys
# enable memory pool
cupy.cuda.memory.set_allocator(cupy.cuda.memory.MemoryPool().malloc)
@kmaehashi
kmaehashi / jubakit.rst
Last active April 20, 2017 03:39
jubatus 1.0.3 release note candidate

Release 0.5.0 (2017-04-24)

  • New Features
    • Add Regression service (#82, #87)
    • Add --replace-config / --replace-version options to jubamodel command (#76, #77)
  • Improvements
    • Improve color of version number in docs (#80, #81)
@kmaehashi
kmaehashi / jubakit.rst
Last active February 22, 2017 07:08
jubatus 1.0.2 changelog candidate

Release 0.4.2 (2017-02-27)

  • New Features
    • Add scikit-learn wrapper (#73)
  • Bug Fixes
    • Fix dead links in documents (#74)
@kmaehashi
kmaehashi / README.md
Created February 19, 2017 08:43
アニメソングの歌詞ならここにおまかせ?データセット
@kmaehashi
kmaehashi / convert_model.py
Created January 18, 2017 11:25
Convert NN-based classifier jubatus model into NN jubatus model.
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division, print_function, unicode_literals
import sys
import json
from cStringIO import StringIO
import msgpack
@kmaehashi
kmaehashi / sbstat-output.json
Last active March 17, 2017 07:37
Output of `sbstat --json`
{
"runtime_status": {
"hostname": "localhost",
"user": "kenichi",
"gomaxprocs": 4,
"goversion": "go1.6.2",
"goroot": "/home/kenichi/local/go",
"pid": 18742,
"num_cpu": 4,
"working_directory": "/home/kenichi/Development/sensorbee-iris-jubatus",
@kmaehashi
kmaehashi / jubakit.rst
Last active December 26, 2016 04:09
Jubatus 1.0.1 release note candidate

Release 0.4.1 (2016-12-26)

  • New Features
    • Support Embedded Jubatus (#70)
  • Improvements
    • Implement __repr__ method to base classes (#42, #71)
    • Add jubakit.model.JubaModel example (#68)
    • Add jubakit.model.JubaDump example (#69, #71)
@kmaehashi
kmaehashi / jubakit.rst
Last active October 31, 2016 04:41
Jubatus 1.0 release note candidate

Release 0.4.0 (2016-10-31)

  • New Features
    • Add Recommender service (#52, #58)
    • Add model file manipulation tools (#4, #62)
    • Add ConcatLoader (#61)
  • Improvements
    • Support Jubatus 1.0 (#66)
__all__ = [
'ConfigFile',
'Anomaly',
'Bandit',
'Burst',
'Classifier',
'Clustering',
'NearestNeighbor',
'Recommender',
'Regression',
@kmaehashi
kmaehashi / ml.txt
Created August 29, 2016 09:20
ml_ann candidate jubatus-0.9.4
Hi Jubatus guys,
We are glad to announce that Jubatus 0.9.4 is now available.
In this release we added ``ignore_orthogonal`` option to inverted_index_euclid algorithm of Recommender. When this option is enabled, distance between feature vectors that does not have any same key will not be included in the result. By default this option is disabled (i.e., behaves the same way as the previous versions).
We also added shell (REPL) feature to query Jubatus server interactively. To use the shell feature (called ``jubash`` command), just install jubakit.
Speaking of jubakit, we published documents of jubakit architecture and API. It's available on the official website <http://jubat.us/en/jubakit/>.
The full changelogs are as follows: