일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- ubuntu
- Container
- docker
- ceasor
- ubuntu에서 docker 사용
- 긍부정문 판별
- token check
- 시저암호 코딩
- Python
- pill classification
- flower classification
- yolo mask
- 오목게임앱
- docker container
- docker in ubuntu
- mask image training
- pill ai
- 한글깨짐해결
- AI
- iris dataset
- C
- aws code pipeline
- 360게임 만들기 with c
- 춤 유사도 평가
- dji tello
- drone control
- 369게임 만들기
- deep learning
- Java
- 오목앱 만들기
- Today
- Total
목록2025/02/07 (2)
월레스와 그로밋: 코딩의 날
iris_data_check.pyfrom sklearn.datasets import load_irisimport numpy as np# Iris 데이터 로드iris = load_iris()data, target = iris.data, iris.targetfeature_names = iris.feature_namesclass_names = iris.target_names# 데이터 확인print("특성:", feature_names)print("클래스:", class_names)print("데이터 샘플:", data[0]) # 꽃받침 길이/넓이, 꽃잎 길이/넓이print("타겟 샘플:", target[0])# 각 클래스별 데이터 개수 확인unique, counts = np.unique(target, ret..
import numpy as npdef AND(x1, x2): x = np.array([x1, x2]) w = np.array([1.0, 1.0]) b = -1.5 tmp = np.sum(w*x) + b if tmp " + str(y))output[AND_Gate](0, 0)->0(1, 0)->0(0, 1)->0(1, 1)->1[OR_Gate](0, 0)->0(1, 0)->1(0, 1)->1(1, 1)->1[NAND_Gate](0, 0)->1(1, 0)->1(0, 1)->1(1, 1)->0[XOR_Gate](0, 0)->0(1, 0)->1(0, 1)->1(1, 1)->0