From b4958cef7fb73fec53678f83308d700a987f5a16 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=EC=9D=B4=EC=83=81=EA=B7=9C/On-Device=20Lab=28SR=29/Princip?= =?utf8?q?al=20Engineer/=EC=82=BC=EC=84=B1=EC=A0=84=EC=9E=90?= Date: Wed, 10 Jul 2019 19:04:27 +0900 Subject: [PATCH] [nnpackage] Rename tensorflow lite's names (#5613) namespace, file_identifier and file_extension are renamed. our copyright is pretended. revision history has only 1 line (for version 0). Signed-off-by: Sanggyu Lee --- contrib/nnpackage/schema/nnpackage_model.fbs | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/contrib/nnpackage/schema/nnpackage_model.fbs b/contrib/nnpackage/schema/nnpackage_model.fbs index 9379a6f..dbb0d35 100644 --- a/contrib/nnpackage/schema/nnpackage_model.fbs +++ b/contrib/nnpackage/schema/nnpackage_model.fbs @@ -1,3 +1,4 @@ +// Copyright (c) 2019 Samsung Electronics Co., Ltd. All Rights Reserved // Copyright 2017 The TensorFlow Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); @@ -13,17 +14,14 @@ // limitations under the License. // Revision History -// Version 0: Initial version. -// Version 1: Add subgraphs to schema. -// Version 2: Rename operators to conform to NN API. -// Version 3: Move buffer data from Model.Subgraph.Tensors to Model.Buffers. +// Version 0: Initial version. Based on TensorFlow Lite v1.13.1 schema. -namespace tflite; +namespace circle; // This corresponds to the version. -file_identifier "TFL3"; +file_identifier "CIR0"; // File extension of any written files. -file_extension "tflite"; +file_extension "circle"; // IMPORTANT: All new members of tables, enums and unions must be added at the // end to ensure backwards compatibility. -- 2.7.4