분류 전체보기 109

제프리 힌튼(Geoffrey Hinton)의 지능에 이르는 두 가지 길

https://twitter.com/CSERCambridge/status/1661777454212546561?s=20 트위터에서 즐기는 Centre for the Study of Existential Risk “Geoffrey Hinton's lecture will be starting in about 10 minutes. "Two Paths to Intelligence" has already filled up the lecture theatre here. Follow along with us for the key insights! Organised along with @LeverhulmeCFI, @Cambridge_Eng, and @CSERCambridg twitter.com 제프리 힌튼은 이제 역전파..

AI/etc 2023.05.28

버전간의 차이점 비교~ 수업을 마치며

git log -p # patch 내역이 나옴 git log --stat # 어떤 파일이 변경되었는지 나옴 git diff # 커밋 전 변경내용 확인 git reset --hard # 커밋 전 변화내용 삭제 git checkout # 특정 버전으로 working tree 변경 git checkout master git commit -am "message" add 와 commit 을 한 번에 함 새로운 파일은 최초 한 번은 add를 해줘야 함 git config --global core.editor "nano" git reset --hard 버전 버전을 리셋하겠다 X 해당 버전으로 리셋하겠다. O 버전을 삭제하지 않으면서 되돌리기 git revert 역순, 순차적으로 리버트를 해야 충돌이 일어나지 않음 d..

coding 2022.08.03

APPLICATION / WINDOW

// System.Windows.Forms: 윈폼 // System.Window 에서 구현하는 경우: WPF WPF 실행을 위해 필요한 2개 클래스 Application, Window 1. Application // MyApp.cs using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; // Application namespace ch03_1 { class MyApp: Application // Application 상속 { [STAThread] // 1. 싱글 쓰레드로 시작 됨 public static void M..

coding 2021.05.14

Kotlin 기초1 정리

Kotlin: JetBrain 개발한 현대 프로그래밍 언어 특징:) JVM 기반 / 객체지향, 함수형 프로그래밍 지원 Java 호환 변수: 프로그램에서 사용하는 데이터를 임시로 저장해 놓는 그릇 fun main(){ // 변수는 var var number: Int = 1234 // 상수는 val val PI = 3.14 print(PI) } 숫자데이터 정수 Byte, Short, Int, Long 실수 Float, Double 논리 Boolean 문자 Char 문자열 String 문자열 템플릿 var number: Byte = 100 println("${number}") 입력 var input = readLine() ?: "" var value = input.toIntOrNull() ?: 0 print(..

coding 2021.03.18