• 大小: 38.98MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-06-22
  • 语言: 其他
  • 标签: zero-shot  

资源简介

该程序是看了网上一篇论文后进行了复现包括了基础复现和原文复现(原文复现使用了pytorch框架)在该资源包中附带复现的论文,语义空间矩阵,相关程序,还有数据集的相关说明(由于数据集过大,请自行下载数据集)

资源截图

代码片段和文件信息

# -*- coding:utf-8 -*-
import os
import shutil
def mkdir(path):

    folder = os.path.exists(path)

    if not folder:                   #判断是否存在文件夹如果不存在则创建为文件夹
        os.makedirs(path)            #makedirs 创建文件时如果路径不存在会创建这个路径
        print “---  new folder...  ---“
        print “---  OK  ---“

    else:
        print “---  There is this folder!  ---“

def read_file_name(path):
    l = []
    m = []
    for name in os.listdir(path):
       l.append(os.path.join(pathname))
    for i in l:
        c = i.split(‘\\‘)
        m.append(c[-1])
    print m
    if len(m) == 0:
        return 0
    else:
        z = [int(i) for i in m]
        return max(z)


def deleteFolder(path):
    for root dirs files in os.walk(path topdown=False):
        for name in files:
            os.remove(os.path.join(root name))
        for name in dirs:
            os.rmdir(os.path.join(root name))


file = “H:/data1/6/“
file1 = “H:/data1“


a = []
for i in range(20):
    c = []
    for j in range(20):
        c.append(j)
    a.append(c)
if (len(a)==20):
    print a



 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      23552  2018-04-24 11:16  零样本学习\attribute.xls

     文件       1197  2018-06-01 20:07  零样本学习\CreateFolder.py

     文件        172  2018-06-01 20:42  零样本学习\csvText.py

     文件       2424  2018-05-30 10:01  零样本学习\KNN.py

     文件       2504  2018-05-25 10:03  零样本学习\loadData.py

     文件       1422  2018-05-24 16:41  零样本学习\readAttribute.py

     文件      59070  2012-03-29 20:55  零样本学习\readme.pdf

     文件        178  2018-06-14 17:08  零样本学习\Readme.txt

     文件  118363526  2018-05-21 10:52  零样本学习\test.ipynb

     文件       3333  2018-05-30 15:51  零样本学习\Zero_Shot.py

     文件    1251555  2018-04-20 19:53  零样本学习\(Hao shuji)Zero-Shot_Human_Activity_Recognition_via_Nonlinear_Compatibility_based_Method_accepted.pdf

     目录          0  2018-06-14 17:08  零样本学习

----------- ---------  ---------- -----  ----

            119708933                    12


评论

共有 条评论

相关资源