일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- docker in ubuntu
- ubuntu
- iris dataset
- flower classification
- token check
- 369게임 만들기
- 긍부정문 판별
- 시저암호 코딩
- 오목게임앱
- yolo mask
- 360게임 만들기 with c
- ceasor
- AI
- drone control
- 한글깨짐해결
- dji tello
- C
- pill classification
- docker
- mask image training
- pill ai
- ubuntu에서 docker 사용
- Java
- deep learning
- 오목앱 만들기
- 춤 유사도 평가
- Python
- aws code pipeline
- docker container
- Container
- Today
- Total
목록전체 글 (28)
월레스와 그로밋: 코딩의 날
Image 목록 확인sudo docker imagesdocker image ls [옵션] [리포지토리명]옵션설명-all, -a모든 이미지를 표시--digests다이제스트 표시 여부--no-trunc결과를 모두 표시--quiet, -qDocker 이미지 ID만 표시Image 받기 및 삭제 이미지 검색sudo docker search [이미지 이름]이미지 받기 버전 -> latest 를 쓰면 최신 버전 받을 수 있음sudo docker pull [이미지 이름]:[버전]이미지 삭제sudo docker rmi [이미지 id]컨테이너를 삭제하기 전에 이미지를 삭제 할때, -f 옵션을 붙이면 컨테이너도 강제 삭제 가능sudo docker rmi -f [이미지 id]
Docker 설치 관리자 권한 시작sudo su1. 패키지 업데이트 및 설치sudo apt-get updatesudo apt-get install ca-certificates curl gnupg apt-transport-https software-properties-common패키지역할ca-certificates보안 인증서 관리 (HTTPS 연결 보장)curlURL에서 데이터를 다운로드 (GPG 키 추가 및 패키지 다운로드)gnupgGPG 키 관리 (패키지 서명 검증)apt-transport-httpsHTTPS를 통한 패키지 다운로드 (Docker 패키지 설치 지원)software-properties-common추가 저장소(PPA) 관리 (Docker 저장소 추가)2. 도커 공식 gpg 키 추가curl ..
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

Five_in_a_row_-Summary안드로이드 스튜디오로 오목앱 제작Tech StackLanguage : JavaTool : Android Studio HedgehogResults33 금지 기능 없는 것 외에는 실제 오목 게임이랑 거의 비슷하게 구현하였습니다.게임에 대한 자세한 설명은 '오목앱_권수빈.pptx' 를 참고하여 주세요. GitHub GitHub - GamjaUser/Five_in_a_row_-Contribute to GamjaUser/Five_in_a_row_- development by creating an account on GitHub.github.com
flower_classificationSummary102 종류의 꽃 데이터를 학습하여 꽃을 판별해줍니다. (데이터는 [https://www.robots.ox.ac.uk/~vgg/data/flowers/102/] 이곳에서)InstallationPython 3.11 with the following installed :git clone https://github.com/GamjaUser/flower_classification.gitcd flower_classificationpip install -r requirements.txtDatasetlink : [https://www.robots.ox.ac.uk/~vgg/data/flowers/102/]categories : [https://www.robots.ox...

Pill_Classfication_AI (Classification typo)Summary알약 50종을 학습하여 알약 이미지를 테스트 하였을 때 어떤 알약인지 판별해주는 AI 입니다. 뒤섞이거나 집에 돌아다니는 알약이 무엇인지 궁금하다면 사진을 찍어 어떤 알약인지 쉽게 알 수 있도록 하는 취지에서 개발하였습니다.(※ 팀 프로젝트(주제 : 알약 판별 앱)로, 본 작성자가 맡은 인공지능 파트의 코드만을 공유했습니다. 결과 사진은 팀 프로젝트 최종 결과입니다.)BaseOS : WSL2Platform : Docker (with anaconda)Docker image : pqowie/pytorch_tensorflow [https://hub.docker.com/r/pqowie/pytorch_tensorflow]In..
def test1(): from selenium import webdriver from selenium.webdriver.chrome.service import Service from selenium.webdriver.chrome.options import Options from webdriver_manager.chrome import ChromeDriverManager from selenium.webdriver.common.by import By import json import csv import pyautogui import pyperclip import time from selenium.webdriver.common.keys imp..