Created
October 28, 2023 16:15
-
-
Save fsndzomga/8e88a50bb84bb7073da9797ff8a69e8d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from ludwig.api import LudwigModel | |
import pandas | |
df = pandas.read_csv('rotten_tomatoes.csv') | |
model = LudwigModel(config='rotten_tomatoes.yaml') | |
results = model.train(dataset=df) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment