File tree 2 files changed +6
-1
lines changed
ragfit/processing/global_steps
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -175,10 +175,12 @@ nav:
175
175
" reference/processing/local_steps/api/openai.md"
176
176
- Context : " reference/processing/local_steps/context.md"
177
177
- Prompt Creation : " reference/processing/local_steps/prompter.md"
178
+ - Inference : " reference/processing/local_steps/inference.md"
178
179
- RAFT : " reference/processing/local_steps/raft.md"
179
180
- Global Steps :
180
181
- Aggregation and merging : " reference/processing/global_steps/aggregation.md"
181
182
- Sampling and Fewshot : " reference/processing/global_steps/sampling.md"
183
+ - Filters : " reference/processing/global_steps/filters.md"
182
184
- Output : " reference/processing/global_steps/output.md"
183
185
- Answer Processors :
184
186
- regex : " reference/processing/answer_processors/regex.md"
Original file line number Diff line number Diff line change 1
- """Module containing filters"""
1
+ """Module containing filters. """
2
2
3
3
4
4
def msmarco_positive_filter (x ):
5
+ """
6
+ Identify the positive passages in MSMARCO dataset.
7
+ """
5
8
return 1 in x ["passages" ]["is_selected" ]
6
9
7
10
You can’t perform that action at this time.
0 commit comments