-
Huggingface 相关问题
更换 Huggingface 源 export HF_ENDPOINT=https://hf-mirror.com 一键下载 Huggingface 模型下载 huggingface-cli 。 huggingface-cli down... -
Ubuntu 内核与 Nvidia 驱动不匹配问题
一定要关系自动更新!! 卸载并安装驱动 https://www.cnblogs.com/aliving/articles/18389099 更改内核版本 https://blog.csdn.net/damifeng/article/detail... -
【ML2025】1-生成式人工智能
李宏毅老师《机器学习》2025学习记录 生成式人工智能有什么样的行为? 现有的模型通常会体现“思考”的过程(脑内小剧场??)。 未来 AI 的工作不再局限于“一问一答”,很多任务需要多个步骤来完成 –> AI agent 使用 AI ag... -
【LLM】nanoGPT学习
写在前面本文主要记录 nanoGPT 的学习过程,参考链接 GPT in 60 Lines of NumPy:https://jaykmody.com/blog/gpt-from-scratch/60 行代码实现 gpt(上一篇的翻译): http... -
Pycharm debug 方法记录
Pycharm 调试按钮 参考链接 step over(F8快捷键):在单步执行时,在函数内遇到子函数时不会进入子函数内单步执行,而是将子函数整个执行完再停止,也就是把子函数整个作为一步。在不存在子函数的情况下是和step into效果一样的。 ... -
Numpy 报错:numpy is not available
描述报错如下: A module is compiled with numpy 1.X cannot be run in numpy 2.X 解决方法换旧版本的 numpy 123pip uninstall numpypip install nu... -
git timeout 报错443解决方法
参考链接 解决方法 查看代理的端口号(clash 的 General 菜单中,默认为7890) 查看并取消 git 的 http 和 https 代理123456789// 首先,查一下当前全局的 http 代理:git config --glo... -
【代码随想录】数组1-二分查找
基本知识 数组元素按照顺序排列 数组元素无法删除,只能替代(填充) python 中,使用 list,代码中 List 是类型注解中的一种表示方式,通常出现在类型提示中。python 3.9 之后可以使用内置的 list 来替代 List。 704... -
【Kaggle Courses】4-pandas
Solve short hands-on challenges to perfect your data manipulation skills. Click here for more information. 创建、读和写 You can’t ... -
【Kaggle Courses】3-机器学习介绍
Learn the core ideas in machine learning, and build your first models. Click here for more information. 模型是如何工作的? The first...