| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 프로그래밍언어
- 데이터베이스
- 프로그래밍
- 컴퓨터비전
- springboot
- 데이터과학
- 네트워크보안
- 알고리즘
- 데이터분석
- 디자인패턴
- 인공지능
- 자바스크립트
- 소프트웨어공학
- 보안
- 머신러닝
- 빅데이터
- 사이버보안
- 네트워크
- 자료구조
- 웹개발
- 클라우드컴퓨팅
- 컴퓨터공학
- Yes
- 딥러닝
- I'm Sorry
- 컴퓨터과학
- 데이터구조
- 버전관리
- 소프트웨어
- 파이썬
- Today
- Total
목록2023/03 (263)
스택큐힙리스트
제가 우분투 16.04에 tensorflow를 내장된 apt cuda 설치를 사용하여 두 번째 대답을 here 통해 설치했습니다.이제 제 질문은 tensorflow이 실제로 gpu를 사용하는지 어떻게 테스트할 수 있는지입니다. 저는 gtx 960m gpu를 가지고 있습니다. import tensorflow을(를) 실행하면 다음과 같은 출력이 나옵니다. I tensorflow/stream_executor/dso_loader.cc:105] successfully opened CUDA library libcublas.so locallyI tensorflow/stream_executor/dso_loader.cc:105] successfully opened CUDA library libcudnn.so locall..
저는 다음과 같은 코드를 가지고 있습니다. test = have it break.selectiveEscape = Print percent % in sentence and not %s % testprint(selectiveEscape)저는 출력 결과를 받고 싶습니다. Print percent % in sentence and not have it break.실제로 무엇이 일어나는지: selectiveEscape = Use percent % in sentence and not %s % testTypeError: %d format: a number is required, not str답변 1 >>> test = have it break.>>> selectiveEscape = Print percent %% in ..
저는 많은 하위 도표를 포함한 하나의 도형을 가지고 있습니다. fig = plt.figure(num=None, figsize=(26, 12), dpi=80, facecolor='w', edgecolor='k')fig.canvas.set_window_title('Window Title')# Returns the Axes instanceax = fig.add_subplot(311) ax2 = fig.add_subplot(312) ax3 = fig.add_subplot(313) 서브 플롯에 제목을 추가하는 방법은 무엇인가요?fig.suptitle는 모든 그래프에 제목을 추가하며, ax.set_title()가 존재하지만 후자는 내 하위 도표에 제목을 추가하지 않습니다.도와 주셔서 감사합니다.수정:set_titl..
저장된 scipy-0.15.1-cp33-none-win_amd64.whl을 로컬 드라이브에 설치하고 싶습니다. 사용 중인 것은: pip 6.0.8 from C:\Python27\Lib\site-packagespython 2.7.9 (default, Dec 10 2014, 12:28:03) [MSC v.1500 64 bit (AMD64)]제가 달릴 때: pip install scipy-0.15.1-cp33-none-win_amd64.whl다음 오류가 발생합니다:scipy-0.15.1-cp33-none-win_amd64.whl 파일은 현재 플랫폼에서 지원되지 않습니다.문제가 뭔가요?답변 1cp33는 CPython 3.3을 의미합니다.당신은 대신 scipy‑0.15.1‑cp27‑none‑win_amd64.wh..