niksmer commited on
Commit
68d7480
1 Parent(s): e12e4f3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -49,7 +49,7 @@ classifier = pipeline(
49
  model="niksmer/PolicyBERTa-7d")
50
 
51
  # Load text data you want to classify
52
- text = pd.read_csv("text.csv")
53
 
54
  # Inference
55
  output = classifier(text)
 
49
  model="niksmer/PolicyBERTa-7d")
50
 
51
  # Load text data you want to classify
52
+ text = pd.read_csv("example.csv")["text_you_want_to_classify"].to_list()
53
 
54
  # Inference
55
  output = classifier(text)