/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ import Foundation import paddle_mobile public class MobileNet: Net{ class MobilenetPreProccess: CusomKernel { init(device: MTLDevice) { let s = Shape.init(inWidth: 224, inHeight: 224, inChannel: 3) super.init(device: device, inFunctionName: "mobilenet_preprocess", outputDim: s, metalLoadModel: .LoadMetalInDefaultLib, metalLibPath: nil) } } class PreWords { var contents: [String] = [] init(fileName: String, type: String = "txt", inBundle: Bundle = Bundle.main) { if let filePath = inBundle.path(forResource: fileName, ofType: type) { let string = try! String.init(contentsOfFile: filePath) contents = string.components(separatedBy: CharacterSet.newlines).filter{$0.count > 10}.map{ String($0[$0.index($0.startIndex, offsetBy: 10)...]) } }else{ fatalError("no file call \(fileName)") } } subscript(index: Int) -> String { return contents[index] } } let labels = PreWords.init(fileName: "synset") override public func resultStr(res: [ResultHolder]) -> String { let resPointer = res[0].result var s: [String] = [] (0..