개발자 도구(F12)를 열어 콘솔에 입력
- 연결 유지 (코랩의 최대 세션 유지 시간은 12시간)
function ClickConnect(){
console.log("1분마다 코랩 연결 끊김 방지");
document.querySelector("#top-toolbar > colab-connect-button").shadowRoot.querySelector("#connect-icon")
.click();
}
setInterval(ClickConnect, 1000 * 60);
- 출력 삭제 (학습 할 때 출력되는 많은 양의 로그 때문에 후에 해당 코랩 파일을 불러올 때 시간이 오래 걸림)
function CleanCurrentOutput() {
var btn = document.querySelector(".output-icon.clear_outputs_enabled.output-icon-selected[title$='현재 실행 중...'] iron-icon[command=clear-focused-or-selected-outputs]");
if(btn) {
console.log("10분마다 출력 지우기");
btn.click();
}
}
setInterval(CleanCurrentOutput, 1000 * 60 * 10);
'코랩' 카테고리의 다른 글
[코랩] 영상 속 객체 탐지 및 인물의 자세 추정 (OpenCV, YOLOv4, OpenPose) (2) | 2020.08.20 |
---|---|
[코랩] CUDA - OpenCV 설치하기 (0) | 2020.08.20 |
[코랩] Darknet 설치 및 커스텀 모델 학습하기 (1) | 2020.08.17 |