├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── algorithm.go ├── algorithm_test.go ├── categorizer.go ├── categorizer_test.go ├── examples └── example.go ├── gmm.go ├── gmm_test.go ├── sdem.go ├── sdle.go ├── smartsifter.go └── util.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monochromegane/smartsifter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - master 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monochromegane/smartsifter/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monochromegane/smartsifter/HEAD/README.md -------------------------------------------------------------------------------- /algorithm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monochromegane/smartsifter/HEAD/algorithm.go -------------------------------------------------------------------------------- /algorithm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monochromegane/smartsifter/HEAD/algorithm_test.go -------------------------------------------------------------------------------- /categorizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monochromegane/smartsifter/HEAD/categorizer.go -------------------------------------------------------------------------------- /categorizer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monochromegane/smartsifter/HEAD/categorizer_test.go -------------------------------------------------------------------------------- /examples/example.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monochromegane/smartsifter/HEAD/examples/example.go -------------------------------------------------------------------------------- /gmm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monochromegane/smartsifter/HEAD/gmm.go -------------------------------------------------------------------------------- /gmm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monochromegane/smartsifter/HEAD/gmm_test.go -------------------------------------------------------------------------------- /sdem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monochromegane/smartsifter/HEAD/sdem.go -------------------------------------------------------------------------------- /sdle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monochromegane/smartsifter/HEAD/sdle.go -------------------------------------------------------------------------------- /smartsifter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monochromegane/smartsifter/HEAD/smartsifter.go -------------------------------------------------------------------------------- /util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/monochromegane/smartsifter/HEAD/util.go --------------------------------------------------------------------------------