From b54f2170fa10f43fa7c71782cdedd92b20f4d9a7 Mon Sep 17 00:00:00 2001 From: Pavel Vaks <129676672+PavelLinearB@users.noreply.github.com> Date: Sun, 22 Sep 2024 14:27:34 +0300 Subject: [PATCH] ERT explanation --- docs/filter-functions.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/filter-functions.md b/docs/filter-functions.md index dd97ff86..87842106 100644 --- a/docs/filter-functions.md +++ b/docs/filter-functions.md @@ -382,7 +382,7 @@ The output lists the Git provider users, e.g., GitHub users, which are mapped fr !!! note - The `codeExperts` filter function calls gitStream app API with the `repo` context to calculate the estimated review time value. + The `codeExperts` filter function calls gitStream app API with the `repo` context to calculate the experts.
@@ -442,8 +442,8 @@ Encode data into Base64 encoded string. When an encoded string is passed as inpu #### `estimatedReviewTime` -Returns the estimated review time in minutes based on statistical model. -The model uses the amount of additions and deletions statistics for each file type with additional information about the commits and base branch. +Returns the estimated review time in minutes based on an ML model. +The model prediction is computed based on the PR metadata data (e.g. branch name, commits) and mainly by the number of additions and deletions for each type of change (Code, Data, Configuration, etc..) !!! note