Update README.md
Browse files
README.md
CHANGED
@@ -33,6 +33,13 @@ model = SentenceTransformer('Jyiyiyiyi/CLFE_ConMath')
|
|
33 |
embedding_latex = model.encode([{'latex': latex}])
|
34 |
embedding_pmml = model.encode([{'mathml': pmml}])
|
35 |
embedding_cmml = model.encode([{'mathml': cmml}])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
36 |
```
|
37 |
|
38 |
|
|
|
33 |
embedding_latex = model.encode([{'latex': latex}])
|
34 |
embedding_pmml = model.encode([{'mathml': pmml}])
|
35 |
embedding_cmml = model.encode([{'mathml': cmml}])
|
36 |
+
|
37 |
+
print('latex embedding:')
|
38 |
+
print(embedding_latex)
|
39 |
+
print('Presentation MathML embedding:')
|
40 |
+
print(embedding_pmml)
|
41 |
+
print('Content MathML embedding:')
|
42 |
+
print(embedding_cmml)
|
43 |
```
|
44 |
|
45 |
|