procesaur commited on
Commit
e4ed60a
·
verified ·
1 Parent(s): 142a322

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +160 -3
README.md CHANGED
@@ -1,3 +1,160 @@
1
- ---
2
- license: cc-by-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - sr
4
+ pretty_name: SMEĆE
5
+ size_categories:
6
+ - 1B<n<10B
7
+ configs:
8
+ - config_name: default
9
+ data_files:
10
+ - split: train
11
+ path: '*.boiler'
12
+ task_categories:
13
+ - text-generation
14
+ - text-classification
15
+ ---
16
+
17
+ <img src="cover.png" class="cover">
18
+
19
+
20
+ <table style="width:100%;height:100%">
21
+ <!--tr style="width:100%;height:30px">
22
+
23
+ <td colspan=2 align=center>
24
+ <h1>SMEĆE</h1>
25
+ </td>
26
+ <tr-->
27
+ <tr style="width:100%;height:100%">
28
+ <td width=50%>
29
+ <h2>Skup teksta koji je obeležen kao smeće prilikom pripremanja drugih korpusa</h2>
30
+ <p>preko 556 miliona reči</p>
31
+ <p>Može se koristiti za obučavanje modela za klasifikaciju smeća :)</p>
32
+ <h4>Za korpuse pravog teksta za srpski jezik pogledajte <a href="https://huggingface.co/datasets/procesaur/STARS" class="highlight-container">
33
+ <b class="highlight">S.T.A.R.S</b></a> (13,289 disertacija sa <a href="https://nardus.mpn.gov.rs/">NARDUS-a</a>) ili
34
+ <a href="https://huggingface.co/datasets/procesaur/kisobran" class="highlight-container">
35
+ <b class="highlight">Kišobran veb korpus</b></a> (najveći korpus za srpski jezik).</h4>
36
+ </td>
37
+ <td>
38
+ <h2>A set of text marked as garbage/boilerplate when preparing other corpora</h2>
39
+ <p>over 556 million words</p>
40
+ <p>Can be used to train boilerplate classification models :)</p>
41
+ <h4>For real text corpora for Serbian see <a href="https://huggingface.co/datasets/procesaur/STARS" class="highlight-container">
42
+ <b class="highlight">S.T.A.R.S</b></a> (13,289 dissertations from <a href="https://nardus.mpn.gov.rs/">NARDUS</a>) or
43
+ <a href="https://huggingface.co/datasets/procesaur/kisobran" class="highlight-container">
44
+ <b class="highlight">Umbrella web corp.</b></a> (largest corpus for the Serbian language).</h4>
45
+ </td>
46
+ </tr>
47
+ </table>
48
+
49
+
50
+
51
+ ```python
52
+ from datasets import load_dataset
53
+ dataset = load_dataset("procesaur/SMECE")
54
+ ```
55
+
56
+
57
+
58
+ <div class="inline-flex flex-col" style="line-height: 1.5;padding-right:50px">
59
+ <div style="text-align: center; margin-top: 3px; font-size: 16px; font-weight: 800">Editor</div>
60
+ <a href="https://huggingface.co/procesaur">
61
+ <div class="flex">
62
+ <div
63
+ style="display:DISPLAY_1; margin-left: auto; margin-right: auto; width: 92px; height:92px; border-radius: 50%;
64
+ background-size: cover; background-image: url(&#39;https://cdn-uploads.huggingface.co/production/uploads/1673534533167-63bc254fb8c61b8aa496a39b.jpeg?w=200&h=200&f=face&#39;)">
65
+ </div>
66
+ </div>
67
+ </a>
68
+ <div style="text-align: center; font-size: 16px; font-weight: 800">Mihailo Škorić</div>
69
+ <div>
70
+ <a href="https://huggingface.co/procesaur">
71
+ <div style="text-align: center; font-size: 14
72
+ px;">@procesaur</div>
73
+ </a>
74
+ </div>
75
+ </div>
76
+ </div>
77
+
78
+
79
+ Citation:
80
+
81
+ ```bibtex
82
+ @article{skoric24korpusi,
83
+ author = {\vSkori\'c, Mihailo and Jankovi\'c, Nikola},
84
+ title = {New Textual Corpora for Serbian Language Modeling},
85
+ journal = {Infotheca},
86
+ volume = {24},
87
+ issue = {1},
88
+ year = {2024},
89
+ publisher = {Zajednica biblioteka univerziteta u Srbiji, Beograd},
90
+ url = {https://arxiv.org/abs/2405.09250}
91
+ }
92
+ ```
93
+
94
+
95
+ <style>
96
+ .ffeat: {
97
+ color:red
98
+ }
99
+
100
+ .cover {
101
+ width: 100%;
102
+ margin-bottom: 5pt
103
+ }
104
+
105
+ .highlight-container, .highlight {
106
+ position: relative;
107
+ text-decoration:none
108
+ }
109
+
110
+ .highlight-container {
111
+ display: inline-block;
112
+
113
+ }
114
+
115
+ .highlight{
116
+ color:white;
117
+ text-transform:uppercase;
118
+ font-size: 16pt;
119
+ }
120
+
121
+ .highlight-container{
122
+ padding:5px 10px
123
+ }
124
+
125
+ .highlight-container:before {
126
+ content: " ";
127
+ display: block;
128
+ height: 100%;
129
+ width: 100%;
130
+ margin-left: 0px;
131
+ margin-right: 0px;
132
+ position: absolute;
133
+ background: #e80909;
134
+ transform: rotate(2deg);
135
+ top: -1px;
136
+ left: -1px;
137
+ border-radius: 20% 25% 20% 24%;
138
+ padding: 10px 18px 18px 10px;
139
+ }
140
+
141
+ div.grb, #zastava>table {
142
+ position:absolute;
143
+ top:0px;
144
+ left: 0px;
145
+ margin:0px
146
+ }
147
+
148
+ div.grb>img, #zastava>table{
149
+ margin:0px
150
+ }
151
+
152
+ #zastava {
153
+ position: relative;
154
+ margin-bottom:120px
155
+ }
156
+
157
+ p {
158
+ font-size:14pt
159
+ }
160
+ </style>