Text Classification
Transformers
PyTorch
TensorFlow
bert
generated_from_keras_callback
text-embeddings-inference
Instructions to use z-dickson/CAP_coded_UK_statutory_instruments with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use z-dickson/CAP_coded_UK_statutory_instruments with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="z-dickson/CAP_coded_UK_statutory_instruments")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("z-dickson/CAP_coded_UK_statutory_instruments") model = AutoModelForSequenceClassification.from_pretrained("z-dickson/CAP_coded_UK_statutory_instruments") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -22,7 +22,7 @@ This model predicts the CAP code of parliamentary bills/instruments (https://www
|
|
| 22 |
The model is trained on ~40k UK Parliamentary Statutory Instruments from the UK House of Commons and the Scottish Parliament.
|
| 23 |
The model is cased (case sensitive)
|
| 24 |
|
| 25 |
-
|
| 26 |
|
| 27 |
|
| 28 |
- Train Loss: 0.1188
|
|
|
|
| 22 |
The model is trained on ~40k UK Parliamentary Statutory Instruments from the UK House of Commons and the Scottish Parliament.
|
| 23 |
The model is cased (case sensitive)
|
| 24 |
|
| 25 |
+
Any questions on the model and training data feel free to message me on twitter - @sachary_
|
| 26 |
|
| 27 |
|
| 28 |
- Train Loss: 0.1188
|