-
Notifications
You must be signed in to change notification settings - Fork 144
/
Copy pathloader.ts
201 lines (179 loc) · 5.99 KB
/
loader.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
/**
* @file Loader,model加载器
*/
import env from './env';
import { Model, ParamObject } from './commons/interface';
import { traverseVars } from './commons/utils';
interface UrlConf {
dir: string;
main: string;
}
interface FetchParams {
type: string;
method?: string;
mode?: string;
}
export default class ModelLoader {
urlConf: UrlConf = {
dir: '',
main: ''
};
separateChunk: boolean = true;
chunkNum: number = 1;
dataType: string = 'binary';
params: FetchParams = {
type: 'fetch'
};
inNode: boolean = false;
isLocalFile: boolean = false;
realFetch: Function = function () {
throw new Error('ERROR: empty fetch funciton');
};
constructor(modelPath: string) {
let modelDir = modelPath;
let filename = 'model.json';
if (modelPath.endsWith('.json')) {
const dirPosIndex = modelPath.lastIndexOf('/') + 1;
modelDir = modelPath.substr(0, dirPosIndex);
filename = modelPath.substr(dirPosIndex);
}
else if (modelPath.charAt(modelPath.length - 1) !== '/') {
modelDir = `${modelPath}/`;
}
this.isLocalFile = modelDir.indexOf('http') !== 0;
this.urlConf = {
dir: this.isLocalFile
? modelDir.charAt(0) === '/'
? `${modelDir}`
: `/${modelDir}`
: modelDir,
main: filename // 主文件
};
this.inNode = env.get('platform') === 'node';
}
async load() {
const modelInfo: Model = await this.fetchModel();
this.separateChunk = !!modelInfo.chunkNum && modelInfo.chunkNum > 0;
this.chunkNum = this.separateChunk ? modelInfo.chunkNum : 0;
if (this.separateChunk) {
if (this.dataType === 'binary') {
await this.fetchChunks().then(allChunksData =>
ModelLoader.allocateParamsVar(modelInfo.vars, allChunksData)
);
}
}
return modelInfo;
}
async fetchOneChunk(path: string) {
if (env.get('fetch')) {
return await env.get('fetch')(path, { type: 'arrayBuffer' });
};
return this.fetch(path).then(request => {
return request.arrayBuffer();
});
}
fetchJson(path: string) {
return this.fetch(path).then(request => {
return request.json();
});
}
getFileName(i: number | string) {
// 获取第i个文件的名称
return `chunk_${i}.dat`;
}
async fetchChunks() {
const counts = this.chunkNum;
const chunkArray: any[] = [];
for (let i = 1; i <= counts; i++) {
chunkArray.push(
this.fetchOneChunk(this.urlConf.dir + this.getFileName(i))
);
}
return Promise.all(chunkArray).then(chunks => {
let chunksLength = 0;
const f32Array: any[] = [];
let float32Chunk;
chunks.forEach(i => {
float32Chunk = new Float32Array(i);
f32Array.push(float32Chunk);
chunksLength += float32Chunk.length;
});
const allChunksData = new Float32Array(chunksLength);
let offset = 0;
f32Array.forEach(i => {
i.forEach((num: any) => {
allChunksData[offset] = num;
offset += 1;
});
});
return allChunksData;
});
}
static allocateParamsVar(vars, allChunksData: Float32Array | ParamObject) {
let marker = 0; // 读到哪个位置了
let len; // 当前op长度
const chunkData: number[] = Array.isArray(allChunksData) ? allChunksData : Object.values(allChunksData);
traverseVars(vars, item => {
len = item.shape.reduce((a, b) => a * b); // 长度为shape的乘积
// 为了减少模型体积,模型转换工具不会导出非persistable的数据,这里只需要读取persistable的数据
if (item.persistable) {
item.data = chunkData.slice(marker, marker + len);
marker += len;
}
});
}
fetch(path: string, params?: FetchParams) {
if (env.get('fetch')) {
return env.get('fetch')(path, params || {});
}
const fetchParams = params || this.params;
const method = fetchParams.method || 'get';
const HeadersClass = this.inNode
? require('node-fetch').Headers
: Headers;
const myHeaders = new HeadersClass();
this.realFetch = this.inNode
? this.isLocalFile
? this.fetchLocalFile
: require('node-fetch')
: fetch;
return this.realFetch(path, {
method: method,
headers: myHeaders
});
}
fetchLocalFile(localPath) {
const fs = require('fs');
return new Promise((resolve, reject) => {
try {
const content = fs.readFileSync(localPath, 'utf8');
resolve(content);
}
catch (e) {
reject(e);
}
});
}
fetchModel() {
const params = this.params;
const path = this.urlConf.dir + this.urlConf.main;
let load: any = null;
// 原生fetch
if (params.type === 'fetch') {
load = new Promise((resolve, reject) => {
this.fetch(path, params)
.then(response => {
if (env.get('fetch')) {
return response;
}
return this.isLocalFile && this.inNode
? JSON.parse(response)
: response.json();
})
.then(responseData => resolve(responseData))
.then(err => reject(err));
});
}
return load;
}
}