この文章ではCNN実装であるCaffeを用いて,特徴ベクトルの抽出やパラメータの学習を行うための方法について説明する.
以下の作業を行いたいのであれば,Caffeを用いることが望ましい.
- CNNを利用した画像の多クラス分類
- CNNによる特徴ベクトルの抽出
- CNNの転移学習
- Stacked Auto Encoder
| var el = document.createElement('script'); | |
| el.src = "https://raw.githubusercontent.com/lodash/lodash/3.10.1/lodash.min.js"; | |
| el.type = "text/javascript"; | |
| document.head.appendChild(el) |
| <?xml version="1.0"?> | |
| <remoteCommandList> | |
| <command name="Confirm" type="ircc" value="AAAAAQAAAAEAAABlAw=="/> | |
| <command name="Up" type="ircc" value="AAAAAQAAAAEAAAB0Aw=="/> | |
| <command name="Down" type="ircc" value="AAAAAQAAAAEAAAB1Aw=="/> | |
| <command name="Right" type="ircc" value="AAAAAQAAAAEAAAAzAw=="/> | |
| <command name="Left" type="ircc" value="AAAAAQAAAAEAAAA0Aw=="/> | |
| <command name="Home" type="ircc" value="AAAAAQAAAAEAAABgAw=="/> | |
| <command name="Options" type="ircc" value="AAAAAgAAAJcAAAA2Aw=="/> | |
| <command name="Return" type="ircc" value="AAAAAgAAAJcAAAAjAw=="/> |
| /* | |
| * Created by C.J. Kimberlin | |
| * | |
| * The MIT License (MIT) | |
| * | |
| * Copyright (c) 2019 | |
| * | |
| * Permission is hereby granted, free of charge, to any person obtaining a copy | |
| * of this software and associated documentation files (the "Software"), to deal | |
| * in the Software without restriction, including without limitation the rights |
| (function (window) { | |
| // This library re-implements setTimeout, setInterval, clearTimeout, clearInterval for iOS6. | |
| // iOS6 suffers from a bug that kills timers that are created while a page is scrolling. | |
| // This library fixes that problem by recreating timers after scrolling finishes (with interval correction). | |
| // This code is free to use by anyone (MIT, blabla). | |
| // Author: rkorving@wizcorp.jp | |
| var timeouts = {}; | |
| var intervals = {}; |