manzarimalik commited on
Commit
2da3e45
·
verified ·
1 Parent(s): 6a9069e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +12 -1
README.md CHANGED
@@ -13,7 +13,6 @@ language:
13
 
14
  This is a text-classification model to classify text on Bloom's Taxonomy Levels.
15
 
16
- ---
17
 
18
  The Blooms Taxonomy Dataset is a structured collection of educational materials categorized according to Bloom's Taxonomy, a hierarchical model that classifies cognitive skills into six levels: Remembering, Understanding, Applying, Analyzing, Evaluating, and Creating.
19
  Key Levels:
@@ -30,6 +29,18 @@ This dataset is designed to support research and development in educational tool
30
 
31
  Fine tuned on Bloom's Taxonomy [Dataset from Kaggle](https://www.kaggle.com/datasets/vijaydevane/blooms-taxonomy-dataset)
32
 
 
 
 
 
 
 
 
 
 
 
 
 
33
  # Uploaded model
34
 
35
  - **Developed by:** manzarimalik
 
13
 
14
  This is a text-classification model to classify text on Bloom's Taxonomy Levels.
15
 
 
16
 
17
  The Blooms Taxonomy Dataset is a structured collection of educational materials categorized according to Bloom's Taxonomy, a hierarchical model that classifies cognitive skills into six levels: Remembering, Understanding, Applying, Analyzing, Evaluating, and Creating.
18
  Key Levels:
 
29
 
30
  Fine tuned on Bloom's Taxonomy [Dataset from Kaggle](https://www.kaggle.com/datasets/vijaydevane/blooms-taxonomy-dataset)
31
 
32
+ # Usage
33
+
34
+ ```
35
+ from transformers import pipeline
36
+
37
+ sentence1 = "List three predominant economic systems that exist!"
38
+
39
+ classifier = pipeline("sentiment-analysis", model=model,tokenizer=tokenizer)
40
+
41
+ classifier(sentence1)
42
+ ```
43
+
44
  # Uploaded model
45
 
46
  - **Developed by:** manzarimalik