本歌单由Listen1创建, 歌曲数:70,歌单数:1,点击查看更多
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 定义模型结构 | |
| from transformers import AutoModel | |
| import torch.nn as nn | |
| class MyModel_CNN(nn.Module): | |
| def __init__(self): | |
| super().__init__() | |
| self.plm = AutoModel.from_pretrained('bert-base-uncased') | |
| self.convs = nn.ModuleList([ | |
| nn.Conv2d(1, 64, (4, 768)), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /**设置侧边UI**/ | |
| .wiznote-left-pane{ | |
| background-color: unset !important; | |
| } | |
| .MuiTreeItem-content{ | |
| color: black !important; | |
| } | |
| .wiznote-tree-item-selected-highlight{ | |
| background-color: rgb(255 191 128 / 40%) !important; | |
| } |