Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 큐
- RxJS
- Machine Learning
- 포인터
- vue3
- 알고리즘
- 타입스크립트
- 릿코드
- cors
- alexnet
- GraphQL
- 프로그래머스
- 프로세스
- 컨테이너
- 이진탐색
- 프론트엔드
- RT scheduling
- 해시테이블
- 연결 리스트
- 배열
- 연결리스트
- C
- 자료구조
- pytorch
- 브라우저
- 스택
- 코딩테스트
- 웹팩
- APOLLO
- 자바스크립트
Archives
- Today
- Total
목록tensorflow (1)
프린세스 다이어리
Developing and training the AlexNet model using Tensorflow on CIFAR-10 dataset
1. import libraries import tensorflow as tf from tensorflow.keras import datasets, layers, models, optimizers, regularizers 2. Load and preprocess CIFAR-10 dataset (train_images, train_labels), (test_images, test_labels) = datasets.cifar10.load_data() train_images, test_images = train_images / 255.0, test_images / 255.0 num_train = int(len(train_images) * 0.8) train_images, validation_images = t..
AI, ML
2023. 4. 11. 02:20