上一页 1 2 3 4 5 6 7 8 9 ··· 53 下一页
摘要: 换华为的,否则会出问题:cnpm confg set registry https://mirrors.huaweicloud.com/repository/npm/ npm ERR! code CERT_HAS_EXPIRED npm ERR! errno CERT_HAS_EXPIRED npm 阅读全文
posted @ 2024-05-29 17:43 VipSoft 阅读(431) 评论(0) 推荐(0) 编辑
摘要: PLSQL Developer 配置 Oracleclient 将 oracleclient 解压到 指定目录 配置环境变更 PATH D:\Program Files\DataBase\oracleclient TNS_ADMIN D:\Program Files\DataBase\oraclec 阅读全文
posted @ 2024-05-20 10:50 VipSoft 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 准备多语言文件: messages_en.properties、messages_zh.properties Locale locale = new Locale("en", "US"); // 设置语言为英文,地区为美国 ResourceBundle bundle = ResourceBundle 阅读全文
posted @ 2024-05-07 14:18 VipSoft 阅读(47) 评论(0) 推荐(0) 编辑
摘要: 最终问题没解决 D:\Software\WebService\apache-cxf-3.3.1\bin>wsdl2java -encoding utf-8 http://XXX.XXX.XXX.XXX:10051/NIS_SZLonghuaFY/EwellInterfaceService?wsdl 阅读全文
posted @ 2024-04-23 09:03 VipSoft 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 下载 apache-cxf-3.3.1 并解压 到bin 目录下,输入生成命令 wsdl2java -encoding utf-8 -d D:\Software\Webservice\ws http://XXX.XXX.XXX.XXX:XXX/WSInterface.asmx?wsdl 把生成的文件 阅读全文
posted @ 2024-04-18 17:07 VipSoft 阅读(14) 评论(0) 推荐(0) 编辑
摘要: ASP.NET MVC WebApi 接口返回 JOSN 日期格式化 date format 全局配置 WebApiConfig public static class WebApiConfig { public static void Register(HttpConfiguration conf 阅读全文
posted @ 2024-04-09 10:46 VipSoft 阅读(102) 评论(0) 推荐(0) 编辑
摘要: intellij foreach tab 快捷生成代码 不换行 #修改前 for ( : ) { } #修改后 for ( : ) { } 阅读全文
posted @ 2024-04-09 09:27 VipSoft 阅读(11) 评论(0) 推荐(0) 编辑
摘要: htop yum 安装 [root@localhost ~]# yum -y install epel-release [root@localhost ~]# yum install htop [root@localhost ~]# yum -y install epel-release [root 阅读全文
posted @ 2024-03-04 09:00 VipSoft 阅读(13) 评论(0) 推荐(0) 编辑
摘要: C# Newtonsoft.Json.Formatting DateTime 日期格式化 List<Record> list = new List<Record>(); for (int i = 0; i < 10; i++) { Record item = new Record(); item.N 阅读全文
posted @ 2024-02-27 08:31 VipSoft 阅读(339) 评论(0) 推荐(0) 编辑
摘要: Charles 抓包工具,支持抓取 exe 无需要额外设置,打开就能使用 支持 Windows、macOS、Linux 操作系统 下载地址:https://www.charlesproxy.com/download/latest-release/ 生成注册码 生成注册码地址:https://www. 阅读全文
posted @ 2024-02-22 11:52 VipSoft 阅读(2046) 评论(0) 推荐(0) 编辑
摘要: 目录8. 命名实体识别8.1 概述8.2 基于规则的命名实体识别8.2.1 基于规则的音译人名识别8.2.2 基于规则的日本人名识别8.2.3 基于规则的数词英文识别8.3 命名实体识别语料库1998年《人民日报》语料库微软命名实体识别语料库8.4 基于层叠隐马尔可夫模型的角色标注框架8.4.1 基 阅读全文
posted @ 2024-02-02 09:36 VipSoft 阅读(441) 评论(0) 推荐(0) 编辑
摘要: 目录词性的用处词性标注词性标注模型联合模型流水线式词性标注语料库与标注集序列标注模型应用于词性标注自定义词性朴素实现标注语料总结 词性(Part-Of-Speech,POS)指的是单词的语法分类,也称为词类。同一个类别的词语具有相似的语法性质 所有词性的集合称为词性标注集。 词性的用处 当下游应用遇 阅读全文
posted @ 2024-02-02 09:14 VipSoft 阅读(338) 评论(0) 推荐(1) 编辑
摘要: 删除 View Breakpoints 里面的断点。就可以了,断点全部删除 阅读全文
posted @ 2024-01-29 15:32 VipSoft 阅读(174) 评论(0) 推荐(0) 编辑
摘要: ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password' cannot be load ed: 找不到指定的模块。 阅读全文
posted @ 2024-01-29 13:18 VipSoft 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 目录安装错误锁定帐号安装插件配置测试锁定帐号 安装 下载地址:https://downloads.mysql.com/archives/installer/ 需要有 .net framework 4.5.2 及以上版本才能安装 MySQL 5.8 选择自定义安装 选择要安装的服务 修改安装路径 设置 阅读全文
posted @ 2024-01-29 10:59 VipSoft 阅读(156) 评论(0) 推荐(0) 编辑
摘要: Python 解压还密码的压缩文件(rar zip) 安装包 pip install unrar -i https://pypi.tuna.tsinghua.edu.cn/simple from unrar import rarfile from tqdm import tqdm import it 阅读全文
posted @ 2024-01-26 08:32 VipSoft 阅读(163) 评论(0) 推荐(0) 编辑
摘要: HanLP — 感知机(Perceptron) 感知机 感知机是根据输入实例的特征向量 x 对其进行二类分类的线性模型: f(x)=sign(wx+b)感知机模型对应于输入空间(特征空间)中的分离超平面 wx+b=0.其中w是超平面的法向量,b是超平面的截距 阅读全文
posted @ 2024-01-25 08:36 VipSoft 阅读(188) 评论(0) 推荐(0) 编辑
摘要: scikit-learn是一个用于Python的机器学习库,提供了大量用于数据挖掘和数据分析的工具。以下是对这些函数和方法的简要描述: clear_data_home: 清除数据集目录的内容。 dump_svmlight_file: 将数据集保存为SVMLight格式的文件。 fetch_20new 阅读全文
posted @ 2024-01-24 11:54 VipSoft 阅读(315) 评论(0) 推荐(1) 编辑
摘要: Matplotlib.pyplot.plot 绘图 matplotlib.pyplot.scatter(x, y, s=None, c=None, marker=None, cmap=None, norm=None, vmin=None, vmax=None, alpha=None, linewid 阅读全文
posted @ 2024-01-24 10:08 VipSoft 阅读(153) 评论(0) 推荐(0) 编辑
摘要: HanLP — 感知机(Perceptron) -- Python 感知机(Perceptron)是一个二类分类的线性分类模型,属于监督式学习算法。最终目的: 将不同的样本分类 感知机饮食了多个权重参数,输入的特征向量先是和对应的权重相乘,再加得到的积相加,然后将加权后的特征值送入激活函数,最后得到 阅读全文
posted @ 2024-01-23 11:21 VipSoft 阅读(188) 评论(0) 推荐(1) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 53 下一页
点击右上角即可分享
微信分享提示