<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0" xmlns:cc="http://cyber.law.harvard.edu/rss/creativeCommonsRssModule.html">
    <channel>
        <title><![CDATA[Stories by Technical staffs in English on Medium]]></title>
        <description><![CDATA[Stories by Technical staffs in English on Medium]]></description>
        <link>https://medium.com/@horitaku1124?source=rss-fa03ba0dd1f8------2</link>
        <image>
            <url>https://cdn-images-1.medium.com/fit/c/150/150/1*OQ0iYUn02hbVrrFW0QyKmw.jpeg</url>
            <title>Stories by Technical staffs in English on Medium</title>
            <link>https://medium.com/@horitaku1124?source=rss-fa03ba0dd1f8------2</link>
        </image>
        <generator>Medium</generator>
        <lastBuildDate>Tue, 19 May 2026 08:48:29 GMT</lastBuildDate>
        <atom:link href="https://medium.com/@horitaku1124/feed" rel="self" type="application/rss+xml"/>
        <webMaster><![CDATA[yourfriends@medium.com]]></webMaster>
        <atom:link href="http://medium.superfeedr.com" rel="hub"/>
        <item>
            <title><![CDATA[Install MariaDB]]></title>
            <link>https://medium.com/@horitaku1124/install-mariadb-1da7daab00b9?source=rss-fa03ba0dd1f8------2</link>
            <guid isPermaLink="false">https://medium.com/p/1da7daab00b9</guid>
            <category><![CDATA[mariadb]]></category>
            <dc:creator><![CDATA[Technical staffs in English]]></dc:creator>
            <pubDate>Wed, 17 Jul 2019 16:11:59 GMT</pubDate>
            <atom:updated>2019-07-17T16:18:16.458Z</atom:updated>
            <content:encoded><![CDATA[<p>Install to macOS</p><pre>brew install mariadb<br>brew services start mariadb</pre><pre>mkdir -p /usr/local/etc/my.cnf.d</pre><p>after started</p><pre>mysql -uroot<br>create database db1;<br>use db1;</pre><pre>CREATE USER &#39;user1&#39;@&#39;localhost&#39; IDENTIFIED BY &#39;password&#39;;<br>GRANT ALL PRIVILEGES ON db1.* TO &#39;user1&#39;@&#39;localhost&#39;;</pre><p>Also check</p><p><a href="https://github.com/Homebrew/legacy-homebrew/issues/31760">mariadb: missing /usr/local/etc/my.cnf.d, removed by brew prune</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=1da7daab00b9" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Tried Tensorflow benchmarch]]></title>
            <link>https://medium.com/@horitaku1124/tried-tensorflow-benchmarch-ab4546fd38d0?source=rss-fa03ba0dd1f8------2</link>
            <guid isPermaLink="false">https://medium.com/p/ab4546fd38d0</guid>
            <category><![CDATA[tensorflow]]></category>
            <dc:creator><![CDATA[Technical staffs in English]]></dc:creator>
            <pubDate>Mon, 15 Jul 2019 23:33:09 GMT</pubDate>
            <atom:updated>2019-07-15T23:33:09.484Z</atom:updated>
            <content:encoded><![CDATA[<p>I tried benchmark on my laptop</p><p><a href="https://github.com/tensorflow/benchmarks">tensorflow/benchmarks</a></p><pre>MacbookPro &#39;13 Core i5-8259U CPU 2.30GHz<br>Python 3.6.6</pre><p>This is my command and arguments</p><pre>python tf_cnn_benchmarks.py --batch_size=512 --model=alexnet --data_format=NHWC --device=cpu</pre><p>here the result</p><pre>TensorFlow: 1.14<br>Model: alexnet<br>Dataset: imagenet (synthetic)<br>Mode: training<br>SingleSess: False<br>Batch size: 512 global<br>512 per device<br>Num batches: 100<br>Num epochs: 0.04<br>Devices: [&#39;/cpu:0&#39;]<br>NUMA bind: False<br>Data format: NHWC<br>Optimizer: sgd<br>Variables: parameter_server<br>==========<br><br>Step Img/sec total_loss<br>1 images/sec: 47.8 +/- 0.0 (jitter = 0.0) nan<br>10 images/sec: 47.7 +/- 0.1 (jitter = 0.4) nan<br>20 images/sec: 47.7 +/- 0.1 (jitter = 0.3) nan<br>30 images/sec: 47.7 +/- 0.1 (jitter = 0.3) nan<br>40 images/sec: 47.7 +/- 0.1 (jitter = 0.3) nan<br>50 images/sec: 47.7 +/- 0.0 (jitter = 0.3) nan<br>60 images/sec: 47.7 +/- 0.0 (jitter = 0.4) nan<br>70 images/sec: 47.7 +/- 0.0 (jitter = 0.4) nan<br>80 images/sec: 47.6 +/- 0.0 (jitter = 0.4) nan<br>90 images/sec: 47.5 +/- 0.1 (jitter = 0.5) nan<br>100 images/sec: 47.5 +/- 0.1 (jitter = 0.5) nan<br>----------------------------------------------------------------<br>total images/sec: 47.52<br>----------------------------------------------------------------</pre><p><a href="http://love-app.sblo.jp/article/186280030.html">Japanese version</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=ab4546fd38d0" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Installed Tensorflow from source]]></title>
            <link>https://medium.com/@horitaku1124/installed-tensorflow-from-source-bcf2f530208b?source=rss-fa03ba0dd1f8------2</link>
            <guid isPermaLink="false">https://medium.com/p/bcf2f530208b</guid>
            <category><![CDATA[tensorflow]]></category>
            <dc:creator><![CDATA[Technical staffs in English]]></dc:creator>
            <pubDate>Fri, 10 May 2019 13:19:53 GMT</pubDate>
            <atom:updated>2019-05-10T13:19:53.377Z</atom:updated>
            <content:encoded><![CDATA[<p>I tried this link</p><p><a href="https://techpolymath.com/2017/12/14/tensorflow-from-source-on-mac/">Building and Installing TensorFlow from Source on Your Mac</a></p><pre>$ python sr1_train.py                                                                                                                19-05-10<br>start: 2019-05-10 21:19:46.533988<br>Found 100 images belonging to 1 classes.<br>WARNING:tensorflow:From /Users/tak/.pyenv/versions/3.7.3/lib/python3.7/site-packages/tensorflow/python/ops/resource_variable_ops.py:435: colocate_with (from tensorflow.python.framework.ops) is deprecated and will be removed in a future version.<br>Instructions for updating:<br>Colocations handled automatically by placer.<br>_________________________________________________________________<br>Layer (type)                 Output Shape              Param #   <br>=================================================================<br>conv2d (Conv2D)              (None, None, None, 64)    15616     <br>_________________________________________________________________<br>conv2d_1 (Conv2D)            (None, None, None, 32)    2080      <br>_________________________________________________________________<br>conv2d_2 (Conv2D)            (None, None, None, 3)     2403      <br>=================================================================<br>Total params: 20,099<br>Trainable params: 20,099<br>Non-trainable params: 0<br>_________________________________________________________________<br>WARNING:tensorflow:From /Users/tak/.pyenv/versions/3.7.3/lib/python3.7/site-packages/tensorflow/python/keras/utils/losses_utils.py:170: to_float (from tensorflow.python.ops.math_ops) is deprecated and will be removed in a future version.<br>Instructions for updating:<br>Use tf.cast instead.<br>WARNING:tensorflow:From /Users/tak/.pyenv/versions/3.7.3/lib/python3.7/site-packages/tensorflow/python/ops/math_ops.py:3066: to_int32 (from tensorflow.python.ops.math_ops) is deprecated and will be removed in a future version.<br>Instructions for updating:<br>Use tf.cast instead.<br>2019-05-10 21:19:47.656675: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA<br>Found 1000 images belonging to 1 classes.<br>Epoch 1/10<br>100/100 [==============================] - 5s 47ms/sample - loss: 0.0215 - psnr: 16.4868<br>31/31 [==============================] - 137s 4s/step - loss: 0.0663 - psnr: 14.1137 - val_loss: 0.0226 - val_psnr: 16.4868<br>Epoch 2/10<br>100/100 [==============================] - 5s 47ms/sample - loss: 0.0122 - psnr: 18.7200<br>31/31 [==============================] - 133s 4s/step - loss: 0.0151 - psnr: 18.2903 - val_loss: 0.0139 - val_psnr: 18.7200<br>Epoch 3/10<br>100/100 [==============================] - 5s 48ms/sample - loss: 0.0097 - psnr: 19.6909<br>31/31 [==============================] - 136s 4s/step - loss: 0.0101 - psnr: 20.0132 - val_loss: 0.0112 - val_psnr: 19.6909<br>Epoch 4/10<br>100/100 [==============================] - 5s 47ms/sample - loss: 0.0079 - psnr: 20.5231<br>31/31 [==============================] - 135s 4s/step - loss: 0.0078 - psnr: 21.1236 - val_loss: 0.0094 - val_psnr: 20.5231<br>Epoch 5/10<br>100/100 [==============================] - 5s 48ms/sample - loss: 0.0068 - psnr: 21.1324<br>31/31 [==============================] - 136s 4s/step - loss: 0.0067 - psnr: 21.7721 - val_loss: 0.0082 - val_psnr: 21.1324<br>Epoch 6/10<br>100/100 [==============================] - 5s 48ms/sample - loss: 0.0063 - psnr: 21.4806<br>31/31 [==============================] - 135s 4s/step - loss: 0.0059 - psnr: 22.2806 - val_loss: 0.0076 - val_psnr: 21.4806<br>Epoch 7/10<br>100/100 [==============================] - 5s 48ms/sample - loss: 0.0061 - psnr: 21.6416<br>31/31 [==============================] - 135s 4s/step - loss: 0.0053 - psnr: 22.8222 - val_loss: 0.0074 - val_psnr: 21.6416<br>Epoch 8/10<br>100/100 [==============================] - 5s 48ms/sample - loss: 0.0059 - psnr: 21.7736<br>31/31 [==============================] - 135s 4s/step - loss: 0.0056 - psnr: 22.6185 - val_loss: 0.0071 - val_psnr: 21.7736<br>Epoch 9/10<br>100/100 [==============================] - 5s 47ms/sample - loss: 0.0055 - psnr: 22.0847<br>31/31 [==============================] - 135s 4s/step - loss: 0.0053 - psnr: 22.8264 - val_loss: 0.0067 - val_psnr: 22.0847<br>Epoch 10/10<br>100/100 [==============================] - 5s 48ms/sample - loss: 0.0055 - psnr: 22.0591<br>31/31 [==============================] - 135s 4s/step - loss: 0.0050 - psnr: 23.0951 - val_loss: 0.0067 - val_psnr: 22.0591<br>Saved model to disk<br>finish: 2019-05-10 21:42:19.937003</pre><p>It took 23minutes, after updated.</p><pre>$ python sr1_train.py                                                                                                                19-05-10<br>start: 2019-05-10 21:50:57.965290<br>Found 100 images belonging to 1 classes.<br>WARNING: Logging before flag parsing goes to stderr.<br>W0510 21:50:58.497403 4615673280 deprecation.py:506] From /Users/tak/.pyenv/versions/3.7.3/lib/python3.7/site-packages/tensorflow/python/ops/init_ops.py:1251: calling VarianceScaling.__init__ (from tensorflow.python.ops.init_ops) with dtype is deprecated and will be removed in a future version.<br>Instructions for updating:<br>Call initializer instance with the dtype argument instead of passing it to the constructor<br>Model: &quot;sequential&quot;<br>_________________________________________________________________<br>Layer (type)                 Output Shape              Param #   <br>=================================================================<br>conv2d (Conv2D)              (None, None, None, 64)    15616     <br>_________________________________________________________________<br>conv2d_1 (Conv2D)            (None, None, None, 32)    2080      <br>_________________________________________________________________<br>conv2d_2 (Conv2D)            (None, None, None, 3)     2403      <br>=================================================================<br>Total params: 20,099<br>Trainable params: 20,099<br>Non-trainable params: 0<br>_________________________________________________________________<br>Epoch 1/10<br>Found 1000 images belonging to 1 classes.<br>31/31 [==============================] - 86s 3s/step - loss: 0.0619 - psnr: 14.1663 - val_loss: 0.0226 - val_psnr: 16.5717<br>Epoch 2/10<br>31/31 [==============================] - 83s 3s/step - loss: 0.0152 - psnr: 18.2177 - val_loss: 0.0157 - val_psnr: 18.2270<br>Epoch 3/10<br>31/31 [==============================] - 83s 3s/step - loss: 0.0110 - psnr: 19.6592 - val_loss: 0.0121 - val_psnr: 19.4047<br>Epoch 4/10<br>31/31 [==============================] - 84s 3s/step - loss: 0.0082 - psnr: 20.9181 - val_loss: 0.0098 - val_psnr: 20.3380<br>Epoch 5/10<br>31/31 [==============================] - 84s 3s/step - loss: 0.0071 - psnr: 21.5562 - val_loss: 0.0089 - val_psnr: 20.8145<br>Epoch 6/10<br>31/31 [==============================] - 84s 3s/step - loss: 0.0066 - psnr: 21.8354 - val_loss: 0.0083 - val_psnr: 21.1056<br>Epoch 7/10<br>31/31 [==============================] - 84s 3s/step - loss: 0.0060 - psnr: 22.2487 - val_loss: 0.0086 - val_psnr: 20.8924<br>Epoch 8/10<br>31/31 [==============================] - 84s 3s/step - loss: 0.0065 - psnr: 21.9428 - val_loss: 0.0078 - val_psnr: 21.3960<br>Epoch 9/10<br>31/31 [==============================] - 84s 3s/step - loss: 0.0057 - psnr: 22.5164 - val_loss: 0.0075 - val_psnr: 21.5522<br>Epoch 10/10<br>31/31 [==============================] - 84s 3s/step - loss: 0.0053 - psnr: 22.8135 - val_loss: 0.0071 - val_psnr: 21.8321<br>Saved model to disk<br>finish: 2019-05-10 22:04:58.067069</pre><p>It took 14minutes.</p><p>I got several enhancement.</p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=bcf2f530208b" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Super Resolution]]></title>
            <link>https://medium.com/@horitaku1124/super-resolution-b73391bbf10f?source=rss-fa03ba0dd1f8------2</link>
            <guid isPermaLink="false">https://medium.com/p/b73391bbf10f</guid>
            <dc:creator><![CDATA[Technical staffs in English]]></dc:creator>
            <pubDate>Mon, 06 May 2019 16:58:44 GMT</pubDate>
            <atom:updated>2019-05-06T16:58:44.147Z</atom:updated>
            <content:encoded><![CDATA[<p>I used keras framework to increase resolution</p><pre>start: 2019-05-06 14:56:52.219573<br>Found 100 images belonging to 1 classes.<br>_________________________________________________________________<br>Layer (type)                 Output Shape              Param #   <br>=================================================================<br>conv2d (Conv2D)              (None, None, None, 64)    15616     <br>_________________________________________________________________<br>conv2d_1 (Conv2D)            (None, None, None, 32)    2080      <br>_________________________________________________________________<br>conv2d_2 (Conv2D)            (None, None, None, 3)     2403      <br>=================================================================<br>Total params: 20,099<br>Trainable params: 20,099<br>Non-trainable params: 0<br>_________________________________________________________________<br>Epoch 1/50<br>Found 1000 images belonging to 1 classes.<br>2019-05-06 14:56:53.497344: I tensorflow/core/platform/cpu_feature_guard.cc:141] Your CPU supports instructions that this TensorFlow binary was not compiled to use: AVX2 FMA<br>31/31 [==============================] - 135s 4s/step - loss: 0.0433 - psnr: 15.1995 - val_loss: 0.0171 - val_psnr: 17.7111<br>Epoch 2/50<br>31/31 [==============================] - 131s 4s/step - loss: 0.0126 - psnr: 19.0475 - val_loss: 0.0110 - val_psnr: 19.6478<br>Epoch 3/50<br>31/31 [==============================] - 130s 4s/step - loss: 0.0085 - psnr: 20.7746 - val_loss: 0.0079 - val_psnr: 21.1229<br>Epoch 4/50<br>31/31 [==============================] - 130s 4s/step - loss: 0.0065 - psnr: 21.9326 - val_loss: 0.0067 - val_psnr: 21.8849<br>Epoch 5/50<br>31/31 [==============================] - 132s 4s/step - loss: 0.0059 - psnr: 22.3524 - val_loss: 0.0063 - val_psnr: 22.1181<br>Epoch 6/50<br>31/31 [==============================] - 139s 4s/step - loss: 0.0056 - psnr: 22.5829 - val_loss: 0.0063 - val_psnr: 22.1250<br>Epoch 7/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0053 - psnr: 22.7901 - val_loss: 0.0055 - val_psnr: 22.7345<br>Epoch 8/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0050 - psnr: 23.0820 - val_loss: 0.0056 - val_psnr: 22.6496<br>Epoch 9/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0049 - psnr: 23.1215 - val_loss: 0.0052 - val_psnr: 22.9906<br>Epoch 10/50<br>31/31 [==============================] - 132s 4s/step - loss: 0.0047 - psnr: 23.3423 - val_loss: 0.0052 - val_psnr: 23.0307<br>Epoch 11/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0046 - psnr: 23.4907 - val_loss: 0.0050 - val_psnr: 23.2160<br>Epoch 12/50<br>31/31 [==============================] - 132s 4s/step - loss: 0.0046 - psnr: 23.4611 - val_loss: 0.0049 - val_psnr: 23.2698<br>Epoch 13/50<br>31/31 [==============================] - 132s 4s/step - loss: 0.0047 - psnr: 23.3354 - val_loss: 0.0049 - val_psnr: 23.2364<br>Epoch 14/50<br>31/31 [==============================] - 132s 4s/step - loss: 0.0042 - psnr: 23.8382 - val_loss: 0.0046 - val_psnr: 23.5162<br>Epoch 15/50<br>31/31 [==============================] - 132s 4s/step - loss: 0.0041 - psnr: 23.9200 - val_loss: 0.0053 - val_psnr: 22.9095<br>Epoch 16/50<br>31/31 [==============================] - 132s 4s/step - loss: 0.0048 - psnr: 23.2758 - val_loss: 0.0048 - val_psnr: 23.3866<br>Epoch 17/50<br>31/31 [==============================] - 132s 4s/step - loss: 0.0041 - psnr: 23.9022 - val_loss: 0.0045 - val_psnr: 23.6750<br>Epoch 18/50<br>31/31 [==============================] - 132s 4s/step - loss: 0.0043 - psnr: 23.7698 - val_loss: 0.0047 - val_psnr: 23.4511<br>Epoch 19/50<br>31/31 [==============================] - 132s 4s/step - loss: 0.0043 - psnr: 23.7114 - val_loss: 0.0046 - val_psnr: 23.5902<br>Epoch 20/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0039 - psnr: 24.1346 - val_loss: 0.0044 - val_psnr: 23.7893<br>Epoch 21/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0039 - psnr: 24.1195 - val_loss: 0.0043 - val_psnr: 23.8258<br>Epoch 22/50<br>31/31 [==============================] - 132s 4s/step - loss: 0.0040 - psnr: 24.1192 - val_loss: 0.0042 - val_psnr: 23.9291<br>Epoch 23/50<br>31/31 [==============================] - 132s 4s/step - loss: 0.0042 - psnr: 23.8847 - val_loss: 0.0044 - val_psnr: 23.7253<br>Epoch 24/50<br>31/31 [==============================] - 132s 4s/step - loss: 0.0040 - psnr: 24.0788 - val_loss: 0.0042 - val_psnr: 23.9688<br>Epoch 25/50<br>31/31 [==============================] - 132s 4s/step - loss: 0.0041 - psnr: 23.9862 - val_loss: 0.0042 - val_psnr: 23.9878<br>Epoch 26/50<br>31/31 [==============================] - 132s 4s/step - loss: 0.0040 - psnr: 24.0689 - val_loss: 0.0053 - val_psnr: 22.8600<br>Epoch 27/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0038 - psnr: 24.3128 - val_loss: 0.0043 - val_psnr: 23.8061<br>Epoch 28/50<br>31/31 [==============================] - 143s 5s/step - loss: 0.0040 - psnr: 24.0586 - val_loss: 0.0043 - val_psnr: 23.8934<br>Epoch 29/50<br>31/31 [==============================] - 149s 5s/step - loss: 0.0038 - psnr: 24.2733 - val_loss: 0.0041 - val_psnr: 24.0404<br>Epoch 30/50<br>31/31 [==============================] - 138s 4s/step - loss: 0.0037 - psnr: 24.4183 - val_loss: 0.0040 - val_psnr: 24.1261<br>Epoch 31/50<br>31/31 [==============================] - 138s 4s/step - loss: 0.0039 - psnr: 24.1324 - val_loss: 0.0045 - val_psnr: 23.6627<br>Epoch 32/50<br>31/31 [==============================] - 141s 5s/step - loss: 0.0040 - psnr: 24.0463 - val_loss: 0.0046 - val_psnr: 23.6026<br>Epoch 33/50<br>31/31 [==============================] - 136s 4s/step - loss: 0.0039 - psnr: 24.1457 - val_loss: 0.0040 - val_psnr: 24.1586<br>Epoch 34/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0037 - psnr: 24.3215 - val_loss: 0.0040 - val_psnr: 24.1620<br>Epoch 35/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0037 - psnr: 24.3987 - val_loss: 0.0046 - val_psnr: 23.4779<br>Epoch 36/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0039 - psnr: 24.1829 - val_loss: 0.0040 - val_psnr: 24.1676<br>Epoch 37/50<br>31/31 [==============================] - 132s 4s/step - loss: 0.0037 - psnr: 24.4163 - val_loss: 0.0044 - val_psnr: 23.7255<br>Epoch 38/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0038 - psnr: 24.2440 - val_loss: 0.0041 - val_psnr: 24.1112<br>Epoch 39/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0038 - psnr: 24.3567 - val_loss: 0.0041 - val_psnr: 24.0044<br>Epoch 40/50<br>31/31 [==============================] - 135s 4s/step - loss: 0.0036 - psnr: 24.5425 - val_loss: 0.0040 - val_psnr: 24.1534<br>Epoch 41/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0037 - psnr: 24.4058 - val_loss: 0.0039 - val_psnr: 24.2825<br>Epoch 42/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0037 - psnr: 24.4329 - val_loss: 0.0040 - val_psnr: 24.1835<br>Epoch 43/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0037 - psnr: 24.3790 - val_loss: 0.0039 - val_psnr: 24.3117<br>Epoch 44/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0037 - psnr: 24.4384 - val_loss: 0.0039 - val_psnr: 24.2318<br>Epoch 45/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0036 - psnr: 24.5098 - val_loss: 0.0044 - val_psnr: 23.7762<br>Epoch 46/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0038 - psnr: 24.2288 - val_loss: 0.0038 - val_psnr: 24.3576<br>Epoch 47/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0036 - psnr: 24.4672 - val_loss: 0.0042 - val_psnr: 23.9391<br>Epoch 48/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0038 - psnr: 24.3314 - val_loss: 0.0039 - val_psnr: 24.2399<br>Epoch 49/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0034 - psnr: 24.6795 - val_loss: 0.0039 - val_psnr: 24.2486<br>Epoch 50/50<br>31/31 [==============================] - 133s 4s/step - loss: 0.0035 - psnr: 24.6281 - val_loss: 0.0039 - val_psnr: 24.3364<br>Saved model to disk<br>finish: 2019-05-06 16:48:15.757484</pre><p>It took almost 2hours in iMac4k i7 5775R</p><p>I think resolution was a little bit increased, but got square pattern.</p><figure><img alt="" src="https://cdn-images-1.medium.com/max/244/1*r9HT3ST8v-p0DyDkzG_WeA.png" /><figcaption>Original</figcaption></figure><figure><img alt="" src="https://cdn-images-1.medium.com/max/553/1*jETD-fcLZ6Nybrtg2y6Ikw.png" /><figcaption>Processed</figcaption></figure><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=b73391bbf10f" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Installing keras on macOS]]></title>
            <link>https://medium.com/@horitaku1124/installing-keras-on-macos-4bd590e10871?source=rss-fa03ba0dd1f8------2</link>
            <guid isPermaLink="false">https://medium.com/p/4bd590e10871</guid>
            <dc:creator><![CDATA[Technical staffs in English]]></dc:creator>
            <pubDate>Mon, 06 May 2019 08:40:05 GMT</pubDate>
            <atom:updated>2019-05-06T08:40:05.263Z</atom:updated>
            <content:encoded><![CDATA[<p>install keras to macOS</p><pre>brew install zlib</pre><pre>export LDFLAGS=&quot;${LDFLAGS} -L/usr/local/opt/zlib/lib&quot;<br>export CPPFLAGS=&quot;${CPPFLAGS} -I/usr/local/opt/zlib/include&quot;<br>export PKG_CONFIG_PATH=&quot;${PKG_CONFIG_PATH} /usr/local/opt/zlib/lib/pkgconfig&quot;</pre><pre>pyenv install 3.7.3<br>pyenv global 3.7.3</pre><pre>pip install numpy matplotlib keras Pillow tensorflow</pre><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=4bd590e10871" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[pyenv on mac fish]]></title>
            <link>https://medium.com/@horitaku1124/pyenv-on-mac-fish-da49945c6501?source=rss-fa03ba0dd1f8------2</link>
            <guid isPermaLink="false">https://medium.com/p/da49945c6501</guid>
            <dc:creator><![CDATA[Technical staffs in English]]></dc:creator>
            <pubDate>Thu, 02 May 2019 14:44:48 GMT</pubDate>
            <atom:updated>2019-05-02T14:44:48.496Z</atom:updated>
            <content:encoded><![CDATA[<p>Install</p><p><a href="https://github.com/pyenv/pyenv#homebrew-on-macos">pyenv/pyenv</a></p><p>ログインシェルをfishにしてみる</p><p><a href="https://qiita.com/bleru/items/047a4e8ea2afb654d9e1">ログインシェルをfishにしてみる - Qiita</a></p><p>Shell Translation Dictionary</p><p><a href="https://github.com/fish-shell/fish-shell/wiki/Shell-Translation-Dictionary">fish-shell/fish-shell</a></p><pre>$ pyenv init<br># Load pyenv automatically by appending<br># the following to ~/.config/fish/config.fish:</pre><pre>status --is-interactive; and source (pyenv init -|psub)</pre><pre>status --is-interactive; and source (pyenv init -|psub)</pre><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=da49945c6501" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[VirtualBox setup]]></title>
            <link>https://medium.com/@horitaku1124/virtualbox-setup-c4ae073ca1b8?source=rss-fa03ba0dd1f8------2</link>
            <guid isPermaLink="false">https://medium.com/p/c4ae073ca1b8</guid>
            <dc:creator><![CDATA[Technical staffs in English]]></dc:creator>
            <pubDate>Wed, 01 May 2019 11:38:08 GMT</pubDate>
            <atom:updated>2019-05-04T03:48:40.554Z</atom:updated>
            <content:encoded><![CDATA[<p>Mouse disappear in VirtualBox</p><p><a href="https://superuser.com/questions/694155/mouse-disappear-in-virtualbox">Mouse disappear in VirtualBox</a></p><p>VirtualBox上のLinuxにGuestAdditionsをインストールして、共有フォルダを設定する</p><p><a href="https://qiita.com/delicious-locomoco/items/b83c9078d8b553c03778">VirtualBox上のLinuxにGuestAdditionsをインストールして、共有フォルダを設定する - Qiita</a></p><p>Install VirtualBox Guest Additions in CentOS, RHEL &amp; Fedora</p><p><a href="https://www.tecmint.com/install-virtualbox-guest-additions-in-centos-rhel-fedora/">Install VirtualBox Guest Additions in CentOS, RHEL &amp; Fedora</a></p><pre>sudo mkdir /mnt/guest_dir<br>sudo mount -t vboxsf host_dir /mnt/guest_dir</pre><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=c4ae073ca1b8" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[get started selenium in Java]]></title>
            <link>https://medium.com/@horitaku1124/get-started-selenium-in-java-e95a41fee527?source=rss-fa03ba0dd1f8------2</link>
            <guid isPermaLink="false">https://medium.com/p/e95a41fee527</guid>
            <category><![CDATA[java]]></category>
            <category><![CDATA[selenium]]></category>
            <dc:creator><![CDATA[Technical staffs in English]]></dc:creator>
            <pubDate>Mon, 08 Oct 2018 09:17:06 GMT</pubDate>
            <atom:updated>2018-10-08T09:17:06.837Z</atom:updated>
            <content:encoded><![CDATA[<p>get started selenium in Java</p><p>edit build.gradle</p><pre>dependencies {<br>    testCompile group: &#39;junit&#39;, name: &#39;junit&#39;, version: &#39;4.12&#39;<br>    testCompile group: &#39;org.seleniumhq.selenium&#39;, name: &#39;selenium-java&#39;, version: &#39;3.14.0&#39;<br>}</pre><p>download <a href="https://github.com/mozilla/geckodriver">geckodriver</a> to current directory</p><p>create java file</p><pre>import org.junit.Test;<br>import org.openqa.selenium.By;<br>import org.openqa.selenium.WebDriver;<br>import org.openqa.selenium.firefox.FirefoxDriver;</pre><pre>public class SeleniumTest {</pre><pre><a href="http://twitter.com/Test">@Test</a><br>    public void test1() {<br>        System.setProperty(&quot;webdriver.gecko.driver&quot;, &quot;./geckodriver&quot;);<br>        WebDriver driver = new FirefoxDriver();<br>        driver.get(&quot;<a href="http://localhost:8001/">http://localhost:8080/</a>&quot;);<br>        driver.quit();<br>    }<br>}</pre><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=e95a41fee527" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Lucene in Java]]></title>
            <link>https://medium.com/@horitaku1124/lucene-in-java-8dc52f54e6f2?source=rss-fa03ba0dd1f8------2</link>
            <guid isPermaLink="false">https://medium.com/p/8dc52f54e6f2</guid>
            <category><![CDATA[java]]></category>
            <dc:creator><![CDATA[Technical staffs in English]]></dc:creator>
            <pubDate>Mon, 17 Sep 2018 12:37:40 GMT</pubDate>
            <atom:updated>2018-09-17T12:37:40.420Z</atom:updated>
            <content:encoded><![CDATA[<p>build.gradle is like</p><pre>plugins {<br>    id &#39;java&#39;<br>}</pre><pre>group &#39;com.github.horitaku1124&#39;<br>version &#39;1.0-SNAPSHOT&#39;</pre><pre>sourceCompatibility = 1.8</pre><pre>repositories {<br>    mavenCentral()<br>}</pre><pre>dependencies {<br>    compile &#39;org.apache.lucene:lucene-core:7.4.0&#39;<br>    compile &#39;org.apache.lucene:lucene-queryparser:7.4.0&#39;<br>}</pre><p>Use these demo files</p><p><a href="https://lucene.apache.org/core/7_4_0/demo/overview-summary.html#Location_of_the_source">Location of the source</a></p><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=8dc52f54e6f2" width="1" height="1" alt="">]]></content:encoded>
        </item>
        <item>
            <title><![CDATA[Install mroonga into mariadb]]></title>
            <link>https://medium.com/@horitaku1124/install-mroonga-into-mariadb-9ddd4a06202?source=rss-fa03ba0dd1f8------2</link>
            <guid isPermaLink="false">https://medium.com/p/9ddd4a06202</guid>
            <category><![CDATA[web-development]]></category>
            <dc:creator><![CDATA[Technical staffs in English]]></dc:creator>
            <pubDate>Fri, 03 Aug 2018 12:54:12 GMT</pubDate>
            <atom:updated>2018-08-03T12:54:12.439Z</atom:updated>
            <content:encoded><![CDATA[<p>Firstly install mariadb in mac</p><pre>brew install mariadb<br>brew services start mariadb<br>brew services stop mariadb</pre><pre>sudo mysql.server start</pre><p>or Ubuntu</p><pre>sudo apt-get install mariadb-server mariadb-plugin-mroonga</pre><p>setting on mariadb</p><pre>&gt; INSTALL SONAME &#39;ha_mroonga&#39;;<br>&gt; SHOW ENGINES;<br>&gt; CREATE FUNCTION last_insert_grn_id RETURNS INTEGER SONAME &#39;ha_mroonga.so&#39;;</pre><p>Create table using mroonga</p><pre>CREATE TABLE `title_indexed` (<br>  `id` int(11) NOT NULL,<br>  `title` TEXT DEFAULT &#39;&#39;,<br>  FULLTEXT(`title`),<br>  PRIMARY KEY (`id`)<br>) ENGINE=Mroonga DEFAULT CHARSET=utf8;</pre><p>Now, able to search</p><pre>SELECT * FROM title_indexed WHERE MATCH(`title`) AGAINST(&#39;あいうえお&#39;);</pre><img src="https://medium.com/_/stat?event=post.clientViewed&referrerSource=full_rss&postId=9ddd4a06202" width="1" height="1" alt="">]]></content:encoded>
        </item>
    </channel>
</rss>