cp500 commited on
Commit
8e430de
·
verified ·
1 Parent(s): 61f420a

Initial monorepo build

Browse files
Files changed (49) hide show
  1. .gitattributes +7 -0
  2. MANIFEST.json +68 -0
  3. infon-coref-pointer/meta.json +13 -0
  4. infon-coref-pointer/onnx/coref_backbone_bio.fp16.onnx +3 -0
  5. infon-coref-pointer/onnx/coref_backbone_bio.fp16.onnx.data +3 -0
  6. infon-coref-pointer/onnx/coref_mention_scorer.fp16.onnx +3 -0
  7. infon-coref-pointer/onnx/coref_mention_scorer.fp16.onnx.data +3 -0
  8. infon-coref-pointer/tokenizer.json +3 -0
  9. infon-heads/meta.json +12 -0
  10. infon-heads/onnx/heads_backbone.fp16.onnx +3 -0
  11. infon-heads/onnx/heads_backbone.fp16.onnx.data +3 -0
  12. infon-heads/onnx/heads_classifiers.fp16.onnx +3 -0
  13. infon-heads/onnx/heads_classifiers.fp16.onnx.data +3 -0
  14. infon-heads/tokenizer.json +3 -0
  15. infon-reasoner/onnx/backbone.fp16.onnx +3 -0
  16. infon-reasoner/onnx/head_anomaly.fp16.onnx +3 -0
  17. infon-reasoner/onnx/head_next_anchor.fp16.onnx +3 -0
  18. infon-reasoner/onnx/head_role_type.fp16.onnx +3 -0
  19. infon-reasoner/onnx/ikl_and.fp16.onnx +3 -0
  20. infon-reasoner/onnx/ikl_exists.fp16.onnx +3 -0
  21. infon-reasoner/onnx/ikl_forall.fp16.onnx +3 -0
  22. infon-reasoner/onnx/ikl_if.fp16.onnx +3 -0
  23. infon-reasoner/onnx/ikl_iff.fp16.onnx +3 -0
  24. infon-reasoner/onnx/ikl_ist.fp16.onnx +3 -0
  25. infon-reasoner/onnx/ikl_not.fp16.onnx +3 -0
  26. infon-reasoner/onnx/ikl_or.fp16.onnx +3 -0
  27. infon-reasoner/onnx/ikl_that.fp16.onnx +3 -0
  28. infon-reasoner/onnx/meta.json +267 -0
  29. infon-sheaf-gnn/gnn.pt +3 -0
  30. infon-sheaf-gnn/meta.json +31 -0
  31. infon-sheaf-gnn/onnx/sheaf_gnn.fp16.onnx +3 -0
  32. infon-sheaf-gnn/relation_kinds.json +20 -0
  33. minilm/1_Pooling/config.json +7 -0
  34. minilm/config.json +24 -0
  35. minilm/config_sentence_transformers.json +7 -0
  36. minilm/model.safetensors +3 -0
  37. minilm/modules.json +14 -0
  38. minilm/sentence_bert_config.json +4 -0
  39. minilm/sentencepiece.bpe.model +3 -0
  40. minilm/special_tokens_map.json +1 -0
  41. minilm/tokenizer.json +0 -0
  42. minilm/tokenizer_config.json +1 -0
  43. splade/config.json +31 -0
  44. splade/model.fp16.onnx +3 -0
  45. splade/model.fp16.onnx.data +3 -0
  46. splade/special_tokens_map.json +37 -0
  47. splade/tokenizer.json +0 -0
  48. splade/tokenizer_config.json +62 -0
  49. splade/vocab.txt +0 -0
.gitattributes CHANGED
@@ -33,3 +33,10 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ infon-coref-pointer/onnx/coref_backbone_bio.fp16.onnx.data filter=lfs diff=lfs merge=lfs -text
37
+ infon-coref-pointer/onnx/coref_mention_scorer.fp16.onnx.data filter=lfs diff=lfs merge=lfs -text
38
+ infon-coref-pointer/tokenizer.json filter=lfs diff=lfs merge=lfs -text
39
+ infon-heads/onnx/heads_backbone.fp16.onnx.data filter=lfs diff=lfs merge=lfs -text
40
+ infon-heads/onnx/heads_classifiers.fp16.onnx.data filter=lfs diff=lfs merge=lfs -text
41
+ infon-heads/tokenizer.json filter=lfs diff=lfs merge=lfs -text
42
+ splade/model.fp16.onnx.data filter=lfs diff=lfs merge=lfs -text
MANIFEST.json ADDED
@@ -0,0 +1,68 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "repo": "cp500/lambda-models",
3
+ "components": {
4
+ "infon-coref-pointer": {
5
+ "source_repo": "cp500/infon-coref-pointer",
6
+ "meta_relpath": "meta.json",
7
+ "files": 5,
8
+ "bytes": 2621012989
9
+ },
10
+ "infon-reasoner": {
11
+ "source_repo": "cp500/infon-reasoner",
12
+ "meta_relpath": "onnx/meta.json",
13
+ "files": 13,
14
+ "bytes": 489520
15
+ },
16
+ "infon-heads": {
17
+ "source_repo": "cp500/infon-heads",
18
+ "meta_relpath": "meta.json",
19
+ "files": 5,
20
+ "bytes": 2603144602
21
+ },
22
+ "infon-sheaf-gnn": {
23
+ "source_repo": "cp500/infon-sheaf-gnn",
24
+ "meta_relpath": "meta.json",
25
+ "files": 3,
26
+ "bytes": 953515
27
+ },
28
+ "splade": {
29
+ "source_repo": "opensearch-project/opensearch-neural-sparse-encoding-multilingual-v1",
30
+ "files": [
31
+ "tokenizer.json",
32
+ "model.fp16.onnx.data",
33
+ "tokenizer_config.json",
34
+ "special_tokens_map.json",
35
+ "model.fp16.onnx",
36
+ "config.json",
37
+ "vocab.txt"
38
+ ],
39
+ "sizes": {
40
+ "tokenizer.json": 2563617,
41
+ "model.fp16.onnx.data": 497557806,
42
+ "tokenizer_config.json": 1381,
43
+ "special_tokens_map.json": 695,
44
+ "model.fp16.onnx": 388050,
45
+ "config.json": 872,
46
+ "vocab.txt": 871885
47
+ }
48
+ },
49
+ "minilm": {
50
+ "source_repo": "sentence-transformers/paraphrase-multilingual-MiniLM-L12-v2",
51
+ "files": [
52
+ "config.json",
53
+ "tokenizer.json",
54
+ "tokenizer_config.json",
55
+ "special_tokens_map.json",
56
+ "sentencepiece.bpe.model",
57
+ "model.safetensors",
58
+ "modules.json",
59
+ "1_Pooling/config.json",
60
+ "sentence_bert_config.json",
61
+ "config_sentence_transformers.json"
62
+ ],
63
+ "bytes": 484794173
64
+ }
65
+ },
66
+ "total_bytes": 6211785367,
67
+ "total_human": "5.79 GiB"
68
+ }
infon-coref-pointer/meta.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "hidden_size": 384,
3
+ "n_bio_classes": 3,
4
+ "max_length": 256,
5
+ "cls_token": "<s>",
6
+ "files": {
7
+ "backbone_fp32": "onnx/coref_backbone_bio.onnx",
8
+ "backbone_fp16": "onnx/coref_backbone_bio.fp16.onnx",
9
+ "scorer_fp32": "onnx/coref_mention_scorer.onnx",
10
+ "scorer_fp16": "onnx/coref_mention_scorer.fp16.onnx",
11
+ "tokenizer": "tokenizer.json"
12
+ }
13
+ }
infon-coref-pointer/onnx/coref_backbone_bio.fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8b14248d12593958bb3b77a0ec8140e940e90c9efb6c8a2dd4895121fd21dff9
3
+ size 235067728
infon-coref-pointer/onnx/coref_backbone_bio.fp16.onnx.data ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4cdebf2fe11a7fc89dd90952c0b469a579e46bfc2f4d2e8ee822169ed21cd0f6
3
+ size 2349389824
infon-coref-pointer/onnx/coref_mention_scorer.fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a531bf3505a3a48b8b52d6e720256f21d0b1464c95967113b4bf21e76812f535
3
+ size 1777885
infon-coref-pointer/onnx/coref_mention_scorer.fp16.onnx.data ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3136d2ec567023cef094b151b2b870e2acb3cfdcc470cbfd683728f2d4f766c0
3
+ size 17694720
infon-coref-pointer/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0091a328b3441d754e481db5a390d7f3b8dabc6016869fd13ba350d23ddc4cd
3
+ size 17082832
infon-heads/meta.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "hidden_size": 384,
3
+ "max_length": 96,
4
+ "cls_token": "<s>",
5
+ "files": {
6
+ "backbone_fp32": "onnx/heads_backbone.onnx",
7
+ "backbone_fp16": "onnx/heads_backbone.fp16.onnx",
8
+ "classifier_fp32": "onnx/heads_classifiers.onnx",
9
+ "classifier_fp16": "onnx/heads_classifiers.fp16.onnx",
10
+ "tokenizer": "tokenizer.json"
11
+ }
12
+ }
infon-heads/onnx/heads_backbone.fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bc432b73b9a9f8f5ad9898819f155feb618216cca706c8bf59949152705c1f5e
3
+ size 235065324
infon-heads/onnx/heads_backbone.fp16.onnx.data ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b11dd18ff6d7cf0d3be96255d9c125bb916667c15df69ac5cae6a521a020c1c1
3
+ size 2349366784
infon-heads/onnx/heads_classifiers.fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa5df96874f5d75f96d3de385d3488c7e83f57dfdc25dfaa7faae14cb299e921
3
+ size 154948
infon-heads/onnx/heads_classifiers.fp16.onnx.data ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4954a7fd0feb76fd6d54aab73cde8a9f6bbc21031f106c6b3771505e35c88751
3
+ size 1474560
infon-heads/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:937f4a82d2465952cc36b8b530eff763b9bb84f82bbb0cacb81b8c1dc750e6d2
3
+ size 17082986
infon-reasoner/onnx/backbone.fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ae9db55226a4465be8c6a15da87cc620b671ce3a019fb7828dc23ae39495506f
3
+ size 228046
infon-reasoner/onnx/head_anomaly.fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8836151dc4b8a85a3d58e49b962aa6c6d275227a076185782d72cc4aed6113aa
3
+ size 5800
infon-reasoner/onnx/head_next_anchor.fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57a885343780580de2bf0d40ee4307ba3d4dc3e8995a489a3c0fe74a79808e2d
3
+ size 832
infon-reasoner/onnx/head_role_type.fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba2adaa6b57f52e23236435cc3bb8090c2bedf6ed673f60325d60aed22bf13c1
3
+ size 18728
infon-reasoner/onnx/ikl_and.fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:85ba5743874dc39352d3c91ba7a78eaed118113dcf98cff1c676a3a40cdfbc92
3
+ size 21832
infon-reasoner/onnx/ikl_exists.fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34c0af262e75173dbad4e1152f57126bf2b44f0bb9f85ad33dbd8a860b7ebed9
3
+ size 21832
infon-reasoner/onnx/ikl_forall.fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:52428be9b7b6cee266ba1d7e7238f07808a23f8201c76cab08aac70db0e5325a
3
+ size 21832
infon-reasoner/onnx/ikl_if.fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:34b124aead7837ee35a6fb18994bf606ede3e94a8e310aa2d4bce541069c8783
3
+ size 38609
infon-reasoner/onnx/ikl_iff.fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:06eea07a7b9226dc97911a67c595c7776ef9fce624dfe8e7ed45c8ff34f9fb7b
3
+ size 57165
infon-reasoner/onnx/ikl_ist.fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:db206db570d8767d4c185c383baf376eef8cdba5548382dd0e795c02e870eaed
3
+ size 13736
infon-reasoner/onnx/ikl_not.fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a376b433afe7a1e17ab823b3414e9461e6e6fad984c954ed8003ede30479a3af
3
+ size 19702
infon-reasoner/onnx/ikl_or.fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2bc448a761ef38303183362c4b52f2f4cc3c576e81e4b4ed601d91e8ee6d3ba5
3
+ size 21832
infon-reasoner/onnx/ikl_that.fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8593c14094873da7dd359a4eb4247e62b74c032eb90db12a227a209e7e4b3d32
3
+ size 19574
infon-reasoner/onnx/meta.json ADDED
@@ -0,0 +1,267 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "hidden_dim": 64,
3
+ "n_layers": 2,
4
+ "situation_dim": 16,
5
+ "n_relations": 11,
6
+ "relation_types": [
7
+ "INITIATES",
8
+ "ASSERTS",
9
+ "TARGETS",
10
+ "NEXT",
11
+ "ENTAILS",
12
+ "LOCATED_AT",
13
+ "CONTRADICTS",
14
+ "CAUSES",
15
+ "SAME_REFERENT",
16
+ "DEFINED_AS",
17
+ "REFERS_TO"
18
+ ],
19
+ "backbone": {
20
+ "file": "backbone.onnx",
21
+ "inputs": [
22
+ "node_features",
23
+ "edge_index",
24
+ "edge_types",
25
+ "edge_weights",
26
+ "situation_features"
27
+ ],
28
+ "output": "refined_node_features",
29
+ "hidden_dim": 64,
30
+ "n_layers": 2,
31
+ "situation_dim": 16,
32
+ "n_relations": 11,
33
+ "fp32_mb": 0.4173,
34
+ "out_shape_at_n9": [
35
+ 9,
36
+ 64
37
+ ],
38
+ "fp16_file": "backbone.fp16.onnx",
39
+ "fp16_mb": 0.228
40
+ },
41
+ "operators": {
42
+ "not": {
43
+ "file": "ikl_not.onnx",
44
+ "inputs": [
45
+ "m"
46
+ ],
47
+ "output": "m_out",
48
+ "fp32_mb": 0.0377,
49
+ "kind": "unary",
50
+ "hidden_dim": 64,
51
+ "out_shape": [
52
+ 2,
53
+ 4
54
+ ],
55
+ "fp16_file": "ikl_not.fp16.onnx",
56
+ "fp16_mb": 0.0197,
57
+ "fp16_out_shape": [
58
+ 2,
59
+ 4
60
+ ]
61
+ },
62
+ "that": {
63
+ "file": "ikl_that.onnx",
64
+ "inputs": [
65
+ "m"
66
+ ],
67
+ "output": "m_out",
68
+ "fp32_mb": 0.0376,
69
+ "kind": "unary",
70
+ "hidden_dim": 64,
71
+ "out_shape": [
72
+ 2,
73
+ 4
74
+ ],
75
+ "fp16_file": "ikl_that.fp16.onnx",
76
+ "fp16_mb": 0.0196,
77
+ "fp16_out_shape": [
78
+ 2,
79
+ 4
80
+ ]
81
+ },
82
+ "and": {
83
+ "file": "ikl_and.onnx",
84
+ "inputs": [
85
+ "m_set"
86
+ ],
87
+ "output": "m_out",
88
+ "fp32_mb": 0.0392,
89
+ "kind": "reducer",
90
+ "hidden_dim": 64,
91
+ "out_shape": [
92
+ 2,
93
+ 4
94
+ ],
95
+ "fp16_file": "ikl_and.fp16.onnx",
96
+ "fp16_mb": 0.0218,
97
+ "fp16_out_shape": [
98
+ 2,
99
+ 4
100
+ ]
101
+ },
102
+ "or": {
103
+ "file": "ikl_or.onnx",
104
+ "inputs": [
105
+ "m_set"
106
+ ],
107
+ "output": "m_out",
108
+ "fp32_mb": 0.0392,
109
+ "kind": "reducer",
110
+ "hidden_dim": 64,
111
+ "out_shape": [
112
+ 2,
113
+ 4
114
+ ],
115
+ "fp16_file": "ikl_or.fp16.onnx",
116
+ "fp16_mb": 0.0218,
117
+ "fp16_out_shape": [
118
+ 2,
119
+ 4
120
+ ]
121
+ },
122
+ "forall": {
123
+ "file": "ikl_forall.onnx",
124
+ "inputs": [
125
+ "m_set"
126
+ ],
127
+ "output": "m_out",
128
+ "fp32_mb": 0.0392,
129
+ "kind": "reducer",
130
+ "hidden_dim": 64,
131
+ "out_shape": [
132
+ 2,
133
+ 4
134
+ ],
135
+ "fp16_file": "ikl_forall.fp16.onnx",
136
+ "fp16_mb": 0.0218,
137
+ "fp16_out_shape": [
138
+ 2,
139
+ 4
140
+ ]
141
+ },
142
+ "exists": {
143
+ "file": "ikl_exists.onnx",
144
+ "inputs": [
145
+ "m_set"
146
+ ],
147
+ "output": "m_out",
148
+ "fp32_mb": 0.0392,
149
+ "kind": "reducer",
150
+ "hidden_dim": 64,
151
+ "out_shape": [
152
+ 2,
153
+ 4
154
+ ],
155
+ "fp16_file": "ikl_exists.fp16.onnx",
156
+ "fp16_mb": 0.0218,
157
+ "fp16_out_shape": [
158
+ 2,
159
+ 4
160
+ ]
161
+ },
162
+ "if": {
163
+ "file": "ikl_if.onnx",
164
+ "inputs": [
165
+ "m1",
166
+ "m2"
167
+ ],
168
+ "output": "m_out",
169
+ "fp32_mb": 0.074,
170
+ "kind": "binary",
171
+ "hidden_dim": 64,
172
+ "out_shape": [
173
+ 2,
174
+ 4
175
+ ],
176
+ "fp16_file": "ikl_if.fp16.onnx",
177
+ "fp16_mb": 0.0386,
178
+ "fp16_out_shape": [
179
+ 2,
180
+ 4
181
+ ]
182
+ },
183
+ "iff": {
184
+ "file": "ikl_iff.onnx",
185
+ "inputs": [
186
+ "m1",
187
+ "m2"
188
+ ],
189
+ "output": "m_out",
190
+ "fp32_mb": 0.1084,
191
+ "kind": "binary",
192
+ "hidden_dim": 64,
193
+ "out_shape": [
194
+ 2,
195
+ 4
196
+ ],
197
+ "fp16_file": "ikl_iff.fp16.onnx",
198
+ "fp16_mb": 0.0572,
199
+ "fp16_out_shape": [
200
+ 2,
201
+ 4
202
+ ]
203
+ },
204
+ "ist": {
205
+ "file": "ikl_ist.onnx",
206
+ "inputs": [
207
+ "m",
208
+ "sit"
209
+ ],
210
+ "output": "m_out",
211
+ "fp32_mb": 0.0255,
212
+ "kind": "ist",
213
+ "hidden_dim": 64,
214
+ "out_shape": [
215
+ 2,
216
+ 4
217
+ ],
218
+ "fp16_file": "ikl_ist.fp16.onnx",
219
+ "fp16_mb": 0.0137,
220
+ "fp16_out_shape": [
221
+ 2,
222
+ 4
223
+ ]
224
+ }
225
+ },
226
+ "heads": {
227
+ "next_anchor": {
228
+ "file": "head_next_anchor.onnx",
229
+ "inputs": [
230
+ "node_features"
231
+ ],
232
+ "output": "probs",
233
+ "n_classes": 1,
234
+ "fp32_mb": 0.0006,
235
+ "fp16_file": "head_next_anchor.fp16.onnx",
236
+ "fp16_mb": 0.0008
237
+ },
238
+ "anomaly": {
239
+ "file": "head_anomaly.onnx",
240
+ "inputs": [
241
+ "node_features"
242
+ ],
243
+ "output": "anomaly_score",
244
+ "fp32_mb": 0.0096,
245
+ "fp16_file": "head_anomaly.fp16.onnx",
246
+ "fp16_mb": 0.0058
247
+ },
248
+ "role_type": {
249
+ "file": "head_role_type.onnx",
250
+ "inputs": [
251
+ "h_a",
252
+ "h_b",
253
+ "mask_onehot"
254
+ ],
255
+ "output": "logits",
256
+ "n_classes": 3,
257
+ "role_types": [
258
+ "actor",
259
+ "feature",
260
+ "relation"
261
+ ],
262
+ "fp32_mb": 0.0354,
263
+ "fp16_file": "head_role_type.fp16.onnx",
264
+ "fp16_mb": 0.0187
265
+ }
266
+ }
267
+ }
infon-sheaf-gnn/gnn.pt ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:82ea19985db9ca932115fd39863398c286d83172e311dba7aa3471f2e4e317cb
3
+ size 572859
infon-sheaf-gnn/meta.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "edge_feature_dim": 10,
3
+ "hidden_dim": 64,
4
+ "n_layers": 3,
5
+ "max_len": 12,
6
+ "n_verdict_classes": 3,
7
+ "verdict_labels": [
8
+ "SUPPORTS",
9
+ "REFUTES",
10
+ "NOT_ENOUGH_INFO"
11
+ ],
12
+ "relation_kinds": [
13
+ "connective",
14
+ "terminal",
15
+ "reportive"
16
+ ],
17
+ "best_val_acc": 0.9975000023841858,
18
+ "per_kind_acc": {
19
+ "anomaly": 1.0,
20
+ "clean": 0.9952830188679245,
21
+ "disconnected": 1.0,
22
+ "cyclic": 1.0,
23
+ "retracted": 1.0
24
+ },
25
+ "files": {
26
+ "checkpoint": "gnn.pt",
27
+ "relation_kinds": "relation_kinds.json",
28
+ "model_fp32": "onnx/sheaf_gnn.onnx",
29
+ "model_fp16": "onnx/sheaf_gnn.fp16.onnx"
30
+ }
31
+ }
infon-sheaf-gnn/onnx/sheaf_gnn.fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8dbd59ea41bf2dc5d460f22e06c4773f84b8a2b541772fea9f30a9e0a28a2397
3
+ size 380320
infon-sheaf-gnn/relation_kinds.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "kind_lookup": {
3
+ "supply": "connective",
4
+ "partner": "connective",
5
+ "acquire": "connective",
6
+ "license": "connective",
7
+ "invest": "terminal",
8
+ "mention": "reportive"
9
+ },
10
+ "kinds": [
11
+ "connective",
12
+ "terminal",
13
+ "reportive"
14
+ ],
15
+ "verdicts": [
16
+ "SUPPORTS",
17
+ "REFUTES",
18
+ "NOT_ENOUGH_INFO"
19
+ ]
20
+ }
minilm/1_Pooling/config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "word_embedding_dimension": 384,
3
+ "pooling_mode_cls_token": false,
4
+ "pooling_mode_mean_tokens": true,
5
+ "pooling_mode_max_tokens": false,
6
+ "pooling_mode_mean_sqrt_len_tokens": false
7
+ }
minilm/config.json ADDED
@@ -0,0 +1,24 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "old_models/paraphrase-multilingual-MiniLM-L12-v2/0_Transformer",
3
+ "architectures": [
4
+ "BertModel"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "gradient_checkpointing": false,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.1,
10
+ "hidden_size": 384,
11
+ "initializer_range": 0.02,
12
+ "intermediate_size": 1536,
13
+ "layer_norm_eps": 1e-12,
14
+ "max_position_embeddings": 512,
15
+ "model_type": "bert",
16
+ "num_attention_heads": 12,
17
+ "num_hidden_layers": 12,
18
+ "pad_token_id": 0,
19
+ "position_embedding_type": "absolute",
20
+ "transformers_version": "4.7.0",
21
+ "type_vocab_size": 2,
22
+ "use_cache": true,
23
+ "vocab_size": 250037
24
+ }
minilm/config_sentence_transformers.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "__version__": {
3
+ "sentence_transformers": "2.0.0",
4
+ "transformers": "4.7.0",
5
+ "pytorch": "1.9.0+cu102"
6
+ }
7
+ }
minilm/model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eaa086f0ffee582aeb45b36e34cdd1fe2d6de2bef61f8a559a1bbc9bd955917b
3
+ size 470641600
minilm/modules.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "idx": 0,
4
+ "name": "0",
5
+ "path": "",
6
+ "type": "sentence_transformers.models.Transformer"
7
+ },
8
+ {
9
+ "idx": 1,
10
+ "name": "1",
11
+ "path": "1_Pooling",
12
+ "type": "sentence_transformers.models.Pooling"
13
+ }
14
+ ]
minilm/sentence_bert_config.json ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ {
2
+ "max_seq_length": 128,
3
+ "do_lower_case": false
4
+ }
minilm/sentencepiece.bpe.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cfc8146abe2a0488e9e2a0c56de7952f7c11ab059eca145a0a727afce0db2865
3
+ size 5069051
minilm/special_tokens_map.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"bos_token": "<s>", "eos_token": "</s>", "unk_token": "<unk>", "sep_token": "</s>", "pad_token": "<pad>", "cls_token": "<s>", "mask_token": {"content": "<mask>", "single_word": false, "lstrip": true, "rstrip": false, "normalized": false}}
minilm/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
minilm/tokenizer_config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"do_lower_case": true, "unk_token": "<unk>", "sep_token": "</s>", "pad_token": "<pad>", "cls_token": "<s>", "mask_token": {"content": "<mask>", "single_word": false, "lstrip": true, "rstrip": false, "normalized": true, "__type": "AddedToken"}, "tokenize_chinese_chars": true, "strip_accents": null, "bos_token": "<s>", "eos_token": "</s>", "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "old_models/paraphrase-multilingual-MiniLM-L12-v2/0_Transformer", "tokenizer_class": "PreTrainedTokenizerFast"}
splade/config.json ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "opensearch-project/opensearch-neural-sparse-encoding-multilingual-v1",
3
+ "architectures": [
4
+ "BertForMaskedLM"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "directionality": "bidi",
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 768,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 3072,
14
+ "layer_norm_eps": 1e-12,
15
+ "max_position_embeddings": 512,
16
+ "model_type": "bert",
17
+ "num_attention_heads": 12,
18
+ "num_hidden_layers": 12,
19
+ "pad_token_id": 0,
20
+ "pooler_fc_size": 768,
21
+ "pooler_num_attention_heads": 12,
22
+ "pooler_num_fc_layers": 3,
23
+ "pooler_size_per_head": 128,
24
+ "pooler_type": "first_token_transform",
25
+ "position_embedding_type": "absolute",
26
+ "torch_dtype": "float32",
27
+ "transformers_version": "4.44.1",
28
+ "type_vocab_size": 2,
29
+ "use_cache": true,
30
+ "vocab_size": 105879
31
+ }
splade/model.fp16.onnx ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:df06a5eb590a5884949c114a2eb9fcd5ae36a02057822f127cdbe2dca8847b40
3
+ size 388050
splade/model.fp16.onnx.data ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6113143684a40bc384d8a995750d52c083627a2c613d99a77417ca556fc11ac4
3
+ size 497557806
splade/special_tokens_map.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": {
3
+ "content": "[CLS]",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "mask_token": {
10
+ "content": "[MASK]",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "[PAD]",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "sep_token": {
24
+ "content": "[SEP]",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ },
30
+ "unk_token": {
31
+ "content": "[UNK]",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false
36
+ }
37
+ }
splade/tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
splade/tokenizer_config.json ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "added_tokens_decoder": {
3
+ "0": {
4
+ "content": "[PAD]",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false,
9
+ "special": true
10
+ },
11
+ "100": {
12
+ "content": "[UNK]",
13
+ "lstrip": false,
14
+ "normalized": false,
15
+ "rstrip": false,
16
+ "single_word": false,
17
+ "special": true
18
+ },
19
+ "101": {
20
+ "content": "[CLS]",
21
+ "lstrip": false,
22
+ "normalized": false,
23
+ "rstrip": false,
24
+ "single_word": false,
25
+ "special": true
26
+ },
27
+ "102": {
28
+ "content": "[SEP]",
29
+ "lstrip": false,
30
+ "normalized": false,
31
+ "rstrip": false,
32
+ "single_word": false,
33
+ "special": true
34
+ },
35
+ "103": {
36
+ "content": "[MASK]",
37
+ "lstrip": false,
38
+ "normalized": false,
39
+ "rstrip": false,
40
+ "single_word": false,
41
+ "special": true
42
+ }
43
+ },
44
+ "clean_up_tokenization_spaces": true,
45
+ "cls_token": "[CLS]",
46
+ "do_lower_case": true,
47
+ "mask_token": "[MASK]",
48
+ "max_length": 200,
49
+ "model_max_length": 512,
50
+ "pad_to_multiple_of": null,
51
+ "pad_token": "[PAD]",
52
+ "pad_token_type_id": 0,
53
+ "padding_side": "right",
54
+ "sep_token": "[SEP]",
55
+ "stride": 0,
56
+ "strip_accents": null,
57
+ "tokenize_chinese_chars": true,
58
+ "tokenizer_class": "BertTokenizer",
59
+ "truncation_side": "right",
60
+ "truncation_strategy": "longest_first",
61
+ "unk_token": "[UNK]"
62
+ }
splade/vocab.txt ADDED
The diff for this file is too large to render. See raw diff