일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 기능과 역할
- Git
- VOC 변환
- 커스텀 애니메이션 적용
- DOTA dataset
- TensorFlow Object Detection API install
- object detection
- CARLA simulator
- TensorFlow Object Detection Model Build
- TensorFlow Object Detection Error
- 객체 탐지
- Towards Deep Learning Models Resistant to Adversarial Attacks
- Paper Analysis
- Branch 활용 개발
- 사회초년생 추천독서
- paper review
- 리눅스 빌드
- Docker
- 크롤링
- Custom Animation
- TensorFlow Object Detection 사용예시
- Object Detection Dataset 생성
- 논문분석
- 논문 분석
- 개발흐름
- DACON
- InstructPix2Pix
- Linux build
- Carla
- AI Security
- Today
- Total
목록AI Security (2)
JSP's Deep learning

1. 요약 ①“Optimization 관점”에서 Adversarial Robustness 정의 (=> 강력한 Adversarial Attack에 대한 Defense을 학습) ②Adversarial Training with Strong Attack => Robustness↑ ③ Model’s Capacity↑=> 복잡하고 정교한 Decision boundary => Robustness↑ ④복잡한 Dataset에 대한 Attack에 대해서는 Defense 성능이 좋지 못하다. 2. 용어 정리 1)“First-Order Attack” “한 번의 미분”만으로 공격을 수행하는 기법(Loss function에 대해서 한 번) => 즉, 오차역전파를 한번만 수행함. PGD(Projected Gradient Desce..

1. Adversarial Examples 요약 "Adversarial Examples"는 Model의 선형성(Linear nature)의 취약점을 이용한 공격 기법이다. "FGSM(Fast Gradient Sign Method)"을 통해서 Adversarial Examples을 생성한다. "Adversarial Training"을 통해서 "Adversarial Example"에 대해 Model을 Robust하게 한다. 2. 주요 용어 1) Softplus Function log(1+exp(x))로 정의된다. ReLU와 비슷하지만 ReLU는 x < 0에 대해서 0으로 처리하는 반면에 SoftPlus는 조금 더 Smooth하게 0으로 수렴하게 한다. 2) Maxout Function 활성화 함수를 piec..