bu1 commited on
Commit
434f55f
·
verified ·
1 Parent(s): 1a58003

Upload model

Browse files
Files changed (2) hide show
  1. model.safetensors +2 -2
  2. modeling_IQtransformer.py +1 -1
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:927e38d4306b21e0833edf180d3b2d59c94bd0997a88b3c25289e973417c7370
3
- size 44340
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:59ddb6814299930ea3c647584bc2aeb3c9d3bb0cb3d8bdf4036eab6c9fac9adb
3
+ size 44272
modeling_IQtransformer.py CHANGED
@@ -222,7 +222,7 @@ class transformerModel(PreTrainedModel):
222
  config.num_heads, config.dropout))
223
 
224
  self.l1 = nn.Linear(64, 16)
225
- self.l2 = nn.Linear(16, 5)
226
 
227
  def forward(self, X, valid_lens, *args):
228
  # 因为位置编码值在-1和1之间,
 
222
  config.num_heads, config.dropout))
223
 
224
  self.l1 = nn.Linear(64, 16)
225
+ self.l2 = nn.Linear(16, 4)
226
 
227
  def forward(self, X, valid_lens, *args):
228
  # 因为位置编码值在-1和1之间,