相关文章
淘宝/天猫店铺商品搜索利器:taobao.item_search_shop API返回值详解
taobao.item_search_shop 这个API名称听起来像是针对淘宝或天猫平台的一个商品搜索接口,但实际上,淘宝和天猫的官方API体系中并没有直接命名为taobao.item_search_shop的公开API。不过,为了解答关于类似功能的API返回值详解,我们可…
建站知识
2024/11/23 5:24:53
pytorch GPU cuda 使用 报错 整理
GPU 使用、报错整理 1. 使用指定GPU(单卡)1.1 方法1:os.environ[CUDA_VISIBLE_DEVICES]1.2 方法2:torch.device(cuda:2)1.3 报错1:RuntimeError: CUDA error: invalid device ordinal CUDA kernel errors might be asy…
建站知识
2024/11/23 5:15:59
Gitlab CI/CD --- use a sample CI/CD template
0 Preface/Foreword
Pipeline, job, stage的关系如下描述: A pipeline is composed of independent jobs that run scripts, grouped into stages. Stages run in sequential order, but jobs within stages run in parallel. 关键信息:
pipeline由独…
建站知识
2024/11/23 5:38:04
Springboot加载机制
Spring Boot 加载机制
我理解的Spring Boot 的加载机制主要涉及以下几个方面: 自动装配(Auto-Configuration): Spring Boot 的核心功能之一是自动装配,它基于类路径中的 jar 包依赖和条件化注解,自动配置 …
建站知识
2024/11/20 15:27:01
@RequestPart和@RequestParam 区别和联系
目录
区别
联系
使用场景
示例 RequestParam 和 RequestPart 都是 Spring 框架中用于将 HTTP 请求中的数据绑定到控制器方法参数上的注解,但它们适用于不同的请求数据类型和场景。 区别
1.适用场景:
RequestParam:主要用于处理简单类型…
建站知识
2024/11/22 13:37:17
ubuntu _ usb access _ usb32
linux add user to dialout or uucp to access usb
与 ESP32-C3 创建串口连接 - ESP32-C3 - — ESP-IDF 编程指南 latest 文档 (espressif.com)
sudo usermod -a -G dialout $USER
$USER 当前 user
建站知识
2024/11/20 15:23:06
ollama + fastgpt 搭建免费本地知识库
目录 1、ollama
ollama的一些操作命令:
使用的方式:
2、fastgpt
快速部署:
修改配置:
config.json:
docker-compose.yml:
运行fastgpt:
访问OneApi:
添加令牌和渠道:
登陆fastgpt,创建知识库和应用
3、总结:
附录:
1. 11434是ollama的端口:
2. m3e 测…
建站知识
2024/11/22 19:07:15