Spaces:
Runtime error
Runtime error
set aggregation_strategy="first"
Browse files- .gitignore +4 -0
- app.py +1 -1
.gitignore
CHANGED
@@ -1 +1,5 @@
|
|
1 |
.ipynb_checkpoints/
|
|
|
|
|
|
|
|
|
|
1 |
.ipynb_checkpoints/
|
2 |
+
metrics.py
|
3 |
+
Untitiled.ipynb
|
4 |
+
find_entities.py
|
5 |
+
data
|
app.py
CHANGED
@@ -12,7 +12,7 @@ import huggingface_hub
|
|
12 |
hf_token= os.environ['HF_TOKEN']
|
13 |
huggingface_hub.login(hf_token)
|
14 |
|
15 |
-
pipe = pipeline("token-classification", model="elshehawy/finer-ord-transformers", aggregation_strategy="
|
16 |
|
17 |
|
18 |
llm_model = 'gpt-3.5-turbo-0125'
|
|
|
12 |
hf_token= os.environ['HF_TOKEN']
|
13 |
huggingface_hub.login(hf_token)
|
14 |
|
15 |
+
pipe = pipeline("token-classification", model="elshehawy/finer-ord-transformers", aggregation_strategy="first")
|
16 |
|
17 |
|
18 |
llm_model = 'gpt-3.5-turbo-0125'
|