- 博客(5)
- 收藏
- 关注
原创 fused_adam/fused_adam.so: cannot open shared object file: No such file
可能的原因是transformers版本过高。
2024-03-12 11:17:33 1382 1
原创 学习中
随手记录blogimport torchlist_1 = torch.tensor([1,4,5,6,0])list_2 = [1,4,5,6,0]TF_1 = torch.tensor([True,False,False,True,True])TF_2 = [True,False,False,True,True]print("tensor:")print(list_1[TF_1])print(list_1[TF_2])print("list:")# print(list_2[TF_1
2020-12-18 16:06:24 162 1
原创 将指定目录下所有文件夹中特定文件复制到其他文件夹
import osfrom shutil import copy#将特定目录root_path下所有文件夹中的label.png文件复制到 指定路径to_path中并命名为”n.png“#添加root_pathroot_path = "root_path"files = os.listdir(root_path)#添加to_pathto_path = "to_path"#文件名可以自行根据需要改#filename = "*.png"filename = "label.png" .
2020-06-01 14:41:29 349
原创 pyinstaller打包labelme出现的问题
完全搞不懂用pyinstaller打包labelme为什么会如此麻烦这是build文件夹下的*.txt文件missing module named ‘org.python’ - imported by copy (optional), xml.sax (delayed, conditional)missing module named pwd - imported by posixpath (delayed, conditional), shutil (optional), tarfile (opti
2020-05-25 15:39:39 1115 3
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人