Soo's first step

고정 헤더 영역

글 제목

메뉴 레이어

Soo's first step

메뉴 리스트

  • 홈
  • 태그
  • 방명록
  • 분류 전체보기 (92)
    • Daily Life (7)
    • XX-term PLAN (4)
    • IT Convergence Engineering (28)
      • Data Communication (2)
      • Android Programming (6)
      • AI (7)
      • IoT Cloud Platform (2)
      • AI 버섯 어플 (11)
      • 청소년 IT메이커 교육 (0)
      • GAN 이용 가상 피팅 (0)
      • IoT 스마트 약통 (0)
    • Lecture (3)
      • 서버와 인터넷 그리고 데이터 이야기(inflear.. (1)
      • 자바 입문 (1)
      • 스프링 입문 (1)
    • Coding (45)
      • Programmers (44)
      • Python (0)
      • etc. (1)

검색 레이어

Soo's first step

검색 영역

컨텐츠 검색

IT Convergence Engineering/AI

  • [Github] How to upload modified file to git(Windows)

    2020.09.22 by Soo_buglosschestnut

  • [Github] How to upload a project to Github(Windows)

    2020.09.22 by Soo_buglosschestnut

  • [Machine Learning] Multiclass / Multilabel classification

    2020.09.10 by Soo_buglosschestnut

  • [Virtual Environments] pip / pyenv / virtualenv / anaconda

    2020.08.29 by Soo_buglosschestnut

  • [Pip / conda] pip 와 conda

    2020.08.09 by Soo_buglosschestnut

  • [Python] Anaconda 가상환경 생성/삭제하기

    2020.08.09 by Soo_buglosschestnut

  • [Firebase + Android] Google 계정으로 Firebase 이용하기 & Firebase에 Android Project 추가하기(JAVA)

    2020.08.06 by Soo_buglosschestnut

[Github] How to upload modified file to git(Windows)

How to upload modified file to git(Windows) 1. 이 글을 쓰기 위해 section01.py 파일을 다음과 같이 수정했다~ 2. 다음과 같이 적어주고, 현재 상태를 확인한다. # 현재 project의 상태를 확인! git status 그러면 이렇게 modified: (수정된 파일) 이렇게 나온다! 3. 다음과 같이 작성~ 1. git add 2. git commit -m "" # 전체 변경 or git commit -m "" # 수정된 파일만 변경 3. git push origin master 수정된 파일에만 commit 변경 ↓ 만약에 pushing할때 오류나면 # pushig할때 오류 발견시 git push --force origin master 이렇게 똑같이 쓰면 ..

IT Convergence Engineering/AI 2020. 9. 22. 11:24

[Github] How to upload a project to Github(Windows)

How to upload a project to Github(Windows) 1. github에 가입해준다. 아래 링크를 통해서 가입해준다~ github.com/ Build software better, together GitHub is where people build software. More than 50 million people use GitHub to discover, fork, and contribute to over 100 million projects. github.com 2. Your repositories Click! 3. New를 Click! 4. Repository의 name을 정해준 뒤, 파란색 펜 부분은 optional하게 자기가 하고 싶은데로 선택해주면 된다. 완료 되었으면,..

IT Convergence Engineering/AI 2020. 9. 22. 10:55

[Machine Learning] Multiclass / Multilabel classification

Multiclass / Multilabel classification 데이터 분석에서는 input(입력)값과 output(출력)값이 존재한다~ 입력 X = independent variable = covariates, regressor, explanatory, feature, attributes, stimulus 출력 Y = dependent variable = response, regressand, target, label, tag class : 전체 데이터를 분류하는 군집 label : 데이터가 속하는 분류 군집 binary classification : 클래스가 단 두 개일 경우 Multiclass classification 예를 들어 버섯이 5개가 있다고하면, 각각의 버섯은 이름을 가진다. 느타리..

IT Convergence Engineering/AI 2020. 9. 10. 11:47

[Virtual Environments] pip / pyenv / virtualenv / anaconda

pip / pyenv / virtualenv / anaconda pip / pyenv / virtualenv / anaconda 이 세가지의 차이점은 뭘까? 아나콘다 가상환경 검색중에 발견! pip: Python Package Manager python에 default로 포함되어 있지 않다.(homebrew 이용한 python 깔때 저절로 깔린다.) pyenv: Python Version Manager virtualenv : Python Environment Manager anaconda: Package Manager + Environment Manager + Additional Scientific Libraries 출처: stackoverrun.com/ko/q/10533743 python - pyenv..

IT Convergence Engineering/AI 2020. 8. 29. 22:47

[Pip / conda] pip 와 conda

pip 와 conda 궁금했던 conda install과 pip install의 차이 밑의 블로그에 의하면 일반적으로 원하는 package를 현재 환경에만 설치하기 위해서는는 둘다 상관없다는 결론 https://dailyheumsi.tistory.com/33 pip3? pip? 및 conda 내 pip 정리 pip 로 뭐 설치할 때마다 헷갈리던거 이번 글에서 한 번에 정리해보려고 한다. 먼저, 내 컴퓨터에는 anaconda와, python2, 3 모두 깔려있는 상태다. 1. pip vs pip3 이 링크 pip or pip3 to install packages for.. dailyheumsi.tistory.com

IT Convergence Engineering/AI 2020. 8. 9. 22:45

[Python] Anaconda 가상환경 생성/삭제하기

Anaconda 가상환경 생성/삭제하기 Anaconda 가상환경 생성하기 https://www.anaconda.com/products/individual#download-section Anaconda | Individual Edition Anaconda's open-source Individual Edition is the easiest way to perform Python/R data science and machine learning on a single machine. www.anaconda.com 아나콘다 가상환경 생성하는 이유 더보기 최근에 머신러닝 관련 프로젝트를 진행하면서 패키지 간의 의존성 문제 때문에 약간 골치 아팠던 경험이 있는데요. 아나콘다 가상환경을 통해 이를 해결할 수 있었습니다..

IT Convergence Engineering/AI 2020. 8. 9. 21:43

[Firebase + Android] Google 계정으로 Firebase 이용하기 & Firebase에 Android Project 추가하기(JAVA)

Google 계정으로 Firebase 이용하기 & Firebase에 Android Project 추가하기(JAVA) 구글 계정 로그인 후 아래 링크를 통해 Firebase Console들어가기 https://console.firebase.google.com/u/0/?hl=ko 로그인 - Google 계정 하나의 계정으로 모든 Google 서비스를 Google 계정으로 로그인 accounts.google.com → 로그인 후 실행화면 프로젝트 만들기 Click 후, Project 이름을 정해준다. (자신이 관여하는 project의 주제와 비슷한 이름으로 짓는게 편하다.) Firebase 약관에 동의 한 후, 계속을 눌러준다. 3. Google 애널리스틱스 사용 설정 후, 계속을 누른다. 4. 애널리스틱 위..

IT Convergence Engineering/AI 2020. 8. 6. 19:46

추가 정보

인기글

최신글

페이징

이전
1
다음
TISTORY
Soo's first step © Magazine Lab
페이스북 트위터 인스타그램 유투브 메일

티스토리툴바