age-estimation-pytorch icon indicating copy to clipboard operation
age-estimation-pytorch copied to clipboard

PyTorch-based CNN implementation for estimating age from face images

Results 18 age-estimation-pytorch issues
Sort by recently updated
recently updated
newest added

Hello, can you explain what is ARCH model(get_model(model_name=cfg.MODEL.ARCH.)? I have not got any useful searching result about ARCH model what ARCH. Thank you so much.

(base) C:\Users\茅场晶彦\PycharmProjects\age-estimation-pytorch-master>python train.py --data_dir C:\Users\茅场晶彦\PycharmProjects\age-estimation-pytorch-master\appa-real-release TRAIN.BATCH_SIZE 8 MODEL.ARCH resnet34 => creating model 'resnet34' 0%| | 0/499 [00:00

When I run demo.py, there is an error downloading the model. Is there any other way to download

when i run the code !python train.py --data_dir data_dir/appa-real-release --tensorboard tf_log MODEL.ARCH se_resnet50 TRAIN.OPT sgd TRAIN.LR 0.1 it has a response like : => creating model 'se_resnet50' 0% 0/31 [00:00

At your suggestion, I've tried [ python train.py --data_dir /appa-real-release TRAIN.BATCH_SIZE 16 MODEL.ARCH resnet34] But after downloading the model, it says: => creating model 'resnet34' Traceback (most recent call last):...

Thank you for the last answer for my question. But I have another problem. occur this error Traceback (most recent call last): File "train.py", line 246, in main() File "train.py",...

error code >> Traceback (most recent call last): File "train.py", line 244, in main() File "train.py", line 151, in main model = get_model(model_name=cfg.MODEL.ARCH) File "C:\Users\intel\Desktop\capstone\age-estimation-pytorch-master\model.py", line 7, in get_model model...

I read your code carefully. In train.py, I'm not sure what outputs means. Is it the output of the model FC layer or the Softmax layer? Because if it's the...