瀏覽代碼

Update coreml-proto.js

Lutz Roeder 5 年之前
父節點
當前提交
19130db574
共有 1 個文件被更改,包括 4 次插入0 次删除
  1. 4 0
      source/coreml-proto.js

+ 4 - 0
source/coreml-proto.js

@@ -6172,6 +6172,9 @@ $root.CoreML.Specification.ConcatNDLayerParams = class ConcatNDLayerParams {
                 case 1:
                     message.axis = reader.int64();
                     break;
+                case 2:
+                    message.interleave = reader.bool();
+                    break;
                 default:
                     reader.skipType(tag & 7);
                     break;
@@ -6182,6 +6185,7 @@ $root.CoreML.Specification.ConcatNDLayerParams = class ConcatNDLayerParams {
 };
 
 $root.CoreML.Specification.ConcatNDLayerParams.prototype.axis = protobuf.Int64.create(0);
+$root.CoreML.Specification.ConcatNDLayerParams.prototype.interleave = false;
 
 $root.CoreML.Specification.SoftmaxNDLayerParams = class SoftmaxNDLayerParams {