Dear All
I’ve already deployed the pmml in MLHub but when its success. There’re no ML Tag for creation in Trendview. Does anyone found same problem?
Solved
ML Hub: Deployed Successful but not shown in ML Tag
Best answer by fvandael
Hi
Could you please run the code snippet bellow in an MLHub Notebook this should list all available PMML models that you have.
This way I can confirm the publishing was correct.
Kind regards,
Frederik
from trendminer.trendminer_client import TrendMinerClient
from trendminer.ml.models import ZementisModels
import os
token = os.environ["KERNEL_USER_TOKEN"]
# Create TrendMiner API object
client = TrendMinerClient(token)
models = ZementisModels(client)
all_models = models.list_models()
print(all_models)
Login to the community
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
