2019 年 12 月 19 日 — 作者:Jordan Grimstad
自从我们 推出 TensorFlow Hub 以来,已经过去了一年半。TensorFlow Hub 是一个开源存储库,其中包含 Google 和 DeepMind 发布的随时可用的预训练模型。从那时起,我们发布了数百个模型——有些是通用的,可以微调到特定任务,而另一些则更专门化——以帮助您获得更快、更智能的 ML 应用程序,即使数据很少…
model = tf.keras.Sequential()
model.add(hub.KerasLayer(
"https://tfhub.dev/google/tf2-preview/gnews-swivel-20dim/1",
input_shape=[], dtype=tf.string, trainable=True))
model.add(tf.keras.layers.Dense(16, activation='relu'))
model.add(tf.keras.layers.Dense(1, activation='sigmoid'))
model.summary()
另一个最近发布的演示 任意样式的快速风格迁移,展示了如何使用来自 Magenta 的不同 预训练模型,仅用几行代码即可实现快速的艺术风格迁移。model = hub.load(
"https://tfhub.dev/google/magenta/arbitrary-image-stylization-v1-256/2")
stylized_image = model(tf.constant(content_image), tf.constant(style_image))[0]
如何了解更多
2019 年 12 月 19 日 — 作者:Jordan Grimstad
自从我们 推出 TensorFlow Hub 以来,已经过去了一年半。TensorFlow Hub 是一个开源存储库,其中包含 Google 和 DeepMind 发布的随时可用的预训练模型。从那时起,我们发布了数百个模型——有些是通用的,可以微调到特定任务,而另一些则更专门化——以帮助您获得更快、更智能的 ML 应用程序,即使数据很少…