Skip to content

Commit 4f053d8

Browse files
authored
Merge pull request #123 from bigdata-ustc/dev
[FEATURE] upgrade version to 0.0.8
2 parents a40e7de + 1cfc9ca commit 4f053d8

File tree

161 files changed

+54422
-14672
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

161 files changed

+54422
-14672
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,4 +110,4 @@ venv.bak/
110110
.pyre/
111111

112112
# User Definition
113-
data/
113+
data/

CHANGE.txt

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
v0.0.8
2+
1. add Emlo
3+
2. add DisenQNet
4+
3. add QuesNet
5+
4. add tal-edu-bert
6+
5. add dynamic mapping table from modelhub
7+
6. fix cuda error
8+
7. update pretrained models
9+
110
v0.0.7:
211
1. add BERT and pretrained model (luna_bert)
312
2. speed up the process in sif

EduNLP/Formula/Formula.py

-12
Original file line numberDiff line numberDiff line change
@@ -41,18 +41,6 @@ class Formula(object):
4141
<Formula: x>
4242
>>> f.elements
4343
[{'id': 0, 'type': 'mathord', 'text': 'x', 'role': None, 'var': 0}]
44-
45-
Attributes
46-
------------
47-
ast
48-
show all ast details
49-
elements
50-
just show elements' id, type, text and role
51-
ast_graph
52-
draw a ast graph
53-
to_str
54-
resetable
55-
return bool
5644
"""
5745
def __init__(self, formula: (str, List[Dict]), variable_standardization=False, const_mathord=None,
5846
init=True, *args, **kwargs):

EduNLP/I2V/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
# 2021/8/1 @ tongshiwei
33

44
from .i2v import I2V, get_pretrained_i2v
5-
from .i2v import D2V, W2V, Bert
5+
from .i2v import D2V, W2V, Elmo, Bert, DisenQ, QuesNet

0 commit comments

Comments
 (0)