Fork me on GitHub

03 2025 档案

摘要:首先你得在Maxkb的docker 环境下连通数据库,https://www.cnblogs.com/zhoushusheng/p/18777368。 先写一个测试函数看看MaxKb函数是否正常用 def test(): result = f"hello" return result 报错: /bi 阅读全文
posted @ 2025-03-24 17:32 z_s_s 阅读(550) 评论(0) 推荐(0)
摘要:测试环境的python 连接 Windows 里ipconfig 一下查服务器的IP 我的地址是在这里,F:\app\dell\product\11.2.0\dbhome_1\NETWORK\ADMIN 默认一般是在这里,C:\oracle\product\11.2.0\dbhome_1\netwo 阅读全文
posted @ 2025-03-17 18:27 z_s_s 阅读(308) 评论(0) 推荐(0)
摘要:Kruskal算法是一种用于求解最小生成树(Minimum Spanning Tree, MST)的贪心算法。最小生成树是指在一个带权无向图中,选取一棵包含所有顶点的树,使得树上所有边的权值之和最小。 算法步骤1. 排序:将所有边按权值从小到大排序。2. 初始化:创建一个空的森林(即每个顶点单独构成 阅读全文
posted @ 2025-03-14 14:40 z_s_s 阅读(398) 评论(0) 推荐(0)
摘要:Context in a Confusion Matrix In classification tasks, results are often summarized in a confusion matrix: Predicted PositivePredicted Negative Actual 阅读全文
posted @ 2025-03-14 14:05 z_s_s 阅读(25) 评论(0) 推荐(0)
摘要:实验环境: Ollama下的DeepSeek(详情请戳链接)、MaxKB(详情链接) 问题原因:Ollama未关闭默认地址绑定。 解决方案: OLLAMA_HOST=0.0.0.0 ollama serve 出现错误: 解决方式: This will stop the Ollama service 阅读全文
posted @ 2025-03-14 11:49 z_s_s 阅读(242) 评论(0) 推荐(0)
摘要:✅ My System InformationOS: Ubuntu 22.04CPU: Intel i5-12600KFGPU: NVIDIA GTX 3060 (12GB VRAM)CUDA Version: 12.1cuDNN Version: 9.0.100Python Version: 3. 阅读全文
posted @ 2025-03-10 17:56 z_s_s 阅读(37) 评论(0) 推荐(0)