본문 바로가기

버츄얼유튜버

이미지분류 위한 공부

https://github.com/Srikeshram/Celebrity-Face-Recognition/blob/master/Celebrity_Face_Recognition%20.ipynb 

Celebrity 분류하는 코드. 데이터셋도 위 링크에 존재.

 

GitHub - Srikeshram/Celebrity-Face-Recognition: The Classification of 105 Celebrities with Face-Recognition using Tensorflow-Fra

The Classification of 105 Celebrities with Face-Recognition using Tensorflow-Framework - GitHub - Srikeshram/Celebrity-Face-Recognition: The Classification of 105 Celebrities with Face-Recognition ...

github.com

https://www.kaggle.com/datasets/hereisburak/pins-face-recognition

 

위에서 쓴 알고리즘은 모바일넷. 이에 대한 설명은 아래

https://gaussian37.github.io/dl-concept-mobilenet/

 

MobileNets - Efficient Convolutional Neural Networks for Mobile Vision Applications

gaussian37's blog

gaussian37.github.io

아니면 인셉션 v3?

https://github.com/ArmandoDomi/Celebrity-Classification/blob/master/celebrities.py

https://deep-learning-study.tistory.com/517

https://learning-developer.tistory.com/107

 

[논문 읽기] Inception-v3(2015) 리뷰, Rethinking the Inception Architecture for Computer Vision

 이번에 읽어볼 논문은 Rethinking the Inception Architecture for Computer Vision 입니다. 본 논문에서는 Inception-v2와 Inception-v3을 소개합니다.  일반적으로, 모델 크기를 증가시키면 정확도와 연산량..

deep-learning-study.tistory.com

 

GitHub - ArmandoDomi/Celebrity-Classification: Celebrity classification with transfer learning using inceptionV3

Celebrity classification with transfer learning using inceptionV3 - GitHub - ArmandoDomi/Celebrity-Classification: Celebrity classification with transfer learning using inceptionV3

github.com

 

Face detection과 Classfication을 해야 함.

 

디텍션은 이거

https://www.kaggle.com/code/serkanpeldek/face-detection-with-opencv

 

Face Detection with OpenCV

Explore and run machine learning code with Kaggle Notebooks | Using data from multiple data sources

www.kaggle.com

그에 대한 참고자료는 이거

https://deep-learning-study.tistory.com/244

 

[파이썬 OpenCV] 캐스케이드 분류기를 이용해서 정면 얼굴 검출하기 - cv2.CascadeClassifier, detectMultiScal

1. 캐스케이드 분류기  캐스케이드는 직렬로 연결되어 있다는 것을 의미합니다.  얼굴 검출 용도로 많이 쓰이며 눈, 보행자, 자동차 번호판까지 검출 가능합니다. 2. Viola - Jones 얼굴 검출기  머

deep-learning-study.tistory.com

 

데이터셋은 아마 이거..?

https://www.kaggle.com/datasets/jessicali9530/celeba-dataset

 

CelebFaces Attributes (CelebA) Dataset

Over 200k images of celebrities with 40 binary attribute annotations

www.kaggle.com

opencv에서의 yolo활용?

https://peanut159357.tistory.com/94

 

opencv로 동영상 자르기+ YOLO 적용

1. 일단 opencv로 동영상을 잘라준다 2. yolo 적용해서 object detection 감지 ( 아래 사이트 참조) * yoloc3.weighs 는 아래에서 다운로드받아서 쓰기 YOLO object detection using Opencv with Python - Pysour..

peanut159357.tistory.com

 

다크넷 - YOLO를 실행시키기 위해서 필요한 신경망 프레임워크(neural network framework)
dnn(deep neural network)들을 학습시키고 실행시킬 수 있는 틀(framework)이며, 
yolo는 학습된 신경망(결과물) 중 하나. 
Darknet을 이용하면 yolo 뿐만 아니라 AlexNet, VGG-16, Resnet, Densenet 등 dnn도 돌려 볼 수 있다.

경량화 관련 글

https://sotudy.tistory.com/15

 

[딥러닝 모델 경량화] MobileNet

[딥러닝 모델 경량화] MobileNet 지난번 Xception 모델에 이어서 오늘은 MobileNet에 대하여 알아보도록 하겠습니다:^D 2020/08/02 - [Deep Learning/papers] - [딥러닝 모델 경량화] Xception [딥러닝 모델 경량..

sotudy.tistory.com

욜로구현 관련 글

(상) Colab과 Darknet으로 YOLO를 학습시켜보자! (tistory.com)

 

(상) Colab과 Darknet으로 YOLO를 학습시켜보자!

데이터도 준비 됐으니! 지금부터 본격적으로 학습을 시켜보자. 누구나 할 수 있다! 1. Darknet Clone하기 욜로 학습하자 했잖아! 욜로 학습하자 했잖아! 욜로 학습하자 했잖아! 근데 웬 Darknet???? 이라

hipolarbear.tistory.com

욜로 동영상자르기

https://peanut159357.tistory.com/94