上一页 1 2 3 4 5 6 ··· 50 下一页
摘要: 这个错误通常是由于 npm 缓存或者依赖关系问题导致的。您可以尝试清除 npm 缓存并重新安装依赖来 解决这个问题。具体操作可以参考以下步骤: 清除 npm 缓存:运行命令 npm cache clean --force 删除 node_modules 目录 和 package-lock.json 阅读全文
posted @ 2024-05-30 10:58 VipSoft 阅读(51) 评论(0) 推荐(0) 编辑
摘要: / [33/49] Installing lodash@^4.17.14[vue-loader-v16@npm:vue-loader@^16.1.0] optional install error: Error: Unsupported URL Type: npm:vue-loader@^16.1. 阅读全文
posted @ 2024-05-30 10:40 VipSoft 阅读(7) 评论(0) 推荐(0) 编辑
摘要: ERROR Failed to compile with 1 error 09:43:54 error in ./node_modules/@intlify/core-base/dist/core-base.cjs Module parse failed: Unexpected token (135 阅读全文
posted @ 2024-05-30 10:01 VipSoft 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 换华为的,否则会出问题: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 阅读(26) 评论(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 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 准备多语言文件: messages_en.properties、messages_zh.properties Locale locale = new Locale("en", "US"); // 设置语言为英文,地区为美国 ResourceBundle bundle = ResourceBundle 阅读全文
posted @ 2024-05-07 14:18 VipSoft 阅读(15) 评论(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 阅读(15) 评论(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 阅读(5) 评论(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 阅读(32) 评论(0) 推荐(0) 编辑
摘要: intellij foreach tab 快捷生成代码 不换行 #修改前 for ( : ) { } #修改后 for ( : ) { } 阅读全文
posted @ 2024-04-09 09:27 VipSoft 阅读(3) 评论(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 阅读(4) 评论(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 阅读(204) 评论(0) 推荐(0) 编辑
摘要: Charles 抓包工具,支持抓取 exe 无需要额外设置,打开就能使用 支持 Windows、macOS、Linux 操作系统 下载地址:https://www.charlesproxy.com/download/latest-release/ 生成注册码 生成注册码地址:https://www. 阅读全文
posted @ 2024-02-22 11:52 VipSoft 阅读(637) 评论(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 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 目录词性的用处词性标注词性标注模型联合模型流水线式词性标注语料库与标注集序列标注模型应用于词性标注自定义词性朴素实现标注语料总结 词性(Part-Of-Speech,POS)指的是单词的语法分类,也称为词类。同一个类别的词语具有相似的语法性质 所有词性的集合称为词性标注集。 词性的用处 当下游应用遇 阅读全文
posted @ 2024-02-02 09:14 VipSoft 阅读(132) 评论(0) 推荐(1) 编辑
摘要: 删除 View Breakpoints 里面的断点。就可以了,断点全部删除 阅读全文
posted @ 2024-01-29 15:32 VipSoft 阅读(133) 评论(0) 推荐(0) 编辑
摘要: ERROR 2059 (HY000): Authentication plugin 'caching_sha2_password' cannot be load ed: 找不到指定的模块。 阅读全文
posted @ 2024-01-29 13:18 VipSoft 阅读(27) 评论(0) 推荐(0) 编辑
摘要: 目录安装错误锁定帐号安装插件配置测试锁定帐号 安装 下载地址:https://downloads.mysql.com/archives/installer/ 需要有 .net framework 4.5.2 及以上版本才能安装 MySQL 5.8 选择自定义安装 选择要安装的服务 修改安装路径 设置 阅读全文
posted @ 2024-01-29 10:59 VipSoft 阅读(56) 评论(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 阅读(60) 评论(0) 推荐(0) 编辑
摘要: HanLP — 感知机(Perceptron) 感知机 感知机是根据输入实例的特征向量 x 对其进行二类分类的线性模型: \[f(x)=sign(w\cdot x+b) \]感知机模型对应于输入空间(特征空间)中的分离超平面 $ w\cdot x+b=0 $.其中w是超平面的法向量,b是超平面的截距 阅读全文
posted @ 2024-01-25 08:36 VipSoft 阅读(145) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 50 下一页