Jyiyiyiyi commited on
Commit
140a8c4
·
1 Parent(s): d5ee919

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +7 -0
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