iOS#
Deploy to Xcode#
We Provide ZETIC.MLange iOS Package via Swift Package Manager. you can easily add ZeticMLange
to your project!
There are only two steps are needed.
Add
ZeticMLange
Package in project.Select target to add
ZeticMLange
Package.Initialize
ZeticMLangeModel
with your Model Key / Personal Key and run
Prerequisite#
Step-by-step Guideline#
1. Add ZeticMLange
Package in project.#
Click File -> Add Package Dependencies in XCode.
Search for
https://github.com/zetic-ai/ZeticMLangeiOS.git
.Click Add Package.
2. Select target to add ZeticMLange
Package.#
Select target in
Add to Target
column.Click Add Package.
3. Initialize and run ZeticMLangeModel
model with Model Key#
Zetic MLange model running (Swift)
// 1. Zetic MLange model running // (1) Load Zetic MLange model let model = try ZeticMLangeModel("MLANGE_PERSONAL_KEY", "MLANGE_MODEL_KEY") // (2) Run model after preparing model inputs let inputs: [Data] = [] // Prepare your inputs try model.run(inputs) // (3) Get output data array let outputs = model.getOutputDataArray()
MLange iOS Sample App#
Please refer MLange iOS sample app for more details