1 2 3 4 5 ··· 13 下一页
摘要: (图片来自links 视频截图,侵删) 在MNE-Python中,Epoch是指将原始脑电数据按照一定的时间窗口和事件标记进行切割和分类的过程。即将原始数据切割成若干个时间段(通常称为Epochs或Trials),每个时间段对应一个特定的事件(例如视觉刺激、听觉刺激、按键反应等)。 Epoch是脑电 阅读全文
posted @ 2023-10-13 14:49 谁动了我的奶盖 阅读(180) 评论(0) 推荐(0) 编辑
摘要: KERAS 获取中间层的输出结果 现在我们要获取第三个全连接层dense_3的输出,有以下两种常用的方式: 1 通过K.function()函数打印模型中间层的输出 思路是通过K.function()函数创建Keras函数,然后再将数据输入到函数中即可。 keras.backend.function 阅读全文
posted @ 2022-11-01 17:38 谁动了我的奶盖 阅读(429) 评论(0) 推荐(0) 编辑
摘要: 方法一:简单使用data 创建 我真的需要使用这些数据集接口吗? 不!就像在普通的PyTorch中,你不需要使用数据集,例如,当你想要动态创建合成数据而不显式地将它们保存到磁盘时。在本例中,只需传递一个包含torch_geometry .data的常规python列表。数据对象并将它们传递给torc 阅读全文
posted @ 2022-10-06 16:01 谁动了我的奶盖 阅读(445) 评论(0) 推荐(0) 编辑
摘要: https://www.zhihu.com/question/64003151 本文参考自:https://stackoverflow.com/questions/43979449/higher-validation-accuracy-than-training-accurracy-using-te 阅读全文
posted @ 2021-07-14 19:59 谁动了我的奶盖 阅读(1546) 评论(0) 推荐(0) 编辑
摘要: http://www.voidcn.com/article/p-khunxwgb-but.html: 他们有一个简单的LSTM模型,他们使用tf.truncated_normal初始化权重和tf.zeros来初始化偏差 http://www.likecs.com/default/index/show 阅读全文
posted @ 2021-06-19 20:04 谁动了我的奶盖 阅读(119) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/m0_38133212/article/details/88071189: validation的样本数量一般远小于training的 val的时候是用已经训练了一个epoch的model进行测试的(经过大量的训练学习到东西了) data augmenta 阅读全文
posted @ 2021-06-11 10:31 谁动了我的奶盖 阅读(891) 评论(0) 推荐(0) 编辑
摘要: 1.git 安装 2.pip install git+https://github.com/guillaumegenthial/tf_metrics.git 阅读全文
posted @ 2021-06-10 16:28 谁动了我的奶盖 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 直接将以下文件考入对应文件夹: 具体文件见: 链接:https://pan.baidu.com/s/1WOHMbye9lgSijlh1_LdW8g 提取码:1234 res: 阅读全文
posted @ 2021-06-09 10:54 谁动了我的奶盖 阅读(217) 评论(0) 推荐(0) 编辑
摘要: #导入需要用到的库和模块 `import numpy as np import pandas as pd import matplotlib.pyplot as plt import torch import torch.nn.functional as F from torch_geometric 阅读全文
posted @ 2021-06-09 10:52 谁动了我的奶盖 阅读(101) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/m0_37913633/article/details/117322630?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522162315759416780265413826%2522%252C 阅读全文
posted @ 2021-06-08 21:20 谁动了我的奶盖 阅读(48) 评论(0) 推荐(0) 编辑
1 2 3 4 5 ··· 13 下一页