Added TODO notes for Marcin

This commit is contained in:
Lane Schwartz 2016-09-18 17:09:38 +02:00
parent b4c4463344
commit dd270a4f92
2 changed files with 4 additions and 2 deletions

View File

@ -38,6 +38,7 @@ void NpzConverter::Destruct() {
destructed_ = true;
}
/** TODO: Marcin, what does this function do? Why isn't it a method? */
mblas::Matrix NpzConverter::operator[](const std::string& key) const {
typedef blaze::CustomMatrix<float, blaze::unaligned,
blaze::unpadded, blaze::rowMajor> BlazeWrapper;

View File

@ -25,8 +25,9 @@
#include "tensor.h" //XXX Marcin, is this include actually needed? It appears to not be used.
/**
* Loads model data stored in a npz file,
* enabling it to later be stored in standard Marian data structures.
* @brief Loads model data stored in a npz file.
*
* Use of this class enables such data to later be stored in standard Marian data structures.
*
* Note: this class makes use of the 3rd-party class <code>npy</code>.
*/