上一页 1 2 3 4 5 6 7 8 ··· 53 下一页
摘要: 目录安装数据准备创建项目创建抽取式任务上传定义标签构建抽取式任务标签任务标注命名实体识别导出数据查看数据应用实例 命名实体识别(Named Entity Recognition,简称NER),是指识别文本中具有特定意义的实体。在开放域信息抽取中,抽取的类别没有限制,用户可以自己定义。 安装 详见:数 阅读全文
posted @ 2024-06-24 15:30 VipSoft 阅读(599) 评论(0) 推荐(0) 编辑
摘要: 目录安装运行 doccano重运行 doccano打开 doccanno创建项目创建分类式任务上传数据定义标签添加成员开始标注导出数据查看数据统计 数据标注工具 Label-Studio 数据标注工具 doccano | 命名实体识别(Named Entity Recognition,简称NER) 阅读全文
posted @ 2024-06-20 11:16 VipSoft 阅读(709) 评论(0) 推荐(3) 编辑
摘要: Postman 的 Basic Auth: 分析 根据以上图片分析: Postman 的 Authorization 实际为: header 中添加 Authorization: ******* ******* => "Base" + " " + base64("Username"+":"+"Pas 阅读全文
posted @ 2024-06-19 12:27 VipSoft 阅读(85) 评论(0) 推荐(0) 编辑
摘要: Typora 宽度在CSS样式文件中有个 max-width 值,现在的显示器分辨率比较高,会导致编辑器两边留白比较多 导致文档编辑时,高分辨率的显示器,得不到充分利用 解决方案 查看 不要直接去安装目录下修改,实际目录可能会不一样 阅读全文
posted @ 2024-06-17 17:52 VipSoft 阅读(63) 评论(0) 推荐(0) 编辑
摘要: Mapper.xml <insert id="setReport" statementType="CALLABLE" parameterType="Map"> {call INSERT_EMR( #{IDH, mode=IN, jdbcType=NUMERIC}, #{IJG, mode=IN, j 阅读全文
posted @ 2024-06-13 16:56 VipSoft 阅读(73) 评论(0) 推荐(0) 编辑
摘要: CSS 遮罩层,背景渐变 html <!DOCTYPE html> <html> <head> <link rel="stylesheet" href="basic.css"> </head> <body> <div class="masked-element"> <div class="conte 阅读全文
posted @ 2024-06-12 13:44 VipSoft 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 目录错误原因解决方案 app.config.globalProperties 用法坑Vue, 多环境配置 https://www.cnblogs.com/vipsoft/p/16696640.html main.js import config from '@/utils/config' //这是对 阅读全文
posted @ 2024-06-11 12:45 VipSoft 阅读(198) 评论(0) 推荐(0) 编辑
摘要: Windows 允许空密码远程桌面 开启远程 修改策略 输入命令 secpol.msc 本地策略 -> 安全选项 -> 帐户:使用空密码的本地帐户只允许进行控制台登录 阅读全文
posted @ 2024-06-11 11:36 VipSoft 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 这个错误通常与Node.js的加密模块和OpenSSL版本有关 出现这个错误是因为 node.js V17版本中最近发布的OpenSSL3.0, 而OpenSSL3.0对允许算法和密钥大小增加了严格的限制,可能会对生态系统造成一些影响. js/app.8d066b51.js from Terser 阅读全文
posted @ 2024-06-11 10:42 VipSoft 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 根据提示,赋权限,删除文件等 jimmy@MacBook-Pro ~ % brew link node Linking /usr/local/Cellar/node/20.0.0... Error: Could not symlink include/node/common.gypi Target 阅读全文
posted @ 2024-06-09 16:20 VipSoft 阅读(58) 评论(0) 推荐(0) 编辑
摘要: ==> Installing dependencies for node: mpdecimal, ca-certificates, openssl@1.1, readline, sqlite, xz, python@3.11, brotli, cmake, c-ares, icu4c, libngh 阅读全文
posted @ 2024-06-03 21:38 VipSoft 阅读(30) 评论(0) 推荐(0) 编辑
摘要: # 替换brew.git: jimmy@MacBook-Pro Library % cd "$(brew --repo)" jimmy@MacBook-Pro Homebrew % git remote set-url origin https://mirrors.aliyun.com/homebr 阅读全文
posted @ 2024-05-31 22:38 VipSoft 阅读(366) 评论(0) 推荐(0) 编辑
摘要: Vue devDependencies 与 dependencies 能别,如何往 项目的node_modules安装组件 概述 devDependencies 用于本地环境开发 只会在开发环境下依赖的模块,生产环境不会被打入包内(通过NODE_ENV=developement或NODE_ENV=p 阅读全文
posted @ 2024-05-31 15:00 VipSoft 阅读(457) 评论(0) 推荐(0) 编辑
摘要: 想复制网页上的文字,弹出需要登录等,很烦人。 打开开发者工具 按F12打开 浏览器操作打开 禁用JS 运行命令 按 Ctrl+Shift+P 或者如下图,鼠标点击,调出命令运行窗口 在运行窗口中输入 JavaScript 点击停用,同理,再次点击,开启 鼠标操作 阅读全文
posted @ 2024-05-31 13:55 VipSoft 阅读(185) 评论(0) 推荐(0) 编辑
摘要: 前提条件 安装 Nodejs 下载:https://nodejs.org/en/download/prebuilt-installer 切换 npm 源 npm config set registry https://registry.npmmirror.com/ 创建Vue npm create 阅读全文
posted @ 2024-05-31 09:11 VipSoft 阅读(60) 评论(0) 推荐(0) 编辑
摘要: jimmy@MacBook-Pro ~ % brew -v Homebrew 4.0.15-84-g9d5b017 Homebrew/homebrew-core (git revision c04886e1f63; last commit 2023-04-27) Homebrew/homebrew- 阅读全文
posted @ 2024-05-30 21:24 VipSoft 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 推荐cmd命令行创建:https://www.cnblogs.com/vipsoft/p/18223770 实际使用,直接下框架代码改项目 安装 Nodejs 下载:https://nodejs.org/en/download/prebuilt-installer 更新源 npm config se 阅读全文
posted @ 2024-05-30 17:17 VipSoft 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 这个错误通常是由于 npm 缓存或者依赖关系问题导致的。您可以尝试清除 npm 缓存并重新安装依赖来 解决这个问题。具体操作可以参考以下步骤: 清除 npm 缓存:运行命令 npm cache clean --force 删除 node_modules 目录 和 package-lock.json 阅读全文
posted @ 2024-05-30 10:58 VipSoft 阅读(797) 评论(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 阅读(46) 评论(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 阅读(211) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 ··· 53 下一页
点击右上角即可分享
微信分享提示