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 | 31 |
Tags
- 채보
- SSH
- C++
- LIST
- C#
- 기타 연주
- 명령어
- VS Code
- pytorch
- Docker
- mysql
- 오류
- Python
- C
- YOLO
- 프로그래머스
- ubuntu
- Visual Studio
- 핑거스타일
- windows forms
- pandas
- OpenCV
- error
- label
- JSON
- paramiko
- Numpy
- Selenium
- pip
- Linux
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