andrewzamai commited on
Commit
864cf7c
1 Parent(s): 3ccbd18

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +37 -21
README.md CHANGED
@@ -18,43 +18,57 @@ Instructed on a reduced number of samples, it is designed to tackle never-seen-b
18
  <head>
19
  <title>Instruction Tuning Prompt</title>
20
  <style>
 
 
 
 
 
 
 
 
 
21
  .container {
22
  border: none;
23
  padding: 5px;
24
  width: 300px;
25
- margin: 0 auto;
26
- font-family: Arial, sans-serif;
27
- font-size: 8px;
28
- border-radius: 10px; /* Rounded borders for container */
29
- overflow: hidden; /* Ensure child elements respect container's rounded borders */
 
30
  }
31
- .header, .footer {
32
  background-color: black;
33
  color: white;
34
- padding: 5px;
35
- text-align: center;
36
  font-weight: bold;
37
- font-size: 14px;
38
- border-top-left-radius: 10px; /* Rounded top-left corner */
39
- border-top-right-radius: 10px; /* Rounded top-right corner */
40
- }
41
- .footer {
42
- border-bottom-left-radius: 10px; /* Rounded bottom-left corner */
43
- border-bottom-right-radius: 10px; /* Rounded bottom-right corner */
44
- margin-top: 10px; /* Provide some space between content and footer */
45
  }
46
  .content {
47
- padding: 5px;
48
- }
49
- .definition, .guidelines {
50
- padding: 5px;
51
- border-radius: 10px; /* Rounded borders for definition and guidelines */
52
  }
53
  .definition {
54
  background-color: #ccffcc;
 
 
 
55
  }
56
  .guidelines {
57
  background-color: #ffffcc;
 
 
 
 
 
 
 
 
 
 
 
58
  }
59
  </style>
60
  </head>
@@ -79,11 +93,13 @@ Instructed on a reduced number of samples, it is designed to tackle never-seen-b
79
  <p>Return a JSON list of instances of this Named Entity type. Return an empty list if no instances are present.</p>
80
  <p><b>[/INST]</b></p>
81
  </div>
 
82
  </div>
83
  </body>
84
  </html>
85
 
86
 
 
87
  Currently existing approaches fine-tune on an extensive number of entity classes (around 13K) and assess zero-shot NER capabilities on Out-Of-Distribution input domains.
88
  SLIMER performs comparably to these state-of-the-art models on OOD input domains, while being trained only a reduced number of samples and a set of NE tags that overlap in lesser degree with test sets.
89
 
 
18
  <head>
19
  <title>Instruction Tuning Prompt</title>
20
  <style>
21
+ body {
22
+ font-family: Arial, sans-serif;
23
+ font-size: 14px;
24
+ text-align: center;
25
+ margin: 0; /* Remove default margin */
26
+ min-height: 100vh; /* Ensure full viewport height coverage */
27
+ display: flex;
28
+ flex-direction: column;
29
+ }
30
  .container {
31
  border: none;
32
  padding: 5px;
33
  width: 300px;
34
+ margin: auto;
35
+ border-radius: 10px;
36
+ overflow: hidden;
37
+ flex: 1; /* Take up remaining vertical space */
38
+ display: flex;
39
+ flex-direction: column;
40
  }
41
+ .header {
42
  background-color: black;
43
  color: white;
44
+ padding: 10px;
 
45
  font-weight: bold;
46
+ border-top-left-radius: 10px;
47
+ border-top-right-radius: 10px;
 
 
 
 
 
 
48
  }
49
  .content {
50
+ flex: 1;
51
+ padding: 10px;
 
 
 
52
  }
53
  .definition {
54
  background-color: #ccffcc;
55
+ border-radius: 10px;
56
+ padding: 10px;
57
+ margin-bottom: 10px;
58
  }
59
  .guidelines {
60
  background-color: #ffffcc;
61
+ border-radius: 10px;
62
+ padding: 10px;
63
+ margin-bottom: 10px;
64
+ }
65
+ .footer {
66
+ background-color: black;
67
+ color: white;
68
+ padding: 10px;
69
+ font-weight: bold;
70
+ border-bottom-left-radius: 10px;
71
+ border-bottom-right-radius: 10px;
72
  }
73
  </style>
74
  </head>
 
93
  <p>Return a JSON list of instances of this Named Entity type. Return an empty list if no instances are present.</p>
94
  <p><b>[/INST]</b></p>
95
  </div>
96
+ <div class="footer">Footer content</div>
97
  </div>
98
  </body>
99
  </html>
100
 
101
 
102
+
103
  Currently existing approaches fine-tune on an extensive number of entity classes (around 13K) and assess zero-shot NER capabilities on Out-Of-Distribution input domains.
104
  SLIMER performs comparably to these state-of-the-art models on OOD input domains, while being trained only a reduced number of samples and a set of NE tags that overlap in lesser degree with test sets.
105