- 博客(183)
- 收藏
- 关注
原创 openai.RateLimitError: Error code: 429 - {‘error‘: {‘message‘: ‘Your account co2faualnl9bb8bf99d0<ak
根本问题,我TM的是KIMI的非续费用户,访问速率被严重限制了,日了。考虑到Kimi在内容理解上和百度文心一言的差距,果断续费了文心一言。
2024-04-25 10:56:14
2946
2
原创 LORA详解(史上最全)
LoRA 模型是一种Stable Diffusion模型的小型模型,通过对标准检查点模型进行微小更改来实现。它们的大小通常比检查点模型小 10 到 100 倍,这使得它们对于拥有大量模型的人非常有吸引力。LoRA(Low-Rank Adaptation)是一种用于微调Stable Diffusion模型的训练技术。但我们已经有了其他的训练技术,例如 Dreambooth 和 文本反转。那么 LoRA 有何特别之处呢?LoRA 在文件大小和训练能力之间取得了良好的平衡。
2024-04-24 12:53:27
82961
2
原创 RuntimeError: FlashAttention only supports Ampere GPUs or newer.
详细描述请查看:https://github.com/Dao-AILab/flash-attention。是否有解决方案,暂无,除非能搞到A100或者H100以及更高版本的机器;GPU机器配置低,不支持 特斯拉-V100;哎,无奈手里机器不支持玩Llama 3;
2024-04-23 19:56:15
4275
1
原创 Llama网络结构介绍
LLaMA现在已经是开源社区里炙手可热的模型了,但是原文中仅仅介绍了其和标准Transformer的差别,并没有一个全局的模型介绍。因此打算写篇文章,争取让读者不参考任何其他资料把LLaMA的模型搞懂。
2024-04-23 17:30:06
8983
2
原创 2024年调研学习文档资料汇总
2、图文分类:https://huggingface.co/docs/transformers/model_doc/chinese_clip。3、多卡训练:https://blog.youkuaiyun.com/qq_51392112/article/details/129737803。18、腾讯预训练平台:https://github.com/Tencent/TencentPretrain/tree/main。1、chatGLM实践:https://zhuanlan.zhihu.com/p/622686205?
2024-04-03 11:34:10
521
原创 OpenBLAS blas_thread_init: pthread_create failed for thread 1 of 40: Operation not permitted
容器权限不足
2023-10-24 15:26:55
6019
1
原创 Unexpected bus error encountered in worker. This might be caused by insufficient shared memory (shm)
容器共享内存资源不足
2023-10-24 15:20:32
516
原创 RuntimeError: The size of tensor a (631) must match the size of tensor b (512) at non-singleton dime
过滤下训练语料,将长度过长的数据直接丢弃;
2023-04-27 15:23:38
3875
原创 packaging.version.InvalidVersion: Invalid version: ‘0.10.1,<0.11‘
packaging.version.InvalidVersion: Invalid version: '0.10.1,
2023-04-26 14:30:13
15616
6
原创 AttributeError: module ‘tensorflow._api.v2.train‘ has no attribute ‘Optimizer‘
我直接将TensorFlow从2.8降到了1.14。2、不降版本,直接改api–这个我没兴趣,真懒;版本迭代,相关方法被移除;
2023-04-25 19:53:25
1793
原创 AssertionError: The NVIDIA driver on your system is too old (found version 10010)
AssertionError 解决
2023-04-03 17:57:34
251
原创 高效解决:remote: The project you were looking for could not be found.
remote: The project you were looking for could not be found.fatal: repository 'https://gitlab.vmic.xyz/72163948/game_category_rpc_server_dev.git/' not found
2023-03-09 19:51:05
353
原创 Error executing Jupyter command ‘notebook‘: [Errno 2] No such file or directory
Jupyter bug Error2
2023-02-17 17:21:57
903
原创 Command “python setup.py egg_info“ failed with error code 1 in /tmp/pip-build-30xnni_y/gensim/
python setup.py egg_info
2023-02-15 15:10:16
447
原创 ERROR: Cannot uninstall ‘certifi‘. It is a distutils installed project and thus we cannot accurately
BUG原因:错误:无法卸载“证书”。这是一个 distutils 安装的项目,因此我们无法准确确定哪些文件属于它,这只会导致部分卸载。
2023-01-10 16:42:50
5064
原创 解决BUG:error: metadata-generation-failed
在执行批量安装命令pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple之前,先执行pip install setuptools==57.5.0 -i https://pypi.tuna.tsinghua.edu.cn/simple 命令。
2023-01-10 16:17:43
56954
17
原创 linux常见命令汇总(非常系统、非常全面)
Linux操作系统命令整理1. 今日梳理1.1 Linux操作系统1.2 Linux常见命令2. 知识点汇总描述2.1 快捷键:快速打开终端:Ctrl + Alt + t ;快速放大字体:Ctrl + shift + (+号);快速缩小终端字体:Ctrl + (-号);2.2 查看Linux版本:cat /proc/version2.3 目录操作相关命令:2.3.1 pwd:查看当前所停留的路径;2.3.2 ls 指定路径:查看制定目录下文件及文件夹信息;备注如果为加指定路径则默认为
2022-04-06 16:17:38
1496
原创 完美解决:error: RPC failed; result=35, HTTP code = 0
BUGerror: RPC failed; result=35, HTTP code = 0报错原因分析远程便捷HTTP传输请求数据时最大的缓存字节数,默认时1M字节,默认能满足大多数请求。而当git clone的是大文件,就需要调大git缓存值解决方案说明sudo git config --global http.postBuffer 5242880000...
2022-04-06 10:20:55
3887
1
原创 The unauthenticated git protocol on port 9418 is no longer supported.
BUG解决方案最好复制粘贴,手敲易出错。。。git config --global url."https://".insteadOf git://再次拉一下代码就好了亲测有效
2022-03-31 17:54:59
511
原创 cuda、TensorFlow、Python适配情况
cuda和TensorFlow适配情况TensorFlow和Python适配情况相关官方参考链接:https://tensorflow.google.cn/install/source#linuxhttps://tensorflow.google.cn/install/source#cpuhttps://tensorflow.google.cn/install/source#gpu
2022-03-10 19:42:02
1172
原创 精准设置GPU占用率
相关参考文档:https://blog.youkuaiyun.com/liumoude6/article/details/82762529
2022-03-01 11:56:36
1103
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人