개발자 도구(F12)를 열어 콘솔에 입력해준다.
런타임 연결 유지
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);
'DL(Deep-Learning) > Python 기초' 카테고리의 다른 글
[Python] DataFrame 데이터 타입 변환하기 (0) | 2022.01.27 |
---|---|
[Python] Convert JPG to PNG (feat. PIL) (0) | 2022.01.27 |
[Python] 파일 이름 변경하기 (0) | 2022.01.26 |
DataFrame 합치기2 (concat, merge, join) (0) | 2022.01.26 |
DataFrame 합치기1 (concat, merge, join) (0) | 2022.01.26 |