[PATCH] D49780: [clangd] Use a sigmoid style function for #usages boost in symbol quality.
Eric Liu via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Wed Jul 25 02:48:33 PDT 2018
ioeric updated this revision to Diff 157207.
ioeric marked 2 inline comments as done.
ioeric added a comment.
Addressed review comments.
Repository:
rCTE Clang Tools Extra
https://reviews.llvm.org/D49780
Files:
clangd/Quality.cpp
unittests/clangd/CodeCompleteTests.cpp
Index: unittests/clangd/CodeCompleteTests.cpp
===================================================================
--- unittests/clangd/CodeCompleteTests.cpp
+++ unittests/clangd/CodeCompleteTests.cpp
@@ -476,11 +476,12 @@
}
TEST(CompletionTest, ReferencesAffectRanking) {
- auto Results = completions("int main() { abs^ }", {ns("absl"), func("abs")});
- EXPECT_THAT(Results.Completions, HasSubsequence(Named("abs"), Named("absl")));
+ auto Results = completions("int main() { abs^ }", {ns("absl"), func("absb")});
+ EXPECT_THAT(Results.Completions, HasSubsequence(Named("absb"), Named("absl")));
Results = completions("int main() { abs^ }",
- {withReferences(10000, ns("absl")), func("abs")});
- EXPECT_THAT(Results.Completions, HasSubsequence(Named("absl"), Named("abs")));
+ {withReferences(10000, ns("absl")), func("absb")});
+ EXPECT_THAT(Results.Completions,
+ HasSubsequence(Named("absl"), Named("absb")));
}
TEST(CompletionTest, GlobalQualified) {
Index: clangd/Quality.cpp
===================================================================
--- clangd/Quality.cpp
+++ clangd/Quality.cpp
@@ -190,8 +190,18 @@
// This avoids a sharp gradient for tail symbols, and also neatly avoids the
// question of whether 0 references means a bad symbol or missing data.
- if (References >= 10)
- Score *= std::log10(References);
+ if (References >= 10) {
+ // Use a sigmoid style boosting function, which flats out better for large
+ // numbers (e.g. 2.58 for 1M refererences).
+ // The following boosting function is equivalent to:
+ // m = 0.06
+ // f = 12.0
+ // boost = f * sigmoid(m * std::log(References)) - 0.5 * f + 0.59
+ // Sample data points: (10, 1.00), (100, 1.41), (1000, 1.82),
+ // (10K, 2.21), (100K, 2.58), (1M, 2.94)
+ float s = std::pow(References, -0.06);
+ Score *= 6.0 * (1 - s) / (1 + s) + 0.59;
+ }
if (Deprecated)
Score *= 0.1f;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D49780.157207.patch
Type: text/x-patch
Size: 2006 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20180725/e1c53161/attachment.bin>
More information about the cfe-commits
mailing list