Skip to content

Commit 99edbf1

Browse files
committed
Change rank coefficients
1 parent 0ecdaac commit 99edbf1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

components/modals/RollupRankModal.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ const metrics = ref([
3838
{
3939
key: "commits_weekly",
4040
name: "Weekly commits",
41-
coefficient: 0.2,
41+
coefficient: 0.1,
4242
type: "Quantitative",
4343
},
4444
{
4545
key: "last_pushed_at",
4646
name: "Last pushed",
47-
coefficient: 0.2,
47+
coefficient: 0.1,
4848
type: "Time-Based",
4949
},
5050
])

services/constants/rollups.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ export const rankCoefficients = {
88
day_blobs_count: 0.2,
99
avg_pfb_size: 0.3,
1010
last_message_time: 0.3,
11-
commits_weekly: 0.2,
12-
last_pushed_at: 0.2,
11+
commits_weekly: 0.1,
12+
last_pushed_at: 0.1,
1313
}
1414

1515
export const rankCategories = [

0 commit comments

Comments
 (0)