nyanp

Results 23 comments of nyanp

@danimtb Hi, sorry for late response! I'm interested in Conan, but I have two question about it: - Since tiny-dnn is a **header-only** library, all our users have to do...

@bhack /cc: @edgarriba In v1.0.0alpha, serialization for quantized layer isn't supported. So no confliction between serialization and @Wangyida 's work. Yes today is milestone day, but I hadn't enough time...

@beru @bhack > I wonder if this kind of “greatest common factor” approach is desirable. I think so, too. > This obiviousily can speed up the coverage on ARM/Neon It...

@bhack /cc @edgarriba @Wangyida I hate to say this, but we need to move. I hadn't enough time to complete serialization task, and I think convolution bug should be solved...

@bhack Yes, they're critical issues we must solve before the alpha release. #298 would solve a part of them, and I'll check now.

@edgarriba @Wangyida I think we need to reschedule, (and/or) shrink the scope of v1.0.0. When will be convenient for you to release v1.0.0?

@mtmarsh2 Yes, but images are always converted to the single dimensional grayscale.

@wakame1367 提案ありがとうございます!現状コミュニティが大きいわけでも無いので、まずは参加(特にPR)のハードルを下げるために必要な最小限のところから書いていくと良さそうです。その観点では、 - 環境設定 - Pullリクエストの提出 あたりが比較的優先度が高いのかな、と思いました。 コードスタイルについては、現状のnyaggle自身が綺麗な状態ではないので、mypy/flake8/black(あるいはpysen)をまずレポジトリ全体に適用した上で、ツールで担保する方向にもって良ければよいかなーと思っています。-> #110 を立てました。

@yuta100101 Thank you for reporting! It should be replaced with callback API.

p.139 > ほとんどのStackは、図6.9と同様のデータ構造を持つ。この実装は十分に一般的である。スタックされる要素がデフォルトコンストラクタを持つことを強制しないし、ポリモーフィックなデータ型を扱うこともできる。 - C++標準ライブラリのstackは、テンプレート引数で委譲するコンテナを指定できる。デフォルト値では図6.10に近い構造(正確にはdeque)になり、明示すれば図6.9相当のstackにすることも可能。負の可変性をテンプレートの特殊化ではなく、デフォルト引数で表現している - 実際には図6.10のような実装でも、図6.9に対して一般性を失うことは殆どない(デフォルトコンストラクタを強制しない云々は、データ構造というより実装に依存した問題)。 C++標準stackを簡略化した実装 [https://ideone.com/SJTv1H](https://ideone.com/SJTv1H)