摘要:
DeepGCNs: Can GCNs Go as Deep as CNNs? 绪论1、介绍2、相关工作3、方法3.1、图神经网络的表针学习3.2、图神经网络的残差结构3.3、图神经网络的密集连接3.4、图神经网络的扩张性聚集 绪论 CNN很强,但不能正确解决非欧几里得数据的问题,图卷积网络(GCNs 阅读全文
摘要:
记录下 import random import matplotlib.pyplot as plt y = [] for i in range(50): y.append(random.randint(-100, 100)) plt.figure(figsize=(7, 5)) plt.plot(y 阅读全文
摘要:
from pandas.api.types import is_datetime64_any_dtype as is_datetime from pandas.api.types import is_categorical_dtype def reduce_mem_usage(df, use_flo 阅读全文