Do not enable the features based similarity engine by default
This commit is contained in:
@@ -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_.
|
||||
|
||||
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user