This Week in Spring - May 21, 2019

Engineering
Josh Long
May 21, 2019

Hi Spring fans! It’s been quite a crazy week! I was in Spring I/O last week in Barcelona, Spain and there was a deluge of interesting news to come out of the show! I loved the show - a sort of mini SpringOne - and am chomping at the bit to see what comes next. I’m now beginning a small tour starting in Zurich, Switzerland; then I’m off to the paradise-like Paris, France for the epic SpringOne Tour event there, then I’m off to Minsk, Belarus; then off to Barcelona, Spain for JBCN, and then - finally - home for the middle school graduation of my kid at the end of the month. So much exciting stuff culminating in an even more exciting event, I can hardly stand it!

Anyway, we’ve got tons to get to today, so, let’s!

I love Ben Wilcock’s look at the 5th anniversary of PCF, Pivotal Cloud Foundry is 5 years old, here’s how it changed my life…
A Bootiful Podcast: Community Member Nicolas Frankel on Testing, Security, and More
Reactive Transactions with Spring
Reactor Dysprosium-M1 is Available Now
Spring Data R2DBC 1.0 M2 and Spring Boot starter released
Spring Boot 2.1.5 released
Spring Boot 2.2 M3 available now
Last week I looked at using Kafka from your Spring Batch ETL flow in this Spring Tips, Spring Tips: Spring Batch and Apache Kafka
Spring Integration lead Gary P. Russell has a wonderful post on Spring for Apache Kafka over on the Confleunt blog
twitter.com
I love the new “Push to Pivotal WS” button on the various Spring guides. Check out this one - Building a RESTful Web Service.
Have you tried Armeria? It’s an interesting project from Netty-creator Trustin Lee. It has integrations for Spring and it looks kind of interesting.
Lots of interesting notes by Robert Winkler on the new release of Resilience4J
Did you see that we announced support for Kotlin-based configuration for Gradle?
Take a look at the new, reactive Spring Data Neo4j
Interesting talk from Andreas Evers on using [Spinnaker for cutting-edge continuous delivery(https://twitter.com/springcloud/status/1129081211710787589)
Have you seen our GraalVM native image page?
This is pretty interesting: Spring Cloud Sleuth is used by Netflix!
Want a quick review of the Kotlin related announcements from Spring IO? Check out this thread.
Exciting news! Spring Boot Maven downloads have more than doubled in the past year, and are up 23% in just the past 3 months. Given that we’re talking about tens of millions of downlaods heere, those are some impressive numbers!
And of course there’s a 138% increase over the last year in Spring Cloud downloads!

comments powered by Disqus

translate:
翻译:

嗨,春季粉丝!这是相当疯狂的一周!上周我在西班牙巴塞罗那参加春季I / O时,节目中传出了大量有趣的消息!我喜欢这个节目-一种迷你的SpringOne-并且非常渴望看到接下来发生的事情。我现在开始在瑞士苏黎世进行一次小型游览;然后我去了天堂般的法国巴黎参加史诗般的SpringOne Tour活动,然后我去了白俄罗斯明斯克。然后去西班牙的巴塞罗那参加JBCN,然后-终于-月底我孩子的中学毕业的家。如此激动人心的事情最终导致一个更加激动人心的事件,我几乎受不了!

无论如何,我们今天还有很多事情要做,让我们开始吧!

我喜欢Ben Wilcock纪念PCF成立5周年,Pivotal Cloud Foundry成立5周年,这就是它如何改变了我的生活……
可恶的播客:社区成员Nicolas Frankel关于测试,安全性及更多内容
与Spring进行反应式交易
反应堆Dy M1现已上市
发布了Spring Data R2DBC 1.0 M2和Spring Boot启动器
Spring Boot 2.1.5发布
Spring Boot 2.2 M3现已上市
上周,我在本Spring技巧,Spring技巧:Spring Batch和Apache Kafka中从您的Spring Batch ETL流程中使用了Kafka。
Spring Integration的负责人Gary P. Russell在Confleunt博客上为Apache Kafka发表了关于Spring的精彩文章
twitter.com
我喜欢各种Spring指南中的新“ Push to Pivotal WS”按钮。看看这个-构建RESTful Web服务。
您尝试过Armeria吗?这是Netty创建者Trustin Lee的一个有趣的项目。它具有Spring的集成,看起来很有趣。
罗伯特·温克勒(Robert Winkler)关于新版Resilience4J的很多有趣的注释
您是否看到我们宣布支持Gradle基于Kotlin的配置?
看看新的反应式Spring Data Neo4j
来自Andreas Evers的有趣演讲,内容涉及使用[Spin​​naker进行最先进的连续交付(https://twitter.com/springcloud/status/1129081211710787589)
您看过我们的GraalVM本机图像页面吗?
这非常有趣:Netflix使用Spring Cloud Sleuth!
想要快速查看Spring IO的Kotlin相关公告吗?签出此线程。
令人兴奋的消息! Spring Boot Maven的下载量在过去一年中增长了一倍以上,并且在过去三个月中增长了23%。鉴于我们谈论的是数以千计的流氓行为,这些数字确实令人印象深刻!
当然,Spring Cloud的下载量比去年增加了138%!

由Disqus提供动力的评论

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
你好!对于心脏病预测的问题,使用循环神经网络(RNN)是一种常见的方法。RNN适用于处理序列数据,而心电图信号就是一种序列数据。在使用RNN进行心脏病预测时,你可以将心电图信号作为输入序列,然后通过训练RNN模型来预测患者是否患有心脏病。 首先,你需要准备一个合适的数据集,其中包含心电图信号和相应的心脏病标签。可以使用公开的心电图数据集,如PTB数据库或MIT-BIH数据库。然后,你可以对数据进行预处理和特征工程,如数据清洗、滤波、降采样等。 接下来,你可以构建一个RNN模型。RNN模型由一系列循环层组成,每个循环层都会处理一个时间步的输入数据。你可以选择不同类型的RNN单元,如简单循环单元(SimpleRNN)、长短期记忆网络(LSTM)或门控循环单元(GRU)。通过添加适当的全连接层和激活函数,你可以将RNN模型输出映射到二分类问题(有或无心脏病)的结果。 然后,你可以使用训练集对RNN模型进行训练,并使用验证集进行模型调优。在训练过程中,你可以使用适当的损失函数(如交叉熵)和优化算法(如随机梯度下降)来最小化模型的预测误差。 最后,你可以使用测试集对训练好的模型进行评估,并计算模型的性能指标,如准确率、精确率、召回率等。这些指标可以帮助你评估模型的预测能力和泛化能力。 需要注意的是,心脏病预测是一个复杂的医学问题,仅仅使用心电图信号可能不能得到准确的预测结果。通常情况下,还需要结合其他患者的临床信息和医学知识来进行综合评估。因此,在进行心脏病预测时,建议与专业医生合作,并遵循相关的医学准则和规范。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值