|
279 | 279 | "inputLayer = Input(shape=(X_train.shape[1],))\n", |
280 | 280 | "x = BatchNormalization()(inputLayer)\n", |
281 | 281 | "#\n", |
282 | | - "x = Dense(100, kernel_initializer='lecun_uniform', name='dense_relu1')(x)\n", |
| 282 | + "x = Dense(20, kernel_initializer='lecun_uniform', name='dense_relu1')(x)\n", |
283 | 283 | "x = BatchNormalization()(x)\n", |
284 | 284 | "x = Activation(\"relu\")(x)\n", |
285 | 285 | "#\n", |
286 | | - "x = Dense(50, kernel_initializer='lecun_uniform', name='dense_relu2')(x)\n", |
| 286 | + "x = Dense(10, kernel_initializer='lecun_uniform', name='dense_relu2')(x)\n", |
287 | 287 | "x = BatchNormalization()(x)\n", |
288 | 288 | "x = Activation(\"relu\")(x)#\n", |
289 | 289 | "x = Dense(30, kernel_initializer='lecun_uniform', name='dense_relu3')(x)\n", |
290 | 290 | "#\n", |
291 | | - "x = Dense(10, kernel_initializer='lecun_uniform', name='dense_relu4')(x)\n", |
| 291 | + "x = Dense(5, kernel_initializer='lecun_uniform', name='dense_relu4')(x)\n", |
292 | 292 | "x = BatchNormalization()(x)\n", |
293 | 293 | "x = Activation(\"relu\")(x)\n", |
294 | 294 | "#\n", |
|
359 | 359 | "outputs": [], |
360 | 360 | "source": [ |
361 | 361 | "# true distribution\n", |
362 | | - "plt.plot(TimeY_test,Y_test, label = \"True\")\n", |
| 362 | + "plt.scatter(TimeY_test,Y_test, label = \"True\")\n", |
363 | 363 | "plt.ylabel('Transparency')\n", |
364 | 364 | "plt.xlabel('Time')\n", |
365 | 365 | "plt.show()\n", |
|
373 | 373 | "plt.ylim((0.5,1))\n", |
374 | 374 | "plt.show()\n", |
375 | 375 | "\n", |
| 376 | + "# true distribution\n", |
| 377 | + "plt.scatter(TimeY_test,Y_test, label = \"True\", alpha=0.5)\n", |
| 378 | + "plt.scatter(TimeY_test,Y_hat, label = \"Predicted\", alpha=0.5)\n", |
| 379 | + "plt.ylabel('Transparency')\n", |
| 380 | + "plt.xlabel('Time')\n", |
| 381 | + "plt.legend()\n", |
| 382 | + "plt.ylim((0.5,1))\n", |
| 383 | + "plt.show()\n", |
| 384 | + "\n", |
376 | 385 | "\n", |
377 | 386 | "plt.plot(TimeY_test,Y_test-Y_hat, label = \"Residual\")\n", |
378 | 387 | "plt.ylabel('Transparency Residual')\n", |
|
0 commit comments