GithubHelp home page GithubHelp logo

Comments (12)

wujiyang avatar wujiyang commented on August 29, 2024 2

@satakiolo
链接:https://pan.baidu.com/s/1eMpfz2jCbZR2XO91hgFnDA
提取码:l2zk

from face_pytorch.

wujiyang avatar wujiyang commented on August 29, 2024

@satakiolo 稍后我会放到百度云

from face_pytorch.

satakiolo avatar satakiolo commented on August 29, 2024

太谢谢您了!

from face_pytorch.

satakiolo avatar satakiolo commented on August 29, 2024

@satakiolo
链接:https://pan.baidu.com/s/1eMpfz2jCbZR2XO91hgFnDA
提取码:l2zk

@satakiolo 稍后我会放到百度云

作者您好,请问SEResNet50-IR_2只是将SEResNet50-IR再计算了一次?还是有其他意义呢?

from face_pytorch.

wujiyang avatar wujiyang commented on August 29, 2024

那个可以忽略

from face_pytorch.

tiandunx avatar tiandunx commented on August 29, 2024

厉害厉害

from face_pytorch.

wujiyang avatar wujiyang commented on August 29, 2024

@yoyohonyang 自己生成自己训练数据的列表就好了

from face_pytorch.

xuexingyu24 avatar xuexingyu24 commented on August 29, 2024

@wujiyang Hi could you please share us the .list file along with your CASIA-WebFace dataset ?

from face_pytorch.

ZZH2950228 avatar ZZH2950228 commented on August 29, 2024

我生成自己数据集的列表txt文件,但是运行train文件出现下面的错误,请问您是怎么解决的
呢?
Traceback (most recent call last):
File "train.py", line 255, in
train(args)
File "train.py", line 59, in train
trainset = CASIAWebFace(args.train_root, args.train_file_list, transform=transform)
File "/home/zzh/桌面/Face_Pytorch-master/dataset/casia_webface.py", line 42, in init
image_path, label_name = info.split(' ')
ValueError: not enough values to unpack (expected 2, got 1)

from face_pytorch.

swuxyj avatar swuxyj commented on August 29, 2024

@wujiyang Hi could you please share us the .list file along with your CASIA-WebFace dataset ?
Maybe you can try try:

import os

with open('webface_align_train.list', 'w') as f:
    root_path = "webface_align_112"
    for index, current_dir in enumerate(os.listdir(root_path)):
        for file in os.listdir(os.path.join(root_path, current_dir)):
            f.write(os.path.join(current_dir, file) + " " + str(index) + "\n")

from face_pytorch.

jilner avatar jilner commented on August 29, 2024

你好,请问这个是已经对齐的人脸数据集么,谢谢

from face_pytorch.

Tracy-git avatar Tracy-git commented on August 29, 2024

because you use that generate_data_list.py , has two space (' ') between path and label
so you should modify code as:
for info in img_label_list:
image_path, label_name = info.split(' ')
image_list.append(image_path)
label_list.append(int(label_name))

from face_pytorch.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.