lacia commited on
Commit
169e835
·
verified ·
1 Parent(s): c64894c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -3
README.md CHANGED
@@ -147,11 +147,9 @@ Use the code below to get started with the model:
147
  ```python
148
  from transformers import pipeline
149
 
150
- # Загрузка модели с Hugging Face Hub
151
  classifier = pipeline("text-classification", model="LaciaStudio/Luna_v1")
152
 
153
- # Пример использования
154
- text = "Пример текста для классификации"
155
  result = classifier(text)
156
  print(result)
157
  ```
 
147
  ```python
148
  from transformers import pipeline
149
 
 
150
  classifier = pipeline("text-classification", model="LaciaStudio/Luna_v1")
151
 
152
+ text = "text-example"
 
153
  result = classifier(text)
154
  print(result)
155
  ```