본문 바로가기

Developing..72

shell script(.sh) 파일 만드는 법 .sh만들고 실행하는 법 https://deeplify.dev/server/bash/create-execute-file-in-linux [Linux/리눅스] Shell 실행 파일 만드는 방법 및 예제 리눅스 환경에서 Shell 스크립트로 실행파일을 만드는 방법을 예제를 통해 소개합니다. deeplify.dev argument / 인자 받는 법 https://jink1982.tistory.com/36 [Shell] 인자, 파라미터 사용법 Shell 인자, 파라미터 사용법 Shell 기본 Shell Script 간단히 작성 해보도록 하자 1. 파일을 연다. [test@localhost ~]# vi test.sh 2. 쉘을 작성 한다. #!/bin/bash echo "hello world" 위의 내용을 입력 .. 2022. 7. 16.
docker command https://captcha.tistory.com/49 Docker 명령어 정리 Docker 사용법 CentOS Docker는 OS의 자원을 사용하기 때문에 기본적으로 Root 사용자에서 명령어를 사용해야한다 1. search (image 검색) # docker search centos - Docker Hub로부터 사용가능한 image를 찾는 명.. captcha.tistory.com ## docker install / [reinstall][uninstall] https://docker-curriculum.com/ https://docs.docker.com/engine/install/ubuntu/ (check)$ sudo docker run hello-world ## docker image registr.. 2022. 7. 14.
MLOps 학습기 구조 https://neptune.ai/blog/best-mlops-tools 1. 로깅 https://velog.io/@ifelifelse/Logging Logging 이제부터는 노강의 온리pdf 자료로 정리한다. 강의영상 제공이 끝났기 때문... 모르는건 검색해보면서 정리한다. 그래도 복사 붙혀넣기는 아니고 타이핑으로 음미하면서 공부하겠습니다.네이버 velog.io 2. MLflow https://velog.io/@ifelifelse/MLflow MLflow 이번에도 마찬가지로 강의영상은 없이 강의자료를 통해 정리를 하려고 한다. 저번 Logging 강의자료에서 느꼈지만 강의자료만으로 인터넷 검색이 거의 불필요했다. 몹시 쉽게 잘 정리된 강의자료 velog.io 3. kubeflow / kfserve.. 2022. 7. 13.
로그남기는 법 : Logging wrapper만들기 1. 얻고 싶은 로그 형태 Timestamp | function name[=phase level] | { cpu, mem, gpu, start_timestamp } self.token = '' def log(self): check_metrics(self.token + " | " + message) https://florian-dahlitz.de/articles/logging-made-easy-with-loguru https://loguru.readthedocs.io/en/stable/api/logger.html 2. 로그 수집 주기 특정 function 실행의 시작~종료기간의 로그를 수집하고 싶다. function이 실행되면 수집을 시작해서 1초 단위로 수집하다가 종료되면 수집을 중단하고 싶다. ====.. 2022. 7. 9.