| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- 클라우드컴퓨팅
- 딥러닝
- 컴퓨터비전
- 프로그래밍
- I'm Sorry
- 프로그래밍언어
- 인공지능
- 컴퓨터공학
- 자료구조
- springboot
- 사이버보안
- 빅데이터
- 데이터구조
- 데이터베이스
- 알고리즘
- Yes
- 소프트웨어공학
- 파이썬
- 머신러닝
- 데이터분석
- 소프트웨어
- 웹개발
- 네트워크보안
- 버전관리
- 네트워크
- 보안
- 자바스크립트
- 컴퓨터과학
- 디자인패턴
- 데이터과학
- Today
- Total
목록전체 글 (1964)
스택큐힙리스트
TensorFlow 1.10.1을 설치했지만, TensorFlow를 가져오려고 할 때 TensorFlow 버전 1.10.0이 필요하다는 메시지가 표시되었습니다. 그래서 해당 버전을 설치했고, 이제 다음과 같은 경고가 발생합니다:>>> import tensorflow C:\Users\PC\Anaconda3\envs\tut\lib\site-packages\tensorflow\python\framework\dtypes.py:516: FutureWarning: Passing (type, 1) or '1type' as a synonym of type is deprecated; in a future version of numpy, it will be understood as (type, (1,)) / '(1,)ty..
--------------------------------------------------------------------------- IndexError Traceback (most recent call last) in ----> 1 return_gdf = gpd.sjoin(points_gdf, polys_gdf, how=inner, op='intersects') ~\AppData\Local\Continuum\anaconda3\lib\site-packages\geopandas\tools\sjoin.py in sjoin(left_df, right_df, how, op, lsuffix, rsuffix) 73 tree_idx = rtree.index.Index(stream) 74 ---> 75 idxmatc..
나는 파이썬을 처음 시작했고 재귀적인 방식으로 생각하는 데 매우 서툴러요. 이 코드는 IndexError: string index out of range 오류를 발생시킵니다. 그리고 어떻게 수정해야 할지 감이 전혀 안 와요. def get_permutations(sequence): def permutationhelp(sequence, chosen): if sequence==: print(chosen) else: for i in range(len(sequence)): c = sequence[i] chosen += c sequence = sequence[i+1:] permutationhelp(sequence, chosen) sequence = c + sequence chosen = chosen[:-1] de..
HTML의 p 태그를 한국어로 번역해보겠습니다. import numpy as np def prime_sieve(N): nums = np.arange(2, N+2, 1) mask = [] for n in nums: mask.append(True) for n in nums: for i in np.arange(2*n-2, N, n): mask[i] = False return nums, np.array(mask) numbers, mask = prime_sieve(8) print(numbers) print(mask) [2 3 4 5 6 7 8 9] [ True True False True False True False False] 나의 코드: import numpy as np def primes_list(N): ..