-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #999 from serengil/feat-task-0202-improvements
open issues
- Loading branch information
Showing
42 changed files
with
332 additions
and
230 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
## Cite DeepFace Papers | ||
|
||
Please cite deepface in your publications if it helps your research. Here are its BibTex entries: | ||
|
||
### Facial Recognition | ||
|
||
If you use deepface in your research for facial recogntion purposes, please cite the this publication. | ||
|
||
```BibTeX | ||
@inproceedings{serengil2020lightface, | ||
title = {LightFace: A Hybrid Deep Face Recognition Framework}, | ||
author = {Serengil, Sefik Ilkin and Ozpinar, Alper}, | ||
booktitle = {2020 Innovations in Intelligent Systems and Applications Conference (ASYU)}, | ||
pages = {23-27}, | ||
year = {2020}, | ||
doi = {10.1109/ASYU50717.2020.9259802}, | ||
url = {https://doi.org/10.1109/ASYU50717.2020.9259802}, | ||
organization = {IEEE} | ||
} | ||
``` | ||
|
||
### Facial Attribute Analysis | ||
|
||
If you use deepface in your research for facial attribute analysis purposes such as age, gender, emotion or ethnicity prediction or face detection purposes, please cite the this publication. | ||
|
||
```BibTeX | ||
@inproceedings{serengil2021lightface, | ||
title = {HyperExtended LightFace: A Facial Attribute Analysis Framework}, | ||
author = {Serengil, Sefik Ilkin and Ozpinar, Alper}, | ||
booktitle = {2021 International Conference on Engineering and Emerging Technologies (ICEET)}, | ||
pages = {1-4}, | ||
year = {2021}, | ||
doi = {10.1109/ICEET53442.2021.9659697}, | ||
url = {https://doi.org/10.1109/ICEET53442.2021.9659697}, | ||
organization = {IEEE} | ||
} | ||
``` | ||
|
||
### Repositories | ||
|
||
Also, if you use deepface in your GitHub projects, please add `deepface` in the `requirements.txt`. Thereafter, your project will be listed in its [dependency graph](https://github.com/serengil/deepface/network/dependents). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
import os | ||
|
||
SRC_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) | ||
ROOT_DIR = os.path.dirname(SRC_DIR) |
Oops, something went wrong.