This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Improved end-to-end pipeline for hard-negative mining, Sentence-Transformers training, | |
| and evaluation (including chain-recall) for multi-hop retrieval tasks. | |
| High-level features implemented: | |
| - Three stages implemented: (1) hard negative mining, (2) training, (3) evaluation. | |
| - Search API definition (async-friendly) that your baseline retrieval system must | |
| implement to provide prioritized baseline hard-negatives. | |
| - Baseline hard negatives are given highest priority when merging candidates. | |
| - BM25 margin-based mining (Lexical mining) is performed and merged with baseline |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| private async void Media() | |
| { | |
| var groups = await MediaFrameSourceGroup.FindAllAsync(); | |
| foreach (var group in groups) | |
| { | |
| Debug.WriteLine(group.DisplayName); | |
| } | |
| var selectedGroup = groups.First(); |