--- tags: - autotrain - text-classification language: - en widget: - text: Neither this act nor any other act relating to said Cherokee Indians of Robeson County shall be construed so as to impose on said Indians any powers, privileges, rights or immunities, or #NAME? limitations on their power to contract, heretofore enacted with reference to the eastern band of Cherokee Indians residing in Cherokee, Graham, Swain, Jackson and other adjoining counties in North Carolina, or any other band or tribe of Cherokee Indians other than those now residing, or who have, since the Revolutionary War, resided in Robeson County, nor shall said Cherokee Indians of Robeson County, as herein designated, be subject to the limitations provided in sections nine hundred and seventy-five and nine hundred and seventy-six of The Revisal of one thousand nine hundred and five of North Carolina. ; - text: That Section one hundred and twenty-two eightythree of the General Statutes of North Carolina is hereby amended by striking out the word insane in the catch line and in lines two, four, nine and fifteen and inserting in lieu thereof the words mentally disordered. datasets: - biglam/on_the_books co2_eq_emissions: emissions: 0.2641096478393395 license: mit library_name: transformers --- # Model Trained Using AutoTrain - Problem type: Binary Classification - Model ID: 64771135885 - CO2 Emissions (in grams): 0.2641 ## Validation Metrics - Loss: 0.057 - Accuracy: 0.986 - Precision: 0.988 - Recall: 0.992 - AUC: 0.998 - F1: 0.990 ## Usage The easiest way to use this model locally is via the [Transformers](https://huggingface.co/docs/transformers/index) library [pipelines for inference](https://huggingface.co/docs/transformers/pipeline_tutorial). Once you have [installed transformers](https://huggingface.co/docs/transformers/installation) you can run the following code. This will download and cache the model locally and allow you to make predictions on text input. ``` from transformers import pipeline classifier = pipeline('text-classification', "davanstrien/autotrain-beyond-the-books") classifier(text) ``` This will return predictions in the following format ``` [{'label': 'no_jim_crow', 'score': 0.9718555212020874}] ```