All Projects → visionjo → FIW_KRT

visionjo / FIW_KRT

Licence: MIT license
Families In the WIld: A Kinship Recogntion Toolbox.

Programming Languages

python
139335 projects - #7 most used programming language
matlab
3953 projects

Projects that are alternatives of or similar to FIW KRT

Spark R Notebooks
R on Apache Spark (SparkR) tutorials for Big Data analysis and Machine Learning as IPython / Jupyter notebooks
Stars: ✭ 109 (+505.56%)
Mutual labels:  big-data, notebook
Spark Py Notebooks
Apache Spark & Python (pySpark) tutorials for Big Data Analysis and Machine Learning as IPython / Jupyter notebooks
Stars: ✭ 1,338 (+7333.33%)
Mutual labels:  big-data, notebook
merkle-db
High-scalability analytics database built on immutable merkle-trees
Stars: ✭ 44 (+144.44%)
Mutual labels:  big-data
sunrise
NumPy, SciPy, MRI and Music | Presented at ISMRM 2021 Sunrise Educational Session
Stars: ✭ 20 (+11.11%)
Mutual labels:  notebook
corpusexplorer2.0
Korpuslinguistik war noch nie so einfach...
Stars: ✭ 16 (-11.11%)
Mutual labels:  big-data
big-data-engineering-indonesia
A curated list of big data engineering tools, resources and communities.
Stars: ✭ 26 (+44.44%)
Mutual labels:  big-data
pyspark-algorithms
PySpark Algorithms Book: https://www.amazon.com/dp/B07X4B2218/ref=sr_1_2
Stars: ✭ 72 (+300%)
Mutual labels:  big-data
idr-notebooks
Jupyter Notebooks for the Image Data Resource
Stars: ✭ 14 (-22.22%)
Mutual labels:  notebook
swiftML
Swift library for Machine Learning
Stars: ✭ 56 (+211.11%)
Mutual labels:  notebook
lidbox
End-to-end spoken language identification out of the box.
Stars: ✭ 39 (+116.67%)
Mutual labels:  big-data
HadoopDedup
🍉基于Hadoop和HBase的大规模海量数据去重
Stars: ✭ 27 (+50%)
Mutual labels:  big-data
tyssue
An epithelium simulation library
Stars: ✭ 50 (+177.78%)
Mutual labels:  notebook
Machine-Learning-Notebooks
15+ Machine/Deep Learning Projects in Ipython Notebooks
Stars: ✭ 66 (+266.67%)
Mutual labels:  notebook
hazelcast-csharp-client
Hazelcast .NET Client
Stars: ✭ 98 (+444.44%)
Mutual labels:  big-data
awesome-tools
curated list of awesome tools and libraries for specific domains
Stars: ✭ 31 (+72.22%)
Mutual labels:  big-data
yildiz
🦄🌟 Graph Database layer on top of Google Bigtable
Stars: ✭ 24 (+33.33%)
Mutual labels:  big-data
javaer-mind
Java 程序员进阶学习的思维导图
Stars: ✭ 66 (+266.67%)
Mutual labels:  big-data
machine-learning-use-cases
Machine Learning Notebooks with Turicreate and Keras in a Docker Container
Stars: ✭ 20 (+11.11%)
Mutual labels:  notebook
computer-vision-notebooks
👁️ An authorial set of fundamental Python recipes on Computer Vision and Digital Image Processing.
Stars: ✭ 89 (+394.44%)
Mutual labels:  notebook
predictionio-sdk-java
PredictionIO Java SDK
Stars: ✭ 107 (+494.44%)
Mutual labels:  big-data

FIW API

Families In the WIld: A Kinship Recogntion Toolbox. Visit FIW project page to download and learn more!

https://web.northeastern.edu/smilelab/fiw/

Version 1.0

This document is incomplete, i.e., work in progress, as is the API itself.

N|Solid

Overview

This API serves as the main code-base for kinship effort with FIW database. In addition, below is detailed description of database (i.e., data and label) structure.

Families In the Wild (FIW) Data and Labels

This documentation describes FIW DB and (working) development kit. This is work in prgress (i.e., still to come are FIW-CNN models, updated benchmarks, more in README (this), and more).

Check out FIW project page

Download

Download here

Details of the data

See pulications below. A more complete list of references can be found here

Reference

 @article{robinson2018fiw,
   title={},
   author={},
   journal={IEEE Transactions on Pattern Analysis and Machine Intelligence},
   year={2018},
   publisher={IEEE}
 }
 
 @InProceedings{kinFG2017,
  author       = "Wang, Shuyang and Robinson, Joseph P and Fu, Yun",
  title        = "Kinship Verification on Families In The Wild with Marginalized Denoising Metric Learning",
  booktitle    = "Automatic Face and Gesture Recognition (FG), 2017 12th IEEE International Conference and Workshops on",
  year         = "2017",
}

@InProceedings{robinson2016families,
  author       = "Robinson, Joseph P. and Shao, Ming and Wu, Yue and Fu, Yun",
  title        = "Families In the Wild (FIW): Large-Scale Kinship Image Database and Benchmarks",
  booktitle    = "Proceedings of the 2016 ACM on Multimedia Conference",
  pages        = "242--246",
  publisher    = "ACM",
  year         = "2016"
}

DB Contents and Structure

  • FIW_PIDs.csv:    Photo lookup table. Each row is an image instance, containing the following fields:

    • PID:    Photo ID
    • Name:    Surname.firstName (root reference for given family)
    • URL:    Photo URL on web
    • Metadata:   Text caption for photo
  • FIW_FIDs.csv:    FID (family)/ Surname lookup table.

    • FID:    Unique ID key assigned to each family.
    • Surname:    Family Name corresponding to FID key.
  • FIW_RIDs.csv:   Relationship lookup table with keys [1-9] assigned to relationship types.

  • FIDs/

    • FID####/    Contains labels and cropped facial images for members of family (1-1000)
      • MID#/    Face images of family member with ID key , i.e., MID #.

      • F####.csv:    File containing member information of each family:

        • relationships  matrix representing relationship
        • names    First name of family member.
        • gender    ender of family member

For example:

FID0001.csv
    
	0     1     2     3     Name    Gender
	1     0     4     5     name1   female
	2     1     0     1     name2   female
	3     5     4     0     name3   male
	

Here we have 3 family members, as seen by the MIDs across columns and down rows.

We can see that MID1 is related to MID2 by 4->1 (Parent->Sibling), which of course can be viewed as the inverse, i.e., MID2->MID1 is 1->4. It can also be seen that MID1 and MID3 are Spouses of one another, i.e., 5->5. And so on, and so forth.


Project Organization

├── LICENSE
├── README.md          <- The top-level README for developers using this project.
├── data
│   ├── external       <- Data from third party sources.
│   ├── interim        <- Intermediate data that has been transformed.
│   ├── processed      <- The final, canonical data sets for modeling.
│   └── raw            <- The original, immutable data dump.
│
├── docs               <- A default Sphinx project; see sphinx-doc.org for details
│
├── models             <- Trained and serialized models, model predictions, or model summaries
│
├── notebooks          <- Jupyter notebooks.
│
├── references         <- Data dictionaries, manuals, and all other explanatory materials.
│
├── reports            <- Generated analysis as HTML, PDF, LaTeX, etc.
│   └── figures        <- Generated graphics and figures to be used in reporting
│
├── requirements.txt   <- The requirements file for reproducing the analysis environment, e.g.
│                         generated with `pip freeze > requirements.txt`
│
├── src                <- Source code for use in this project.
│   ├── __init__.py    <- Makes src a Python module
│   │
│   ├── data           <- Scripts to download or generate data
│   │   └── make_dataset.py
│   │
│   ├── features       <- Scripts to turn raw data into features for modeling
│   │   └── build_features.py
│   │
│   ├── models         <- Scripts to train models and then use trained models to make
│   │   │                 predictions
│   │   ├── predict_model.py
│   │   └── train_model.py
│   │
│   └── visualization  <- Scripts to create exploratory and results oriented visualizations
│       └── visualize.py
│
└── <OPEN>             <- TBD


Installation

Todos

General

  • Feature Extraction Module
  • Metric Learning Module
  • Fine-tune module
  • Eval module
  • End-to-end scripts demoing usage of modules

Experiments (TO DO)

  • VGG Center-Face
  • ResNet with Metric Learning
  • ResNet Triplet-loss?
  • Cross Dataset Eval
  • Features from different layers of VGG

License

By downloading the image data you agree to the following terms:

  1. You will use the data only for non-commercial research and educational purposes.
  2. You will NOT distribute the above images.
  3. Northeastern University makes no representations or warranties regarding the data, including but not limited to warranties of non-infringement or fitness for a particular purpose. 1.You accept full responsibility for your use of the data and shall defend and indemnify Northeastern University, including its employees, officers and agents, against any and all claims arising from your use of the data, including but not limited to your use of any copies of copyrighted images that you may create from the data.

Authors

Contact

Please contact Joseph Robinson ([email protected]) for questions, comments, or bug reports.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].