system HF staff commited on
Commit
fe41e2d
1 Parent(s): 8436725

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +6 -7
README.md CHANGED
@@ -1,22 +1,20 @@
1
  ---
2
  language: "en"
3
  thumbnail: "https://huggingface.co/sampathkethineedi"
4
- widget:
5
- - text: "3rd Rock Multimedia Limited is an India-based event management company. The Company conducts film promotions, international events, corporate events and cultural events. The Company's entertainment properties include 3rd Rock Fashion Fiesta and 3rd Rock Calendar. The Company's association with various events in Mumbai includes Bryan Adam's Live in Concert, Michael Learns to Rock (MLTR) Eternity Concert, 3rd Rock's Calendar Launch 2011-2012, Airtel I Phone 4 Launch and ISPL Cricket Tournament 2012."
6
- - text: "Stellar Capital Services Limited is an India-based non-banking financial company. The Company is mainly engaged in the business of providing loans and advances and investing in shares, both quoted and unquoted. The Company's segments are trading in share and securities, and advancing of loans. The trading in share and securities segment includes trading in quoted equity shares, mutual funds, bonds, futures and options, and currency. The Company's financial services include inter corporate deposits, financial consultancy, retail initial public offering (IPO) funding, loan against property, management consultancy, personal loans and unsecured loans."
7
- - text: "Chemcrux Enterprises Ltd is a manufacturer of intermediates for bulk drugs, and dyes and pigments. The Company's products include 2 Chloro Benzoic Acid; 3 Chloro Benzoic Acid; 4 Chloro Benzoic Acid; 4 Nitro Benzoic Acid; 2,4 Dichloro Benzoic Acid; 4 Chloro 3 Nitro Benzoic Acid; 2 Chloro 5 Nitro Benzoic Acid; Meta Nitro Benzoic Acid; Lassamide, and Meta Chloro Per Benzoic Acid. The Company also offers various products on custom requirements, including Aceturic Acid; Meta Chloro Benzoyl Chloride; 3-Nitro-4-Methoxy Benzoic Acid; 2 Amino 5 Sulfonamide Benzoic Acid; 3,4 Dichloro Benzoic Acid; 5-Nitro Salycylic Acid, and 4-Chloro Benzoic Acid -3-Sulfonamide. The Company's plant has a capacity of 120 metric tons per month. The Company exports to Europe, Japan, the Middle East and East Africa. It is engaged in development and execution of various processes, such as High Pressure Oxidation, Nitration and Chloro Sulfonation."
8
  tags:
9
  - distilbert
10
  - pytorch
 
11
  - text-classification
12
  - industry tags
13
  - buisiness description
14
- - multi label classification
 
15
  liscence: "mit"
16
  inference: false
17
  ---
18
 
19
- # distilbert-business-domain-classification
20
 
21
  ## Model description
22
 
@@ -25,6 +23,8 @@ Trained on 7000 samples of Business Descriptions and associated labels of compan
25
 
26
  ## How to use
27
 
 
 
28
  ```python
29
  from transformers import AutoTokenizer, AutoModelForSequenceClassification, pipeline
30
 
@@ -32,7 +32,6 @@ tokenizer = AutoTokenizer.from_pretrained("sampathkethineedi/industry-classifica
32
  model = AutoModelForSequenceClassification.from_pretrained("industry-classification")
33
 
34
  industry_tags = pipeline('sentiment-analysis', model=model, tokenizer=tokenizer)
35
-
36
  industry_tags("Stellar Capital Services Limited is an India-based non-banking financial company ... loan against property, management consultancy, personal loans and unsecured loans.")
37
 
38
  '''Ouput'''
1
  ---
2
  language: "en"
3
  thumbnail: "https://huggingface.co/sampathkethineedi"
 
 
 
 
4
  tags:
5
  - distilbert
6
  - pytorch
7
+ - tensorflow
8
  - text-classification
9
  - industry tags
10
  - buisiness description
11
+ - multi-label
12
+ - classification
13
  liscence: "mit"
14
  inference: false
15
  ---
16
 
17
+ # industry-classification
18
 
19
  ## Model description
20
 
23
 
24
  ## How to use
25
 
26
+ PyTorch and TF models available
27
+
28
  ```python
29
  from transformers import AutoTokenizer, AutoModelForSequenceClassification, pipeline
30
 
32
  model = AutoModelForSequenceClassification.from_pretrained("industry-classification")
33
 
34
  industry_tags = pipeline('sentiment-analysis', model=model, tokenizer=tokenizer)
 
35
  industry_tags("Stellar Capital Services Limited is an India-based non-banking financial company ... loan against property, management consultancy, personal loans and unsecured loans.")
36
 
37
  '''Ouput'''