27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
35 |
36 |
结果对比
37 |
38 | 上个收盘价:{{last_price}}
39 |
40 |
41 | {% if prediction_prices.bp_price > last_price %}
42 | 融合网络预测结果:{{prediction_prices.bp_price}}
43 | {% else %}
44 | 融合网络预测结果:{{prediction_prices.bp_price}}
45 | {% endif%}
46 |
47 |
48 | {% if prediction_prices.lstm_price > last_price %}
49 | LSTM网络预测结果:{{prediction_prices.lstm_price}}
50 | {% else %}
51 | LSTM网络预测结果:{{prediction_prices.lstm_price}}
52 | {% endif%}
53 |
54 |
55 |
56 |
57 |
58 |
59 |
60 |
61 |
62 |
63 |
64 |
65 |
66 |
67 |
68 |
近5日预测
69 |
70 |
71 | 日期 |
72 | 真实价格 |
73 | fu预测 |
74 | ls预测 |
75 | fu误差 |
76 | ls误差 |
77 |
78 | {% for error in five %}
79 |
80 | {{error.data}} |
81 | {{error.true_date}} |
82 | {{error.bp_predict}} |
83 | {{error.lstm_predict}} |
84 | {{error.bp_error}} |
85 | {{error.lstm_error}} |
86 |
87 | {% endfor %}
88 |
89 |