tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit e48c01df9ef0e7dfb19c8bc3d68f1846fd19a7b7
parent cfb40063a45adc74a918bfe9b08d043d184fe423
Author: Vasish Baungally <vbaungally@mozilla.com>
Date:   Thu, 11 Dec 2025 15:21:01 +0000

Bug 2005242 - Switch Default AI Tab Grouping Method to Logistic Regression. r=tarek

This patch updates the default tab suggest method to logistic regression.
This new approach adds domain handling and improves upon the existing nearest
neighbor approach by ~20% F1 on our evaluation data. We should see an increase
in suggestions and approval rate with this update (in theory).

Differential Revision: https://phabricator.services.mozilla.com/D275804

Diffstat:
Mbrowser/app/profile/firefox.js | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js @@ -1067,7 +1067,7 @@ pref("browser.tabs.notes.enabled", false); #endif // KMEANS_WITH_ANCHOR or NEAREST_NEIGHBOR or LOGISTIC_REGRESSION -pref("browser.tabs.groups.smart.suggestOtherTabsMethod", "NEAREST_NEIGHBOR"); +pref("browser.tabs.groups.smart.suggestOtherTabsMethod", "LOGISTIC_REGRESSION"); pref("browser.tabs.groups.smart.topicModelRevision", "latest"); pref("browser.tabs.groups.smart.embeddingModelRevision", "latest"); // value should be <= 1000 to be correctly converted (275 -> 0.275)