Keras用IMDB数据源(imdb.npz + imdb_word_index.json) from tensorflow.keras.datasets import imdb (train_data, train_labels), (test_data, test_labels) = imdb.load_data(num_words=10000) # word_index is a dictionary mapping words to an integer index word_index = imdb.get_word_index() # We reverse it, mapping integer indices to words reverse_word_index = dict([(value, key) for (key, value) in word_index.items()]) # We decode the review; note that our indices were offset by 3 # because 0, 1 and 2 are reserved indices for "padding", "start of sequence", and "unknown". decoded_review = ' '.join([reverse_word_index.get(i - 3, '?') for i in train_data[0]])
2022-12-05 21:47:55 17.27MB imdb keras
1
使用机器学习进行疾病诊断 医疗保健领域的机器学习模型。 乳腺癌检测-使用KNN和SVM 糖尿病发作检测-使用神经网络和网格搜索 角膜动脉疾病(心脏病)诊断-使用神经网络 自闭症谱系障碍(神经发育障碍)诊断-使用简单的神经网络 数据集从UCI机器学习存储库获得。
1
将GRU与CNN的输出整合输出
2022-12-03 16:27:17 2KB 故障诊断
1
人工神经网络架构 使用keras(后端的Tensorflow)轻松构建ANN架构的脚本。
2022-12-02 22:59:53 877KB JupyterNotebook
1
基于MLP_CNN_LSTM_CNN-LSTM时间序列预测_编码器-解码器LSTM多步预测_Keras_python源码_代码附有详细注释 3.用于时间序列预测的MLP 4.用于时间序列预测的CNN 5.用于时间序列预测的LSTM 6.编码器-解码器LSTM多步预测 7.用于时间序列预测的CNN-LSTM
2022-12-02 14:29:46 4KB MLP CNN LSTM CNN-LSTM
基于keras的人脸识别,利用opencv+keras+python实现人脸识别系统
2022-11-29 19:28:44 551KB python
1
keras-ocr 模型文件 craft_mlt_25k.h5 crnn_kurapan.h5
2022-11-29 10:28:31 104.84MB keras ocr
1
unet 训练结果 image-segmentation-keras-master
2022-11-28 12:25:39 667.02MB ai
1
Kaggle National Datascience Bowl 2017第二名 这是我在Kaggle.com主办的第二名解决方案中我的源代码。 有关该方法的文档,请访问: ://juliandewit.github.io/kaggle-ndsb2017/ 请注意,这是我的代码部分。 我的队友Daniel Hammack的工作可以在以下位置找到: : 依赖关系和数据 该解决方案是使用Keras和Windows 64位上的tensorflow后端构建的。 接下来,我使用了scikit-learn,pydicom,simpleitk,beatifulsoup,opencv和XgBoost。
2022-11-26 21:51:05 65KB machine-learning deep-learning tensorflow keras
1
Keras可视化工具包 keras-vis是用于可视化和调试已训练的keras神经网络模型的高级工具包。 当前支持的可视化包括: 激活最大化 显着图 类激活图 默认情况下,所有可视化都支持N维图像输入。 即,它推广到模型的N维图像输入。 该工具包通过干净,易于使用和可扩展的界面将上述所有问题归纳为能量最小化问题。 与theano和tensorflow后端兼容,具有“ channels_first”,“ channels_last”数据格式。 快速链接 阅读位于的文档。 日语版为 。 加入闲暇来提问/讨论。 我们正在中跟踪新功能/任务。 如果您愿意帮助我们并提交PR,将非常乐意。 入门 在图像反向传播问题中,目标是生成使某些损失函数最小化的输入图像。 设置图像反向传播问题很容易。 定义加权损失函数 在中定义了各种有用的损失函数。 可以通过实现来定义自定义损失函数。 from vis . losses import ActivationMaximization from vis . regularizers import TotalVariation , LPNorm fil
2022-11-25 19:04:09 43.42MB visualization machine-learning theano deep-learning
1