Login
Discover
Waves
Decks
Plus
Login
Signup
Topics
New
Trending
Hot
New
New
Trending
Hot
New
Payouts
Muted
Promoted
Global
Top communities
Create decentralized community
latest #keras created topics on internet
feitgemel
python
2024-12-07 17:10
Build a CNN Model for Retinal Image Diagnosis
CNN Image Classification for Retinal Health Diagnosis with TensorFlow and Keras!
$ 0.000
0
jywahaha
HIVE CN 中文社区
2020-12-10 14:53
学习keras第二天
今天继续学习keras,今天看的是 Introduction to Keras for Engineers 与 Text classification from scratch 两部分。 我发现从吴恩达的教程开始学一些基本理论,无聊学不下去的时候,就直接开始看框架的教程,不懂的名词直接去查,配合起来更加的适合我。 我喜欢实战,喜欢丢到水里去蹦跶,实践对我而言更合适一些。
$ 11.792
198
3
hongtao
cn-stem
2020-01-20 13:02
Tensorflow 2.0 —— RNN实战路透社新闻分类
Image from unsplash.com by @Jason_xj 之前的文章我们介绍了 RNN 循环网络,并用循环网络成功地预测了牛奶产量。这篇文章我们继续使用 RNN 以及 LSTM 和 GRU 处理分类问题。我们使用的是 Keras 自带的数据集——路透社新闻分类问题。 关注微信公众号获取源代码(二维码见文末) 1. RNN 回顾 与卷积神经网络处理空间局部相关性数据不同,循环网络主要用于处理时间序列
$ 0.102
10
hongtao
cn-stem
2019-12-14 21:58
Tensorflow2.0--可视化工具Tensorboard
image from unsplash.com by Tara Hegerty 之前的文章介绍过如何在 Keras 中快速调用 Tensorboard 这个可视化工具,这篇文章我们再深入探讨一下 Tensorboard 在T Tensorflow 2.0 下如何使用。 本文源代码请关注微信公众号(二维码见文末)获取 1. Tensorboard 工作原理 简单来说,tensorboard 就是通过监听定目录下的
$ 0.402
16
2
melisita02
Holos&Lotus
2026-04-03 23:09
Promoted
Piropea, pero con respeto/Compliment, but with respect (Esp-Eng)
Hola, mis amigos de Hive. Un saludo cariñoso para todos y en especial para los miembros de esta comunidad. Los piropos, como todos sabemos, son esas frases que los hombre (generalmente) sueltan en la calle,
$ 0.856
198
17
hongtao
cn-stem
2019-12-09 15:03
Tensorflow2.0-数据加载和预处理
Image from unsplash.com by Adrian Cuj 前面的文章我们讨论了机器学习的各种问题,但是还没有认真讨论一下数据加载的问题。作为机器学习的第一步,如何正确和快速地加载数据以及预处理对于机器学习的项目成败是至关重要的。 我们已经很熟悉用 pandas.read_csv 来读取csv文件数据,然后用其内建函数或借助 numpy 和 scikit-learn
$ 4.343
393
3
hongtao
cn-stem
2019-11-20 16:03
Tensorflow 2.0 —— 与 Keras 的深度融合
image from unsplash by Zhang Kenny 前面的几篇文章从线性回归,到手写数字识别再到预测牛奶产量,我们用 Tensorflow 2.0 与 Keras 结合完成了全链接神经网络,卷积神经网络以及循环神经网络的搭建和训练。那 Tensorflow 2.0 和 Keras 到底是什么关系,我们应该如何选择和搭配二者来完成自己的项目呢?这篇文章就来探讨一下这个问题。 1.
$ 4.823
395
2
britvr
bitcoin
2019-09-06 04:44
Bitcoin Price Up / Bakkt Launches in Sept / Keras LSTM Deep Learning Modules.
$ 0.826
24
1
utpalkant
deeplearning
2019-06-11 23:01
Deep Learning Frameworks: A Comparison
Introduction: I started working on a new classification problem and the first question in my mind: which framework to use? So decided to explore the pros and cons with the available frameworks before to
$ 0.000
4
wiseagent
Movies & TV Shows
2026-04-05 00:16
Promoted
MOVIE REVIEW: “Him” (2025)
This publication was also writen in SPANISH and PORTUGUESE. IMDb Synopsis: Without having the slightest idea that he is plunging into a world of terror, a young American football player is invited to train
$ 3.810
98
hongtao
cn-stem
2019-04-16 11:51
Tensorflow入门——改进RNN预测牛奶产量
image source from unsplash by Mehrshad Rajabi 上一篇文章我们用Keras搭建GRU神经网络,通过对前13年牛奶产量的学习,成功预测了地最后1年牛奶的产量。 该模型是多对一的输入/输出结构,也就意味着12个月的数据输入,只能输出1个月的数据。有没有可能改进模型,让输出输入的数量一致,以提高预测效率呢?这篇文章我们就来改进GRU模型,实现多对多的结构。
$ 2.559
418
5
hongtao
cn-stem
2019-04-15 23:22
Tensorflow入门——RNN预测牛奶产量
早前,我介绍了循环神经网络(RNN)的基本概念,这篇文章我们就用Keras搭建一个RNN网络。该RNN能够通过对历史数据的学习,预测未来数据。 同样的,为了方便与读者交流,所有的代码都放在了这里: Repository: 1. GRU和LSTM简介 GRU(Gated Recurrent Unit)和LSTM(Long Short Term
$ 2.536
498
4
laithsharba
keras
2019-04-02 11:52
Deep learning in Python-Tensorflow and Keras| learn in lovescience.online
The TensorFlow applications are high level, as well as highly advanced technology use, and large-scale AI undertakings in the realms of the machine learning as well as the deep learning. It empowered the
$ 0.000
0
2
hongtao
cn-stem
2019-03-29 17:16
Tensorflow入门——单层神经网络识别MNIST手写数字
Image source wikipedia MNIST database 手写数字识别是一个非常经典的机器学习项目,这篇文章,我们就通过Kaggle上这个经典项目,学习如何用Tensorflow和Keras搭建最简单的单层神经网络,来识别手写数字。 同样的,为了方便与读者交流,所有的代码都放在了这里: Repository: 1. 数据下载和预处理
$ 2.776
279
4
no-advice
LeoFinance
2026-03-31 10:14
Promoted
STRC by Michael Saylor – 11.5% Yield, Bitcoin Leverage, and a New Financial Paradigm
In 2025, Michael Saylor and his company Strategy (formerly MicroStrategy) introduced a new financial instrument that could redefine how capital flows into Bitcoin: 👉 STRC (“Stretch”) – a high-yield preferred
$ 1.725
220
6
preliminary18
bakau
2019-03-28 17:56
Bakau
Hutan bakau menjadi suatu alasan untuk dijadikan sebagai tameng untuk menahan abrasi dipinggir sungai dan laut. Huta bakau terkenal cukup keras untuk membentengi perairan dari abrasi. Kemudian, bibit bakau
$ 0.000
1
hongtao
cn-stem
2019-03-19 17:14
Tensorflow入门——处理overfitting的问题
在之前的文章中,我们发现训练组(篮)和验证组(红)的损失函数在20个Epoch之后,向着相反方向变化。训练组损失函数继续下降,验证组损失函数反而在上升,这就是典型的Overfitting(过拟合)现象。 过拟合就是模型过度地学习了训练集的特征,反而没法处理测试集中更一般化的问题。处理过拟合最根本的解决方法当然是获得更多的训练样本。
$ 2.825
405
10
hongtao
cn-stem
2019-03-16 23:55
Tensorflow入门——Keras处理分类问题,Classification with Keras
Tensorflow 和 Keras 除了能处理前一篇文章提到的回归(Regression,拟合&预测)的问题之外,还可以处理分类(Classfication)的问题。 这篇文章我们就介绍一下如何用Keras快速搭建一个线性分类器或神经网络,通过分析病人的生理数据来判断这个人是否患有糖尿病。 同样的,为了方便与读者交流,所有的源代码都放在了这里: 1. 数据的导入
$ 2.828
391
2
hongtao
cn-stem
2019-03-12 17:32
Tensorflow入门——Keras简介和上手
前面两篇文章介绍了Tensorflow,以及用Tensorflow快速上手一个线性回归的项目。 实际上Tensorflow对于机器学习新手来说并不是很友好,Tensorflow自己也有高层API,比如Estimator和tf.data就相对来说更容易上手。 Keras本来是独立的机器学习框架,但已经逐渐被整合进了Tensorflow, 今天我们就来简单上手一下吧。 同样的,为了方便与读者交流,所有源代码都放在了
$ 2.858
357
2
splintertrends
Splinterlands
2026-04-03 09:18
Promoted
TRENDZ Loyalty Rewards S02E02
Get your share from SWAP.HIVE and DEC tokens
$ 0.094
67
12
evanli
ai
2019-01-25 12:55
16 Hot Essential Cheat Sheets for Machine Learning and Deep Learning
If a worker wants to do something good, he must first sharpen his tools. In machine learning and deep learning research, excellent reference materials and manuals can often help us get twice the result
$ 0.000
2
banglie-1
kerja
2019-01-20 13:34
Perjuangan Menuju Kemenangan
Kemenangan akan dapat diperoleh melalui kerja keras. Kerja keras itu sendiri akan dapat dilihat melalui usaha yang dilakukan sungguh-sungguh. Tanpa melakukan usaha secara sunguh-sungguh, maka belum dapat
$ 0.000
3
mragic
raspberrypi
2019-01-01 17:26
How to build a cat detector with a Raspberry Pi and a Pi Noir camera using Deep Learning - Part IV
Part I is here: Part II: Part III: Introduction In this part I will describe how we can deploy the model we trained in part III on the raspberry pi. You can then choose what you want to do when a cat is
$ 0.000
1
1
mragic
raspberrypi
2019-01-01 13:32
How to build a cat detector with a Raspberry Pi and a Pi Noir camera using Deep Learning - Part III
Part I is here: Part II: Introduction In this part III I will describe how the the images taken in can be used to train a deep neural network to distinguish images with cats against images without cats.
$ 0.000
6
1