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 |
Tags
- pandas
- paramiko
- 핑거스타일
- Python
- pip
- mysql
- Visual Studio
- SSH
- Selenium
- 프로그래머스
- error
- YOLO
- Docker
- label
- pytorch
- C#
- JSON
- 오류
- Linux
- VS Code
- LIST
- 채보
- 기타 연주
- C
- Numpy
- windows forms
- C++
- ubuntu
- 컨테이너
- OpenCV
Archives
- Today
- Total
목록객체 저장 (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