Loading

摘要: 机器学习: https://blog.csdn.net/weixin_44789022/article/details/137631634 https://docs.pingcode.com/ask/ask-ask/189158.html 阅读全文
posted @ 2024-06-20 11:13 踩坑大王 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 由于centos7 停止维护,在安装google浏览器就因为版本和下载源的问题走了不少弯路,踩了一些坑。 原操作: sudo wget https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm yum ins 阅读全文
posted @ 2024-11-25 19:04 踩坑大王 阅读(1) 评论(0) 推荐(0) 编辑
摘要: nohup: ignoring input /data/develop/hjy/LLaMA-Factory/.venv/lib/python3.10/site-packages/gradio/components/chatbot.py:222: UserWarning: You have not s 阅读全文
posted @ 2024-11-25 16:22 踩坑大王 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 待补充 阅读全文
posted @ 2024-11-25 16:21 踩坑大王 阅读(2) 评论(0) 推荐(0) 编辑
摘要: version: '3' services: moonlit-vllm-qwen-hotvideo: image: vllm/vllm-openai:v0.6.2 container_name: hitvideos_api restart: always command: [ "--served-m 阅读全文
posted @ 2024-11-18 10:35 踩坑大王 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 入口 阅读全文
posted @ 2024-11-09 01:21 踩坑大王 阅读(10) 评论(0) 推荐(0) 编辑
摘要: https://item.jd.com/100036218692.html 以这个商品链接为例,分析详情图接口 抓包拿到接口 入参 出参 构建代码 headers = { 'cookie':"", 'accept': 'application/json, text/javascript, */*; 阅读全文
posted @ 2024-11-09 01:20 踩坑大王 阅读(19) 评论(0) 推荐(0) 编辑
摘要: 解决方案 https://wiki.bafangwy.com/doc/719/ 安装chrome(https://www.cnblogs.com/zxqblogrecord/p/13171516.html)时出现以下问题: failure: repodata/repomd.xml from cent 阅读全文
posted @ 2024-11-08 19:10 踩坑大王 阅读(3) 评论(0) 推荐(0) 编辑
摘要: git rm --cached -r .;git reset --hard;git rm .gitattributes;git reset .;git checkout . 参考:https://blog.csdn.net/fengyun089/article/details/129091023 阅读全文
posted @ 2024-11-02 22:04 踩坑大王 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 在项目里使用requests去请求接口出现一串二进制 如: 测试时却显示正常,使用的是另一个项目的虚拟环境(python 3.11.5) 切换到本项目中,使用本项目虚拟环境仍然乱码(python3.11.5) 在本项目中尝试切换到3.10,创建一个新的虚拟环境,并保留comment.py脚本只需要的 阅读全文
posted @ 2024-11-01 01:36 踩坑大王 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 'Bd-Ticket-Guard-Client-Data':'eyJ0c19zaWduIjoidHMuMS43ODhkMTE1OTUwMTM1NDVhNjg5M2I0OGU3NTQ2NDk5NjZjNTMyYzBhZmMxMjRjMTUwNGQ1OTVjNDJiOWI1ZDk0YzRmYmU4N2Q 阅读全文
posted @ 2024-10-26 19:42 踩坑大王 阅读(64) 评论(0) 推荐(0) 编辑
摘要: from abc import ABC,abstractmethod from pydantic import BaseModel # 定义一个抽象基类 class Tool(baseModel,ABC): @abstractmethod def invoke(): print(123) # 实例化 阅读全文
posted @ 2024-10-21 13:53 踩坑大王 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 原因: 当前项目存在resources文件夹 参考: https://github.com/jupyter/notebook/issues/5817 解决方法: 重命名resources 注释process_collector.py和notebookapp.py中涉及到resouce的代码 由于找不 阅读全文
posted @ 2024-10-08 17:12 踩坑大王 阅读(22) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash ll .venv bash entrypoint.sh执行出现错误 entrypoint.sh: line 2: ll: command not found 而使用source entrypoint.sh却没问题 原因:权限问题 阅读全文
posted @ 2024-09-28 18:34 踩坑大王 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 方法一: vim a.sh :set ff=unix 阅读全文
posted @ 2024-09-28 18:31 踩坑大王 阅读(4) 评论(0) 推荐(0) 编辑