pytorch-DEX icon indicating copy to clipboard operation
pytorch-DEX copied to clipboard

Pytorch implementation of DEX: Deep EXpectation of apparent age from a single image

Results 7 pytorch-DEX issues
Sort by recently updated
recently updated
newest added

您好,我想在自己的数据上训练模型。并且在网站https://data.vision.ee.ethz.ch/cvl/rrothe/imdb-wiki/中没有找到相关的代码,请问您是在哪里看到的呢,能不能提供一个具体的地址。万分感谢!

hi, sorry to bother. I wanna use your written model to train my own datasets. noticed that the expected_age is calculated directly by the output of model. when doing training,...

I have encountered a problem: Traceback (most recent call last): File "demo.py", line 5, in dex.eval() File "/home/zyd/Reed/DL/age-estimation/code/pytorch-DEX/dex/api.py", line 23, in _eval gender_model.load_state_dict(torch.load(gender_model_path)) File "/home/zyd/anaconda3/envs/pytorch/lib/python3.5/site-packages/torch/serialization.py", line 367, in load return...

I am a student who is trying to train the network. How could I accurately select the images in the dataset? I noticed that many photos do not correspond to...

1. Image Normalization according to ```imagenet_mean.binaryproto```. 2. Age Estimation computing mistake. Your code: ```python def expected_age(vector): res = [(i+1)*v for i, v in enumerate(vector)] return sum(res) ``` but in the...

I used your model file, but got an error of about 8-10 years old. I want to re-use the data set for training. What should I do?

Hello! I have a question, have you trained the model by yourself? or you somehow converted the original caffe model to Pytorch?