Replies: 1 comment 4 replies
-
Hi @ianmuscat , Also, just for test purposes, you may want ot try one of the several text datasets provided in Ludwig to see if you encoutner issues with those too. https://ludwig-ai.github.io/ludwig-docs/user_guide/datasets/ The Reuters dataset should have a similar structure to yours (name of the columns may be different though). |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi there, I'm super new to ML and Ludwig, so I'm almost certainly missing something. I'm trying to complete an example in the getting started guide, but I'm stuck when it comes to getting predictions to work.
I'm using the
epinions-1.csv
(CSV file with aclass
and atext
column) as suggested in the getting started guide and I'm running Ludwig using the official Docker container. The following is my configuration.First off I start training using the
experiment
command. That seems to work and outputs a model. However when I try to use the followingpredict
command on the same data with theclass
column removed (same CSV, just a single column), I don't get any CSVs with predictions as the docs seem to indicate I should.prediction.shapes.json
contains an empty object and the NPY files also seem empty when loaded withnumpy.load
.Any idea what I'm doing wrong? Thanks! 🙏
Beta Was this translation helpful? Give feedback.
All reactions