Skip to content

Commit

Permalink
Merge pull request #154 from KenelmQLH/dev
Browse files Browse the repository at this point in the history
[DOC] Update change.txt
  • Loading branch information
nnnyt authored Jan 13, 2024
2 parents d786570 + 22a9e10 commit 598d788
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions CHANGE.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
v1.0.0
1. Support cuda for I2V and T2V.
2. Add demos for downstream tasks including knowledge & difficulty & discrimination prediction, similarity prediction and paper segmentation.
3. Refactor quesnet for pretrain and vectorization.
4. Update documents about tutorials and API.

v0.0.9
1. Refactor tokenizer Basic Tokenizer and Pretrained Tokenizer
2. Refactor model structures following huggingface styles for Elmo, BERT, DisenQNet and QuesNet
Expand Down
1 change: 1 addition & 0 deletions EduNLP/ModelZoo/quesnet/quesnet.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ def __init__(self, _stoi=None, meta='know_name', pretrained_embs: np.ndarray = N
self.config = {k: v for k, v in locals().items() if k not in ["self", "__class__", "kwargs"]}
# self.config.update(kwargs)
self.config["architecture"] = 'quesnet'
self.config["hidden_size"] = self.hidden_size = feat_size
self.config = PretrainedConfig.from_dict(self.config)

def init_h(self, batch_size):
Expand Down

0 comments on commit 598d788

Please sign in to comment.