Skip to content
Snippets Groups Projects
singularity_116254.out 641 KiB
Newer Older
Raymond Chia's avatar
Raymond Chia committed
2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000

1/4 [======>.......................] - ETA: 0s - loss: 1.5388WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.6077 - lr: 1.0000e-04
Epoch 54/200

1/4 [======>.......................] - ETA: 0s - loss: 2.1141WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 1.6877 - lr: 1.0000e-04
Epoch 55/200

1/4 [======>.......................] - ETA: 0s - loss: 1.1327WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.5030 - lr: 1.0000e-04
Epoch 56/200

1/4 [======>.......................] - ETA: 0s - loss: 1.8294WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.6188 - lr: 1.0000e-04
Epoch 57/200

1/4 [======>.......................] - ETA: 0s - loss: 1.6400WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 1.6995 - lr: 1.0000e-04
Epoch 58/200

1/4 [======>.......................] - ETA: 0s - loss: 2.2606WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 1.7248 - lr: 1.0000e-04
Epoch 59/200

1/4 [======>.......................] - ETA: 0s - loss: 1.3346WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 1.5634 - lr: 1.0000e-04
Epoch 60/200

1/4 [======>.......................] - ETA: 0s - loss: 1.5826WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.5256 - lr: 1.0000e-04
Epoch 61/200

1/4 [======>.......................] - ETA: 0s - loss: 1.3298WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.5147 - lr: 1.0000e-04
Epoch 62/200

1/4 [======>.......................] - ETA: 0s - loss: 1.4627WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 1.5150 - lr: 1.0000e-04
Epoch 63/200

1/4 [======>.......................] - ETA: 0s - loss: 1.5834WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 15ms/step - loss: 1.4521 - lr: 1.0000e-04
Epoch 64/200

1/4 [======>.......................] - ETA: 0s - loss: 1.3952WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 16ms/step - loss: 1.5178 - lr: 1.0000e-04
Epoch 65/200

1/4 [======>.......................] - ETA: 0s - loss: 1.6242WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 11ms/step - loss: 1.4228 - lr: 1.0000e-04
Epoch 66/200

1/4 [======>.......................] - ETA: 0s - loss: 1.7152WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 16ms/step - loss: 1.4135 - lr: 1.0000e-04
Epoch 67/200

1/4 [======>.......................] - ETA: 0s - loss: 1.5300WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 15ms/step - loss: 1.4931 - lr: 1.0000e-04
Epoch 68/200

1/4 [======>.......................] - ETA: 0s - loss: 1.7434WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 17ms/step - loss: 1.4341 - lr: 1.0000e-04
Epoch 69/200

1/4 [======>.......................] - ETA: 0s - loss: 1.3381WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 16ms/step - loss: 1.4572 - lr: 1.0000e-04
Epoch 70/200

1/4 [======>.......................] - ETA: 0s - loss: 1.1303WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 8ms/step - loss: 1.3228 - lr: 1.0000e-04
Epoch 71/200

1/4 [======>.......................] - ETA: 0s - loss: 1.8873WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 1.4544 - lr: 1.0000e-04
Epoch 72/200

1/4 [======>.......................] - ETA: 0s - loss: 1.4969WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 1.3128 - lr: 1.0000e-04
Epoch 73/200

1/4 [======>.......................] - ETA: 0s - loss: 1.2857WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.2586 - lr: 1.0000e-04
Epoch 74/200

1/4 [======>.......................] - ETA: 0s - loss: 1.2898WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 1.2897 - lr: 1.0000e-04
Epoch 75/200

1/4 [======>.......................] - ETA: 0s - loss: 1.2651WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.3125 - lr: 1.0000e-04
Epoch 76/200

1/4 [======>.......................] - ETA: 0s - loss: 1.4640WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 1.2621 - lr: 1.0000e-04
Epoch 77/200

1/4 [======>.......................] - ETA: 0s - loss: 0.7535WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.2401 - lr: 1.0000e-04
Epoch 78/200

1/4 [======>.......................] - ETA: 0s - loss: 1.3234WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.2307 - lr: 1.0000e-04
Epoch 79/200

1/4 [======>.......................] - ETA: 0s - loss: 1.3448WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.1867 - lr: 1.0000e-04
Epoch 80/200

1/4 [======>.......................] - ETA: 0s - loss: 1.1264WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.2621 - lr: 1.0000e-04
Epoch 81/200

1/4 [======>.......................] - ETA: 0s - loss: 1.2993WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 1.1650 - lr: 1.0000e-04
Epoch 82/200

1/4 [======>.......................] - ETA: 0s - loss: 1.1923WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.1380 - lr: 1.0000e-04
Epoch 83/200

1/4 [======>.......................] - ETA: 0s - loss: 0.7068WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 1.2241 - lr: 1.0000e-04
Epoch 84/200

1/4 [======>.......................] - ETA: 0s - loss: 1.5177WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.3107 - lr: 1.0000e-04
Epoch 85/200

1/4 [======>.......................] - ETA: 0s - loss: 0.8990WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.1470 - lr: 1.0000e-04
Epoch 86/200

1/4 [======>.......................] - ETA: 0s - loss: 1.3866WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.1900 - lr: 1.0000e-04
Epoch 87/200

1/4 [======>.......................] - ETA: 0s - loss: 1.1943WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.2095 - lr: 1.0000e-04
Epoch 88/200

1/4 [======>.......................] - ETA: 0s - loss: 1.1849WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.2050 - lr: 1.0000e-04
Epoch 89/200

1/4 [======>.......................] - ETA: 0s - loss: 1.1316WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 1.0768 - lr: 1.0000e-04
Epoch 90/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0695WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 13ms/step - loss: 1.1045 - lr: 1.0000e-04
Epoch 91/200

1/4 [======>.......................] - ETA: 0s - loss: 0.6811WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 16ms/step - loss: 1.0606 - lr: 1.0000e-04
Epoch 92/200

1/4 [======>.......................] - ETA: 0s - loss: 0.9146WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 8ms/step - loss: 1.1316 - lr: 1.0000e-04
Epoch 93/200

1/4 [======>.......................] - ETA: 0s - loss: 0.7886WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 13ms/step - loss: 1.1437 - lr: 1.0000e-04
Epoch 94/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0412WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 17ms/step - loss: 1.0021 - lr: 1.0000e-04
Epoch 95/200

1/4 [======>.......................] - ETA: 0s - loss: 0.6934WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 17ms/step - loss: 1.0804 - lr: 1.0000e-04
Epoch 96/200

1/4 [======>.......................] - ETA: 0s - loss: 1.5291WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 17ms/step - loss: 1.1375 - lr: 1.0000e-04
Epoch 97/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0168WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 8ms/step - loss: 1.0913 - lr: 1.0000e-04
Epoch 98/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0640WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 1.0519 - lr: 1.0000e-04
Epoch 99/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0329WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.0837 - lr: 1.0000e-04
Epoch 100/200

1/4 [======>.......................] - ETA: 0s - loss: 1.1094WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.9755 - lr: 1.0000e-04
Epoch 101/200

1/4 [======>.......................] - ETA: 0s - loss: 0.9791WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 1.0516 - lr: 9.0484e-05
Epoch 102/200

1/4 [======>.......................] - ETA: 0s - loss: 1.1900WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.9561 - lr: 8.1873e-05
Epoch 103/200

1/4 [======>.......................] - ETA: 0s - loss: 1.1031WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.0724 - lr: 7.4082e-05
Epoch 104/200

1/4 [======>.......................] - ETA: 0s - loss: 0.6583WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.9524 - lr: 6.7032e-05
Epoch 105/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0221WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.0387 - lr: 6.0653e-05
Epoch 106/200

1/4 [======>.......................] - ETA: 0s - loss: 0.9080WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9763 - lr: 5.4881e-05
Epoch 107/200

1/4 [======>.......................] - ETA: 0s - loss: 0.8268WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 1.0180 - lr: 4.9659e-05
Epoch 108/200

1/4 [======>.......................] - ETA: 0s - loss: 0.9120WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9752 - lr: 4.4933e-05
Epoch 109/200

1/4 [======>.......................] - ETA: 0s - loss: 1.1808WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.0092 - lr: 4.0657e-05
Epoch 110/200

1/4 [======>.......................] - ETA: 0s - loss: 0.8752WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.9736 - lr: 3.6788e-05
Epoch 111/200

1/4 [======>.......................] - ETA: 0s - loss: 0.8805WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.0027 - lr: 3.3287e-05
Epoch 112/200

1/4 [======>.......................] - ETA: 0s - loss: 1.1155WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.9171 - lr: 3.0119e-05
Epoch 113/200

1/4 [======>.......................] - ETA: 0s - loss: 1.2810WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.9391 - lr: 2.7253e-05
Epoch 114/200

1/4 [======>.......................] - ETA: 0s - loss: 0.7287WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.8641 - lr: 2.4660e-05
Epoch 115/200

1/4 [======>.......................] - ETA: 0s - loss: 0.9076WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9192 - lr: 2.2313e-05
Epoch 116/200

1/4 [======>.......................] - ETA: 0s - loss: 1.2890WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 11ms/step - loss: 0.9813 - lr: 2.0190e-05
Epoch 117/200

1/4 [======>.......................] - ETA: 0s - loss: 0.9152WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 16ms/step - loss: 0.9736 - lr: 1.8268e-05
Epoch 118/200

1/4 [======>.......................] - ETA: 0s - loss: 0.7586WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 10ms/step - loss: 0.9731 - lr: 1.6530e-05
Epoch 119/200

1/4 [======>.......................] - ETA: 0s - loss: 0.8673WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 14ms/step - loss: 0.9765 - lr: 1.4957e-05
Epoch 120/200

1/4 [======>.......................] - ETA: 0s - loss: 0.7187WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 16ms/step - loss: 1.0199 - lr: 1.3534e-05
Epoch 121/200

1/4 [======>.......................] - ETA: 0s - loss: 0.9183WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 17ms/step - loss: 0.9447 - lr: 1.2246e-05
Epoch 122/200

1/4 [======>.......................] - ETA: 0s - loss: 1.3658WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 16ms/step - loss: 0.9948 - lr: 1.1080e-05
Epoch 123/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0371WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 1.0016 - lr: 1.0026e-05
Epoch 124/200

1/4 [======>.......................] - ETA: 0s - loss: 1.1232WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9397 - lr: 9.0718e-06
Epoch 125/200

1/4 [======>.......................] - ETA: 0s - loss: 0.9926WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.9602 - lr: 8.2085e-06
Epoch 126/200

1/4 [======>.......................] - ETA: 0s - loss: 0.6823WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9334 - lr: 7.4273e-06
Epoch 127/200

1/4 [======>.......................] - ETA: 0s - loss: 0.9283WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9660 - lr: 6.7205e-06
Epoch 128/200

1/4 [======>.......................] - ETA: 0s - loss: 1.2659WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.9644 - lr: 6.0810e-06
Epoch 129/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0470WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.9477 - lr: 5.5023e-06
Epoch 130/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0262WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.9506 - lr: 4.9787e-06
Epoch 131/200

1/4 [======>.......................] - ETA: 0s - loss: 0.7222WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.8959 - lr: 4.5049e-06
Epoch 132/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0452WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.9582 - lr: 4.0762e-06
Epoch 133/200

1/4 [======>.......................] - ETA: 0s - loss: 0.8121WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.9454 - lr: 3.6883e-06
Epoch 134/200

1/4 [======>.......................] - ETA: 0s - loss: 0.7806WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9713 - lr: 3.3373e-06
Epoch 135/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0516WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9033 - lr: 3.0197e-06
Epoch 136/200

1/4 [======>.......................] - ETA: 0s - loss: 0.5660WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.9669 - lr: 2.7324e-06
Epoch 137/200

1/4 [======>.......................] - ETA: 0s - loss: 0.7580WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.9146 - lr: 2.4723e-06
Epoch 138/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0677WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.0149 - lr: 2.2371e-06
Epoch 139/200

1/4 [======>.......................] - ETA: 0s - loss: 0.8596WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9372 - lr: 2.0242e-06
Epoch 140/200

1/4 [======>.......................] - ETA: 0s - loss: 0.9185WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.8919 - lr: 1.8316e-06
Epoch 141/200

1/4 [======>.......................] - ETA: 0s - loss: 0.9269WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.9479 - lr: 1.6573e-06
Epoch 142/200

1/4 [======>.......................] - ETA: 0s - loss: 0.6650WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.8993 - lr: 1.4996e-06
Epoch 143/200

1/4 [======>.......................] - ETA: 0s - loss: 1.2866WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 1.0344 - lr: 1.3569e-06
Epoch 144/200

1/4 [======>.......................] - ETA: 0s - loss: 0.6141WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9306 - lr: 1.2277e-06
Epoch 145/200

1/4 [======>.......................] - ETA: 0s - loss: 0.9702WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 17ms/step - loss: 0.8987 - lr: 1.1109e-06
Epoch 146/200

1/4 [======>.......................] - ETA: 0s - loss: 0.7016WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 17ms/step - loss: 1.0077 - lr: 1.0052e-06
Epoch 147/200

1/4 [======>.......................] - ETA: 0s - loss: 0.5896WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 11ms/step - loss: 0.9827 - lr: 9.0953e-07
Epoch 148/200

1/4 [======>.......................] - ETA: 0s - loss: 0.6285WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 17ms/step - loss: 0.8804 - lr: 8.2297e-07
Epoch 149/200

1/4 [======>.......................] - ETA: 0s - loss: 0.6803WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 17ms/step - loss: 1.0116 - lr: 7.4466e-07
Epoch 150/200

1/4 [======>.......................] - ETA: 0s - loss: 1.4485WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 17ms/step - loss: 0.9931 - lr: 6.7379e-07
Epoch 151/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0758WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 10ms/step - loss: 1.0361 - lr: 6.0967e-07
Epoch 152/200

1/4 [======>.......................] - ETA: 0s - loss: 0.7964WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 8ms/step - loss: 0.9303 - lr: 5.5165e-07
Epoch 153/200

1/4 [======>.......................] - ETA: 0s - loss: 0.4742WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9075 - lr: 4.9916e-07
Epoch 154/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0759WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9979 - lr: 4.5166e-07
Epoch 155/200

1/4 [======>.......................] - ETA: 0s - loss: 1.1902WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9307 - lr: 4.0868e-07
Epoch 156/200

1/4 [======>.......................] - ETA: 0s - loss: 1.3804WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 1.0098 - lr: 3.6979e-07
Epoch 157/200

1/4 [======>.......................] - ETA: 0s - loss: 0.9627WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.8683 - lr: 3.3460e-07
Epoch 158/200

1/4 [======>.......................] - ETA: 0s - loss: 1.3380WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9684 - lr: 3.0275e-07
Epoch 159/200

1/4 [======>.......................] - ETA: 0s - loss: 0.9996WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.8835 - lr: 2.7394e-07
Epoch 160/200

1/4 [======>.......................] - ETA: 0s - loss: 1.1085WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9271 - lr: 2.4787e-07
Epoch 161/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0095WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.9401 - lr: 2.2429e-07
Epoch 162/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0094WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9420 - lr: 2.0294e-07
Epoch 163/200

1/4 [======>.......................] - ETA: 0s - loss: 0.9474WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.8948 - lr: 1.8363e-07
Epoch 164/200

1/4 [======>.......................] - ETA: 0s - loss: 0.6992WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.8984 - lr: 1.6616e-07
Epoch 165/200

1/4 [======>.......................] - ETA: 0s - loss: 1.2172WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9810 - lr: 1.5034e-07
Epoch 166/200

1/4 [======>.......................] - ETA: 0s - loss: 0.8375WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9374 - lr: 1.3604e-07
Epoch 167/200

1/4 [======>.......................] - ETA: 0s - loss: 1.1179WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9102 - lr: 1.2309e-07
Epoch 168/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0130WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 1.0199 - lr: 1.1138e-07
Epoch 169/200

1/4 [======>.......................] - ETA: 0s - loss: 0.6528WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9159 - lr: 1.0078e-07
Epoch 170/200

1/4 [======>.......................] - ETA: 0s - loss: 0.8323WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.8632 - lr: 9.1188e-08
Epoch 171/200

1/4 [======>.......................] - ETA: 0s - loss: 0.9773WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 14ms/step - loss: 0.8861 - lr: 8.2510e-08
Epoch 172/200

1/4 [======>.......................] - ETA: 0s - loss: 0.7383WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 17ms/step - loss: 0.8869 - lr: 7.4658e-08
Epoch 173/200

1/4 [======>.......................] - ETA: 0s - loss: 0.5181WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 8ms/step - loss: 1.0014 - lr: 6.7554e-08
Epoch 174/200

1/4 [======>.......................] - ETA: 0s - loss: 0.8188WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 17ms/step - loss: 0.8989 - lr: 6.1125e-08
Epoch 175/200

1/4 [======>.......................] - ETA: 0s - loss: 0.9874WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 17ms/step - loss: 1.0075 - lr: 5.5308e-08
Epoch 176/200

1/4 [======>.......................] - ETA: 0s - loss: 0.8968WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 17ms/step - loss: 0.9958 - lr: 5.0045e-08
Epoch 177/200

1/4 [======>.......................] - ETA: 0s - loss: 0.8046WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 13ms/step - loss: 0.9017 - lr: 4.5283e-08
Epoch 178/200

1/4 [======>.......................] - ETA: 0s - loss: 0.7303WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 8ms/step - loss: 0.8968 - lr: 4.0973e-08
Epoch 179/200

1/4 [======>.......................] - ETA: 0s - loss: 1.1170WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9187 - lr: 3.7074e-08
Epoch 180/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0925WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9403 - lr: 3.3546e-08
Epoch 181/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0150WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 1.2215 - lr: 3.0354e-08
Epoch 182/200

1/4 [======>.......................] - ETA: 0s - loss: 0.9410WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 1.0485 - lr: 2.7465e-08
Epoch 183/200

1/4 [======>.......................] - ETA: 0s - loss: 0.8760WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9454 - lr: 2.4852e-08
Epoch 184/200

1/4 [======>.......................] - ETA: 0s - loss: 0.8319WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.9093 - lr: 2.2487e-08
Epoch 185/200

1/4 [======>.......................] - ETA: 0s - loss: 1.1664WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9926 - lr: 2.0347e-08
Epoch 186/200

1/4 [======>.......................] - ETA: 0s - loss: 0.8375WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9484 - lr: 1.8410e-08
Epoch 187/200

1/4 [======>.......................] - ETA: 0s - loss: 0.9624WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.8845 - lr: 1.6659e-08
Epoch 188/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0640WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.8884 - lr: 1.5073e-08
Epoch 189/200

1/4 [======>.......................] - ETA: 0s - loss: 0.9762WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.8982 - lr: 1.3639e-08
Epoch 190/200

1/4 [======>.......................] - ETA: 0s - loss: 0.8995WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.8972 - lr: 1.2341e-08
Epoch 191/200

1/4 [======>.......................] - ETA: 0s - loss: 0.7995WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9270 - lr: 1.1167e-08
Epoch 192/200

1/4 [======>.......................] - ETA: 0s - loss: 0.7505WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.9299 - lr: 1.0104e-08
Epoch 193/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0226WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 1.0663 - lr: 9.1424e-09
Epoch 194/200

1/4 [======>.......................] - ETA: 0s - loss: 0.8654WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.9725 - lr: 8.2724e-09
Epoch 195/200

1/4 [======>.......................] - ETA: 0s - loss: 1.2852WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.9672 - lr: 7.4851e-09
Epoch 196/200

1/4 [======>.......................] - ETA: 0s - loss: 0.7476WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 6ms/step - loss: 0.8767 - lr: 6.7728e-09
Epoch 197/200

1/4 [======>.......................] - ETA: 0s - loss: 0.8764WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 7ms/step - loss: 0.9550 - lr: 6.1283e-09
Epoch 198/200

1/4 [======>.......................] - ETA: 0s - loss: 1.0945WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 16ms/step - loss: 0.9778 - lr: 5.5451e-09
Epoch 199/200

1/4 [======>.......................] - ETA: 0s - loss: 0.7707WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 16ms/step - loss: 0.8945 - lr: 5.0174e-09
Epoch 200/200

1/4 [======>.......................] - ETA: 0s - loss: 0.8523WARNING:tensorflow:Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss
Early stopping conditioned on metric `val_loss` which is not available. Available metrics are: loss

4/4 [==============================] - 0s 11ms/step - loss: 0.9397 - lr: 4.5400e-09
{'n_layers': 1, 'filter_unit0': 128, 'kernel_size0': 3, 'pool_size0': 3, 'stride_size0': 1, 'dropout0': 0.4}

 1/31 [..............................] - ETA: 3s
26/31 [========================>.....] - ETA: 0s
31/31 [==============================] - 0s 2ms/step
WARNING:tensorflow:Detecting that an object or model or tf.train.Checkpoint is being deleted with unrestored values. See the following logs for the specific values in question. To silence these warnings, use `status.expect_partial()`. See https://www.tensorflow.org/api_docs/python/tf/train/Checkpoint#restorefor details about the status object returned by the restore function.
Detecting that an object or model or tf.train.Checkpoint is being deleted with unrestored values. See the following logs for the specific values in question. To silence these warnings, use `status.expect_partial()`. See https://www.tensorflow.org/api_docs/python/tf/train/Checkpoint#restorefor details about the status object returned by the restore function.
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.1
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.1
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.2
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.2
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.3
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.3
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.4
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.4
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.5
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.5
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.6
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.6
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.7
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.7
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.8
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.8
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.9
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.9
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.10
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.10
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.11
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.11
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.12
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.12
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.13
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.13
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.14
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.14
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.15
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.15
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.16
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.16
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.17
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.17
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.18
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.18
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.19
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.19
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.20
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.20
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.21
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.21
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.22
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.22
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.23
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.23
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.24
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.24
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.25
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.25
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.26
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.26
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.27
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.27
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.28
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.28
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.29
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.29
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.30
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.30
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.31
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.31
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.32
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.32
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.33
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.33
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.34
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.34
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.35
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.35
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.36
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.36
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.37
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.37
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.38
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.38
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.39
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.39
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.40
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.40
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.41
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.41
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.42
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.42
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.43
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.43
WARNING:tensorflow:Value in checkpoint could not be found in the restored object: (root).optimizer._variables.44
Value in checkpoint could not be found in the restored object: (root).optimizer._variables.44
adding new entry
     subject  config_id mdl_str  ...         r2  pearsonr_coeff pearsonr_pval
0    Pilot02          0  linreg  ...  -9.864563        0.038776      0.364940
1    Pilot02          0  linreg  ... -11.875765        0.070097      0.101171
2    Pilot02          0  linreg  ... -11.069278        0.047023      0.271822
3    Pilot02          0  linreg  ... -25.345517        0.016892      0.693177
4    Pilot02          0  linreg  ... -15.299470        0.118749      0.005380
..       ...        ...     ...  ...        ...             ...           ...
440  Pilot02          8  linreg  ...  -6.294962        0.123153      0.000010
441  Pilot02          8  linreg  ... -11.103152        0.121706      0.000013
442  Pilot02          8  linreg  ...  -1.049395        0.027840      0.319607
443  Pilot03          1   cnn1d  ...  -2.907395       -0.076130      0.017254
444  Pilot03          1   cnn1d  ...  -2.028173        0.049265      0.123653

[445 rows x 18 columns]
imu-bvp_rr_Pilot03_id1_combi5.0-7.0-10.0-12.0-20.0
train
(36036, 11)
test
(287283, 10)
---CNN1D---
input shape:  (1440, 7)
x shape:  (116, 1440, 7)

Search: Running Trial #1

Value             |Best Value So Far |Hyperparameter
1                 |1                 |n_layers
256               |256               |filter_unit0
4                 |4                 |kernel_size0
5                 |5                 |pool_size0
5                 |5                 |stride_size0
0.1               |0.1               |dropout0



Trial 1 Complete [00h 00m 03s]
val_loss: 19.351337432861328

Best val_loss So Far: 19.351337432861328
Total elapsed time: 00h 00m 03s

Search: Running Trial #2

Value             |Best Value So Far |Hyperparameter
3                 |1                 |n_layers
64                |256               |filter_unit0
128               |None              |filter_unit1
128               |None              |filter_unit2
2                 |4                 |kernel_size0
1                 |None              |kernel_size1
3                 |None              |kernel_size2
1                 |5                 |pool_size0
3                 |None              |pool_size1
1                 |None              |pool_size2
1                 |5                 |stride_size0
1                 |None              |stride_size1
2                 |None              |stride_size2
0.3               |0.1               |dropout0
0.1               |None              |dropout1
0.3               |None              |dropout2



Trial 2 Complete [00h 00m 05s]
val_loss: 18.84608268737793

Best val_loss So Far: 18.84608268737793
Total elapsed time: 00h 00m 08s

Search: Running Trial #3

Value             |Best Value So Far |Hyperparameter
4                 |3                 |n_layers
64                |64                |filter_unit0
64                |128               |filter_unit1
256               |128               |filter_unit2
64                |None              |filter_unit3
1                 |2                 |kernel_size0
5                 |1                 |kernel_size1
5                 |3                 |kernel_size2
5                 |None              |kernel_size3
1                 |1                 |pool_size0
3                 |3                 |pool_size1
3                 |1                 |pool_size2
1                 |None              |pool_size3
2                 |1                 |stride_size0
5                 |1                 |stride_size1
2                 |2                 |stride_size2
2                 |None              |stride_size3
0.3               |0.3               |dropout0
0.2               |0.1               |dropout1
0                 |0.3               |dropout2
0.3               |None              |dropout3



Trial 3 Complete [00h 00m 06s]
val_loss: 18.402555465698242

Best val_loss So Far: 18.402555465698242
Total elapsed time: 00h 00m 14s

Search: Running Trial #4

Value             |Best Value So Far |Hyperparameter
2                 |4                 |n_layers
128               |64                |filter_unit0
256               |64                |filter_unit1
3                 |1                 |kernel_size0
4                 |5                 |kernel_size1
3                 |1                 |pool_size0
1                 |3                 |pool_size1
2                 |2                 |stride_size0
1                 |5                 |stride_size1
0                 |0.3               |dropout0
0.3               |0.2               |dropout1



Trial 4 Complete [00h 00m 04s]
val_loss: 18.621368408203125

Best val_loss So Far: 18.402555465698242
Total elapsed time: 00h 00m 18s

Search: Running Trial #5

Value             |Best Value So Far |Hyperparameter
1                 |4                 |n_layers
64                |64                |filter_unit0
3                 |1                 |kernel_size0
1                 |1                 |pool_size0
3                 |2                 |stride_size0
0.1               |0.3               |dropout0



Trial 5 Complete [00h 00m 03s]
val_loss: 19.4353084564209

Best val_loss So Far: 18.402555465698242
Total elapsed time: 00h 00m 21s

Search: Running Trial #6

Value             |Best Value So Far |Hyperparameter
3                 |4                 |n_layers
64                |64                |filter_unit0
128               |64                |filter_unit1
64                |256               |filter_unit2
1                 |1                 |kernel_size0
3                 |5                 |kernel_size1
1                 |5                 |kernel_size2
5                 |1                 |pool_size0
5                 |3                 |pool_size1
2                 |3                 |pool_size2
4                 |2                 |stride_size0
4                 |5                 |stride_size1
2                 |2                 |stride_size2
0.3               |0.3               |dropout0
0.1               |0.2               |dropout1
0                 |0                 |dropout2



Trial 6 Complete [00h 00m 04s]
val_loss: 17.840829849243164

Best val_loss So Far: 17.840829849243164
Total elapsed time: 00h 00m 25s

Search: Running Trial #7

Value             |Best Value So Far |Hyperparameter
4                 |3                 |n_layers
64                |64                |filter_unit0
64                |128               |filter_unit1
256               |64                |filter_unit2
128               |None              |filter_unit3
4                 |1                 |kernel_size0
5                 |3                 |kernel_size1
2                 |1                 |kernel_size2
4                 |None              |kernel_size3
2                 |5                 |pool_size0
2                 |5                 |pool_size1
4                 |2                 |pool_size2
4                 |None              |pool_size3
4                 |4                 |stride_size0
1                 |4                 |stride_size1
5                 |2                 |stride_size2
4                 |None              |stride_size3
0.1               |0.3               |dropout0
0.4               |0.1               |dropout1
0.4               |0                 |dropout2
0                 |None              |dropout3



Trial 7 Complete [00h 00m 06s]
val_loss: 17.139734268188477

Best val_loss So Far: 17.139734268188477
Total elapsed time: 00h 00m 31s

Search: Running Trial #8

Value             |Best Value So Far |Hyperparameter
5                 |4                 |n_layers
64                |64                |filter_unit0
256               |64                |filter_unit1
64                |256               |filter_unit2
64                |128               |filter_unit3
64                |None              |filter_unit4
4                 |4                 |kernel_size0
3                 |5                 |kernel_size1
2                 |2                 |kernel_size2
1                 |4                 |kernel_size3
3                 |None              |kernel_size4
2                 |2                 |pool_size0
4                 |2                 |pool_size1
1                 |4                 |pool_size2
2                 |4                 |pool_size3
3                 |None              |pool_size4
2                 |4                 |stride_size0
4                 |1                 |stride_size1
4                 |5                 |stride_size2
5                 |4                 |stride_size3
5                 |None              |stride_size4
0                 |0.1               |dropout0
0.3               |0.4               |dropout1
0                 |0.4               |dropout2
0.4               |0                 |dropout3
0.2               |None              |dropout4



Trial 8 Complete [00h 00m 07s]
val_loss: 18.95344352722168

Best val_loss So Far: 17.139734268188477
Total elapsed time: 00h 00m 38s

Search: Running Trial #9

Value             |Best Value So Far |Hyperparameter
5                 |4                 |n_layers
32                |64                |filter_unit0
32                |64                |filter_unit1
256               |256               |filter_unit2
64                |128               |filter_unit3
256               |None              |filter_unit4
5                 |4                 |kernel_size0
3                 |5                 |kernel_size1
2                 |2                 |kernel_size2
1                 |4                 |kernel_size3
4                 |None              |kernel_size4
4                 |2                 |pool_size0
1                 |2                 |pool_size1
3                 |4                 |pool_size2
3                 |4                 |pool_size3
3                 |None              |pool_size4
5                 |4                 |stride_size0
5                 |1                 |stride_size1
3                 |5                 |stride_size2
4                 |4                 |stride_size3
4                 |None              |stride_size4
0.2               |0.1               |dropout0
0                 |0.4               |dropout1
0.4               |0.4               |dropout2
0                 |0                 |dropout3
0.2               |None              |dropout4


2023-11-24 11:21:15.826555: W tensorflow/core/framework/op_kernel.cc:1828] OP_REQUIRES failed at save_restore_v2_ops.cc:289 : NOT_FOUND: /projects/CIBCIGroup/00DataUploading/rqchia/aria-respiration-cal/subject_specific/Pilot03/imu-bvp_rr/01/cnn1d_imu-bvp_rr_Pilot03_id1_combi5.0-7.0-10.0-12.0-20.0/bayesianoptimization/trial_09/checkpoint_temp/part-00000-of-00001.data-00000-of-00001; No such file or directory

Trial 9 Complete [00h 00m 06s]
val_loss: 18.949499130249023

Best val_loss So Far: 17.139734268188477
Total elapsed time: 00h 00m 44s

Search: Running Trial #10

Value             |Best Value So Far |Hyperparameter
2                 |4                 |n_layers
64                |64                |filter_unit0
128               |64                |filter_unit1
2                 |4                 |kernel_size0
5                 |5                 |kernel_size1
1                 |2                 |pool_size0
1                 |2                 |pool_size1
1                 |4                 |stride_size0
3                 |1                 |stride_size1
0.3               |0.1               |dropout0
0                 |0.4               |dropout1


Traceback (most recent call last):
  File "/home/rqchia/.local/lib/python3.8/site-packages/keras_tuner/src/engine/base_tuner.py", line 270, in _try_run_and_update_trial
    self._run_and_update_trial(trial, *fit_args, **fit_kwargs)
  File "/home/rqchia/.local/lib/python3.8/site-packages/keras_tuner/src/engine/base_tuner.py", line 235, in _run_and_update_trial
    results = self.run_trial(trial, *fit_args, **fit_kwargs)
  File "/home/rqchia/.local/lib/python3.8/site-packages/keras_tuner/src/engine/tuner.py", line 314, in run_trial
    obj_value = self._build_and_fit_model(trial, *args, **copied_kwargs)
  File "/home/rqchia/.local/lib/python3.8/site-packages/keras_tuner/src/engine/tuner.py", line 233, in _build_and_fit_model
    results = self.hypermodel.fit(hp, model, *args, **kwargs)
  File "/home/rqchia/projects/aria-respiration-cal/models/neuralnet.py", line 178, in fit
    history = model.fit(x, y,
  File "/home/rqchia/.local/lib/python3.8/site-packages/keras/src/utils/traceback_utils.py", line 70, in error_handler
    raise e.with_traceback(filtered_tb) from None
  File "/home/rqchia/.local/lib/python3.8/site-packages/keras_tuner/src/engine/tuner_utils.py", line 172, in on_epoch_end
    self._save_model()
  File "/home/rqchia/.local/lib/python3.8/site-packages/keras_tuner/src/engine/tuner_utils.py", line 182, in _save_model
    self.model.save_weights(write_filepath)
tensorflow.python.framework.errors_impl.NotFoundError: {{function_node __wrapped__MergeV2Checkpoints_device_/job:localhost/replica:0/task:0/device:CPU:0}} /projects/CIBCIGroup/00DataUploading/rqchia/aria-respiration-cal/subject_specific/Pilot03/imu-bvp_rr/01/cnn1d_imu-bvp_rr_Pilot03_id1_combi5.0-7.0-10.0-12.0-20.0/bayesianoptimization/trial_09/checkpoint_temp/part-00000-of-00001.data-00000-of-00001; No such file or directory [Op:MergeV2Checkpoints]

Trial 10 Complete [00h 00m 03s]

Best val_loss So Far: 17.139734268188477
Total elapsed time: 00h 00m 46s

Search: Running Trial #11

Value             |Best Value So Far |Hyperparameter
1                 |4                 |n_layers
128               |64                |filter_unit0
5                 |4                 |kernel_size0
4                 |2                 |pool_size0
3                 |4                 |stride_size0
0                 |0.1               |dropout0



Trial 11 Complete [00h 00m 02s]
val_loss: 19.777812957763672

Best val_loss So Far: 17.139734268188477
Total elapsed time: 00h 00m 49s