반응형

분류 전체보기 487

dgl과 gpu를 사용할 때 에러가 날 경우

Error message dgl 관련 코드를 작성할 때 dgl 모듈을 사용하면서 에러가 날 수 있다. 에러 메시지가 많이 뜨는데 중간에 에러 메시지를 살펴보면 cpu gpu 문제임을 알 수 있다. gpu dgl은 따로 존재한다. 요약하면 dgl은 cpu버전과 gpu 버전이 따로 있기 때문에 라이브러리를 구별해서 설치해주어야 한다. 만약 cpu dgl을 사용할 예정이라면 pip install dgl pip install dgl을 하면 되고 gpu dgl을 사용할 예정이면 pip install dgl-cu110 pip install dgl-cu110 을 설치한다. 마지막 110은 cuda version에 따라 달라지는데 이는 nvidia-smi 명령어를 통해 확인할 수 있다. nvidia-smi 2022년 ..

[GNN 관련 논문 리뷰] Deepwalk 개념 (실험 자세히)

Introduction Deepwalk 등장 배경 그래프는 실생활에서 다양하게 사용되고 있습니다. 그 예로는 팔로우와 팔로워 관계를 나타내는 소셜 네트워크, 분자구조 그래프 등이 존재합니다. 연구자는 이런 그래프 데이터에서 network classification, content recommendation, anomaly detection, 등 같은 머신러닝 태스크를 적용해보고 싶어질 수 있습니다. 하지만 그래프 데이터를 그대로 기존 머신러닝과 딥러닝 분류 모델에 적용하기에는 한계가 존재하기 때문에 그래프를 더 낮은 차원으로 임베딩해주는 그래프 임베딩 방식이 발전해왔습니다. DeepWalk는 대표적인 graph embedding method입니다, Randomwalk라는 방법으로 그래프를 일련의 시퀀스 ..

기요미즈데라(청수사) 야간개장 기간

교토 관광지 기요미즈데라(청수사)는 기간 내내 야간 개장이 있는 것이 아니다 2023년 버전 관람 시간은 공식 사이트에서 확인할 수 있다. https://www.kiyomizudera.or.jp/en/location/ LOCATION | KIYOMIZU-DERA TEMPLE View this page to learn about how to get here. Various means of transportation from Kyoto Station and many other stations are described. www.kiyomizudera.or.jp 위의 표를 보면 여름에는 6:30까지 겨울에는 6시까지 운행하는 것을 알 수 있다. 그리고 봄, 여름, 가을에 야간개장 하는 기간이 정해져 있는데 20..

TypeError: Cannot perform 'rand_' with a dtyped [float64] array and scalar of type [bool]

파이썬 pandas error TypeError: Cannot perform 'rand_' with a dtyped [float64] array and scalar of type [bool] TypeError: Cannot perform 'rand_' with a dtyped [float64] array and scalar of type [bool] 여러개의 column을 filter해서 값을 추출하려고 했는데, 오류가 생겼다. (=여러 개의 조건을 만족하는 값으로 dataframe 을 꺼내기) 해결 ()로 묶기 조건문을 각각 ()로 묶어주면 해결 된다.

파이썬 2022.12.07

gensim Word2Vec: unexpected keyword argument 'vector_size' error

--------------------------------------------------------------------------- TypeError Traceback (most recent call last) in ----> 1 model = Word2Vec(sentences=common_texts, vector_size=100, window=5, min_count=1, workers=4) 2 model.save("word2vec.model") TypeError: __init__() got an unexpected keyword argument 'vector_size' 해결 vector_size -> size라는 파라미터로 바꾼다. model = Word2Vec(sentences=common_tex..

kaggle 등에서 gpu 확실하게 사용하기 코드 gpu options

import numpy as np import pandas as pd import os from sklearn.model_selection import train_test_split from sklearn.metrics import confusion_matrix, accuracy_score import tensorflow as tf from tensorflow.compat.v1 import ConfigProto from tensorflow.compat.v1 import InteractiveSession config = ConfigProto() config.gpu_options.allow_growth = True session = InteractiveSession(config=config) gpu 할당하고..

반응형