Giter VIP home page Giter VIP logo

Comments (7)

elmoutaouakkil avatar elmoutaouakkil commented on August 30, 2024 1

Can you please share with us more details (files to compile ...) ?

from tut-live-age-estimator.

mahehu avatar mahehu commented on August 30, 2024

We are training TF versions now. Should be ready to commit in a few weeks.

from tut-live-age-estimator.

Zumbalamambo avatar Zumbalamambo commented on August 30, 2024

can you please share the dataset for age?

from tut-live-age-estimator.

mahehu avatar mahehu commented on August 30, 2024

We use these sets

https://data.vision.ee.ethz.ch/cvl/rrothe/imdb-wiki/

http://gesture.chalearn.org/2016-looking-at-people-cvpr-challenge

from tut-live-age-estimator.

Zumbalamambo avatar Zumbalamambo commented on August 30, 2024

are you using imdb celebrity faces? because the cropped face which of 7 gb is not proper. the age of people is not exact. I will share with you the code that I used to segregate the images into various folders based on their age. after segregation, I noticed that even the teenagers are in old people age folder. However imdb wiki dataset it good enough..

import numpy as np
from utils import get_meta
import cv2
import os
from shutil import copy
db = "imdb"
mat_path = "data/{}_crop/{}.mat".format(db, db)
print (mat_path)
full_path, dob, gender, photo_taken, face_score, second_face_score, age\
    = get_meta(mat_path, db)

print("#images: {}".format(len(face_score)))
print("#images with inf scores: {}".format(np.isinf(face_score).sum()))

img_paths = []
photo_root = "data/{}_crop/".format(db)


for i in range(len(age)):
    if age[i] == 7:
        print (photo_root +str (full_path[i][0]))
        img_cv = cv2.imread(os.path.join(photo_root, full_path[i][0]))

        copy(photo_root + "/" + str(full_path[i][0]), "seven")

from tut-live-age-estimator.

Zumbalamambo avatar Zumbalamambo commented on August 30, 2024

@mahehu any ideas as of how I can get this done?

from tut-live-age-estimator.

mahehu avatar mahehu commented on August 30, 2024

I think all these issues are addressed in the current version.

from tut-live-age-estimator.

Related Issues (12)

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.