今、私はTensorflow Servingを研究しており、Custom Servableを作成しようとしています。Tensorflow Serving C++構文
したがって、私はhashmap_source_adaptorに関するコードを読んでいます(これはTensorflow Servingのサンプルコードです)。
しかし、いくつかのコードがありますが、わかりません。
HashmapSourceAdapter::HashmapSourceAdapter(
const HashmapSourceAdapterConfig& config)
: SimpleLoaderSourceAdapter<StoragePath, Hashmap>(
[config](const StoragePath& path, std::unique_ptr<Hashmap>* hashmap) {
return LoadHashmapFromFile(path, config.format(), hashmap);
},
// Decline to supply a resource footprint estimate.
SimpleLoaderSourceAdapter<StoragePath,
Hashmap>::EstimateNoResources()) {}
HashmapSourceAdapter::~HashmapSourceAdapter() { Detach(); }
[設定]とは4行目のことですか?
私にそれを検索するためのアイデアやヒントを教えてください。
原点のコードはこのリンクにあります。私は70行目を理解できません。 https://github.com/tensorflow/serving/blob/master/tensorflow_serving/servables/hashmap/hashmap_source_adapter.cc#L70
ありがとうございました。