File size: 815 Bytes
0e2e537
 
 
 
 
c9e1b85
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
language:
  - en
license: apache-2.0
---
# Classify text by UNSPSC family

Forked from https://huggingface.co/govspend/unspsc_family_5examples_test2

See https://en.wikipedia.org/wiki/UNSPSC

## Usage
There was no documentation on the original model, and demo isn't working, but this works with simple pipeline:

```python
pipe = pipeline("text-classification", model="andruhon/unspsc_family_5examples_test2", tokenizer="bert-base-uncased")
pipe("7oz hammer");
# Would return something like {'label': 'LABEL_105', 'score': 0.339}
# In this case LABEL_105 clearly goes into 27110000 Handtools 
```

## License
The original model didn't have license file. 
Considering that it's BERT it should have the same license, which I think is Apache 2.0.
Use on your own risk. I'll update this file once I have more info.