Skip to content

Commit 1e64a70

Browse files
Merge pull request #310 from sourcerer-io/develop
fix: raise rails threshold (#309)
2 parents 9717021 + d88491d commit 1e64a70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/app/extractors/ClassifierManager.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class ClassifierManager {
4949
val prob = prediction[cache[libId]!!.libraries.indexOf(libId)]
5050
// Libraries with no imports.
5151
if (libId == "rb.rails") {
52-
prob > 0.8
52+
prob > 0.91
5353
} else {
5454
prob > 0.5
5555
}

0 commit comments

Comments
 (0)