PaddleMobileCPU.h 4.3 KB
Newer Older
1
/* Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
L
liuruilong 已提交
2

3 4 5
 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
L
liuruilong 已提交
6

7
 http://www.apache.org/licenses/LICENSE-2.0
L
liuruilong 已提交
8

9 10 11 12 13 14
 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. */

15 16
#pragma once

17 18 19
#import <CoreImage/CoreImage.h>
#import <Foundation/Foundation.h>

L
liuruilong 已提交
20 21
@interface PaddleMobileCPUResult: NSObject

22 23 24
/**
 @b 输出指针
 */
L
liuruilong 已提交
25 26
@property (assign, nonatomic, readonly) float *output;

27 28 29
/**
 @b 输出的 float 数
 * */
L
liuruilong 已提交
30 31
@property (assign, nonatomic, readonly) int outputSize;

32 33 34 35 36
/**
 @b 维度信息, longlongValue
 */
@property (strong, nonatomic, readonly) NSArray <NSNumber *> *dim;

L
liuruilong 已提交
37 38 39 40
-(void)releaseOutput;

@end

L
liuruilong 已提交
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
@interface  PaddleMobileCPUConfig: NSObject

/**
 @b 默认为 1, 多线程时, 建议设置为 2
 */
@property (assign, nonatomic) int threadNum;

/**
 @b 是否开启运行时 infershape
 */
@property  (assign, nonatomic) BOOL loddable;

/**
 @b 是否开启模型 op 融合优化
 */
@property  (assign, nonatomic) BOOL optimize;

58 59 60 61 62
/**
 @b 是否预测时初始化内存,用于处理可变输入
 */
@property  (assign, nonatomic) BOOL loadWhenPredict;

L
liuruilong 已提交
63 64
@end

L
liuruilong 已提交
65
@interface PaddleMobileCPU : NSObject
66

L
liuruilong 已提交
67 68
/**
 @b 创建对象
L
liuruilong 已提交
69

L
liuruilong 已提交
70 71 72 73
 @param config 配置
 @return paddlemobile CPU 对象
 */
- (instancetype)initWithConfig:(PaddleMobileCPUConfig *)config;
L
liuruilong 已提交
74

L
liuruilong 已提交
75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
/**
 @b 加载模型

 @param modelPath 模型路径
 @param weighsPath 权重路径
 @return 是否加载成功
 */
- (BOOL)loadModel:(NSString *)modelPath andWeightsPath:(NSString *)weighsPath;

/**
 @b 加载散开形式的模型, 需传入模型的目录

 @param modelAndWeightPath 模型和权重的路径
 @return 是否加载成功
 */
L
liuruilong 已提交
90 91
- (BOOL)load:(NSString *)modelAndWeightPath;

L
liuruilong 已提交
92 93 94 95 96 97 98 99 100
/**
 @b 从内存中加载模型

 @param modelLen 模型大小(字节数)
 @param modelBuf 模型在内存中的位置
 @param combinedParamsLen 权重大小(字节数)
 @param combinedParamsBuf 权重在内存中的位置
 @return 是否加载成功
 */
L
liuruilong 已提交
101 102 103 104 105
- (BOOL)LoadCombinedMemory:(size_t)modelLen
               andModelBuf:(const uint8_t *)modelBuf
         andModelParamsLen:(size_t)combinedParamsLen
      andCombinedParamsBuf:(const uint8_t *)combinedParamsBuf;

L
liuruilong 已提交
106 107 108 109 110 111 112 113 114
/**
 @b 对图像进行预处理, 需要外部开辟 output 内存, 外部释放 output 内存, 每一个像素经过这样的预处理 (x + means) * scale, 其中 x 为像素值

 @param image 输入的图像
 @param output 预处理后的输出
 @param means 预处理中 means
 @param scale 预处理中的 scale
 @param dim 预处理后的维度
 */
L
liuruilong 已提交
115 116 117 118 119 120
-(void)preprocess:(CGImageRef)image
           output:(float *)output
            means:(NSArray<NSNumber *> *)means
        scale:(float)scale
        dim:(NSArray<NSNumber *> *)dim;

L
liuruilong 已提交
121 122 123 124 125 126 127
/**
 进行预测

 @param input 输入
 @param dim 输入维度
 @return 输出结果
 */
L
liuruilong 已提交
128 129 130
- (PaddleMobileCPUResult *)predictInput:(float *)input
                                    dim:(NSArray<NSNumber *> *)dim;

L
liuruilong 已提交
131 132 133 134 135 136 137 138 139 140 141 142
/**
 @b 进行预测, means 和 scale 为训练模型时的预处理参数, 如训练时没有做这些预处理则直接使用 predict, 每一个像素经过这样的预处理 (x + means) * scale, 其中 x 为像素值

 @param image 输入图像
 @param dim 输入维度
 @param means 预处理中 means
 @param scale 预处理中 scale
 @return 预测结果
 */
- (PaddleMobileCPUResult *)predict:(CGImageRef)image dim:(NSArray<NSNumber *> *)dim means:(NSArray<NSNumber *> *)means scale:(float)scale;

/**
143
 @b 进行预测, 预处理 means 值为 0, scale 值为 1
L
liuruilong 已提交
144 145 146 147 148 149 150

 @param image 输入图像
 @param dim 输入维度
 @return 预测结果
 */
- (PaddleMobileCPUResult *)predict:(CGImageRef)image dim:(NSArray<NSNumber *> *)dim;

151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166

/**
 @b 取出模型描述中 key 为 "fetch" 对应的输出

 @return 预测结果
 */
- (PaddleMobileCPUResult *)fetchOutput;

/**
 @b 当输出为多个时, 可用此函数取出对应的输出

 @param key 模型中输出的key
 @return 预测结果
 */
- (PaddleMobileCPUResult *)fetchOutputWithKey:(NSString *)key;

L
liuruilong 已提交
167 168 169
/**
 @b 清理内存
 */
170 171 172
- (void)clear;

@end