0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

TensorFlow1のモデルをCore MLに変換する

Last updated at Posted at 2020-09-29

#グラフからの変換

TensorFlow1からの変換は、
1、凍結グラフからの変換
2、グラフからの直接変換
があります。
1、の凍結グラフの作成方法については「AnimeGANv2をCore MLに変換してiOSでつかう」とおなじです。

#TensorFlow1の変換

###1、凍結グラフからの変換


mlmodel = ct.convert('inferrence.pb')

###2、グラフからの直接変換


mlmodel = ct.convert(self.sess.graph)

グラフからの直接変換は、sess.runしているスクリプトの下に書き込んでしまうのがおすすめです。


お仕事のご相談こちらまで
rockyshikoku@gmail.com

Core MLを使ったアプリを作っています。
機械学習関連の情報を発信しています。

Twitter
[MLBoysチャンネル]
(https://www.youtube.com/channel/UCbHff-wfjTnB3rtXIP6y0xg)
Medium

相棒
note

0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?