上一页 1 ··· 3 4 5 6 7 8 下一页
摘要: 主要用在通过python执行xxx.py文件时获取其携带的参数列表 #test.py import sys a=sys.argv[0] print(a) 将test.py保存在c盘的根目录下。 在程序中找到 ‘运行’->点击->输入"cmd"->回车键 进入控制台命令窗口(如下图),先输入cd c: 阅读全文
posted @ 2021-09-26 12:30 ArdenWang 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 用Jupyter加载 .py 文件 %run lhr.py 加载了lhr.py文件,相当于导包。 %load lhr.py 把lhr.py的代码显示出来。 使用下面的快捷键运行py文件 执行当前cell,并自动跳到下一个cell:Shift Enter 执行当前cell,执行后不自动调转到下一个ce 阅读全文
posted @ 2021-09-26 11:02 ArdenWang 阅读(339) 评论(0) 推荐(0) 编辑
摘要: with open(path,encoding='utf-8') as f 阅读全文
posted @ 2021-09-26 08:38 ArdenWang 阅读(246) 评论(0) 推荐(0) 编辑
摘要: from compiler.ast import flatten 提示: Traceback (most recent call last): File "eval_ssd_network.py", line 31, in <module> from compiler.ast import flat 阅读全文
posted @ 2021-09-26 08:34 ArdenWang 阅读(179) 评论(0) 推荐(0) 编辑
摘要: import os path = "/content/drive/MyDrive/Project/people_relatioin_extract" os.chdir(path) 阅读全文
posted @ 2021-09-24 09:06 ArdenWang 阅读(106) 评论(0) 推荐(0) 编辑
摘要: Embedding 无初始化embedding import torch.nn as nn emb=nn.Embedding(num_embeddings, embedding_dim) 加载预训练模型(如glove) def build_embedding_matrix(word2idx, emb 阅读全文
posted @ 2021-05-22 09:34 ArdenWang 阅读(118) 评论(0) 推荐(0) 编辑
摘要: def unzip_file(zip_src, dst_dir): r = zipfile.is_zipfile(zip_src) if r: fz = zipfile.ZipFile(zip_src, 'r') for file in fz.namelist(): fz.extract(file, 阅读全文
posted @ 2021-04-22 13:03 ArdenWang 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-04-05 09:40 ArdenWang 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 1、首先在所在系统中安装Anaconda。可以打开命令行输入conda -V检验是否安装以及当前conda的版本。 2、conda常用的命令。 1)conda list 查看安装了哪些包。 2)conda env list 或 conda info -e 查看当前存在哪些虚拟环境 3)conda u 阅读全文
posted @ 2021-04-02 10:38 ArdenWang 阅读(508) 评论(0) 推荐(0) 编辑
摘要: w.r.t:with respect to的缩写,意思是关于、谈到、涉及等。 i.e.:id est的缩写,意思是即,换句话说等。 et al. :et alia(“and others;and co-workers”)的缩写,意思是:其他人、等人。通常在列文献作者时使用,把主要作者列出后,其他作者 阅读全文
posted @ 2021-01-19 11:01 ArdenWang 阅读(1067) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 下一页