From 8bef6e4a953c22776f2bcb2f639102d39750bb69 Mon Sep 17 00:00:00 2001 From: emeric Date: Fri, 20 Sep 2019 10:44:06 +0200 Subject: [PATCH] Do not enable the features based similarity engine by default --- README.md | 1 + src/database/SimilaritySettings.hpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d3912165..a132c700 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ The recommendation engine makes use of [Self-Organizing Maps](https://en.wikiped __Notes__: * constructing the map requires significant computation time on large collections (ex: half an hour for 40k tracks) * audio data is pulled from [AcousticBrainz](https://acousticbrainz.org/). Therefore your music files must contain the [MusicBrainz Identifier](https://musicbrainz.org/doc/MusicBrainz_Identifier) for the recommendation engine to work properly (otherwise, only tag-based recommendations are provided) +* to use the _self-organizing map_ based engine, you have to enable it first in the settings panel. ## Subsonic API The API version implemented is 1.12.0 and has been tested on _Android_ using the official application, _Ultrasonic_ and _DSub_. diff --git a/src/database/SimilaritySettings.hpp b/src/database/SimilaritySettings.hpp index beda6e5f..9e22f36d 100644 --- a/src/database/SimilaritySettings.hpp +++ b/src/database/SimilaritySettings.hpp @@ -94,7 +94,7 @@ class SimilaritySettings : public Wt::Dbo::Dbo private: int _settingsVersion {}; - EngineType _engineType {EngineType::Features}; + EngineType _engineType {EngineType::Clusters}; Wt::Dbo::collection> _features; };