Do not enable the features based similarity engine by default

This commit is contained in:
emeric
2019-09-20 10:44:06 +02:00
parent 1c05fe6049
commit 8bef6e4a95
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -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_.
+1 -1
View File
@@ -94,7 +94,7 @@ class SimilaritySettings : public Wt::Dbo::Dbo<SimilaritySettings>
private:
int _settingsVersion {};
EngineType _engineType {EngineType::Features};
EngineType _engineType {EngineType::Clusters};
Wt::Dbo::collection<Wt::Dbo::ptr<SimilaritySettingsFeature>> _features;
};