Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 817 Bytes

TopicModel.md

File metadata and controls

29 lines (20 loc) · 817 Bytes

TopicModel

Properties

Name Type Description Notes
name str

Example

from iblai.models.topic_model import TopicModel

# TODO update the JSON string below
json = "{}"
# create an instance of TopicModel from a JSON string
topic_model_instance = TopicModel.from_json(json)
# print the JSON string representation of the object
print(TopicModel.to_json())

# convert the object into a dict
topic_model_dict = topic_model_instance.to_dict()
# create an instance of TopicModel from a dict
topic_model_from_dict = TopicModel.from_dict(topic_model_dict)

[Back to Model list] [Back to API list] [Back to README]