9kali commited on
Commit
777535d
·
verified ·
1 Parent(s): cd1cb31

Sync Confluence open model registry

Browse files
Files changed (3) hide show
  1. README.md +37 -0
  2. benchmark_policy.md +27 -0
  3. registry.json +63 -0
README.md ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - models
5
+ - retrieval
6
+ - reranking
7
+ - llm
8
+ - healthcare
9
+ - open-science
10
+ ---
11
+
12
+ # Confluence Open Model Registry
13
+
14
+ This repository does not ship model weights. It is a transparent registry of external open models that are candidates for Confluence research workflows.
15
+
16
+ The current focus is narrow on purpose:
17
+
18
+ - retrieval
19
+ - reranking
20
+ - structured research assistance
21
+
22
+ These models are not designated here for autonomous clinical use.
23
+
24
+ ## Workflow Roles
25
+
26
+ - embeddings for dataset, paper, and protocol retrieval
27
+ - reranking for higher-precision search
28
+ - instruction-tuned reasoning models for non-clinical extraction and summarization
29
+
30
+ ## Selection Rule
31
+
32
+ Models enter the Confluence workflow only after benchmark comparison against explicit tasks and governance constraints.
33
+
34
+ ## Files
35
+
36
+ - `registry.json`: candidate model list
37
+ - `benchmark_policy.md`: how Confluence should evaluate and select open models
benchmark_policy.md ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Benchmark Policy
2
+
3
+ Confluence should benchmark open models before they are integrated into production research workflows.
4
+
5
+ ## Required Evaluation Axes
6
+
7
+ - retrieval relevance
8
+ - reranking accuracy
9
+ - extraction precision
10
+ - hallucination rate
11
+ - citation faithfulness
12
+ - latency
13
+ - memory footprint
14
+ - governance fit
15
+
16
+ ## Safety Rule
17
+
18
+ No model in this registry is a treatment authority. Models are support tools for evidence retrieval, organization, and non-clinical reasoning.
19
+
20
+ ## Promotion Rule
21
+
22
+ A candidate may move from `benchmark` to `approved` only if it:
23
+
24
+ - improves a defined workflow metric
25
+ - stays within acceptable cost and latency bounds
26
+ - does not degrade citation faithfulness
27
+ - does not encourage unsupported clinical claims
registry.json ADDED
@@ -0,0 +1,63 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "version": "0.1.0",
3
+ "roles": [
4
+ {
5
+ "role": "embedding",
6
+ "recommended_for": [
7
+ "paper retrieval",
8
+ "dataset retrieval",
9
+ "protocol retrieval"
10
+ ],
11
+ "candidates": [
12
+ {
13
+ "repo_id": "BAAI/bge-m3",
14
+ "status": "benchmark",
15
+ "notes": "Multilingual retrieval candidate with long-context support."
16
+ }
17
+ ]
18
+ },
19
+ {
20
+ "role": "reranker",
21
+ "recommended_for": [
22
+ "top-k reranking",
23
+ "evidence ordering"
24
+ ],
25
+ "candidates": [
26
+ {
27
+ "repo_id": "BAAI/bge-reranker-v2-m3",
28
+ "status": "benchmark",
29
+ "notes": "Multilingual reranker candidate for biomedical search refinement."
30
+ }
31
+ ]
32
+ },
33
+ {
34
+ "role": "instruct_small",
35
+ "recommended_for": [
36
+ "structured extraction",
37
+ "research summarization",
38
+ "non-clinical reasoning"
39
+ ],
40
+ "candidates": [
41
+ {
42
+ "repo_id": "google/gemma-3-4b-it",
43
+ "status": "benchmark",
44
+ "notes": "Smaller instruction-tuned candidate for cost-sensitive workflows."
45
+ }
46
+ ]
47
+ },
48
+ {
49
+ "role": "instruct_medium",
50
+ "recommended_for": [
51
+ "higher-complexity synthesis",
52
+ "longer-context research assistance"
53
+ ],
54
+ "candidates": [
55
+ {
56
+ "repo_id": "google/gemma-3-12b-it",
57
+ "status": "benchmark",
58
+ "notes": "Medium-size reasoning candidate; benchmark before adoption."
59
+ }
60
+ ]
61
+ }
62
+ ]
63
+ }