学习笔记
++加油呀
这个作者很懒,什么都没留下…
展开
-
六、CSS复合选择器
图片来自黑马程序员pink老师,侵权立删语法规范:并集选择器竖着写,最后一个不加逗号总结原创 2021-12-10 20:28:31 · 101 阅读 · 0 评论 -
五、Chrome调试工具
图片来自黑马程序员pink老师,侵权立删原创 2021-12-10 11:18:42 · 100 阅读 · 0 评论 -
二、Html 表单标签
图片来自黑马pink老师课件,如有侵权。联系立即删除。1.表单标签原创 2021-12-04 17:22:08 · 192 阅读 · 0 评论 -
一、Html常用标签(标题、段落、文本格式化、图像、列表、表单)
标题标签(共六级)在这里插入代码片```<h1>标题标签</h1> <h1>标题一共六级选</h1> <h2>文字加粗一行显</h2> <h3>从大到小依次减</h3> <h4>从重到轻随之变</h4> <h5>语法规范书写后</h5> <h6>具体效果刷新见</h6> 段落标签原创 2021-12-02 20:50:39 · 506 阅读 · 0 评论 -
NLP Spacy中en_core_web_sm安装问题(附最新下载地址)
注意:Spacy的版本与en_core_web_sm需对应比如Spacy2.3.n需要对应安装en_core_web_sm2.3.01.安装Spacypip install Spacy==2.3.2#==后面是版本号2.安装对应版本的en_core_web_sm(1)官网给出的命令python -m spacy download en_core_web_sm但是通常不能成功(2)手动安装a.下载 en_core_web_sm安装包en_core_web_sm==2.3.0地址b.找原创 2021-11-29 15:21:28 · 10184 阅读 · 3 评论 -
Linux服务器常用操作指令
1.进入目录cd 目录2.返回上一级目录cd 上级目录名称3.查看服务器使用情况nvidia-smi4.查看进程ps -ux5.结束进程kill 进程号原创 2021-11-29 14:57:04 · 641 阅读 · 0 评论 -
问题解决:RuntimeError: CUDA error: out of memory
错误:RuntimeError: CUDA error: out of memory原因:网络预训练模型与Pytorch版本不匹配参考:https://blog.csdn.net/eefresher/article/details/99979056?utm_medium=distribute.pc_relevant.none-task-blog-2%7Edefault%7ECTRLIST%7Edefault-1.no_search_link&depth_1-utm_source=distr原创 2021-09-29 17:28:44 · 441 阅读 · 0 评论 -
exit(0) name ‘exit‘ is not defined
@staticmethod def read_nq_features(cached_path, is_training=False): if not os.path.exists(cached_path): logging.info("{} doesn't exists.".format(cached_path)) exit(0) logging.info("Reading features from {}.".for.原创 2021-09-27 16:13:25 · 427 阅读 · 0 评论 -
问题总结:create_examples.py: error: the following arguments are required: --vocab_file
原运行命令:python src_nq_memory/create_examples.py --input_pattern "./natural_questions/v1.0/train/nq-train-*.jsonl.gz" \ --vocab_file ./bert-base-uncased-vocab.txt \ --do_lower_case \ --output_dir ./natural_questions/nq_0.03/ \ --num_threads 24 --includ原创 2021-08-29 16:44:05 · 529 阅读 · 0 评论 -
问题总结:ModuleNotFoundError: No module named ‘spacy‘
1.问题from spacy.lang.en import English2.解决方法pip install spacy -i https://pypi.tuna.tsinghua.edu.cn/simple原创 2021-08-27 18:43:49 · 5050 阅读 · 0 评论 -
问题总结:ModuleNotFoundError: No module named ‘tensorflow‘
1.问题import tensorflow as tfModuleNotFoundError: No module named ‘tensorflow’2.解决方案pip install tensorflow仅记录自己项目中的错误,对于其他项目不具有参考价值原创 2021-08-27 16:46:48 · 9917 阅读 · 0 评论 -
问题总结python: can‘t open file ‘XXX‘: [Errno 2] No such file or directory
在Linux系统跑程序时,出现错误python: can’t open file ‘src_nq/create_examples.py’: [Errno 2] No such file or directory可能的原因及解决方法:1.在该路径下没有对应文件解决方法:查看目录结构,发现该文件存在或者在终端进入该文件所在文件夹,输入dir查看该文件夹下包含的文件,发现要运行的文件确实存在,这个原因排除。2.Python命令中空格需要为英文状态运行代码中的空格应该为英文状态python原创 2021-08-23 11:29:25 · 121964 阅读 · 6 评论 -
镜像源操作命令
1.添加镜像源(1)清华镜像源conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/free/conda config --add channels https://mirrors.tuna.tsinghua.edu.cn/anaconda/pkgs/main/conda config --set show_channel_urls yesconda config --add channels原创 2021-08-20 11:23:20 · 183 阅读 · 0 评论