Update README.md
Browse files
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("
|
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)
|