10 2019 档案
摘要:当使用如下代码保存使用 plt.savefig 保存生成的图片时,结果打开生成的图片却是一片空白。 原因 其实产生这个现象的原因很简单:在 plt.show() 后调用了 plt.savefig() ,在 plt.show() 后实际上已经创建了一个新的空白的图片(坐标轴),这时候你再 plt.sa
阅读全文
摘要:Normalization Normalization refers to rescaling real valued numeric attributes into the range 0 and 1. It is useful to scale the input attributes for
阅读全文
摘要:torch activation functions: sigmoid, relu, tanh, softplus. https://morvanzhou.github.io/tutorials/machine-learning/torch/2-03-activation/ torch.nn.act
阅读全文
摘要:Does batch_size have any affects in results quality? how to set the optimal batch size and number of iterations? 1. the batch size, a : the number of
阅读全文
摘要:1. pytorch, 使用训练好的模型测试自己图片 2. [ pytorch ] ——基本使用:(2) 训练好的模型参数的保存以及调用 3. Gmatch4py 4. Network Analysis and Community Structure for Market Surveillance
阅读全文
摘要:what is graph embedding. embedding 在数学上是一个映射函数: f: X >Y, 一个空间点到另一个空间的映射,通常为高维到低维的映射. 而计算机和神经网络善于处理低纬度信息. statistical language model: 统计语言模型 是用来计算一个句子的
阅读全文
摘要:Generate and parse JSON serializable data for NetworkX graphs.
阅读全文
摘要:exercise 5: Week 5 - Recurrent Neural Networks Building your Recurrent Neural Network - Step by Step
阅读全文
摘要:https://ubuntuforums.org/showthread.php?t=1256134 https://askubuntu.com/questions/181868/authentication-issue-with-cups-5-3-1-on-smb-printer
阅读全文
摘要:python基础_格式化输出(%用法和format用法) print(f'XXXX')要使用python3.6及以上,否则会报错invalid syntax.
阅读全文