@@ -14,6 +14,7 @@ namespace testing {
1414 * includng input and output.
1515 * No real data was loaded in this type of class,
1616 * but only data location.
17+ * Data loading is unsolved, this class CANNOT be treated as real data.
1718 */
1819struct UnsolvedTestData {
1920 std::vector<std::string> input_filenames_;
@@ -31,6 +32,7 @@ struct UnsolvedTestData {
3132 * including one model file and several chunks of test data
3233 * No real data was loaded in this type of class,
3334 * but only data location.
35+ * Data loading is unsolved, this class CANNOT be treated as real data.
3436 */
3537struct UnsolvedTestCase {
3638 UnsolvedTestCase (
@@ -50,8 +52,9 @@ struct UnsolvedTestCase {
5052
5153/* *
5254 * Store one chunk of test data,
53- * including raw input/output and protos
54- * Real data was loaded in this type of class..
55+ * including raw input/output and protos.
56+ * Real data was loaded in this type of class.
57+ * Data loading is resolved, this class may contains large chunk of data.
5558 */
5659struct ResolvedTestData {
5760 std::vector<ONNX_NAMESPACE::TensorProto> inputs_;
@@ -62,6 +65,7 @@ struct ResolvedTestData {
6265 * Store one test model,
6366 * including raw model, model proto and several chunks of test data.
6467 * Real data was loaded in this type of class.
68+ * Data loading is resolved, this class may contains large chunk of data.
6569 */
6670struct ResolvedTestCase {
6771 ONNX_NAMESPACE::ModelProto model_;
0 commit comments