上一页 1 ··· 614 615 616 617 618 619 620 621 622 ··· 782 下一页
摘要: 自我评价模块 技能模块 项目模块 阅读全文
posted @ 2023-08-10 17:37 绝不原创的飞龙 阅读(139) 评论(0) 推荐(0)
摘要: 我觉得源码写的很好懂,我就不加注释了,直接上计算流程图。 ## `AFTFull` ![在这里插入图片描述](https://img-blog.csdnimg.cn/3867448917494873889b2e25b62fff7e.jpeg#pic_center) ```py class AFTFu 阅读全文
posted @ 2023-08-10 11:41 绝不原创的飞龙 阅读(25) 评论(0) 推荐(0)
摘要: ## 注意力 ![在这里插入图片描述](https://img-blog.csdnimg.cn/abe43c5ca40948dfb3c195c4330b7ffa.jpeg#pic_center) ## FFN ![在这里插入图片描述](https://img-blog.csdnimg.cn/9f57 阅读全文
posted @ 2023-08-09 10:53 绝不原创的飞龙 阅读(60) 评论(0) 推荐(0)
摘要: ```py from collections import deque from urllib.parse import urljoin, urlparse import requests from pyquery import PyQuery as pq import re from EpubCr 阅读全文
posted @ 2023-07-28 00:31 绝不原创的飞龙 阅读(20) 评论(0) 推荐(0)
摘要: ## 滑动均值和标准差 为了更好利用向量化来加速,滑动窗口使用`np.lib.stride_tricks.sliding_window_view(x, win)`提取,它会返回所有`x[i]`开头并且长度为`win`的数组的数组。 ```py def rolling(x, win): r = np. 阅读全文
posted @ 2023-07-12 15:43 绝不原创的飞龙 阅读(324) 评论(0) 推荐(0)
摘要: ``` score = ( class_weight + name_weight + children_comma_count + 1 + min(children_text_len // , 3) ) / (1 - link_density) ``` (1)正文元素,就是只在正文中可能出现的元素, 阅读全文
posted @ 2023-07-11 11:12 绝不原创的飞龙 阅读(37) 评论(0) 推荐(0)
摘要: ```py #!/usr/bin/env python from __future__ import print_function import logging import re import sys from lxml.etree import tounicode from lxml.etree 阅读全文
posted @ 2023-07-10 19:14 绝不原创的飞龙 阅读(96) 评论(0) 推荐(0)
摘要: ```py from lxml.html import tostring import lxml.html import re from .cleaners import normalize_spaces, clean_attributes from .encoding import get_enc 阅读全文
posted @ 2023-07-10 17:54 绝不原创的飞龙 阅读(28) 评论(0) 推荐(0)
摘要: ## `browser.py` ```py def open_in_browser(html): """ Open the HTML document in a web browser, saving it to a temporary file to open it. Note that this 阅读全文
posted @ 2023-07-10 17:48 绝不原创的飞龙 阅读(44) 评论(0) 推荐(0)
摘要: 注意力层: ``` 输入 -> LLQ -> @ -> /√ES -> softmax -> @ -> LLO -> Dropout -> 输出 | ↑ ↑ + > LLK + | | | + > LLV + ``` FFN 层: ``` 输入 -> LL1 -> GELU -> Dropout - 阅读全文
posted @ 2023-06-26 15:40 绝不原创的飞龙 阅读(42) 评论(0) 推荐(0)
上一页 1 ··· 614 615 616 617 618 619 620 621 622 ··· 782 下一页