Artificial intelligence Azure机器学习工作室-设计师未经培训就使用DenseNet?

Artificial intelligence Azure机器学习工作室-设计师未经培训就使用DenseNet?,artificial-intelligence,azureml,ml-studio,densenet,Artificial Intelligence,Azureml,Ml Studio,Densenet,实际上,我正在用一个免费帐户在Azure ML Studio上上课。我有一个非常简单的笔记本,我从Keras加载DenseNet并使用它(无需分割和训练)预测一些图像 from keras.preprocessing.image import load_img from keras.preprocessing.image import img_to_array from keras.applications.densenet import DenseNet121 from keras.appli

实际上,我正在用一个免费帐户在Azure ML Studio上上课。我有一个非常简单的笔记本,我从Keras加载DenseNet并使用它(无需分割和训练)预测一些图像

from keras.preprocessing.image import load_img
from keras.preprocessing.image import img_to_array
from keras.applications.densenet import DenseNet121
from keras.applications.densenet import preprocess_input
from keras.applications.densenet import decode_predictions
from imageio import imread
from PIL import Image
import io
import numpy as np

# load the model
model = DenseNet121()

image = load_img("images/image2.jpeg",target_size=(224, 224))

image = img_to_array(image)

image = image.reshape((1, image.shape[0], image.shape[1], image.shape[2]))

image = preprocess_input(image)

# predict the probability across all output classes
yhat = model.predict(image)

# convert the probabilities to class labels
label = decode_predictions(yhat)

# retrieve the most likely result, e.g. highest probability 
label = label[0][0]

# print the classification
print('%s' % (label[1]))
print('%s' % (label[2]*100))
我想知道是否有可能在Azure ML Studio Designer中在ImageNet上加载DenseNet预训练版(低代码),而无需对其进行培训,并且只使用它进行预测,就像我在笔记本中所做的那样