niksmer commited on
Commit
7249994
1 Parent(s): 00377ef

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -38,7 +38,7 @@ classifier = pipeline(
38
  task="text-classification",
39
  model="niksmer/RoBERTa-RILE")
40
  # Load text data you want to classify
41
- text = pd.read_csv("text.csv")
42
  # Inference
43
  output = classifier(text)
44
  # Print output
 
38
  task="text-classification",
39
  model="niksmer/RoBERTa-RILE")
40
  # Load text data you want to classify
41
+ text = pd.read_csv("example.csv")["text_you_want_to_classify"].to_list()
42
  # Inference
43
  output = classifier(text)
44
  # Print output