- Improvements
- anomaly: imporve
get_statusto return additional metrics (#1194, #1203) - Remove workaround code in RPM package builder (#1195, #1202)
- anomaly: imporve
- Bug fixes
- Fix output of ORB plugin (#1196, #1201)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding: utf-8 -*- | |
| import cupy | |
| import threading | |
| import random | |
| import sys | |
| # enable memory pool | |
| cupy.cuda.memory.set_allocator(cupy.cuda.memory.MemoryPool().malloc) |
「アニメソングの歌詞ならここにおまかせ?」(2017年1月31日に閉鎖) で公開されていた楽曲データの一覧を収集し、CSV 形式に変換したものです。
15,932
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "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", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| __all__ = [ | |
| 'ConfigFile', | |
| 'Anomaly', | |
| 'Bandit', | |
| 'Burst', | |
| 'Classifier', | |
| 'Clustering', | |
| 'NearestNeighbor', | |
| 'Recommender', | |
| 'Regression', |