-
Notifications
You must be signed in to change notification settings - Fork 718
/
Copy pathOnnxSerializeModel.scala
169 lines (130 loc) · 4.83 KB
/
OnnxSerializeModel.scala
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
/*
* Copyright 2017-2022 John Snow Labs
*
* 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.
*/
package com.johnsnowlabs.ml.onnx
import ai.onnxruntime.OrtSession.SessionOptions
import com.johnsnowlabs.util.FileHelper
import org.apache.commons.io.FileUtils
import org.apache.hadoop.fs.{FileSystem, Path}
import org.apache.spark.sql.SparkSession
import java.io.File
import java.nio.file.{Files, Paths}
import java.util.UUID
trait WriteOnnxModel {
def writeOnnxModels(
path: String,
spark: SparkSession,
onnxWrappersWithNames: Seq[(OnnxWrapper, String)],
suffix: String,
dataFileSuffix: String = "_data"): Unit = {
val uri = new java.net.URI(path.replaceAllLiterally("\\", "/"))
val fs = FileSystem.get(uri, spark.sparkContext.hadoopConfiguration)
// 1. Create tmp folder
val tmpFolder = Files
.createTempDirectory(UUID.randomUUID().toString.takeRight(12) + suffix)
.toAbsolutePath
.toString
onnxWrappersWithNames foreach { case (onnxWrapper, modelName) =>
val onnxFile = Paths.get(tmpFolder, modelName).toString
// 2. Save ONNX state
onnxWrapper.saveToFile(onnxFile)
// 3. Copy to dest folder
fs.copyFromLocalFile(new Path(onnxFile), new Path(path))
// 4. check if there is a onnx_data file
val onnxDataFile = new Path(onnxWrapper.onnxModelPath.get + dataFileSuffix)
if (fs.exists(onnxDataFile)) {
fs.copyFromLocalFile(onnxDataFile, new Path(path))
}
}
// 4. Remove tmp folder
FileUtils.deleteDirectory(new File(tmpFolder))
}
def writeOnnxModel(
path: String,
spark: SparkSession,
onnxWrapper: OnnxWrapper,
suffix: String,
fileName: String): Unit = {
writeOnnxModels(path, spark, Seq((onnxWrapper, fileName)), suffix)
}
}
trait ReadOnnxModel {
val onnxFile: String
def readOnnxModel(
path: String,
spark: SparkSession,
suffix: String,
zipped: Boolean = true,
useBundle: Boolean = false,
sessionOptions: Option[SessionOptions] = None,
dataFileSuffix: String = "_data"): OnnxWrapper = {
val uri = new java.net.URI(path.replaceAllLiterally("\\", "/"))
val fs = FileSystem.get(uri, spark.sparkContext.hadoopConfiguration)
// 1. Create tmp directory
val tmpFolder = Files
.createTempDirectory(UUID.randomUUID().toString.takeRight(12) + suffix)
.toAbsolutePath
.toString
// 2. Copy to local dir
fs.copyToLocalFile(new Path(path, onnxFile), new Path(tmpFolder))
val localPath = new Path(tmpFolder, onnxFile).toString
val fsPath = new Path(path, onnxFile)
// 3. Copy onnx_data file if exists
val onnxDataFile = new Path(fsPath + dataFileSuffix)
if (fs.exists(onnxDataFile)) {
fs.copyToLocalFile(onnxDataFile, new Path(tmpFolder))
}
// 4. Read ONNX state
val onnxWrapper = OnnxWrapper.read(localPath, zipped = zipped, useBundle = useBundle)
// 5. Remove tmp folder
FileHelper.delete(tmpFolder)
onnxWrapper
}
def readOnnxModels(
path: String,
spark: SparkSession,
modelNames: Seq[String],
suffix: String,
zipped: Boolean = true,
useBundle: Boolean = false,
dataFileSuffix: String = "_data"): Map[String, OnnxWrapper] = {
val uri = new java.net.URI(path.replaceAllLiterally("\\", "/"))
val fs = FileSystem.get(uri, spark.sparkContext.hadoopConfiguration)
// 1. Create tmp directory
val tmpFolder = Files
.createTempDirectory(UUID.randomUUID().toString.takeRight(12) + suffix)
.toAbsolutePath
.toString
val wrappers = (modelNames map { modelName: String =>
// 2. Copy to local dir
val localModelFile = modelName
fs.copyToLocalFile(new Path(path, localModelFile), new Path(tmpFolder))
val localPath = new Path(tmpFolder, localModelFile).toString
val fsPath = new Path(path, localModelFile).toString
// 3. Copy onnx_data file if exists
val onnxDataFile = new Path(fsPath + dataFileSuffix)
if (fs.exists(onnxDataFile)) {
fs.copyToLocalFile(onnxDataFile, new Path(tmpFolder))
}
// 4. Read ONNX state
val onnxWrapper =
OnnxWrapper.read(localPath, zipped = zipped, useBundle = useBundle, modelName = modelName)
(modelName, onnxWrapper)
}).toMap
// 4. Remove tmp folder
FileHelper.delete(tmpFolder)
wrappers
}
}