Vinoth24 commited on
Commit
79e77ac
1 Parent(s): cb56fc4

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +31 -0
README.md ADDED
@@ -0,0 +1,31 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Model Card for environmental-claims
2
+ ### Model Description
3
+ The environmental-claims model is fine-tuned using the EnvironmentalClaims dataset on Bert base-uncased model. This model is fine-tuned with the help of Happy Transformers on the Bert base-uncased model. The EnvironmentalClaims dataset is annotated by finance and sustainable finance students and authors of Zurich University. This model is expected to predict whether the input sequence is related to real-time environmental claims or not.
4
+
5
+ # Model Card Meta data
6
+ ---
7
+ Language:
8
+ - English
9
+ thumbnail: "url to a thumbnail used in social sharing"
10
+ tags:
11
+ - https://huggingface.co/bert-base-uncased
12
+ - https://huggingface.co/climatebert/environmental-claims
13
+ datasets:
14
+ - https://huggingface.co/datasets/climatebert/environmental_claims
15
+ ---
16
+
17
+
18
+ # Usage
19
+ loading the model :
20
+ from happytransformer import HappyTextClassification
21
+ happy_class = HappyTextClassification(model_type="BERT", model_name="Vinoth24/environmental_claims")
22
+
23
+ prediction :
24
+ result = happy_class.classify_text('The reduction of carbon emissions is improving for the last 2 years.')
25
+ print(result) -- TextClassificationResult(label='LABEL_1', score=0.9948860359191895)
26
+ print(result.label) -- LABEL_1
27
+ print(result.score) -- 0.994
28
+
29
+ Feel free to train the model more with your custom Environmental claims data. Any queries will be answered. Thank you! :)
30
+
31
+ Created by Kasi Vinoth S from India