06 2024 档案

摘要:llm的接入: https://blog.csdn.net/orientharp/article/details/139884688 embedding模型的接入: https://inference.readthedocs.io/zh-cn/latest/models/builtin/embedd 阅读全文
posted @ 2024-06-28 18:09 小kk_p 阅读(236) 评论(0) 推荐(0)
摘要:https://inference.readthedocs.io/zh-cn/latest/models/builtin/llm/glm4-chat.html#model-spec-1-pytorch-9-billion 阅读全文
posted @ 2024-06-28 10:45 小kk_p 阅读(81) 评论(0) 推荐(0)
摘要:https://zhuanlan.zhihu.com/p/692383624 阅读全文
posted @ 2024-06-28 00:40 小kk_p 阅读(62) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/sinat_37574187/article/details/137842571 阅读全文
posted @ 2024-06-26 13:46 小kk_p 阅读(262) 评论(0) 推荐(0)
摘要:import numpy as np def softmax(x, axis=-1): """Softmax函数,用于计算注意力权重""" e_x = np.exp(x - np.max(x, axis=axis, keepdims=True)) return e_x / e_x.sum(axis= 阅读全文
posted @ 2024-06-23 16:49 小kk_p 阅读(4349) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/weixin_38314865/article/details/107568686 阅读全文
posted @ 2024-06-22 22:49 小kk_p 阅读(12) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/atuotuo/p/9272368.html 阅读全文
posted @ 2024-06-19 15:35 小kk_p 阅读(17) 评论(0) 推荐(0)
摘要:https://zhuanlan.zhihu.com/p/390510404 阅读全文
posted @ 2024-06-18 14:19 小kk_p 阅读(42) 评论(0) 推荐(0)
摘要:https://github.com/nerdyrodent/VQGAN-CLIP/issues/164 阅读全文
posted @ 2024-06-12 13:40 小kk_p 阅读(435) 评论(0) 推荐(0)
摘要:https://zhuanlan.zhihu.com/p/658731447 阅读全文
posted @ 2024-06-05 14:07 小kk_p 阅读(31) 评论(0) 推荐(0)
摘要:https://zhuanlan.zhihu.com/p/646080311?utm_id=0 阅读全文
posted @ 2024-06-03 23:36 小kk_p 阅读(21) 评论(0) 推荐(0)
摘要:https://zhuanlan.zhihu.com/p/78171223 阅读全文
posted @ 2024-06-01 21:24 小kk_p 阅读(9) 评论(0) 推荐(0)