ADD INDRNN

dev
PeterAlbus 4 years ago
parent c9ce96c931
commit e8c234d915

@ -50,4 +50,13 @@ public class PredictController
modelAndView.setViewName("/pages/predict/usa_confirmed.jsp"); modelAndView.setViewName("/pages/predict/usa_confirmed.jsp");
return modelAndView; return modelAndView;
} }
@RequestMapping("/IndRNNPredict")
public ModelAndView IndRNNPredict()
{
List<Predict> predictList=predictService.findAll();
ModelAndView modelAndView=new ModelAndView();
modelAndView.addObject("predictList",predictList);
modelAndView.setViewName("/pages/predict/IndRNN.jsp");
return modelAndView;
}
} }

@ -47,6 +47,7 @@
<a href="${pageContext.request.contextPath}/GlobalConfirmPredict" class="list-group-item list-group-item-action bg-light">全球确诊人数预测</a> <a href="${pageContext.request.contextPath}/GlobalConfirmPredict" class="list-group-item list-group-item-action bg-light">全球确诊人数预测</a>
<a href="#predict" class="list-group-item list-group-item-action bg-light">中国确诊人数预测</a> <a href="#predict" class="list-group-item list-group-item-action bg-light">中国确诊人数预测</a>
<a href="${pageContext.request.contextPath}/USAConfirmPredict" class="list-group-item list-group-item-action bg-light">美国确诊人数预测</a> <a href="${pageContext.request.contextPath}/USAConfirmPredict" class="list-group-item list-group-item-action bg-light">美国确诊人数预测</a>
<a href="${pageContext.request.contextPath}/IndRNNPredict" class="list-group-item list-group-item-action bg-light">IndRNN模型展示</a>
</div> </div>
</div> </div>
<div id="page-content-wrapper"> <div id="page-content-wrapper">

@ -47,6 +47,7 @@
<a href="#predict" class="list-group-item list-group-item-action bg-light">全球确诊人数预测</a> <a href="#predict" class="list-group-item list-group-item-action bg-light">全球确诊人数预测</a>
<a href="${pageContext.request.contextPath}/ChinaConfirmPredict" class="list-group-item list-group-item-action bg-light">中国确诊人数预测</a> <a href="${pageContext.request.contextPath}/ChinaConfirmPredict" class="list-group-item list-group-item-action bg-light">中国确诊人数预测</a>
<a href="${pageContext.request.contextPath}/USAConfirmPredict" class="list-group-item list-group-item-action bg-light">美国确诊人数预测</a> <a href="${pageContext.request.contextPath}/USAConfirmPredict" class="list-group-item list-group-item-action bg-light">美国确诊人数预测</a>
<a href="${pageContext.request.contextPath}/IndRNNPredict" class="list-group-item list-group-item-action bg-light">IndRNN模型展示</a>
</div> </div>
</div> </div>
<div id="page-content-wrapper"> <div id="page-content-wrapper">

@ -47,6 +47,7 @@
<a href="${pageContext.request.contextPath}/GlobalConfirmPredict" class="list-group-item list-group-item-action bg-light">全球确诊人数预测</a> <a href="${pageContext.request.contextPath}/GlobalConfirmPredict" class="list-group-item list-group-item-action bg-light">全球确诊人数预测</a>
<a href="${pageContext.request.contextPath}/ChinaConfirmPredict" class="list-group-item list-group-item-action bg-light">中国确诊人数预测</a> <a href="${pageContext.request.contextPath}/ChinaConfirmPredict" class="list-group-item list-group-item-action bg-light">中国确诊人数预测</a>
<a href="${pageContext.request.contextPath}/USAConfirmPredict" class="list-group-item list-group-item-action bg-light">美国确诊人数预测</a> <a href="${pageContext.request.contextPath}/USAConfirmPredict" class="list-group-item list-group-item-action bg-light">美国确诊人数预测</a>
<a href="${pageContext.request.contextPath}/IndRNNPredict" class="list-group-item list-group-item-action bg-light">IndRNN模型展示</a>
</div> </div>
</div> </div>
<div id="page-content-wrapper"> <div id="page-content-wrapper">

@ -47,6 +47,7 @@
<a href="${pageContext.request.contextPath}/GlobalConfirmPredict" class="list-group-item list-group-item-action bg-light">全球确诊人数预测</a> <a href="${pageContext.request.contextPath}/GlobalConfirmPredict" class="list-group-item list-group-item-action bg-light">全球确诊人数预测</a>
<a href="${pageContext.request.contextPath}/ChinaConfirmPredict" class="list-group-item list-group-item-action bg-light">中国确诊人数预测</a> <a href="${pageContext.request.contextPath}/ChinaConfirmPredict" class="list-group-item list-group-item-action bg-light">中国确诊人数预测</a>
<a href="#predict" class="list-group-item list-group-item-action bg-light">美国确诊人数预测</a> <a href="#predict" class="list-group-item list-group-item-action bg-light">美国确诊人数预测</a>
<a href="${pageContext.request.contextPath}/IndRNNPredict" class="list-group-item list-group-item-action bg-light">IndRNN模型展示</a>
</div> </div>
</div> </div>
<div id="page-content-wrapper"> <div id="page-content-wrapper">

Loading…
Cancel
Save