Text Classification
Transformers
Safetensors
English
bert
creative writing
original ip
text-embeddings-inference
Instructions to use niltheory/ExistenceTypesAnalysis with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use niltheory/ExistenceTypesAnalysis with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="niltheory/ExistenceTypesAnalysis")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("niltheory/ExistenceTypesAnalysis") model = AutoModelForSequenceClassification.from_pretrained("niltheory/ExistenceTypesAnalysis") - Notebooks
- Google Colab
- Kaggle
Create LICENSE
Browse files
LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
You are free to:
|
| 2 |
+
Share — copy and redistribute the material in any medium or format
|
| 3 |
+
Adapt — remix, transform, and build upon the material
|
| 4 |
+
The licensor cannot revoke these freedoms as long as you follow the license terms.
|
| 5 |
+
Under the following terms:
|
| 6 |
+
Attribution — You must give appropriate credit , provide a link to the license, and indicate if changes were made . You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
|
| 7 |
+
NonCommercial — You may not use the material for commercial purposes .
|
| 8 |
+
ShareAlike — If you remix, transform, or build upon the material, you must distribute your contributions under the same license as the original.
|
| 9 |
+
No additional restrictions — You may not apply legal terms or technological measures that legally restrict others from doing anything the license permits.
|
| 10 |
+
Notices:
|
| 11 |
+
You do not have to comply with the license for elements of the material in the public domain or where your use is permitted by an applicable exception or limitation .
|
| 12 |
+
|
| 13 |
+
No warranties are given. The license may not give you all of the permissions necessary for your intended use. For example, other rights such as publicity, privacy, or moral rights may limit how you use the material.
|