목록전체 글 (245)
일상 코딩
https://news.kotra.or.kr/kotranews/ 메세지 페이지 잘못된 접근입니다. news.kotra.or.kr
http://www.kotra.or.kr/bigdata/guide 서비스 안내 : KOTRA 무역투자빅데이터 한글 위로 가기 아래로 가기 매뉴얼 다운로드 FAQ 다운로드 FAQ 다운로드 --> 무역투자 빅데이터 서비스 트라이빅 서비스 안내 --> 코트라는 국내 최초로 '디지탈 무역투자 비즈니스 생태계 구축'을 www.kotra.or.kr
https://www.moef.go.kr/ 기획재정부 경제동향, 지표, 예산 및 기금, 전자민원창구 등 수록 www.moef.go.kr
https://aihub.or.kr/ 홈 | AI 허브 AI 허브는 AI 기술 및 제품·서비스 개발에 필요한 AI 인프라(AI 데이터, AI SW API, 컴퓨팅 자원)를 지원함으로써 누구나 활용하고 참여하는 AI 통합 플랫폼입니다. aihub.or.kr
1. VSCODE 다운로드 - mac OS 환경 및 M1/M2/M3 이라면 Apple Silicon 버전 다운로드. 직접 다운로드 https://code.visualstudio.com/#alt-downloads Visual Studio Code - Code Editing. Redefined Visual Studio Code is a code editor redefined and optimized for building and debugging modern web and cloud applications. Visual Studio Code is free and available on your favorite platform - Linux, macOS, and Windows. code.visualstudio..
https://arxiv.org/ arXiv.org e-Print archive Donate to arXiv Please join the Simons Foundation and our generous member organizations in supporting arXiv during our giving campaign September 23-27. 100% of your contribution will fund improvements and new initiatives to benefit arXiv's global scientifi arxiv.org
https://paperswithcode.com/ Papers with Code - The latest in Machine Learning Papers With Code highlights trending Machine Learning research and the code to implement it. paperswithcode.com
리눅스 버전 : 18.04 파이썬 버전 : 3.8 가상환경 pg : virtualenv python 설치 확인 설치폴더 만들기 $ mkdir aiml 폴더로 이동 $ cd aiml virutalenv 설치 (파이썬 버전에 따라 설치하는 명령이 다르다.) $ python3.8 -m pip install virtualenv 가상환경 만들기 $ vitualenv --python=python3.8 MLvenv # or $ python3.8 -m venv MLvenv 가상환경 활성화 $ source ~/MLvenv/bin/activate 가상환경 비활성화 $ deactivate [Tip] 가상환경 실행 명령 별칭으로 정의하기 $ cd #엔터; 홈으로 디렉토리 변경 $ ls -al .bashrc $ nano .ba..
// ---- Function as a param func add( _ a: Int, _ b: Int) -> Int { return a+b } func subtract( _ a: Int, _ b: Int)-> Int{ return a - b } func multiple( _ a: Int, _ b: Int) -> Int{ return a * b } var function = add function(4,2) function = subtract function(4,2) func printResult(_ function: (Int, Int) -> Int, _ a: Int,_ b: Int){ let result = function(a,b) print(result) } printResult(add, 10, 5) /..