반응형
Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- cs50
- neo4j 제약조건
- gensim size
- 백준 2470
- UnsatisfiedDependencyException
- 알고리즘
- spring-boot3
- 텍스트전처리
- neo4j 인덱스 사용
- gensim_models
- 파이썬
- 백준
- GET REQUESTS
- pandas-profiling
- spring-boot2
- 백준 회전초밥
- neo4j 스키마 정의
- 백준 7795
- BFS
- 그랜빌의 법칙
- 워드 임베딩
- express
- neo4j
- 플로이드워셜
- PREFECT
- gensim
- 첫서버
- nodemon babel
- 투포인터
- Sequenial
Archives
- Today
- Total
목록파이썬/오류 (2)
정리정돈
TypeError: __init__() got an unexpected keyword argument 'size'(gensim)
--------------------------------------------------------------------------- TypeError Traceback (most recent call last) in 2 from gensim.models import KeyedVectors 3 ----> 4 model = Word2Vec(sentences = result, size = 100, window = 5, min_count=5, workers=4, sg=0) TypeError: __init__() got an unexpected keyword argument 'size' size -> vector_size로 변경해주면 된다.
파이썬/오류
2022. 5. 17. 15:29
AttributeError: partially initialized module 'logging' has no attribute 'getLogger' (most likely due to a circular import)
AttributeError: partially initialized module 'logging' has no attribute 'getLogger' (most likely due to a circular import) 해당 오류는 실행하려는 파일과 import 하려는 라이브러리의 이름이 같기 때문에 발생하는 문제였던것 같다.
파이썬/오류
2022. 4. 6. 10:53