Notice
Recent Posts
Recent Comments
Link
| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 1 | ||||||
| 2 | 3 | 4 | 5 | 6 | 7 | 8 |
| 9 | 10 | 11 | 12 | 13 | 14 | 15 |
| 16 | 17 | 18 | 19 | 20 | 21 | 22 |
| 23 | 24 | 25 | 26 | 27 | 28 | 29 |
| 30 |
Tags
- Numpy
- windows forms
- C++
- YOLO
- pandas
- VS Code
- 핑거스타일
- OpenCV
- Linux
- Docker
- C#
- pytorch
- C
- label
- nvidia-smi
- 프로그래머스
- Selenium
- mysql
- 채보
- 오류
- paramiko
- JSON
- 기타 연주
- pip
- error
- Python
- ubuntu
- 컨테이너
- Visual Studio
- SSH
Archives
- Today
- Total
목록pickle (1)
기계는 거짓말하지 않는다
Python 객체 파일로 저장, 직렬화 (pickle)
Python 객체를 파일로 저장할 때 기본 내장된 pickle 모듈을 사용할 수 있다. Python pickle module docs pickle — Python object serialization Source code: Lib/pickle.py The pickle module implements binary protocols for serializing and de-serializing a Python object structure. “Pickling” is the process whereby a Python object hierarchy is... docs.python.org 간단한 사용법은 아래와 같다. import pickle class TempClass(object): def __init__(..
Python
2023. 1. 28. 17:10