-
Notifications
You must be signed in to change notification settings - Fork 1
/
UPF-MetadataRecords.ttl
10576 lines (9802 loc) · 758 KB
/
UPF-MetadataRecords.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# baseURI: file:/C:/Metashare/Metashare/UPF-MetadataRecords.ttl
# imports: file:/C:/Documents%20and%20Settings/U39306/TBCFreeWorkspace/Metashare/browser.ttl
# imports: http://lodserver.iula.upf.edu/Metashare/ontology/
@prefix bibo: <http://purl.org/ontology/bibo/#> .
@prefix bio: <http://lodserver.iula.upf.edu/Metashare/services/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix dcr: <http://www.isocat.org/ns/dcr.rdf#> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix languagecode: <http://www.fao.org/aims/aos/languagecode.owl#> .
@prefix ms: <http://lodserver.iula.upf.edu/Metashare/ontology/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix sp: <http://spinrdf.org/sp#> .
@prefix spin: <http://spinrdf.org/spin#> .
@prefix swrc: <http://swrc.ontoware.org/ontology#> .
@prefix test: <http://lodserver.iula.upf.edu/Metashare/resource/> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<file:/C:/Metashare/Metashare/UPF-MetadataRecords.ttl>
rdf:type owl:Ontology ;
owl:imports ms: , <file:/C:/Documents%20and%20Settings/U39306/TBCFreeWorkspace/Metashare/browser.ttl> .
<http://lodserver.iula.upf.edu/Metashare/resource/101>
rdf:type owl:NamedIndividual , bio:Service ;
rdfs:label "FreeLing Tokenizer Web Service v.2.1"@en ;
ms:documentation test:doc_9 , test:doc_34 ;
ms:fundingProject test:project_PANACEA ;
ms:languageCode languagecode:eng , languagecode:glg , languagecode:cat , languagecode:spa , languagecode:por , languagecode:ita , languagecode:ast ;
ms:languageName "Asturian" , "Italian" , "Portuguese" , "English" , "Galician" , "Catalan" , "Spanish" ;
ms:resourceName "FreeLing Tokenizer Web Service v.2.1"^^xsd:string ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#tokenization.freeling_tokenizer_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/tokenization.freeling_tokenizer" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/238_ES_input.txt"^^xsd:string , "http://iula02v.upf.edu/corpus_data/WS_inouput/238_EN_input.txt"^^xsd:string ;
bio:laterVersion <http://lodserver.iula.upf.edu/Metashare/resource/238> ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/238_ES_output.txt"^^xsd:string , "http://iula02v.upf.edu/corpus_data/WS_inouput/238_EN_output.txt"^^xsd:string ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:Tokenization , bio:CorpusProcessing ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/tokenization.freeling_tokenizer?wsdl" ;
dc:description "This WS deploys a FreeLing-based text tokenizer. The WS splits a file in plain text format and UTF-8 encoded into units (tokens). The languages supported are Catalan, English, Galician, Italian, Portuguese, Russian, Spanish, Welsh, and Asturian. WARNING: This WS has a new version."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/105>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "FreeLing Dependency parser Web Service v.2.1"@en ;
ms:documentation test:doc_9 , test:doc_34 ;
ms:fundingProject test:project_PANACEA ;
ms:languageCode languagecode:ast , languagecode:eng , languagecode:spa , languagecode:cat , languagecode:glg ;
ms:languageName "Catalan" , "English" , "Galician" , "Spanish" , "Asturian" ;
ms:resourceName "FreeLing Dependency parser Web Service v.2.1"^^xsd:string ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#syntactic_tagging.freeling_dependency_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/syntactic_tagging.freeling_dependency" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/240_EN_input.txt"^^xsd:string , "http://iula02v.upf.edu/corpus_data/WS_inouput/240_ES_input.txt"^^xsd:string ;
bio:laterVersion <http://lodserver.iula.upf.edu/Metashare/resource/240> ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/240_ES_output.txt"^^xsd:string , "http://iula02v.upf.edu/corpus_data/WS_inouput/240_EN_output.txt"^^xsd:string ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:SyntacticTagging , bio:DependencyParsing ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/syntactic_tagging.freeling_dependency?wsdl" ;
dc:description "Freeling-based dependency parser. The languages supported are English, Catalan, Spanish, Asturian and Galician. WARNING: This WS has a new version."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/106>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "FreeLing Chunker parser Web Service v.2.1"@en ;
ms:documentation test:doc_9 , test:doc_34 ;
ms:fundingProject test:project_PANACEA ;
ms:languageCode languagecode:ast , languagecode:eng , languagecode:glg , languagecode:cat , languagecode:spa ;
ms:languageName "Catalan" , "Spanish" , "Asturian" , "English" , "Galician" ;
ms:resourceName "FreeLing Chunker parser Web Service v.2.1"^^xsd:string ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#syntactic_tagging.freeling_parsed_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/syntactic_tagging.freeling_parsed" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/241_ES_input.txt"^^xsd:string , "http://iula02v.upf.edu/corpus_data/WS_inouput/241_EN_input.txt"^^xsd:string ;
bio:laterVersion <http://lodserver.iula.upf.edu/Metashare/resource/241> ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/241_EN_output.txt"^^xsd:string , "http://iula02v.upf.edu/corpus_data/WS_inouput/241_ES_output.txt"^^xsd:string ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:SyntacticTagging , bio:Chunking-Segmentation ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/syntactic_tagging.freeling_parsed?wsdl" ;
dc:description "Freeling-based chunker parser. The languages supported are English, Catalan, Spanish, Asturian and Galician. WARNING: This WS has a new version."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/107>
rdf:type owl:NamedIndividual , bio:Service ;
rdfs:label "P clue/ lexical class calculator Web Service"@en ;
ms:fundingProject test:project_PANACEA ;
ms:resourceName "P clue/ lexical class calculator Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#statistics_analysis.calcular_p_cue_class_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/statistics_analysis.calcular_p_cue_class" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:StatisticsAnalysis ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/statistics_analysis.calcular_p_cue_class?wsdl" ;
dc:description "This WS calculates the probability of seeing a linguistic cue given a lexical class (P(cue|class) value). This probability is computed given the occurrences of cues in a corpus (codified in the signatures file) and the information of belonging or not belonging of these words to different classes (codified in indicators file). The probability is computed for each studied cue in the signatures file and for each class in the indicators file."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/108>
rdf:type owl:NamedIndividual , bio:Service ;
rdfs:label "Ted Pedersen's Ngram Statistics Package"@en ;
ms:documentation test:doc_46 , test:doc_71 , test:doc_43 ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:resourceName "Ted Pedersen's Ngram Statistics Package" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#statistics_analysis.ngrams_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/statistics_analysis.ngrams" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/108_EN_input.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/108_ES_input.txt"^^xsd:string ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/108_EN_output.txt"^^xsd:string , "http://iula02v.upf.edu/corpus_data/WS_inouput/108_ES_output.txt"^^xsd:string ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:StatisticsAnalysis ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/statistics_analysis.ngrams?wsdl" ;
dc:description "Ted Pedersen's Ngram Statistics Package (used to identify word Ngrams that appear in large corpora using standard tests of association such as Fisher's exact test, the log likelihood ratio, Pearson's chi-squared test, the Dice Coefficient, etc.)."@en ;
dc:subject <http://dbpedia.org/resource/N-gram> ;
dcterms:isReferencedBy
test:doc_71 , test:doc_63 , test:doc_70 , test:doc_62 .
<http://lodserver.iula.upf.edu/Metashare/resource/109>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "TF-IDF calculator Web Service"@en ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:resourceName "TF-IDF calculator Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#statistics_analysis.tfidf_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/statistics_analysis.tfidf" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/109_EN_input.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/109_ES_input.txt" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/109_ES_ouput.htm" , "http://iula02v.upf.edu/corpus_data/WS_inouput/109_EN_ouput.htm"^^xsd:string ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:StatisticsAnalysis ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/statistics_analysis.tfidf?wsdl" ;
dc:description "This WS calculates the Term Frequency (TF) and the Inverse Document Frequency (IDF) of a word in a given corpus. The two values, labeled TF-IDF, are a statistical measure used to evaluate how important a word is to a document in a collection or corpus."@en ;
dc:subject <http://dbpedia.org/resource/Tf-idf> .
<http://lodserver.iula.upf.edu/Metashare/resource/110>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "Vocabulary analyzer Web Service"@en ;
ms:documentation test:doc_60 ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:resourceName "Vocabulary analyzer Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#statistics_analysis.vocabulary_analysis_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/statistics_analysis.vocabulary_analysis" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/110_EN_input.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/110_ES_input.txt" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/110_EN_output_fig2.png" , "http://iula02v.upf.edu/corpus_data/WS_inouput/110_ES_output_fig1.png" , "http://iula02v.upf.edu/corpus_data/WS_inouput/110_ES_output.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/110_EN_output_fig1.png" , "http://iula02v.upf.edu/corpus_data/WS_inouput/110_ES_output_fig2.png" , "http://iula02v.upf.edu/corpus_data/WS_inouput/110_EN_output.txt" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:StatisticsAnalysis ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/statistics_analysis.vocabulary_analysis?wsdl" ;
dc:description "This WS calculates different lexicometric measures and displays them graphically (tokens, types, hapaxes and type/token ratio). The input is a plain text corpus with one token per line. Language independent WS."@en ;
dcterms:isReferencedBy
test:doc_68 , test:doc_66 , test:doc_60 .
<http://lodserver.iula.upf.edu/Metashare/resource/112>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "MS Word to text converter Web Service"@en ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:resourceName "MS Word to text converter Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#format_conversion.catdoc_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.catdoc" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/112_ES_input.doc" , "http://iula02v.upf.edu/corpus_data/WS_inouput/112_EN_input.doc" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/112_EN_output.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/112_ES_output.txt" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:FormatConversion ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.catdoc?wsdl" ;
dc:description "A WS to convert MS Word documents to plain text format. Language independent WS."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/113>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "HTML to text converter Web Service"@en ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:resourceName "HTML to text converter Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#format_conversion.html2text_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.html2text" ;
bio:input "http://journalofdigitalhumanities.org/2-2/medianola-by-vicki-mayer-and-mike-griffith/" , "http://scielo.isciii.es/scielo.php?script=sci_arttext&pid=S0213-91112013000400005&lng=es&nrm=iso" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/113_ES_output.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/113_EN_output.txt" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:FormatConversion ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.html2text?wsdl" ;
dc:description "A WS to convert HTML documents to plain text format. Language independent WS."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/114>
rdf:type owl:NamedIndividual , bio:Service ;
rdfs:label "IULA character encoding converter Web Service"@en ;
rdfs:seeAlso <http://dbpedia.org/resource/Iconv> , <http://dbpedia.org/resource/Character_encoding> ;
ms:contactPerson test:person_Jorge_Vivaldi ;
ms:fundingProject test:project_METANET4U ;
ms:languageName "Language Independent" ;
ms:resourceName "IULA character encoding converter Web Service"@en ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#format_conversion.iconv_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.iconv" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/114_ES_input_ISO88591.txt" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/114_ES_output_UTF8.txt" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:FormatConversion ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.iconv?wsdl" ;
dc:description "This WS converts the character encoding of given files from one encoding to another. Based on the Linux 'iconv' command used to convert between different character encodings."@en ;
dc:subject ms:CharacterEncoding ;
dcterms:isReferencedBy
test:doc_61 , test:doc_64 , test:doc_65 .
<http://lodserver.iula.upf.edu/Metashare/resource/115>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "PANACEA converter Web Service"@en ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:resourceName "PANACEA converter Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#format_conversion.panacea_conversor_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.panacea_conversor" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:FormatConversion ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.panacea_conversor?wsdl" ;
dc:description "This is the Panacea conversion tool."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/116>
rdf:type owl:NamedIndividual , bio:Service ;
rdfs:label "PDF to text converter Web Service"@en ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:resourceName "PDF to text converter Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#format_conversion.pdftotext_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.pdftotext" ;
bio:input "http://aclweb.org/anthology//W/W12/W12-0907.pdf" , "http://repositori.upf.edu/bitstream/handle/10230/21517/Rojas_Castro_A-Janus-2013_2.pdf?sequence=1" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/116_EN_output.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/116_ES_output.txt" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:FormatConversion ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.pdftotext?wsdl" ;
dc:description "This WS converts PDF documents to plain text format. Language independent WS."@en ;
dcterms:isReferencedBy
test:doc_63 , test:doc_61 , test:doc_66 , test:doc_71 , test:doc_68 , test:doc_64 , test:doc_62 , test:doc_60 , test:doc_69 , test:doc_65 , test:doc_70 .
<http://lodserver.iula.upf.edu/Metashare/resource/117>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "XSLT applicator Web Service"@en ;
rdfs:seeAlso <http://dbpedia.org/resource/Libxslt> ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:resourceName "XSLT applicator Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#format_conversion.xsltproc_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.xsltproc" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:FormatConversion , bio:TextHandling ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.xsltproc?wsdl" ;
dc:description "A command line tool for applying XSLT stylesheets to XML documents."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/118>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "IULA TreeTagger Web Service"@en ;
ms:contactPerson test:person_Jorge_Vivaldi ;
ms:fundingProject test:project_METANET4U ;
ms:languageCode languagecode:cat , languagecode:spa , languagecode:eng ;
ms:languageName "Spanish" , "English" , "Catalan" ;
ms:resourceName "IULA TreeTagger Web Service"@en ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://kurwenal.upf.edu/soaplab2-axis/#morphosintactic_tagging.iula_tagger_row" ;
bio:endpoint "http://kurwenal.upf.edu/soaplab2-axis/services/morphosintactic_tagging.iula_tagger" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/118_ES_input.txt" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/118_ES_output_treetagger.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/118_ES_output_IULACT.txt" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:MorphosyntacticTagging , bio:Stemming-Lemmatization ;
bio:wsdl "http://kurwenal.upf.edu/soaplab2-axis/services/morphosintactic_tagging.iula_tagger?wsdl" ;
dc:description "This WS is a morphosyntatic tagger. The disambiguation process is done by a TreeTagger instance trained by the IULA. The input is plain text in Catalan or Spanish. The output allows optional formats and optional encoding. (http://www.cis.uni-muenchen.de/~schmid/tools/TreeTagger/)"@en ;
dc:subject "http://www.cis.uni-muenchen.de/~schmid/tools/TreeTagger/"^^xsd:string ;
dcterms:isReferencedBy
test:doc_59 .
<http://lodserver.iula.upf.edu/Metashare/resource/119>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "IULA tokenizer Web Service"@en ;
ms:contactPerson test:person_Jorge_Vivaldi ;
ms:documentation test:doc_30 ;
ms:fundingProject test:project_METANET4U ;
ms:languageCode languagecode:spa , languagecode:eng , languagecode:cat ;
ms:languageName "Spanish" , "English" , "Catalan" ;
ms:resourceName "IULA tokenizer Web Service" ;
ms:version "2"^^xsd:string ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://kurwenal.upf.edu/soaplab2-axis/#tokenization.iula_tokenizer_row" ;
bio:endpoint "http://kurwenal.upf.edu/soaplab2-axis/services/tokenization.iula_tokenizer" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/119_ES_input.txt" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/119_ES_output.txt" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:Tokenization , bio:CorpusProcessing ;
bio:wsdl "http://kurwenal.upf.edu/soaplab2-axis/services/tokenization.iula_tokenizer?wsdl" ;
dc:description "The IULA tokenizer WS splits a file in plain text format and UTF-8 encoded into units (tokens). The languages supported are Catalan and Spanish."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/120>
rdf:type owl:NamedIndividual , bio:Service ;
rdfs:label "IULA lexicon look up Web Service"@en ;
ms:contactPerson test:person_Jorge_Vivaldi ;
ms:fundingProject test:project_METANET4U ;
ms:languageCode languagecode:cat , languagecode:spa , languagecode:eng ;
ms:languageName "English" , "Spanish" , "Catalan" ;
ms:resourceName "IULA lexicon look up Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://kurwenal.upf.edu/soaplab2-axis/#stemming_lemmatization.iula_lexicon_lookup_row" ;
bio:endpoint "http://kurwenal.upf.edu/soaplab2-axis/services/stemming_lemmatization.iula_lexicon_lookup" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/120_ES_output.txt" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:LexiconLookUp ;
bio:wsdl "http://kurwenal.upf.edu/soaplab2-axis/services/stemming_lemmatization.iula_lexicon_lookup?wsdl" ;
dc:description "Given a word form, this WS returns the lexical information by looking it up in the IULA's lexicon. The languages supported are Catalan, Spanish or English."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/122>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "Search signatures Web Service"@en ;
rdfs:seeAlso test:doc_8 ;
ms:fundingProject test:project_PANACEA ;
ms:languageCode languagecode:eng , languagecode:spa ;
ms:languageName "English" , "Spanish" ;
ms:resourceName "Search signatures Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://kurwenal.upf.edu/soaplab2-axis/#text_mining.busca_signatura_in_corpus_row" ;
bio:endpoint "http://kurwenal.upf.edu/soaplab2-axis/services/text_mining.busca_signatura_in_corpus" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:CorpusProcessing , bio:Querying ;
bio:wsdl "http://kurwenal.upf.edu/soaplab2-axis/services/text_mining.busca_signatura_in_corpus?wsdl" ;
dc:description "Given a list of lemmas, the WS looks for the occurrences of them in IULA corpus, applies the given regular expressions and returns all the signatures."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/123>
rdf:type owl:NamedIndividual , bio:Service ;
rdfs:label "IULA concordancer Web Service"@en ;
rdfs:seeAlso test:doc_8 ;
ms:fundingProject test:project_PANACEA ;
ms:languageCode languagecode:eng , languagecode:spa ;
ms:languageName "English" , "Spanish" ;
ms:resourceName "IULA concordancer Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://kurwenal.upf.edu/soaplab2-axis/#text_mining.get_concordances_row" ;
bio:endpoint "http://kurwenal.upf.edu/soaplab2-axis/services/text_mining.get_concordances" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/123_ES_output.txt" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:Querying ;
bio:wsdl "http://kurwenal.upf.edu/soaplab2-axis/services/text_mining.get_concordances?wsdl" ;
dc:description "Given a lemma and a category, this WS returns the sentences of the IULA corpus where this lemma occurs. The user can perform a domain search. The languages supported are Spanish and English."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/124>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "IULA preprocess Web Service"@en ;
ms:contactPerson test:person_Jorge_Vivaldi ;
ms:documentation test:doc_30 , test:doc_27 ;
ms:fundingProject test:project_METANET4U ;
ms:languageCode languagecode:cat , languagecode:spa , languagecode:eng ;
ms:languageName "English" , "Spanish" , "Catalan" ;
ms:resourceName "IULA preprocess Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://kurwenal.upf.edu/soaplab2-axis/#chunking_segmentation.iula_preprocess_row" ;
bio:endpoint "http://kurwenal.upf.edu/soaplab2-axis/services/chunking_segmentation.iula_preprocess" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/124_ES_input.txt" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/124_ES_output.txt" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:Stemming-Lemmatization , bio:CorpusProcessing , bio:MorphosyntacticTagging ;
bio:wsdl "http://kurwenal.upf.edu/soaplab2-axis/services/chunking_segmentation.iula_preprocess?wsdl" ;
dc:description "This WS provides a text segmentation into minor structural units (titles, paragraphs, sentences, etc.); detection of entities (not found in a dictionary: numbers, abbreviations, URLs, emails, etc.); and the keeping of sequences of two or more words in a single block (dates, phrases, etc.). The input is plain text in Catalan and Spanish."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/125>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "IULA paradigma Web Service"@en ;
ms:contactPerson test:person_Jorge_Vivaldi ;
ms:fundingProject test:project_METANET4U ;
ms:languageCode languagecode:cat , languagecode:spa ;
ms:languageName "Spanish" , "Catalan" ;
ms:resourceName "IULA paradigma Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://kurwenal.upf.edu/soaplab2-axis/#verbal_conjugation.iula_paradigma_row" ;
bio:endpoint "http://kurwenal.upf.edu/soaplab2-axis/services/verbal_conjugation.iula_paradigma" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/125_ES_output.txt" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:LexiconLookUp ;
bio:wsdl "http://kurwenal.upf.edu/soaplab2-axis/services/verbal_conjugation.iula_paradigma?wsdl" ;
dc:description "Given a verb (infinitive or a verbal form) this WS outputs its verbal paradigm grouped according tense and mode. The languages supported are Catalan and Spanish."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/134>
rdf:type owl:NamedIndividual , bio:Service ;
rdfs:label "Soaplab validator Web Service"@en ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:resourceName "Soaplab validator Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#others.soaplab_wsdl_validator_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/others.soaplab_wsdl_validator" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:Management ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/others.soaplab_wsdl_validator?wsdl" ;
dc:description "This WS verifies that a Soaplab web service is Panacea compliant."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/137>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "Stream editor Web Service (sed)"@en ;
rdfs:seeAlso <http://dbpedia.org/resource/Sed> ;
ms:documentation "http://www.gnu.org/software/sed" ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:resourceName "Stream editor Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#corpus_processing.sed_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/corpus_processing.sed" ;
bio:input "This is just a sample text for testing purposes. We are going to change vowels to uppercase."^^xsd:string , "y/aeiou/AEIOU/"^^xsd:string ;
bio:output "ThIs Is jUst A sAmplE tExt fOr tEstIng pUrpOsEs. WE ArE gOIng tO chAngE vOwEls tO UppErcAsE."^^xsd:string ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:CorpusProcessing , bio:TextHandling ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/corpus_processing.sed?wsdl" ;
dc:description "This WS performs basic text transformations on an input text. The serveice is based on the 'sed' progam, a Unix utility that parses and transforms text, using a simple, compact programming language."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/142>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "Post tagging to GrAF converter Web Service"@en ;
ms:conformanceToStandardsBestPractices
ms:GrAF ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:resourceName "Post tagging to GrAF converter Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#format_conversion.grafconverter_postagging_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.grafconverter_postagging" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/142_EN_input.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/142_ES_input.txt" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/142_EN_output_seg.xml" , "http://iula02v.upf.edu/corpus_data/WS_inouput/142_ES_output_seg.xml" , "http://iula02v.upf.edu/corpus_data/WS_inouput/142_ES_output_sent.xml" , "http://iula02v.upf.edu/corpus_data/WS_inouput/142_EN_output_header.xml" , "http://iula02v.upf.edu/corpus_data/WS_inouput/142_EN_output_sent.xml" , "http://iula02v.upf.edu/corpus_data/WS_inouput/142_ES_output_header.xml" , "http://iula02v.upf.edu/corpus_data/WS_inouput/142_ES_output_pos.xml" , "http://iula02v.upf.edu/corpus_data/WS_inouput/142_EN_output_pos.xml" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:FormatConversion ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.grafconverter_postagging?wsdl" ;
dc:description "This WS is a Panacea project converter that creates GrAF documents from the output of PoS taggers (Freeling and IULA tagger)."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/143>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "GrAF skeleton from basic XCES converter"@en ;
ms:conformanceToStandardsBestPractices
ms:XCES , ms:GrAF ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:resourceName "GrAF skeleton from basic XCES converter" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#format_conversion.grafconverter_skeleton_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.grafconverter_skeleton" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:FormatConversion ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.grafconverter_skeleton?wsdl" ;
dc:description "This WS is a Panacea project converter that creates GrAF skeleton from BASIC XCES documents."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/184>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "Ted Pedersen's Ngrams Counter Web Service"@en ;
ms:documentation test:doc_43 ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:resourceName "Ted Pedersen's Ngrams Counter Web Service"^^xsd:string ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#statistics_analysis.countngrams_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/statistics_analysis.countngrams" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/184_ES_input.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/184_EN_input.txt" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/184_ES_output.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/184_EN_output.txt" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:StatisticsAnalysis ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/statistics_analysis.countngrams?wsdl" ;
dc:description "This WS performs the Count function from Ted Pedersen's Ngram Statistics Package (used to identify word Ngrams that appear in large corpora using standard tests of association such as Fisher's exact test, the log likelihood ratio, Pearson's chi-squared test, the Dice Coefficient, etc.). Language independent WS."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/185>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "Basic XCES to TXT converter Web Service"@en ;
ms:conformanceToStandardsBestPractices
ms:XCES ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:resourceName "Basic XCES to TXT converter Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#format_conversion.basicxces_to_txt_converter_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.basicxces_to_txt_converter" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:FormatConversion ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.basicxces_to_txt_converter?wsdl" ;
dc:description "A WS that converts BasicXCES text corpus in plain text (.TXT)."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/186>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "PoS tagger to Xces converter Web Service"@en ;
ms:conformanceToStandardsBestPractices
ms:XCES ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:relatedResource <http://lodserver.iula.upf.edu/Metashare/resource/237> ;
ms:resourceName "PoS tagger to Xces converter Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#format_conversion.postagger_to_xces_converter_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.postagger_to_xces_converter" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/186_EN_input.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/186_ES_input.txt" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/186_ES_output.xml" , "http://iula02v.upf.edu/corpus_data/WS_inouput/186_EN_output.xml" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:FormatConversion ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.postagger_to_xces_converter?wsdl" ;
dc:description "A WS to convert PoS Tagger formats to XCES."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/187>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "IULA GrAF tagger Web Service"@en ;
ms:conformanceToStandardsBestPractices
ms:GrAF ;
ms:contactPerson test:person_Jorge_Vivaldi ;
ms:fundingProject test:project_METANET4U ;
ms:languageCode languagecode:eng , languagecode:spa , languagecode:cat ;
ms:languageName "Spanish" , "Catalan" , "English" ;
ms:relatedResource <http://lodserver.iula.upf.edu/Metashare/resource/237> ;
ms:resourceName "IULA GrAF tagger Web Service " ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://kurwenal.upf.edu/soaplab2-axis/#morphosintactic_tagging.iula_tagger_graf_row" ;
bio:endpoint "http://kurwenal.upf.edu/soaplab2-axis/services/morphosintactic_tagging.iula_tagger_graf" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/187_ES_input.txt" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/187_ES_output_seg.xml" , "http://iula02v.upf.edu/corpus_data/WS_inouput/187_ES_output_pos.xml" , "http://iula02v.upf.edu/corpus_data/WS_inouput/187_ES_output_header.xml" , "http://iula02v.upf.edu/corpus_data/WS_inouput/187_ES_output_sent.xml" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:MorphosyntacticTagging , bio:Tokenization , bio:Stemming-Lemmatization , bio:CorpusProcessing ;
bio:wsdl "http://kurwenal.upf.edu/soaplab2-axis/services/morphosintactic_tagging.iula_tagger_graf?wsdl" ;
dc:description "This WS converts the results of IULA tagger (PoS tagger) in GrAF output."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/197>
rdf:type owl:NamedIndividual , bio:Service ;
rdfs:label "GrAF from dependency converter Web Service"@en ;
ms:conformanceToStandardsBestPractices
ms:GrAF ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:resourceName "GrAF from dependency converter Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#format_conversion.grafconverter_dependency_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.grafconverter_dependency" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:FormatConversion ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.grafconverter_dependency?wsdl" ;
dc:description "This WS is a Panacea project converter that creates GrAF elements from dependency parser output."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/199>
rdf:type owl:NamedIndividual , bio:Service ;
rdfs:label "Lexical classifier Web Service"@en ;
ms:fundingProject test:project_PANACEA ;
ms:resourceName "Lexical classifier Web Service"^^xsd:string ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws03.iula.upf.edu/soaplab2-axis/#lexicon_terminology_extraction.classify_row" ;
bio:endpoint "http://ws03.iula.upf.edu/soaplab2-axis/services/lexicon_terminology_extraction.classify" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:Lexicon-TerminologyExtraction ;
bio:wsdl "http://ws03.iula.upf.edu/soaplab2-axis/services/lexicon_terminology_extraction.classify?wsdl" ;
dc:description "Given a set of signatures in a weka file (test_file.arff), classify them using the parameters estimated for each cue (theta_file.csv)."@en ;
dc:subject <http://dbpedia.org/resource/Weka_(machine_learning)> .
<http://lodserver.iula.upf.edu/Metashare/resource/202>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "IULA character encoding converter Web Service"@en ;
rdfs:seeAlso <http://dbpedia.org/resource/Iconv> ;
ms:contactPerson test:person_Jorge_Vivaldi ;
ms:fundingProject test:project_METANET4U ;
ms:languageName "Language Independent" ;
ms:resourceName "IULA character encoding converter Web Service"^^xsd:string ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws03.iula.upf.edu/soaplab2-axis/#format_conversion.iconv_row" ;
bio:endpoint "http://ws03.iula.upf.edu/soaplab2-axis/services/format_conversion.iconv" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/202_ES_input_ISO88591.txt" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/202_ES_output_UTF8.txt" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:FormatConversion , bio:TextHandling ;
bio:wsdl "http://ws03.iula.upf.edu/soaplab2-axis/services/format_conversion.iconv?wsdl" ;
dc:description "Convert character encoding of given files from one encoding to another. Based on the Linux 'iconv' command that converts text from one encoding to another encoding."@en ;
dc:subject ms:CharacterEncoding .
<http://lodserver.iula.upf.edu/Metashare/resource/203>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "CQP indexer Web Service"@en ;
rdfs:seeAlso <http://cwb.sourceforge.net/> ;
ms:documentation test:doc_65 , test:doc_64 ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:relatedResource <http://lodserver.iula.upf.edu/Metashare/resource/261> , <http://lodserver.iula.upf.edu/Metashare/resource/237> , <http://lodserver.iula.upf.edu/Metashare/resource/241> , <http://lodserver.iula.upf.edu/Metashare/resource/249> , <http://lodserver.iula.upf.edu/Metashare/resource/118> , <http://lodserver.iula.upf.edu/Metashare/resource/278> ;
ms:resourceName "CQP indexer Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws03.iula.upf.edu/soaplab2-axis/#corpus_workbench.cqp_index_row" ;
bio:endpoint "http://ws03.iula.upf.edu/soaplab2-axis/services/corpus_workbench.cqp_index" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/203_EN_input.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/203_ES_input.txt" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:CorpusWorkbench ;
bio:wsdl "http://ws03.iula.upf.edu/soaplab2-axis/services/corpus_workbench.cqp_index?wsdl" ;
dc:description "CQP indexer WS based on the IMS Open Corpus Workbench (CWB). The input is an annotated corpus in tabular format. The output is the Corpus ID to be used by the CQPquery Web Service. Language independent WS."@en ;
dcterms:isReferencedBy
test:doc_61 , test:doc_73 .
<http://lodserver.iula.upf.edu/Metashare/resource/204>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "CQP query Web Service"@en ;
rdfs:seeAlso <http://cwb.sourceforge.net/> ;
ms:documentation "http://cwb.sourceforge.net/documentation.php" , test:doc_65 , test:doc_64 ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:resourceName "CQP query Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws03.iula.upf.edu/soaplab2-axis/#corpus_workbench.cqp_query_row" ;
bio:endpoint "http://ws03.iula.upf.edu/soaplab2-axis/services/corpus_workbench.cqp_query" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/204_EN_output.txt" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:CorpusWorkbench ;
bio:wsdl "http://ws03.iula.upf.edu/soaplab2-axis/services/corpus_workbench.cqp_query?wsdl" ;
dc:description "This WS allows querying an already indexed corpus (see CQP indexer WS for indexing details). The WS is based on the IMS Open Corpus Workbench (CWB). Language independent WS."@en ;
dcterms:isReferencedBy
test:doc_67 , test:doc_73 , test:doc_61 .
<http://lodserver.iula.upf.edu/Metashare/resource/205>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "FreeLing Sentence Splitter Web Service v.2.1"@en ;
ms:documentation test:doc_34 , test:doc_9 ;
ms:fundingProject test:project_PANACEA ;
ms:languageCode languagecode:ast , languagecode:eng , languagecode:spa , languagecode:cat , languagecode:glg , languagecode:por , languagecode:ita ;
ms:languageName "Spanish" , "Italian" , "English" , "Asturian" , "Galician" , "Portuguese" , "Catalan" ;
ms:resourceName "FreeLing Sentence Splitter Web Service v.2.1"^^xsd:string ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#segmentation.freeling_sentence_splitter_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/segmentation.freeling_sentence_splitter" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/239_ES_input.txt"^^xsd:string , "http://iula02v.upf.edu/corpus_data/WS_inouput/239_EN_input.txt"^^xsd:string ;
bio:laterVersion <http://lodserver.iula.upf.edu/Metashare/resource/239> ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/239_ES_output.txt"^^xsd:string , "http://iula02v.upf.edu/corpus_data/WS_inouput/239_EN_output.txt"^^xsd:string ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:Chunking-Segmentation ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/segmentation.freeling_sentence_splitter?wsdl" ;
dc:description "This WS performs a FreeLing-based sentence splitter. The WS splits a file in plain text format and UTF-8 encoded into units (tokens). Output sentences are separated by empty lines. The languages supported are English, Catalan, Spanish, Asturian, Welsh, Galician, Italian, Russian and Portuguese. WARNING: This WS has a new version."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/206>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "Columns selector Web Service"@en ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:relatedResource <http://lodserver.iula.upf.edu/Metashare/resource/278> , <http://lodserver.iula.upf.edu/Metashare/resource/261> , <http://lodserver.iula.upf.edu/Metashare/resource/237> , <http://lodserver.iula.upf.edu/Metashare/resource/108> , <http://lodserver.iula.upf.edu/Metashare/resource/249> ;
ms:resourceName "Columns selector Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#format_conversion.columns_selector_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.columns_selector" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/206_ES_input.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/206_EN_input.txt" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/206_ES_output.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/206_EN_output.txt" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:TextHandling ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/format_conversion.columns_selector?wsdl" ;
dc:description "This WS allows extracting a column from a tabular file input text. It is useful to work with CoNLL or FreeLing annotated corpora. Language independent WS."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/224>
rdf:type owl:NamedIndividual , bio:Service ;
rdfs:label "P clue/ lexical class computer Web Service"@en ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:resourceName "P clue/ lexical class computer Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws03.iula.upf.edu/soaplab2-axis/#statistics_analysis.compute_p_cue_class_row" ;
bio:endpoint "http://ws03.iula.upf.edu/soaplab2-axis/services/statistics_analysis.compute_p_cue_class" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:StatisticsAnalysis ;
bio:wsdl "http://ws03.iula.upf.edu/soaplab2-axis/services/statistics_analysis.compute_p_cue_class?wsdl" ;
dc:description "This WS calculates the probability of seeing a linguistic cue given a lexical class (P(cue|class) value). This probability is computed given the occurrences of cues in a corpus (codified in the signatures file) and the information of belonging or not belonging of these words to different classes (codified in indicators file). The probability is computed for each studied cue in the signatures file and for each class in the indicators file."@en ;
dcterms:references <http://dbpedia.org/resource/Weka_(machine_learning)> .
<http://lodserver.iula.upf.edu/Metashare/resource/225>
rdf:type owl:NamedIndividual , bio:Service ;
rdfs:label "P clue/ lexical class from Weka computer Web Service"@en ;
ms:documentation test:doc_74 ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:relatedResource <http://dbpedia.org/resource/Weka_(machine_learning)> ;
ms:resourceName "P clue/ lexical class from Weka computer Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws03.iula.upf.edu/soaplab2-axis/#statistics_analysis.compute_p_cue_class_from_weka_row" ;
bio:endpoint "http://ws03.iula.upf.edu/soaplab2-axis/services/statistics_analysis.compute_p_cue_class_from_weka" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:StatisticsAnalysis ;
bio:wsdl "http://ws03.iula.upf.edu/soaplab2-axis/services/statistics_analysis.compute_p_cue_class_from_weka?wsdl" ;
dc:description """Given a training set encoded as vectors of cue (or feature) occurrences in weka format, this web service computes P(cuei|class): the probability of seeing each cue as a member or non-member of the class using MLE approach (counts frequencies of appearance of each cue in each class).
Inputs:
- weka_signatures: classified instances encoded as cue vectors. Each slot of the vector contains the number of times each feature has been observed for that instance. Also, we add special slots: total number of occurrences in the first slot and correct class (1 or 0) and lemma (or any identifier of the instance) in the two last slots. The vectors should be encoded in a weka file, in UTF.8. The cue counts must be encoded as integers, this is, no relative frequency needs to be given but the number of times each cue has been seen. For example, for the class of eventive nouns in English we would have some examples of eventive nouns and some of non-eventive nouns:
@relation eventive.arff'
@attribute [total_occurences] numeric
@attribute [cue_1] numeric
@attribute [cue_2] numeric
…
@attribute [cue_n] numeric
@attribute [eventive] {0,1}
@attribute [lemma] string
@data
5,0,0,…,3,0,visa
386,0,1,…,162,0,characteristic
23,1,0,… ,0,1,ceremony
270,0,2,…,0,1,assembly
Outputs:
The output is a comma separated file with the frequencies each cue has been observed with members and non-members of the class. Also, information about the number of tokens in each class is given. Example:
#cue;data size class;data p class;data size no class;data p no class; cue_1;1301732;0.000883438372876;1516522;0.00137419701132; cue_2;1301732;0.000520076329075;1516522;0.000600716639785;
...
cue_n;1301732;0.0243222107162;1516522;0.0177992801951;"""@en ;
dcterms:isReferencedBy
test:doc_74 .
<http://lodserver.iula.upf.edu/Metashare/resource/226>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "Weka noun signatures creator Web Service"@en ;
ms:documentation test:doc_75 ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:relatedResource <http://dbpedia.org/resource/Weka_(machine_learning)> ;
ms:resourceName "Weka noun signatures creator Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws03.iula.upf.edu/soaplab2-axis/#lexicon_terminology_extraction.create_weka_noun_signatures_row" ;
bio:endpoint "http://ws03.iula.upf.edu/soaplab2-axis/services/lexicon_terminology_extraction.create_weka_noun_signatures" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:Lexicon-TerminologyExtraction ;
bio:wsdl "http://ws03.iula.upf.edu/soaplab2-axis/services/lexicon_terminology_extraction.create_weka_noun_signatures?wsdl" ;
dc:description """This web service creates a weka file containing context information of a list of nouns in a given corpus. The context information for each noun is extracted using a set of Regular Expressions and it is encoded in one vector (one line per noun in the weka file). Each slot in the vector represents the number of times the regular expression in this position has been observed with the given noun.
Inputs:
- corpusId: Already indexed CQP corpus ID from which to extract the signatures. You can index your PoS tagged corpus using cqp_index web service.
- regularExpressions: List of Regular Expressions to be applied separated by line breaks. The order of the REs in this file will be the order in the weka vectors.
Optional parameters:
- className: Name of the class to be included in the weka file.
- indicators: Indicators file informing about the belonging of different nouns to the studied class. Format: one word per line with binary values of belonging/not belonging to the class separated by tab. In UTF-8. Example:
- lemmas: If the information about belonging, not belonging to the class (indicators) is not available, you may want to include a list of nouns to be processed. The format is a list of lemmata separated by line breaks, in UTF-8. If this and indicators fields are empty, all nouns in corpus will be processed (may take a long time).
- minOccurrences: minimum number of times a noun has to be seen in the corpus to be included in the output file. If a list of lemmas is given, by default minOccurrences is set to 1.
- vector_type: type of vector desired at the output.
2.2 Outputs
- weka: weka file with noun vectors found in the given corpus.
- notFoundLemmas: list of lemmas that did not appear in the corpus more than the minOccurrences threshold.
- concordances: sentences in the corpus in which the selected nouns appear and informationa bout which Regular Expressions matched in each sentence. Useful for developing and testing the Res."""@en ;
dcterms:isReferencedBy
test:doc_75 .
<http://lodserver.iula.upf.edu/Metashare/resource/227>
rdf:type owl:NamedIndividual , bio:Service ;
rdfs:label "Eventive nouns classifier Web Service"@en ;
ms:conformanceToStandardsBestPractices
ms:LMF ;
ms:documentation test:doc_6 , test:doc_82 , test:doc_76 ;
ms:fundingProject test:project_PANACEA ;
ms:languageCode languagecode:eng , languagecode:spa ;
ms:languageName "Spanish" , "English" ;
ms:resourceName "Eventive nouns classifier Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws03.iula.upf.edu/soaplab2-axis/#lexicon_terminology_extraction.dt_noun_classifier_eventive_row" ;
bio:endpoint "http://ws03.iula.upf.edu/soaplab2-axis/services/lexicon_terminology_extraction.dt_noun_classifier_eventive" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:Lexicon-TerminologyExtraction ;
bio:wsdl "http://ws03.iula.upf.edu/soaplab2-axis/services/lexicon_terminology_extraction.dt_noun_classifier_eventive?wsdl" ;
dc:description """This WS identifies eventive nouns in a part of speech tagged text (with FreeLing Morphosyntactic tagger V 3.0 WS). The classification is performed with a pre-trained Decision Tree. The output is a LMF file with the classifier prediction for each noun.
You can choose to have this prediction as:
- scored: each noun gets a score of being or not being a member of the class (bigger than 0 means class member, smaller, non member of the class)
- filtered: the nouns are filtered according to their score. If the score is positive and over a determined threshold the noun is considered to be a member of the class. If it is negative and under another threshold, it is considered to be a non-member of the class. The other cases are tagged as unknown, since the classifier did not give enough confidence to their classification. The used thresholds are pre-set according to some experiments, if you want to use your own thresholds, you should get the scored output and use the filter webservice to filter it with your thresholds. The languages supported are Spanish and English."""@en ;
dcterms:isReferencedBy
test:doc_76 , test:doc_82 .
<http://lodserver.iula.upf.edu/Metashare/resource/228>
rdf:type owl:NamedIndividual , bio:Service ;
rdfs:label "Bayesian parameter estimation Web Service"@en ;
ms:documentation test:doc_36 , test:doc_77 ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:resourceName "Bayesian parameter estimation Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws03.iula.upf.edu/soaplab2-axis/#lexicon_terminology_extraction.estimate_bayesian_parameters_row" ;
bio:endpoint "http://ws03.iula.upf.edu/soaplab2-axis/services/lexicon_terminology_extraction.estimate_bayesian_parameters" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:Lexicon-TerminologyExtraction ;
bio:wsdl "http://ws03.iula.upf.edu/soaplab2-axis/services/lexicon_terminology_extraction.estimate_bayesian_parameters?wsdl" ;
dc:description "Given a training set encoded as vectors of cue (or feature) occurrences, this web service estimates the parameters P(cuei|class): the probability of seeing each cue as a member or non-member of the class. This estimation is performed using Bayesian inference, which combines prior knowledge with observed data. The parameters estimated with this web service can be used, for example, to classify new instances using a Naive Bayes classifier. The output format is the one needed as input for the naive_bayes_classifier webservice."@en ;
dcterms:isReferencedBy
test:doc_77 .
<http://lodserver.iula.upf.edu/Metashare/resource/229>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "Naive Bayes classifier Web Service"@en ;
ms:documentation test:doc_36 , test:doc_79 ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:resourceName "Naive Bayes classifier Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws03.iula.upf.edu/soaplab2-axis/#lexicon_terminology_extraction.naive_bayes_classifier_row" ;
bio:endpoint "http://ws03.iula.upf.edu/soaplab2-axis/services/lexicon_terminology_extraction.naive_bayes_classifier" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:Lexicon-TerminologyExtraction ;
bio:wsdl "http://ws03.iula.upf.edu/soaplab2-axis/services/lexicon_terminology_extraction.naive_bayes_classifier?wsdl" ;
dc:description "This webservice performs traditional Naive Bayes classification of instances given in a weka file. It outputs the predicted classification for each instance and some statistics about the performance of the classification. The parameters needed as input can be learnt using estimate_bayesian_parameters webservice."@en ;
dcterms:isReferencedBy
test:doc_79 .
<http://lodserver.iula.upf.edu/Metashare/resource/230>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "XML/TXT to Weka converter Web Service"@en ;
ms:fundingProject test:project_PANACEA ;
ms:languageName "Language Independent" ;
ms:relatedResource <http://dbpedia.org/resource/Weka_(machine_learning)> ;
ms:resourceName "XML/TXT to Weka converter Web Service" ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws03.iula.upf.edu/soaplab2-axis/#lexicon_terminology_extraction.xml_signatures2weka_row" ;
bio:endpoint "http://ws03.iula.upf.edu/soaplab2-axis/services/lexicon_terminology_extraction.xml_signatures2weka" ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:FormatConversion ;
bio:wsdl "http://ws03.iula.upf.edu/soaplab2-axis/services/lexicon_terminology_extraction.xml_signatures2weka?wsdl" ;
dc:description "Given a XML signatures file (signatures.xml) and the indicators file (indicators.txt) with the nouns that belong or not to the class, this WS creates a file in ARFF format to experiment with Weka. Warning: the default encoding for input and outputs files is ISO-8859-1. It may be changed using optional parameters, but the two input files must have the same encoding, which must be indicated in the headers of the XML file."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/236>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "FreeLing Morphosyntactic analyzer Web Service v.3"@en ;
ms:documentation test:doc_uc_21 , test:doc_21 , test:doc_34 , test:doc_9 ;
ms:fundingProject test:project_PANACEA ;
ms:languageCode languagecode:cat , languagecode:eng , languagecode:por , languagecode:rus , languagecode:glg , languagecode:ast , languagecode:spa , languagecode:ita ;
ms:languageName "Russian" , "Spanish" , "Italian" , "Asturian" , "Galician" , "Portuguese" , "Catalan" , "English" ;
ms:resourceName "FreeLing Morphosyntactic analyzer Web Service v.3"^^xsd:string ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#morphosintactic_tagging.freeling3_morpho_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/morphosintactic_tagging.freeling3_morpho" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/236_ES_input.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/236_EN_input.txt" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/236_EN_output.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/236_ES_output.txt" ;
bio:previousVersion <http://lodserver.iula.upf.edu/Metashare/resource/98> ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:MorphosyntacticTagging ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/morphosintactic_tagging.freeling3_morpho?wsdl" ;
dc:description "This Web Service deploys a FreeLing-based morphological analyzer (v 3.0). The languages supported are English, Catalan, Spanish, Asturian, Welsh, Galician, Italian, Russian and Portuguese."@en ;
dcterms:isReferencedBy
test:doc_73 .
<http://lodserver.iula.upf.edu/Metashare/resource/237>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "FreeLing Morphosyntactic tagger Web Service v.3"@en ;
ms:documentation test:doc_uc_21 , test:doc_34 , test:doc_9 ;
ms:fundingProject test:project_PANACEA ;
ms:languageCode languagecode:eng , languagecode:por , languagecode:spa , languagecode:ita , languagecode:rus , languagecode:glg , languagecode:ast , languagecode:wel , languagecode:cat ;
ms:languageName "Russian" , "Spanish" , "Galician" , "Asturian" , "Catalan" , "Portuguese" , "English" , "Welsh" , "Italian" ;
ms:resourceName "FreeLing Morphosyntactic tagger Web Service v.3"^^xsd:string ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#morphosintactic_tagging.freeling3_tagging_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/morphosintactic_tagging.freeling3_tagging" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/237_ES_input.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/237_EN_input.txt" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/237_ES_output.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/237_EN_output.txt" ;
bio:previousVersion <http://lodserver.iula.upf.edu/Metashare/resource/99> ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:MorphosyntacticTagging , bio:CorpusProcessing , bio:NamedEntityRecognition ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/morphosintactic_tagging.freeling3_tagging?wsdl" ;
dc:description "This WS performs a FreeLing-based part-of-speech tagger (v 3.0). WS job duration depends on the server load, approximately 1 million words takes one minute. The languages supported are English, Catalan, Spanish, Asturian, Welsh, Galician, Italian, and Portuguese. The output is a tabular file with: word form, lemma, part of speech, confidence rate, initial position and final position."@en ;
dcterms:isReferencedBy
test:doc_65 , test:doc_64 , test:doc_73 , test:doc_61 , test:doc_63 .
<http://lodserver.iula.upf.edu/Metashare/resource/238>
rdf:type bio:Service , owl:NamedIndividual ;
rdfs:label "FreeLing Tokenizer Web Service v.3"@en ;
ms:documentation test:doc_9 , test:doc_34 ;
ms:fundingProject test:project_PANACEA ;
ms:languageCode languagecode:cat , languagecode:glg , languagecode:ast , languagecode:wel , languagecode:spa , languagecode:eng , languagecode:por , languagecode:rus , languagecode:ita ;
ms:languageName "Galician" , "Russian" , "Spanish" , "Italian" , "Catalan" , "English" , "Asturian" , "Portuguese" , "Welsh" ;
ms:resourceName "FreeLing Tokenizer Web Service v.3"^^xsd:string ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#tokenization.freeling3_tokenizer_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/tokenization.freeling3_tokenizer" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/238_ES_input.txt"@es , "http://iula02v.upf.edu/corpus_data/WS_inouput/238_EN_input.txt"@en ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/238_ES_output.txt"@es , "http://iula02v.upf.edu/corpus_data/WS_inouput/238_EN_output.txt"@en ;
bio:previousVersion <http://lodserver.iula.upf.edu/Metashare/resource/101> ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:SOAP , bio:Soaplab ;
bio:task bio:TextHandling , bio:CorpusProcessing , bio:Tokenization ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/tokenization.freeling3_tokenizer?wsdl" ;
dc:description "This WS deploys a FreeLing-based text tokenizer (v 3.0). The WS splits a file in plain text format and UTF-8 encoded into units (tokens) where tokens are separated by new lines. The languages supported are Catalan, English, Galician, Italian, Portuguese, Russian, Spanish, Welsh, and Asturian."@en ;
dcterms:isReferencedBy
test:doc_66 , test:doc_60 , test:doc_68 .
<http://lodserver.iula.upf.edu/Metashare/resource/239>
rdf:type owl:NamedIndividual , bio:Service ;
rdfs:label "FreeLing Sentence Splitter Web Service v.3"@en ;
ms:documentation test:doc_34 , test:doc_9 ;
ms:fundingProject test:project_PANACEA ;
ms:languageCode languagecode:glg , languagecode:por , languagecode:ast , languagecode:wel , languagecode:rus , languagecode:eng , languagecode:ita , languagecode:spa , languagecode:cat ;
ms:languageName "Italian" , "Portuguese" , "Spanish" , "English" , "Asturian" , "Welsh" , "Galician" , "Russian" , "Catalan" ;
ms:resourceName "FreeLing Sentence Splitter Web Service v.3"^^xsd:string ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#segmentation.freeling3_sentence_splitter_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/segmentation.freeling3_sentence_splitter" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/239_ES_input.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/239_EN_input.txt" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/239_ES_output.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/239_EN_output.txt" ;
bio:previousVersion <http://lodserver.iula.upf.edu/Metashare/resource/205> ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;
bio:task bio:TextHandling , bio:CorpusProcessing ;
bio:wsdl "http://ws04.iula.upf.edu/soaplab2-axis/services/segmentation.freeling3_sentence_splitter?wsdl" ;
dc:description "This WS performs a FreeLing-based sentence splitter (v 3.0). The WS splits a file in plain text format and UTF-8 encoded into units (tokens) separated by new lines. Output sentences are separated by empty lines. The languages supported are English, Catalan, Spanish, Asturian, Welsh, Galician, Italian, Russian and Portuguese."@en .
<http://lodserver.iula.upf.edu/Metashare/resource/240>
rdf:type owl:NamedIndividual , bio:Service ;
rdfs:label "FreeLing Dependency parser Web Service v.3"@en ;
ms:documentation test:doc_9 , test:doc_34 ;
ms:fundingProject test:project_PANACEA ;
ms:languageCode languagecode:spa , languagecode:eng , languagecode:glg , languagecode:ast , languagecode:cat ;
ms:languageName "Catalan" , "English" , "Spanish" , "Galician" , "Asturian" ;
ms:resourceName "FreeLing Dependency parser Web Service v.3"^^xsd:string ;
bio:contact "iulatrl@upf.edu" ;
bio:demoInvocation "http://ws04.iula.upf.edu/soaplab2-axis/#syntactic_tagging.freeling3_dependency_row" ;
bio:endpoint "http://ws04.iula.upf.edu/soaplab2-axis/services/syntactic_tagging.freeling3_dependency" ;
bio:input "http://iula02v.upf.edu/corpus_data/WS_inouput/240_EN_input.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/240_ES_input.txt" ;
bio:output "http://iula02v.upf.edu/corpus_data/WS_inouput/240_EN_output.txt" , "http://iula02v.upf.edu/corpus_data/WS_inouput/240_ES_output.txt" ;
bio:previousVersion <http://lodserver.iula.upf.edu/Metashare/resource/105> ;
bio:serviceProvider test:organization_UPF-IULA ;
bio:serviceTechnology
bio:Soaplab , bio:SOAP ;